/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #FF8542;
    --dark-navy: #1a1d2e;
    --darker-navy: #0f1117;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --light-text: #a0a3b1;
    --dark-text: #2d3748;
    --blue: #4169E1;
    --green: #10b981;
    --purple: #8b5cf6;
    --red: #ef4444;
    --amber: #f59e0b;
    --cyan: #06b6d4;
    --indigo: #6366f1;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}




@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    25% {
        transform: translateY(-30px) translateX(20px);
    }

    50% {
        transform: translateY(-60px) translateX(-20px);
    }

    75% {
        transform: translateY(-30px) translateX(20px);
    }
}

@keyframes drop {
    0% {
        top: -10%;
        opacity: 0.5;
    }

    100% {
        top: 110%;
        opacity: 0;
    }
}

@keyframes zap {

    0%,
    90%,
    100% {
        opacity: 0;
    }

    92%,
    98% {
        opacity: 0.8;
    }

    94%,
    96% {
        opacity: 0.3;
    }
}

/* ===== NAVIGATION ===== */
.navbar {
    background: var(--darker-navy);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.footer-logo-image {
    height: 36px;
    width: auto;
    object-fit: contain;
    margin-right: 10px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
}

/* Hide old icon */
.footer-logo .logo-icon {
    display: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .footer-logo-image {
        height: 30px;
    }
}


.logo-image {
    height: 40px;
    /* Adjust based on your navbar height */
    width: auto;
    object-fit: contain;
    margin-right: 10px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .logo-image {
        height: 32px;
        /* Slightly smaller on mobile */
    }
}

/* Ensure the logo div maintains flex layout */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Remove the old logo-icon styles if they exist */
.logo-icon {
    display: none;
    /* This hides the old icon */
}


.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-icon {
    background: var(--primary-orange);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    transition: color 0.3s;
}

.mobile-menu-btn:hover {
    color: var(--primary-orange);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-orange);
}



/* ===== BUTTONS ===== */
.btn {
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn i {
    font-size: 14px;
}

.btn-primary {
    background: var(--primary-orange);
    color: var(--white);
}

.btn-primary:hover {
    background: #ff7028;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 133, 66, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-navy);
}

.btn-white {
    background: var(--white);
    color: var(--primary-orange);
    font-weight: 600;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== HERO SECTION (DARK) ===== */
/* .hero {
    background-color: #1a1a1a;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('images/client.png');
    background-size: contain;
    background-position: left bottom;
    background-repeat: no-repeat;
    position: relative;
    min-height: 100vh;
} */

.hero {
    background-color: #1a1a1a;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('images/client.png');
    background-repeat: no-repeat;
    background-position: -30% 20%;
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}


.hero-content {
    padding-top: 10px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
.hero-content-box{
    padding-top: 25px;
}

.badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 133, 66, 0.1);
    color: var(--primary-orange);
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(32px, 8vw, 64px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
}

.highlight {
    color: var(--primary-orange);
}

.highlight-orange {
    color: var(--primary-orange);
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--light-text);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

/* Hero section positioning */
.hero {
    position: relative;
    overflow: hidden;
}

/* Animated background container */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Ensure content stays above animation */
.hero .container,
.hero .stats-section {
    position: relative;
    z-index: 1;
}

/* Animated shapes */
.animated-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

/* Individual shape styles and animations */
.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    top: -100px;
    left: -100px;
    animation: float-1 20s infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #ff8c42, #ffa600);
    top: 20%;
    right: -150px;
    animation: float-2 25s infinite;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #ff6b35, #ff5722);
    bottom: 10%;
    left: 10%;
    animation: float-3 18s infinite;
}

.shape-4 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #ffa600, #ff6b35);
    bottom: -100px;
    right: 20%;
    animation: float-4 22s infinite;
}

.shape-5 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #ff8c42, #ff6b35);
    top: 50%;
    left: 50%;
    animation: float-5 16s infinite;
}


