/* Import Google Fonts for modern typography */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Montserrat:wght@600;700&display=swap');

/* Define CSS variables for maintainability */
:root {
    --primary-red: #FF0000;
    /* Logo G color */
    --primary-yellow: #FFC107;
    /* Logo M and E color */
    --primary-blue: #c0c0ea;
    /* Logo blue */
    --gradient-blue: #1E90FF;
    /* Lighter blue for gradients */
    --primary-white: #FFFFFF;
    /* Base white */
    --secondary-gray: #F5F5F5;
    /* Light gray background */
    --text-dark: #333333;
    /* Primary text color */
    --text-light: #666666;
    /* Secondary text color */
    --hover-red: #CC0000;
    /* Darker red for hover effects */
    --shadow-color: rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
}

/* Reset default styles for consistency */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--secondary-gray);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
}

/* Header styles (common across all pages) */
header {
    background-color: var(--primary-white);
    padding: 10px 20px;
    /* Reduced padding for a more compact navbar */
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 15px var(--shadow-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    flex-direction: row;
    /* Text placed next to logo */
    align-items: center;
    gap: 10px;
    /* Space between logo and text */
}

.logo-image {
    max-width: 150px;
    /* Existing style */
    height: auto;
    /* Existing style */
    display: block;
    /* Existing style */
    margin-bottom: 5px;
    /* Existing style */
    filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.7));
    /* Dark shadow */
}


.logo p {
    font-size: 14px;
    color: var(--text-dark);
    margin-top: 5px;
}

/* Navbar styles */
.navbar {
    position: relative;
}

.nav-toggle {
    display: none;
    /* Hidden by default, used for toggle functionality */
}

.hamburger {
    display: none;
    /* Hidden on desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 35px;
    height: 25px;
    cursor: pointer;
    z-index: 101;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin-left: 25px;
    /* Reduced margin for a tighter layout */
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    /* Reduced font size */
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-menu li a:hover {
    color: var(--primary-red);
    transform: scale(1.05);
}

/* Homepage: Hero Section */
.hero {
    background: none;
    min-height: 100vh;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fade 15s infinite;
}

.slide1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/image1.jpg');
    animation-delay: 0s;
}


.slide2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/image2.jpg');
    animation-delay: 5s;
}

.slide3 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/image3.jpg');
    animation-delay: 10s;
}


.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--primary-white);
    padding: 20px;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.6);
    animation: fadeInDown 1s ease-in-out;
}

.hero-content p {
    font-size: 1.5rem;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-in-out 0.3s forwards;
    opacity: 0;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-red), var(--hover-red));
    color: var(--primary-white);
    padding: 18px 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 3px solid var(--primary-yellow);
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    animation: pulse 2s infinite ease-in-out;
}

.hero-cta:hover {
    background: linear-gradient(135deg, var(--hover-red), var(--primary-red));
    color: var(--primary-yellow);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* Homepage: Services Section */
.services {
    padding: 80px 40px;
    background-color: var(--primary-white);
    position: relative;
    overflow: hidden;
}

.services h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

.services h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-yellow));
    margin: 15px auto 0;
    border-radius: 2px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service {
    background-color: var(--secondary-gray);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background-color: var(--primary-white);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service:hover .service-image img {
    transform: scale(1.1);
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
    pointer-events: none;
}

.service h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.service::before {
    content: '⚙️';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    color: var(--primary-yellow);
    opacity: 0.2;
    transition: opacity 0.3s ease;
}

.service:hover::before {
    opacity: 0.5;
}

/* Get in Touch Button Styles */
.cta-button {
    background: linear-gradient(135deg, var(--primary-red), var(--hover-red));
    color: var(--primary-white);
    padding: 18px 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 3px solid var(--primary-yellow);
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    animation: pulse 2s infinite ease-in-out;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--hover-red), var(--primary-red));
    color: var(--primary-yellow);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* Additional focus and active states for accessibility and interaction */
.cta-button:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.3);
}

.cta-button:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}


/* Homepage: About Section */
.about {
    padding: 80px 40px;
    background-color: #F0F0F0;
    position: relative;
    overflow: hidden;
}

.about h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

.about h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-yellow));
    margin: 15px auto 0;
    border-radius: 2px;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.about-text {
    flex: 1;
    text-align: left;
}

