/*
    VYOMN PROJECCTS - Premium Industrial Corporate Design System
    Pure CSS / No JS
*/

:root {
    /* Color Palette - Industrial Premium */
    --primary-color: #0F172A;
    /* Deep Navy Blue (Slate 900) */
    --secondary-color: #334155;
    /* Dark Grey (Slate 700) */
    --accent-color: #F97316;
    /* Vibrant Orange (Orange 500) */
    --accent-hover: #EA580C;
    /* Darker Orange (Orange 600) */
    --text-primary: #1E293B;
    /* Dark Text (Slate 800) */
    --text-secondary: #64748B;
    /* Muted Text (Slate 500) */
    --light-bg: #F8FAFC;
    /* Off-white (Slate 50) */
    --white: #FFFFFF;
    --border-color: #E2E8F0;
    /* Light Border (Slate 200) */
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-footer: rgba(15, 23, 42, 0.98);

    /* Typography */
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Manrope', sans-serif;

    /* Spacing & Sizing */
    --container-width: 1280px;
    --header-height: 80px;
    --border-radius: 8px;
    --transition-speed: 0.3s;
}

/* =========================================
   Reset & Base Styles
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed) ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   Utility Classes
   ========================================= */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all var(--transition-speed) ease;
    cursor: pointer;
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    box-shadow: 0 4px 6px -1px rgba(249, 115, 22, 0.2);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.3);
}

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

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

/* =========================================
   Header & Navigation
   ========================================= */
.header {
    background-color: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    height: var(--header-height);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.container-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.header-logo-img {
    height: 64px;
    /* Adjust based on actual logo aspect ratio */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.header-logo-img:hover {
    transform: scale(1.05);
}

.footer-logo-img {
    height: 80px;
    /* Larger for footer */
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 1;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-list {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    color: var(--secondary-color);
    padding: 8px 0;
    position: relative;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}


/* Underline Animation for Nav Links */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: width var(--transition-speed) ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Services Button (styled as link on desktop) */
.nav-link-button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    padding: inherit;
    position: relative;
}

.nav-link-button::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: width var(--transition-speed) ease;
}

.nav-link-button:hover::after {
    width: 100%;
}

/* Mega Menu Dropdown */
.has-dropdown {
    position: relative;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.dropdown-icon {
    font-size: 0.75rem;
    margin-left: 4px;
    transition: transform var(--transition-speed) ease;
}

.has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: 100%;
    /* Align below header */
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 100vw;
    /* Full width */
    max-width: var(--container-width);
    background-color: var(--white);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed) ease;
    border-top: 2px solid var(--accent-color);
    padding: 40px 0;
    z-index: 999;
}

.has-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /* 3 Columns */
    gap: 40px;
}

/* Hide All Services button on desktop */
.all-services-column {
    display: none;
}


.mega-heading {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

.mega-heading i {
    color: var(--accent-color);
}

.mega-list li {
    margin-bottom: 12px;
}

.mega-list a {
    color: var(--secondary-color);
    font-size: 0.95rem;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: block;
}

.mega-list a:hover {
    color: var(--accent-color);
    padding-left: 6px;
    /* Subtle nudge on hover */
}

/* Featured Box in Mega Menu */
.featured-box {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.featured-img-placeholder {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    opacity: 0.8;
    background-size: cover;
    background-position: center;
}

.featured-box h5 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.featured-box p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.link-arrow {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.link-arrow:hover i {
    transform: translateX(4px);
}

/* Mobile Toggle (Hidden by default) */
.nav-toggle,
.nav-toggle-label {
    display: none;
}

/* =========================================
   Hero Section (Placeholder)
   ========================================= */
.hero-placeholder {
    height: 90vh;
    /* Full viewport height minus header */
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.7)), url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
    margin-top: -1px;
    /* Stitch with header border */
}

.hero-content {
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Grid Overlay */
.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 1;
}

/* =========================================
   Floating Buttons
   ========================================= */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 15px -3px rgba(37, 211, 102, 0.3);
}

/* =========================================
   Footer (Premium Design)
   ========================================= */