/* Keyframe animations */
@keyframes float-1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(100px, 50px) scale(1.1);
    }

    50% {
        transform: translate(200px, 100px) scale(0.9);
    }

    75% {
        transform: translate(100px, 150px) scale(1.05);
    }
}

@keyframes float-2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-150px, 80px) scale(1.15);
    }

    66% {
        transform: translate(-100px, -50px) scale(0.95);
    }
}

@keyframes float-3 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(150px, -100px) rotate(180deg);
    }
}

@keyframes float-4 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(-80px, -60px) scale(1.1);
    }

    50% {
        transform: translate(-160px, -120px) scale(0.9);
    }

    75% {
        transform: translate(-80px, -180px) scale(1.05);
    }
}

@keyframes float-5 {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }

    25% {
        transform: translate(-30%, -30%) scale(1.2) rotate(90deg);
    }

    50% {
        transform: translate(-70%, -30%) scale(0.8) rotate(180deg);
    }

    75% {
        transform: translate(-30%, -70%) scale(1.1) rotate(270deg);
    }
}

/* Mobile optimization */
@media (max-width: 768px) {
    .animated-shape {
        filter: blur(40px);
        opacity: 0.25;
    }

    .shape-1,
    .shape-2,
    .shape-3,
    .shape-4,
    .shape-5 {
        width: 200px;
        height: 200px;
    }
}

/* Professional Animated Background Container */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.hero {
    position: relative;
}

.hero-content,
.stats-section {
    position: relative;
    z-index: 1;
}

/* Corporate Color Palette */
:root {
    --corporate-gold: #C5A572;
    --corporate-blue: #1E3A8A;
    --electric-cyan: #06B6D4;
    --accent-amber: #F59E0B;
    --neutral-slate: #64748B;
}

/* SVG Shape Base Styles */
.floating-shape {
    position: absolute;
    opacity: 0.15;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

/* Light Bulb Shapes */
.bulb-shape {
    width: 60px;
    height: 60px;
    color: var(--corporate-gold);
    filter: drop-shadow(0 0 8px rgba(197, 165, 114, 0.3));
}

.bulb-shape-1 {
    top: 12%;
    left: 8%;
    animation: professional-float 8s ease-in-out infinite;
    animation-delay: 0s;
}

.bulb-shape-2 {
    top: 55%;
    right: 12%;
    width: 50px;
    height: 50px;
    animation: professional-float 10s ease-in-out infinite;
    animation-delay: 2s;
}

.bulb-shape-3 {
    top: 75%;
    left: 15%;
    width: 45px;
    height: 45px;
    animation: professional-float 9s ease-in-out infinite;
    animation-delay: 4s;
}

/* Electricity Bolt Shapes */
.bolt-shape {
    width: 50px;
    height: 50px;
    color: var(--electric-cyan);
    filter: drop-shadow(0 0 10px rgba(6, 182, 212, 0.25));
}

.bolt-shape-1 {
    top: 25%;
    right: 20%;
    animation: diagonal-drift 12s ease-in-out infinite;
    animation-delay: 1s;
}

.bolt-shape-2 {
    top: 68%;
    left: 35%;
    width: 40px;
    height: 40px;
    animation: diagonal-drift 11s ease-in-out infinite;
    animation-delay: 3s;
}

/* Meter/Gauge Shapes */
.meter-shape {
    width: 55px;
    height: 55px;
    color: var(--corporate-blue);
    filter: drop-shadow(0 0 6px rgba(30, 58, 138, 0.2));
}

.meter-shape-1 {
    top: 35%;
    left: 25%;
    animation: rotate-float 15s linear infinite;
    animation-delay: 0s;
}

.meter-shape-2 {
    top: 82%;
    right: 18%;
    width: 48px;
    height: 48px;
    animation: rotate-float 13s linear infinite;
    animation-delay: 5s;
}

/* Circuit Nodes */
.circuit-node {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-amber);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
    animation: pulse-node 3s ease-in-out infinite;
}

.node-1 {
    top: 18%;
    left: 45%;
    animation-delay: 0s;
}