.about-text p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.about-image {
    flex: 1;
    position: relative;
    max-width: 500px;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.about-image:hover img {
    transform: scale(1.1);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
    pointer-events: none;
}

/* Homepage: What Sets Us Apart Section */
.choose-us {
    padding: 80px 40px;
    background-color: var(--primary-white);
    position: relative;
    overflow: hidden;
}

.choose-us h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

.choose-us h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-yellow));
    margin: 15px auto 0;
    border-radius: 2px;
}

.choose-us p {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.advantage-card {
    background-color: var(--secondary-gray);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow-color);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background-color: var(--primary-white);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.advantage-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.advantage-card:hover .advantage-icon img {
    transform: scale(1.1);
}

.advantage-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.advantage-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.advantage-card::before {
    content: '⚙️';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    color: var(--primary-yellow);
    opacity: 0.2;
    transition: opacity 0.3s ease;
}

.advantage-card:hover::before {
    opacity: 0.5;
}

/* Homepage: Order Service Section */
.order-service {
    padding: 80px 40px;
    background-color: #F0F0F0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.order-service h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

.order-service h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--primary-red));
    margin: 15px auto 0;
    border-radius: 2px;
}

.order-service p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.order-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.05);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.order-form:hover {
    transform: translateY(-5px);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group select,
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--text-light);
    border-radius: 8px;
    background-color: var(--primary-white);
    color: var(--text-dark);
    font-size: 14px;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-red);
    background-color: var(--primary-white);
    outline: none;
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.order-button {
    background: linear-gradient(135deg, var(--primary-red), var(--hover-red));
    color: var(--primary-white);
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    width: 100%;
}

.order-button:hover {
    background: linear-gradient(135deg, var(--hover-red), var(--primary-red));
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* About Us Page: Hero Section */
.about-hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-blue), var(--gradient-blue)), url('equipment-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 140px 40px;
    text-align: center;
    color: var(--primary-white);
    overflow: hidden;
    min-height: 60vh;
}

.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease-in-out;
}

.about-hero p {
    font-size: 20px;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-in-out 0.3s forwards;
    opacity: 0;
}

.about-hero .hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-red), var(--hover-red));
    color: var(--primary-white);
    padding: 15px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid var(--primary-yellow);
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite ease-in-out;
}

.about-hero .hero-cta:hover {
    background: linear-gradient(135deg, var(--hover-red), var(--primary-red));
    color: var(--primary-yellow);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.about-hero .gear-animation {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 1;
}

.about-hero .gear-icon {
    font-size: 80px;
    color: var(--primary-yellow);
    opacity: 0.3;
    animation: spin 10s linear infinite;
}

/* About Us Page: Company Overview */
.company-overview {
    padding: 80px 40px;
    background-color: var(--primary-white);
}

.company-overview-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.company-overview-image {
    flex: 1;
}

.company-overview-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.company-overview-content {
    flex: 1;
    text-align: left;
}

.company-overview-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.company-overview-content p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0;
}

/* About Us Page: History and Expertise */
.history-expertise {
    padding: 80px 40px;
    background-color: #F0F0F0;
}

.history-expertise-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.history-expertise-content {
    flex: 1;
    text-align: left;
}

.history-expertise-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.history-expertise-content p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0;
}

.history-expertise-image {
    flex: 1;
}

.history-expertise-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
}

/* About Us Page: Mission and Values */
/* About Us Page: Mission and Values */
.mission-values {
    padding: 80px 40px;
    background-color: #F0F0F0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mission-values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.mission-values h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

.mission-values h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-yellow));
    margin: 15px auto 0;
    border-radius: 2px;
}

.mission-intro {
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
}