.footer {
    background-color: var(--glass-footer);
    color: var(--white);
    padding: 80px 0 0 0;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-heading {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: var(--white);
    font-weight: 700;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 24px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 300px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

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

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-list i {
    color: var(--accent-color);
    margin-top: 5px;
}

.footer-bottom {
    padding: 24px 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 24px;
}

/* =========================================
   Responsive Media Queries
   ========================================= */

/* Tablet & Mobile */
@media screen and (max-width: 1024px) {
    :root {
        --container-width: 100%;
        --header-height: 70px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .nav-list {
        display: none;
        /* Hide desktop menu */
    }

    .btn-nav {
        display: none;
        /* Hide header button on mobile initially, or move it */
    }

    /* Mobile Hamburger Menu Logic (CSS Only) */
    .nav-toggle-label {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        cursor: pointer;
        z-index: 1002;
    }

    .nav-toggle-label span,
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        display: block;
        background-color: var(--primary-color);
        height: 3px;
        width: 28px;
        border-radius: 2px;
        position: relative;
        transition: all 0.3s ease-in-out;
    }

    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        content: '';
        position: absolute;
    }

    .nav-toggle-label span::before {
        transform: translateY(-8px);
    }

    .nav-toggle-label span::after {
        transform: translateY(8px);
    }

    /* Transform hamburger to X when checked */
    .nav-toggle:checked+.nav-toggle-label span {
        background-color: transparent;
    }

    .nav-toggle:checked+.nav-toggle-label span::before {
        transform: rotate(45deg);
    }

    .nav-toggle:checked+.nav-toggle-label span::after {
        transform: rotate(-45deg);
    }

    /* Mobile Menu Drawer */
    .nav-menu {
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        display: block;
        /* Override flex */
    }

    /* Show menu when checkbox is checked */
    .nav-toggle:checked~.nav-menu {
        max-height: 100vh;
        /* Large enough to fit content */
        overflow-y: auto;
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link {
        display: block;
        padding: 16px 20px;
        width: 100%;
    }

    .nav-link::after {
        display: none;
        /* No underline animation on mobile */
    }

    /* Mobile Mega Menu handling */
    .has-dropdown {
        height: auto;
        flex-direction: column;
        align-items: flex-start;
    }

    /* Make Mega Menu static for mobile to just list items */
    .mega-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
        padding: 0 !important;
        border-top: none !important;
        display: none;
        width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 !important;
        /* Hidden by default, could use another checkbox hack for nested toggle, but keeping simple for now: Always show or hover? */
    }

    .has-dropdown:hover .mega-menu {
        display: block;
        padding: 16px 0 !important;
    }

    .mega-menu-content {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .mega-column {
        padding: 0 !important;
        margin: 0 0 20px 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .mega-list {
        padding: 0 !important;
        margin: 0 !important;
    }

    .mega-list a {
        padding: 10px 0 !important;
        display: block !important;
    }

    .featured-box {
        display: none;
        /* Hide featured box on mobile to save space */
    }

    /* Footer Grid */
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .brand-column,
    .contact-column {
        grid-column: span 2;
    }
}

@media screen and (max-width: 640px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .brand-column,
    .contact-column {
        grid-column: span 1;
    }

    .brand-logo {
        justify-content: flex-start;
    }

    .footer-desc {
        margin: 0 0 24px 0;
    }

    .social-icons {
        justify-content: flex-start;
    }

    .contact-list li {
        justify-content: flex-start;
        text-align: left;
        flex-direction: row;
        align-items: flex-start;
        gap: 15px;
    }

    .bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: left;
        align-items: flex-start;
    }
}

/* =========================================
   Trust Banner Section
   ========================================= */
.trust-banner {
    background-color: var(--white);
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.trust-item {
    padding: 20px;
}

.trust-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 8px;
}

.trust-label {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* =========================================
   Section Layouts
   ========================================= */
.section {
    padding: 100px 0;
}

.section-bg {
    background-color: var(--light-bg);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 800;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* =========================================
   Services Overview (Cards)
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--accent-color);
}

.service-img {
    height: 240px;
    width: 100%;
    object-fit: cover;
}

.service-content {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(249, 115, 22, 0.1);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.service-desc {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 0.95rem;
    flex-grow: 1;
}

/* =========================================
   Why Choose Us
   ========================================= */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-content {
    padding-right: 20px;
}

.feature-list {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.feature-icon-box {
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.why-image-wrapper {
    position: relative;
}

.why-img-main {
    border-radius: var(--border-radius);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.why-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.4);
    text-align: center;
}

.badge-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
}

/* =========================================
   Process Section
   ========================================= */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

/* Connecting Line */
.process-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50px;
    right: 50px;
    height: 2px;
    background-color: var(--border-color);
    z-index: 0;
    display: none;
    /* Hide for now, needs complex adjusting for responsive */
}

/* Simple logic for desktop line */
@media screen and (min-width: 1025px) {
    .process-grid::before {
        display: block;
    }
}

.process-card {
    text-align: center;
    position: relative;
    z-index: 1;
    background-color: var(--light-bg);
    /* Match section bg to hide line if needed, or transparent */
    padding: 20px;
}

.process-step {
    width: 80px;
    height: 80px;
    background-color: var(--white);
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.process-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.process-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* =========================================
   Testimonials
   ========================================= */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: rgba(249, 115, 22, 0.1);
    /* transparent accent */
    position: absolute;
    top: 20px;
    right: 30px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 24px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h5 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* =========================================
   CTA Banner
   ========================================= */
.cta-section {
    background-color: var(--primary-color);
    text-align: center;
    padding: 80px 0;
    color: var(--white);
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================
   Contact Section
   ========================================= */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.contact-info-panel {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-panel {
    padding: 60px;
}

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

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

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

/* Responsive Additions */
@media screen and (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-grid::before {
        display: none;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-image-wrapper {
        order: -1;
        /* Image first on mobile? or keep text first */
    }

    .why-badge {
        left: 0;
        bottom: 0;
    }
}

@media screen and (max-width: 640px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 30px;
    }

    .why-badge {
        position: static;
        margin-top: -20px;
        width: 100%;
        border-radius: 0 0 var(--border-radius) var(--border-radius);
    }
}
/* Geo-Semantic Footer Network */
.footer-geo {
    padding: 0 0 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.footer-geo-heading {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-geo-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.footer-geo-list a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: all var(--transition-speed) ease;
    display: flex;
    align-items: center;
}

.footer-geo-list a::before {
    content: "📍";
    font-size: 0.8rem;
    margin-right: 8px;
    opacity: 0.5;
}

.footer-geo-list a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

@media (max-width: 1024px) {
    .footer-geo-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .footer-geo-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
}
