/* ===================================
   HERO SLIDER SECTION - HORIZONTAL SLIDE
   =================================== */

.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%); /* Start from right */
    transition: transform 1s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 2rem;
    visibility: hidden;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0) !important; /* Move to center */
    z-index: 2;
    visibility: visible;
}

.hero-slide.prev {
    transform: translateX(-100%) !important; /* Exit to left */
    opacity: 0;
    z-index: 1;
    visibility: visible;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Add parallax effect to background */
.hero-slide.active .slide-background {
    animation: zoomIn 8s ease-out forwards;
}

@keyframes zoomIn {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(15, 52, 96, 0.85), 
        rgba(32, 78, 120, 0.75));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-slide h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-slide p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Slider Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background: var(--white);
    border: 2px solid var(--accent);
    width: 40px;
    border-radius: 6px;
}

/* ===================================
   RESPONSIVE STYLES FOR HERO SLIDER
   =================================== */

@media (max-width: 768px) {
    .hero-slider {
        min-height: 500px;
    }
    
    .hero-slide h1 {
        font-size: 2.5rem;
    }
    
    .hero-slide p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .slider-dots {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-slide h1 {
        font-size: 2rem;
    }
    
    .hero-slide p {
        font-size: 1rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .dot.active {
        width: 30px;
    }
}

/* ===================================
   CSS VARIABLES & RESET - MODERN COLORS
   =================================== */
:root {
    /* Primary Colors - Modern Blue/Teal Palette */
    --primary: #0f3460;          /* Deep Navy Blue */
    --primary-light: #16213e;    /* Slightly lighter navy */
    --primary-dark: #0a2647;     /* Darker navy */
    
    /* Accent Colors - Vibrant Coral/Orange */
    --accent: #e94560;           /* Vibrant Coral Red */
    --accent-hover: #d63447;     /* Darker coral on hover */
    --accent-light: #ff6b81;     /* Light coral */
    
    /* Secondary Accent - Teal */
    --secondary: #2ec4b6;        /* Modern Teal */
    --secondary-light: #45c5b8;  /* Light teal */
    
    /* Neutral Colors */
    --light: #f8f9fa;
    --light-gray: #e9ecef;
    --dark: #1a1a1a;
    --dark-gray: #495057;
    --white: #ffffff;
    
    /* Shadows */
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.2);
    --shadow-primary: rgba(15, 52, 96, 0.2);
    --shadow-accent: rgba(233, 69, 96, 0.3);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.section-title {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: var(--dark-gray);
    font-weight: 300;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--shadow-accent);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-full {
    width: 100%;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}

/* Theme Toggle Button start gemini */
.theme-toggle {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    margin-left: 15px;
}

.theme-toggle:hover {
    background: var(--white);
    color: var(--primary);
}

/* When header is scrolled, adjust button color */
header.scrolled .theme-toggle {
    border-color: var(--dark);
    color: var(--dark);
}

header.scrolled .theme-toggle:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .theme-toggle {
        margin: 10px auto;
        border-color: var(--primary);
        color: var(--primary);
    }
}

/* ===================================
   HEADER / NAVIGATION
   =================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    transition: var(--transition);
    background: transparent;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

header.scrolled {
    background: var(--white);
    box-shadow: 0 2px 20px var(--shadow);
}

header.scrolled .container {
    padding: 0.5rem 2rem;
}

.logo img {
    height: 90px;
    transition: var(--transition);
}

header.scrolled .logo img {
    height: 60px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

header.scrolled .nav-menu a {
    color: var(--dark);
}

.btn-quote {
    background: var(--accent);
    color: var(--white) !important;
    padding: 0.7rem 1.8rem;
    border-radius: 30px;
}

.btn-quote::after {
    display: none;
}

.btn-quote:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px var(--shadow-accent);
}

.burger-menu {
    display: none;
    font-size: 1.8rem;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    z-index: 1001;
}

header.scrolled .burger-menu {
    color: var(--primary);
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services {
    padding: 6rem 0;
    background: var(--white);
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-bottom: 5px solid transparent;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.card:hover {
    transform: translateY(-15px);
    border-bottom: 5px solid var(--accent);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.card:hover::before {
    opacity: 0.05;
}

.card-icon {
    position: relative;
    z-index: 1;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
}

.card-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.card h3 {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.card p {
    position: relative;
    z-index: 1;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    position: relative;
    z-index: 1;
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.service-features i {
    color: var(--secondary);
    font-size: 0.9rem;
}

/* ===================================
   WHY CHOOSE US SECTION
   =================================== */

.why-choose-us {
    padding: 100px 0;
    background-color: #f8fafc; /* Very light subtle gray */
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.title-accent {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 15px auto;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    padding: 10px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.03);
    border-radius: 20px; /* Rounded modern corners */
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Suble hover lift */
.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: var(--primary);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(var(--primary-rgb), 0.1); /* Assuming you have a primary RGB variable */
    color: var(--primary);
    border-radius: 50%; /* Circular icons look more "boutique" */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: 0.3s ease;
}

.feature-card:hover .icon-wrapper {
    background: var(--primary);
    color: #fff;
}

.icon-wrapper i {
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b; /* Deep slate instead of pure black */
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 0;
    }
}
/* ===================================
   CONTACT SECTION - MODERN DESIGN
   =================================== */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(46, 196, 182, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(233, 69, 96, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact .section-title,
.contact .section-subtitle {
    color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form {
    padding: 2.5rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(46, 196, 182, 0.3);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.info-item i {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-top: 0.3rem;
}

.info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.info-item p {
    font-size: 1rem;
    opacity: 0.9;
}
/*sucess and error message styles for contact */
.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(46, 196, 182, 0.15);
    border: 1px solid #2ec4b6;
    border-radius: 10px;
    padding: 15px 20px;
    color: #2ec4b6;
    font-size: 0.95rem;
    margin-bottom: 15px;
    animation: fadeIn 0.5s ease;
}

.form-error {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(233, 69, 96, 0.15);
    border: 1px solid #e94560;
    border-radius: 10px;
    padding: 15px 20px;
    color: #e94560;
    font-size: 0.95rem;
    margin-bottom: 15px;
    animation: fadeIn 0.5s ease;
}

.form-success i,
.form-error i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--accent);
    transform: translateX(5px);
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

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

.footer-bottom a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--accent);
}