.value-card {
    display: flex;
    align-items: center;
    background-color: var(--primary-white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.value-image {
    flex: 0 0 200px; /* Fixed width for the image container */
    height: 150px; /* Fixed height for consistency */
    overflow: hidden;
    border-radius: 8px;
    margin-right: 20px;
}

.value-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the container */
    transition: transform 0.3s ease;
}

.value-card:hover .value-image img {
    transform: scale(1.1); /* Zoom effect on hover */
}

.value-content {
    flex: 1; /* Takes up remaining space */
    text-align: left;
}

.value-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.value-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.value-card::before {
    content: '⚙️';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 50px;
    color: var(--primary-yellow);
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.value-card:hover::before {
    opacity: 0.3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .value-card {
        flex-direction: column;
        text-align: center;
    }

    .value-image {
        flex: none;
        width: 100%;
        height: 200px; /* Adjust height for mobile */
        margin-right: 0;
        margin-bottom: 20px;
    }

    .value-content {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .value-image {
        height: 150px;
    }

    .value-content h3 {
        font-size: 18px;
    }

    .value-content p {
        font-size: 14px;
    }
}

/* Call to Action Section */
.cta {
    padding: 80px 40px;
    background: linear-gradient(135deg, var(--primary-white), var(--secondary-gray));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

.cta h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-yellow));
    margin: 15px auto 0;
    border-radius: 2px;
}

.cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-form {
    background-color: var(--primary-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.cta-form label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-align: left;
}

.cta-form input,
.cta-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid var(--text-light);
    border-radius: 8px;
    background-color: var(--secondary-gray);
    color: var(--text-dark);
    font-size: 14px;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.cta-form input:focus,
.cta-form textarea:focus {
    border-color: var(--primary-red);
    background-color: var(--primary-white);
    outline: none;
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
}

.cta-form textarea {
    resize: vertical;
    min-height: 120px;
}

.cta-form .cta-button {
    background: linear-gradient(135deg, var(--primary-red), var(--hover-red));
    color: var(--primary-white);
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    width: 100%;
    display: block;
}

.cta-form .cta-button:hover {
    background: linear-gradient(135deg, var(--hover-red), var(--primary-red));
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.cta-alt {
    margin-top: 20px;
    font-size: 16px;
    color: var(--text-light);
}

.cta-alt a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cta-alt a:hover {
    color: var(--hover-red);
    text-decoration: underline;
}

/* Subtle gear overlay for maintenance theme */
.cta-form::before {
    content: '⚙️';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 50px;
    color: var(--primary-yellow);
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.cta-form:hover::before {
    opacity: 0.3;
}

/* Services Page: Hero Section */
.services-hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-blue), var(--gradient-blue)), url('maintenance-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 140px 40px;
    text-align: center;
    color: var(--primary-white);
    overflow: hidden;
    min-height: 60vh;
}

.services-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.services-hero .hero-content {
    position: relative;
    z-index: 2;
}

.services-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease-in-out;
}

.services-hero p {
    font-size: 20px;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-in-out 0.3s forwards;
    opacity: 0;
}

.services-hero .hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-red), var(--hover-red));
    color: var(--primary-white);
    padding: 15px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid var(--primary-yellow);
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite ease-in-out;
}

.services-hero .hero-cta:hover {
    background: linear-gradient(135deg, var(--hover-red), var(--primary-red));
    color: var(--primary-yellow);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.services-hero .gear-animation {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 1;
}

.services-hero .gear-icon {
    font-size: 80px;
    color: var(--primary-yellow);
    opacity: 0.3;
    animation: spin 10s linear infinite;
}

/* Services Page: Service Details */
.service-details {
    padding: 80px 40px;
    background-color: var(--primary-white);
    text-align: center;
}

.service-details h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

.service-details h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-yellow));
    margin: 15px auto 0;
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--secondary-gray);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background-color: var(--primary-white);
}

.service-icon {
    font-size: 50px;
    color: var(--primary-red);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2);
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 10px;
}

.service-card p strong {
    color: var(--text-dark);
}

.service-card::before {
    content: '⚙️';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 50px;
    color: var(--primary-yellow);
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 0.3;
}

/* Services Page: Supported Brands */
.supported-brands {
    padding: 80px 40px;
    background-color: #F0F0F0;
    text-align: center;
}

.supported-brands h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #333; /* Adjust color as needed */
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    justify-items: center;
}

.brand-logo {
    max-width: 100%;
    height: auto;
    max-height: 100px; /* Adjust based on your logo sizes */
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.1); /* Slight zoom on hover for interactivity */
}

/* Partners Page: Hero Section */
.partners-hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-blue), var(--gradient-blue)), url('partners-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 140px 40px;
    text-align: center;
    color: var(--primary-white);
    overflow: hidden;
    min-height: 60vh;
}

.partners-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.partners-hero .hero-content {
    position: relative;
    z-index: 2;
}

.partners-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease-in-out;
}