.node-2 {
    top: 48%;
    right: 35%;
    animation-delay: 0.7s;
}

.node-3 {
    top: 65%;
    left: 55%;
    animation-delay: 1.4s;
}

.node-4 {
    top: 30%;
    right: 8%;
    animation-delay: 2.1s;
}

/* Geometric Particles */
.geo-particle {
    position: absolute;
    opacity: 0.12;
}

.particle-hex-1,
.particle-hex-2 {
    width: 30px;
    height: 26px;
    background: var(--electric-cyan);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.particle-hex-1 {
    top: 20%;
    left: 65%;
    animation: geometric-float 14s ease-in-out infinite;
}

.particle-hex-2 {
    top: 60%;
    right: 25%;
    width: 25px;
    height: 22px;
    animation: geometric-float 16s ease-in-out infinite;
    animation-delay: 3s;
}

.particle-square-1,
.particle-square-2 {
    width: 22px;
    height: 22px;
    background: var(--corporate-gold);
    border-radius: 3px;
}

.particle-square-1 {
    top: 42%;
    left: 12%;
    animation: rotate-drift 18s linear infinite;
}

.particle-square-2 {
    top: 78%;
    right: 40%;
    width: 18px;
    height: 18px;
    animation: rotate-drift 20s linear infinite;
    animation-delay: 4s;
}

.particle-triangle-1 {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 26px solid var(--neutral-slate);
    top: 50%;
    right: 8%;
    animation: geometric-float 12s ease-in-out infinite;
    animation-delay: 2s;
}

/* Professional Keyframe Animations */
@keyframes professional-float {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.12;
    }

    25% {
        transform: translateY(-25px) translateX(15px);
        opacity: 0.18;
    }

    50% {
        transform: translateY(-40px) translateX(-10px);
        opacity: 0.22;
    }

    75% {
        transform: translateY(-20px) translateX(20px);
        opacity: 0.15;
    }
}

@keyframes diagonal-drift {

    0%,
    100% {
        transform: translate(0, 0);
        opacity: 0.15;
    }

    50% {
        transform: translate(-30px, -50px);
        opacity: 0.25;
    }
}

@keyframes rotate-float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.15;
    }

    50% {
        transform: translateY(-35px) rotate(180deg);
        opacity: 0.2;
    }
}

@keyframes pulse-node {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.4;
        box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
    }

    50% {
        transform: scale(1.3);
        opacity: 0.8;
        box-shadow: 0 0 20px rgba(245, 158, 11, 0.6);
    }
}

@keyframes geometric-float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.1;
    }

    33% {
        transform: translateY(-40px) translateX(-20px);
        opacity: 0.18;
    }

    66% {
        transform: translateY(-25px) translateX(25px);
        opacity: 0.14;
    }
}