/* ===================================
   WHATSAPP FLOAT BUTTON
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.8);
    }
}




/* ===================================
   FIXED SERVICE CARD STYLE
   =================================== */
.service-card {
    position: relative; /* Essential for positioning the icon */
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: var(--transition);
    text-align: left;
    display: flex;
    flex-direction: column;
    overflow: visible; /* Allows the icon to pop out if needed */
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.card-image {
    height: 220px; /* Slightly taller for better look */
    width: 100%;
    position: relative;
    overflow: hidden; /* Keeps the zoom effect inside */
    border-radius: 12px 12px 0 0; /* Rounds only top corners */
}

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

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

/* FIX: Icon is now positioned relative to the CARD, not the image */
.icon-overlay {
    position: absolute;
    top: 190px; /* 220px image height - 30px (half icon height) */
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 10; /* Ensures it sits on top */
}

.card-content {
    padding: 2.5rem 1.5rem 1.5rem;
}

.card-content h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.read-more {
    text-decoration: none;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
    cursor: pointer; /* Ensures it looks clickable */
}

.read-more:hover {
    gap: 15px;
}

/* FIX: Makes the link jump land correctly below the fixed header */
#contact {
    scroll-margin-top: 120px; /* Adjust based on your header height */
}

/* Google Logo Fix in Reviews */
.g-icon {
    font-size: 1.5rem;
    color: #4285F4; /* Google Blue */
    margin-left: auto;
}

/* ===================================
   REVIEWS SECTION (Google Style)
   =================================== */
.reviews {
    padding: 5rem 0;
    background: var(--light);
}

.review-header {
    text-align: center;
    margin-bottom: 3rem;
}

.google-rating {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.google-rating span {
    font-weight: 800;
    letter-spacing: 2px;
    color: #fbbc05; /* Google Star Yellow */
}

.stars i, .stars-small i {
    color: #fbbc05;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.user-info h4 {
    font-size: 1rem;
    margin: 0;
    color: var(--dark); /* Uses your variable */
}

.g-icon {
    font-size: 1.5rem;
    color: #4285F4; /* Google Blue */
    margin-left: auto;
}

.review-text {
    font-style: italic;
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===================================
   CONTACT & MAP SPLIT LAYOUT
   =================================== */
.contact-map-section {
    width: 100%;
}

.split-layout {
    display: flex;
    flex-wrap: wrap;
    min-height: 600px;
}

.contact-left {
    flex: 1;
    min-width: 400px;
    background: var(--accent); /* Your Brand Red/Coral */
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.contact-right {
    flex: 1;
    min-width: 400px;
    position: relative;
    background: #e9e9e9;
}

.form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.form-header p {
    margin-bottom: 2rem;
    opacity: 0.9;
    color: white;
}

.modern-form .input-group {
    margin-bottom: 1rem;
}

.modern-form input, 
.modern-form select, 
.modern-form textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    background: white;
    font-family: 'Poppins', sans-serif;
}

.btn-submit {
    background: var(--primary); /* Brand Blue */
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    width: 100%;
    margin-top: 1rem;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.map-info-box {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 250px;
}

.map-info-box .info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    font-weight: 500;
}

.map-info-box i {
    color: var(--accent);
}

/* Mobile Responsive Fix */
@media (max-width: 768px) {
    .split-layout {
        flex-direction: column;
    }
    .contact-left {
        padding: 3rem 1.5rem;
        min-width: 100%;
    }
    .contact-right {
        height: 400px;
        min-width: 100%;
    }
}

/* ===================================
   SECTORS SECTION (Adapted to Site Colors)
   =================================== */
.sectors-section {
    /* CHANGED: Green -> Your Primary Blue Gradient */
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 5rem 0;
    color: var(--white);
    text-align: center;
    position: relative;
}

/* Helper to force white text in this section */
.text-white {
    color: var(--white) !important;
}

/* Grid Layout for Circles */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
    justify-items: center;
}

.sector-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 200px;
    cursor: pointer; /* Indicates interactivity */
}

/* Circular Images */
.sector-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255,255,255,0.2);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: var(--transition);
}

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

/* HOVER EFFECT: Border turns Red (Accent) */
.sector-item:hover .sector-img {
    transform: scale(1.05);
    border-color: var(--accent); /* CHANGED: White -> Your Accent Red */
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.sector-item:hover .sector-img img {
    transform: scale(1.1);
}

.sector-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition);
}

.sector-item:hover h3 {
    color: var(--accent); /* Text turns red on hover */
}

/* Bottom CTA Area */
.sectors-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.btn-white-pill {
    background: var(--white);
    color: var(--primary); /* CHANGED: Green Text -> Blue Text */
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-white-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    background: var(--accent); /* Hover Background -> Red */
    color: var(--white);       /* Hover Text -> White */
}

.sectors-promise h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--white);
}

.sectors-promise p {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    color: var(--white);
}

/* Mobile Fixes */
@media (max-width: 768px) {
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .sector-img {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}