.partners-hero p {
    font-size: 20px;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-in-out 0.3s forwards;
    opacity: 0;
}

.partners-hero .hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-red), var(--hover-red));
    color: var(--primary-white);
    padding: 15px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid var(--primary-yellow);
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite ease-in-out;
}

.partners-hero .hero-cta:hover {
    background: linear-gradient(135deg, var(--hover-red), var(--primary-red));
    color: var(--primary-yellow);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.partners-hero .gear-animation {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 1;
}

.partners-hero .gear-icon {
    font-size: 80px;
    color: var(--primary-yellow);
    opacity: 0.3;
    animation: spin 10s linear infinite;
}

/* Partners Page: Partners Section */
.partners {
    padding: 80px 40px;
    background-color: var(--primary-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partners h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

.partners h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-yellow));
    margin: 15px auto 0;
    border-radius: 2px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-card {
    background-color: var(--secondary-gray);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px var(--shadow-color);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partner-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    background-color: var(--primary-white);
}

.partner-logo {
    width: 100px; /* Adjust this value based on your design preference */
    height: auto;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.partner-card:hover .partner-logo {
    transform: scale(1.1); /* Slight zoom effect on hover */
}

.partner-card:hover .partner-icon {
    transform: scale(1.2);
}

.partner-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partner-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.partner-card::before {
    content: '⚙️';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 50px;
    color: var(--primary-yellow);
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.partner-card:hover::before {
    opacity: 0.3;
}

/* Contact Us Page: Hero Section */
.contact-hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-blue), var(--gradient-blue)), url('contact-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 140px 40px;
    text-align: center;
    color: var(--primary-white);
    overflow: hidden;
    min-height: 60vh;
}

.contact-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.contact-hero .hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease-in-out;
}

.contact-hero p {
    font-size: 20px;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-in-out 0.3s forwards;
    opacity: 0;
}

.contact-hero .hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-red), var(--hover-red));
    color: var(--primary-white);
    padding: 15px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid var(--primary-yellow);
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite ease-in-out;
}

.contact-hero .hero-cta:hover {
    background: linear-gradient(135deg, var(--hover-red), var(--primary-red));
    color: var(--primary-yellow);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.contact-hero .gear-animation {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 1;
}

.contact-hero .gear-icon {
    font-size: 80px;
    color: var(--primary-yellow);
    opacity: 0.3;
    animation: spin 10s linear infinite;
}

/* Contact Us Page: Contact Section */
.contact-section {
    padding: 80px 40px;
    background-color: var(--primary-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

.contact-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-yellow));
    margin: 15px auto 0;
    border-radius: 2px;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.contact-info,
.contact-form {
    flex: 1;
    background-color: var(--secondary-gray);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info:hover,
.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.contact-info h3,
.contact-form h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    text-align: left;
}

.contact-info .info-icon {
    font-size: 24px;
    color: var(--primary-red);
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.contact-info:hover .info-icon {
    transform: scale(1.2);
}

.contact-info p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
}

.contact-info p strong {
    color: var(--text-dark);
}

.contact-info p a {
    color: var(--primary-red);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info p a:hover {
    color: var(--hover-red);
    text-decoration: underline;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.contact-form label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--text-light);
    border-radius: 8px;
    background-color: var(--primary-white);
    color: var(--text-dark);
    font-size: 14px;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-red);
    background-color: var(--primary-white);
    outline: none;
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .cta-button {
    background: linear-gradient(135deg, var(--primary-red), var(--hover-red));
    color: var(--primary-white);
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    width: 100%;
}

.contact-form .cta-button:hover {
    background: linear-gradient(135deg, var(--hover-red), var(--primary-red));
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.contact-form::before {
    content: '⚙️';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 50px;
    color: var(--primary-yellow);
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.contact-form:hover::before {
    opacity: 0.3;
}

/* Contact Us Page: Map Section */
.map-section {
    padding: 80px 40px;
    background-color: #F0F0F0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.map-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

.map-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-yellow));
    margin: 15px auto 0;
    border-radius: 2px;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    transition: transform 0.3s ease;
}

.map-container:hover iframe {
    transform: scale(1.02);
}

/* Footer styles (common across all pages) */
footer {
    background-color: #000000;
    color: var(--primary-white);
    padding: 40px 40px 20px;
    position: relative;
    overflow: hidden;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto 30px;
    gap: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
}

.footer-logo {
    text-align: center;
}

.footer-logo-image {
    max-width: 100px;
    /* Matches header logo size */
    height: auto;
    display: block;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-contact h4,
.footer-links h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-yellow);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-contact p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-contact p:hover {
    color: var(--primary-yellow);
    transform: translateX(5px);
}

.footer-contact p strong {
    color: var(--primary-white);
    margin-right: 5px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-red);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 5px 0;
}