@keyframes rotate-drift {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.12;
    }

    100% {
        transform: translateY(-60px) rotate(360deg);
        opacity: 0.12;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .floating-shape {
        width: 40px !important;
        height: 40px !important;
    }

    .bulb-shape-3,
    .bolt-shape-2,
    .meter-shape-2 {
        display: none;
    }

    .geo-particle {
        transform: scale(0.7);
    }

    .circuit-node {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {

    .particle-hex-2,
    .particle-square-2,
    .particle-triangle-1 {
        display: none;
    }
}

/* Add these improvements to your existing styles */

/* Better mobile breakpoints */
@media (max-width: 768px) {
    .registration-hero h1 {
        font-size: 1.75rem;
        padding: 0 15px;
    }
    
    .breadcrumb {
        font-size: 0.85rem;
    }
    
    .registration-section {
        padding: 40px 0;
    }
    
    .registration-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .registration-info,
    .registration-form-wrapper {
        padding: 25px 20px;
    }
    
    .registration-info h2 {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    /* Larger touch targets for mobile */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .submit-btn {
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    /* Better radio button spacing on mobile */
    .radio-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .radio-option label {
        padding: 14px 20px;
    }
    
    /* Improved section titles */
    .section-title {
        font-size: 1.1rem;
    }
    
    .info-list li {
        font-size: 0.9rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .registration-hero {
        padding: 50px 0 40px;
    }
    
    .registration-hero h1 {
        font-size: 1.5rem;
    }
    
    .registration-form-wrapper h3 {
        font-size: 1.4rem;
    }
    
    .form-subtitle {
        font-size: 0.9rem;
    }
    
    .contact-box {
        padding: 20px;
    }
    
    .contact-box h4 {
        font-size: 1.1rem;
    }
}

/* Landscape orientation fix */
@media (max-width: 968px) and (orientation: landscape) {
    .registration-section {
        padding: 40px 0;
    }
}

/* Improve touch targets - minimum 44px recommended */
.checkbox-group input[type="checkbox"] {
    min-width: 20px;
    min-height: 20px;
}

.radio-option input[type="radio"] {
    min-width: 20px;
    min-height: 20px;
}

/* Prevent horizontal scroll on small screens */
body {
    overflow-x: hidden;
}

.registration-container {
    overflow-x: hidden;
}


/* ===== STATS SECTION (DARK) ===== */
.stats-section {
    padding: 40px 0 60px;
    background: var(--dark-navy);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    white-space: nowrap;
}

/* FIX FOR 24/7 DISPLAY */
.stat-247 {
    display: inline-block;
    white-space: nowrap;
}

.stat-247 .slash {
    font-weight: 700;
}

.stat-label {
    color: var(--light-text);
    font-size: 16px;
}

/* ===== SECTION STYLES ===== */
.section-tag {
    color: var(--primary-orange);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-tag.center {
    text-align: center;
}

.section-title {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.section-title.center {
    text-align: center;
}

.section-subtitle {
    font-size: clamp(16px, 2vw, 18px);
    margin-bottom: 60px;
}

.section-subtitle.center {
    text-align: center;
}

/* ===== ABOUT SECTION (LIGHT/WHITE) ===== */
.about-section {
    background: var(--light-bg);
    padding: 80px 0;
    position: relative;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
}

.about-section .section-title {
    color: var(--dark-navy);
}

.about-text {
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    color: var(--white);
}

.feature-icon.orange {
    background: var(--primary-orange);
}

.feature-text h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--dark-navy);
}

.feature-text p {
    font-size: 14px;
    color: #4a5568;
}

.about-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.image-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.image-card.large {
    grid-column: span 2;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--primary-orange);
}

.image-card.large span {
    font-size: clamp(16px, 2vw, 18px);
    color: #4a5568;
    font-weight: 400;
}

.image-card.medium {
    min-height: 200px;
    background: linear-gradient(135deg, var(--dark-navy), var(--primary-orange));
}

.image-card.certified {
    background: var(--primary-orange);
    color: var(--white);
}

.cert-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

/* ===== SERVICES SECTION (WHITE) ===== */
.services-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.services-section .section-title {
    color: var(--dark-navy);
}

.services-section .section-subtitle {
    color: #4a5568;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--white);
}

.service-icon.blue {
    background: var(--blue);
}

.service-icon.orange {
    background: var(--primary-orange);
}

.service-icon.green {
    background: var(--green);
}

.service-icon.purple {
    background: var(--purple);
}

.service-icon.red {
    background: #dc2626;
}

.service-icon.amber {
    background: var(--amber);
}

.service-icon.cyan {
    background: var(--cyan);
}

.service-icon.indigo {
    background: var(--indigo);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-navy);
}

.service-card p {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.6;
}



/* ===== WHY CHOOSE US SECTION (DARK) ===== */
.why-section {
    padding: 80px 0;
    background: var(--dark-navy);
    position: relative;
}

.why-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
}

.why-section .section-title {
    color: var(--white);
}

.why-text {
    color: var(--light-text);
    margin-bottom: 30px;
    line-height: 1.8;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--light-text);
}

.check-icon {
    width: 24px;
    height: 24px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 12px;
}

.why-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.stat-card {
    background: var(--darker-navy);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.stat-card-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--primary-orange);
}