.footer-container::before {
    content: '⚙️';
    position: absolute;
    bottom: 10px;
    right: 40px;
    font-size: 40px;
    color: rgba(255, 193, 7, 0.2);
    opacity: 0.1;
    z-index: -1;
}

/* Animations */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes fade {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    30% {
        opacity: 1;
    }

    40% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* Responsive Hamburger Menu */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        /* Show hamburger on smaller screens */
    }

    .nav-toggle:checked~.hamburger span:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }

    .nav-toggle:checked~.hamburger span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle:checked~.hamburger span:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }

    .nav-menu {
        display: none;
        /* Hidden by default on mobile */
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: var(--primary-white);
        width: 180px;
        padding: 15px;
        box-shadow: 0 5px 15px var(--shadow-color);
        border-radius: 0 0 10px 10px;
        z-index: 100;
    }

    .nav-toggle:checked~.nav-menu {
        display: flex;
        /* Show menu when checkbox is checked */
    }

    .nav-menu li {
        margin: 15px 0;
        text-align: right;
    }

    .nav-menu li a {
        font-size: 16px;
    }

    header {
        padding: 10px 15px;
    }

    .logo-image {
        max-width: 80px;
    }

    .logo p {
        font-size: 10px;
    }
}

/* Responsive Design with Media Queries */
@media (max-width: 1024px) {

    .service-grid,
    .services-grid,
    .partners-grid,
    .values-grid,
    .advantage-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .about-container,
    .company-overview-container,
    .history-expertise-container {
        flex-direction: column;
        gap: 30px;
    }

    .about-text,
    .company-overview-content,
    .history-expertise-content {
        text-align: center;
    }

    .about-image,
    .company-overview-image,
    .history-expertise-image {
        max-width: 100%;
        height: 300px;
    }

    .contact-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .hero-cta {
        padding: 14px 40px;
        font-size: 16px;
    }

    .about-hero,
    .services-hero,
    .partners-hero,
    .contact-hero {
        padding: 100px 20px;
        min-height: 50vh;
    }

    .about-hero h1,
    .services-hero h1,
    .partners-hero h1,
    .contact-hero h1 {
        font-size: 36px;
    }

    .about-hero p,
    .services-hero p,
    .partners-hero p,
    .contact-hero p {
        font-size: 18px;
    }

    .about-hero .hero-cta,
    .services-hero .hero-cta,
    .partners-hero .hero-cta,
    .contact-hero .hero-cta {
        padding: 12px 30px;
        font-size: 16px;
    }

    .gear-icon {
        font-size: 60px;
    }

    .services,
    .about,
    .choose-us,
    .order-service,
    .company-overview,
    .history-expertise,
    .mission-values,
    .service-details,
    .supported-brands,
    .partners,
    .contact-section,
    .map-section,
    .cta {
        padding: 60px 20px;
    }

    .services h2,
    .about h2,
    .choose-us h2,
    .order-service h2,
    .company-overview-content h2,
    .history-expertise-content h2,
    .mission-values h2,
    .service-details h2,
    .supported-brands h2,
    .partners h2,
    .contact-section h2,
    .map-section h2,
    .cta h2 {
        font-size: 28px;
    }

    .about-text p,
    .company-overview-content p,
    .history-expertise-content p,
    .mission-intro,
    .choose-us p,
    .order-service p,
    .cta p {
        font-size: 16px;
    }

    .service-grid,
    .services-grid,
    .partners-grid,
    .values-grid,
    .advantage-grid,
    .brands-grid {
        grid-template-columns: 1fr;
    }

    .service h3,
    .service-card h3,
    .partner-card h3,
    .value-card h3,
    .advantage-card h3 {
        font-size: 20px;
    }

    .service-icon,
    .partner-icon {
        font-size: 40px;
    }

    .advantage-icon {
        width: 60px;
        height: 60px;
    }

    .order-form,
    .contact-info,
    .contact-form {
        padding: 20px;
    }

    .form-group label,
    .contact-form label {
        font-size: 14px;
    }

    .form-group select,
    .form-group input,
    .form-group textarea,
    .contact-form input,
    .contact-form textarea {
        font-size: 13px;
        padding: 10px;
    }

    .order-button,
    .contact-form .cta-button {
        font-size: 16px;
        padding: 12px 25px;
    }

    .map-container iframe {
        height: 350px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .footer-contact h4,
    .footer-links h4 {
        font-size: 16px;
    }

    .footer-contact p,
    .footer-links ul li a {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 8px 10px;
    }

    .logo {
        gap: 5px;
    }

    .logo-image {
        max-width: 60px;
    }

    .logo p {
        font-size: 8px;
    }

    .hamburger {
        width: 30px;
        height: 20px;
    }

    .hamburger span {
        height: 2px;
    }

    .nav-toggle:checked~.hamburger span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .nav-toggle:checked~.hamburger span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .nav-menu {
        width: 160px;
        padding: 10px;
    }

    .nav-menu li a {
        font-size: 14px;
    }

    .hero {
        min-height: 70vh;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-cta {
        padding: 12px 30px;
        font-size: 14px;
    }

    .about-hero,
    .services-hero,
    .partners-hero,
    .contact-hero {
        padding: 80px 15px;
    }

    .about-hero h1,
    .services-hero h1,
    .partners-hero h1,
    .contact-hero h1 {
        font-size: 28px;
    }

    .about-hero p,
    .services-hero p,
    .partners-hero p,
    .contact-hero p {
        font-size: 16px;
    }

    .about-hero .hero-cta,
    .services-hero .hero-cta,
    .partners-hero .hero-cta,
    .contact-hero .hero-cta {
        padding: 10px 25px;
        font-size: 14px;
    }

    .gear-icon {
        font-size: 40px;
    }

    .services,
    .about,
    .choose-us,
    .order-service,
    .company-overview,
    .history-expertise,
    .mission-values,
    .service-details,
    .supported-brands,
    .partners,
    .contact-section,
    .map-section,
    .cta {
        padding: 40px 15px;
    }

    .services h2,
    .about h2,
    .choose-us h2,
    .order-service h2,
    .company-overview-content h2,
    .history-expertise-content h2,
    .mission-values h2,
    .service-details h2,
    .supported-brands h2,
    .partners h2,
    .contact-section h2,
    .map-section h2,
    .cta h2 {
        font-size: 24px;
    }

    .about-text p,
    .company-overview-content p,
    .history-expertise-content p,
    .mission-intro,
    .choose-us p,
    .order-service p,
    .cta p {
        font-size: 14px;
    }

    .service,
    .service-card,
    .partner-card,
    .value-card,
    .advantage-card {
        padding: 20px;
    }

    .service h3,
    .service-card h3,
    .partner-card h3,
    .value-card h3,
    .advantage-card h3 {
        font-size: 18px;
    }

    .service p,
    .service-card p,
    .partner-card p,
    .value-card p,
    .advantage-card p {
        font-size: 14px;
    }

    .service-icon,
    .partner-icon {
        font-size: 35px;
    }

    .value-icon {
        font-size: 30px;
    }

    .advantage-icon {
        width: 50px;
        height: 50px;
    }

    .about-image,
    .company-overview-image,
    .history-expertise-image {
        height: 200px;
    }

    .order-form,
    .contact-info,
    .contact-form {
        padding: 15px;
    }

    .form-group label,
    .contact-form label {
        font-size: 13px;
    }

    .form-group select,
    .form-group input,
    .form-group textarea,
    .contact-form input,
    .contact-form textarea {
        font-size: 12px;
        padding: 8px;
    }

    .order-button,
    .contact-form .cta-button {
        font-size: 14px;
        padding: 10px 20px;
    }

    .brand-card {
        font-size: 16px;
        padding: 15px;
    }

    .map-container iframe {
        height: 300px;
    }

    .footer-contact h4,
    .footer-links h4 {
        font-size: 14px;
    }

    .footer-contact p,
    .footer-links ul li a {
        font-size: 12px;
    }

    .footer-bottom p {
        font-size: 10px;
    }
}