.stat-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--white);
}

.stat-card p {
    color: var(--light-text);
    font-size: 14px;
}

/* ===== NEWSLETTER SECTION (WHITE) ===== */
.newsletter-section {
    padding: 80px 0;
    background: var(--white);
}

.newsletter-box {
    background: var(--primary-orange);
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.newsletter-content h2 {
    font-size: clamp(24px, 4vw, 32px);
    margin-bottom: 10px;
    color: var(--white);
}

.newsletter-content p {
    font-size: clamp(14px, 2vw, 16px);
    opacity: 0.9;
    color: var(--white);
}

.newsletter-form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    padding: 14px 20px;
    border-radius: 8px;
    border: none;
    min-width: 250px;
    font-size: 16px;
    flex: 1;
}

/* ===== CONTACT SECTION (LIGHT) ===== */
.contact-section {
    padding: 80px 0;
    background: var(--light-bg);
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.contact-heading {
    font-size: clamp(24px, 4vw, 32px);
    margin-bottom: 30px;
    color: var(--dark-navy);
}

.info-card {
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    color: var(--white);
}

.info-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark-navy);
}

.info-content p {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.6;
}

.map-container {
    margin-top: 30px;
}

.map-placeholder {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.map-text {
    color: #4a5568;
    font-size: 14px;
}

.map-text i {
    color: var(--primary-orange);
    margin-right: 5px;
}

.contact-form-box {
    background: var(--dark-navy);
    padding: 40px;
    border-radius: 20px;
}

.form-heading {
    font-size: clamp(24px, 4vw, 28px);
    margin-bottom: 10px;
    color: var(--white);
}

.form-subheading {
    color: var(--light-text);
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    margin-bottom: 20px;
}

.form-group label {
    margin-bottom: 8px;
    color: var(--light-text);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--darker-navy);
    color: var(--white);
    font-size: 16px;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--light-text);
}

.form-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light-text);
    font-size: 14px;
}

.badge-icon {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 18px;
}

/* ===== ALT CONTACT SECTION (WHITE) ===== */
.alt-contact-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.alt-contact-section .section-title {
    color: var(--dark-navy);
}

.alt-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.alt-contact-card {
    background: var(--light-bg);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.alt-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    color: var(--white);
}

.alt-contact-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-navy);
}

.alt-contact-card p {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.6;
}

.quick-contact-box {
    background: var(--dark-navy);
    padding: 40px;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.quick-contact-content h3 {
    font-size: clamp(20px, 3vw, 24px);
    margin-bottom: 10px;
    color: var(--white);
}

.quick-contact-content p {
    color: var(--light-text);
}

.quick-contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quick-contact-form input,
.quick-contact-form textarea {
    padding: 14px 18px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--darker-navy);
    color: var(--white);
    font-size: 16px;
    font-family: inherit;
}

/* ===== FOOTER (DARK) ===== */
.footer {
    background: var(--darker-navy);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--dark-navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 16px;
}

.social-icon:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.footer-contact p {
    color: var(--light-text);
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-contact strong {
    color: var(--white);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
}

.footer-bottom p {
    color: var(--light-text);
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-bottom-links a {
    color: var(--light-text);
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: var(--primary-orange);
}

/* ===== MOBILE MENU STYLES ===== */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--darker-navy);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        font-size: 18px;
    }

    .about-images {
        grid-template-columns: 1fr;
    }

    .image-card.large {
        grid-column: span 1;
    }
}

/* ===== RESPONSIVE ENHANCEMENTS ===== */
@media (min-width: 769px) {
    .about-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .why-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr 1.5fr;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .newsletter-box {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
        align-items: center;
    }

    .quick-contact-box {
        grid-template-columns: 1fr 2fr;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .alt-contact-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}


@media (max-width: 800px) {
    .hero {
        padding: 20px 0 0;
    }

    option {
        scale: 0.5
    }
}