/* Design System & Base Styles */
:root {
    --primary: #16CAC6;
    --primary-light: #20e2df;
    --secondary: #06b6d4;
    --accent: #a855f7;
    --bg-light: #ffffff;
    --bg-surface: #f8fafc;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.08);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
}

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

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-surface);
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

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

.section {
    padding: 8rem 0;
    position: relative;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism Components */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 2rem;
    padding: 2.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-light);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.25rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    box-shadow: 0 10px 20px -5px rgba(22, 202, 198, 0.3);
}

.btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(22, 202, 198, 0.4);
}

.btn-outline {
    background: white;
    border: 1px solid var(--glass-border);
    color: var(--text-dark);
    box-shadow: var(--shadow);
}

.btn-outline:hover {
    background: var(--bg-surface);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Specific Sections */
nav {
    background: #fff;
    box-shadow: 0px 0px 7px 0px #979797;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.5rem 0;
    transition: var(--transition);
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid var(--glass-border);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo img {
    height: 75px;
    width: auto;
    transition: var(--transition);
}

nav.scrolled .logo img {
    height: 38px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hide Mobile Elements on Desktop */
.drawer-header,
.mobile-nav-actions {
    display: none;
}

.nav-links a i:not(.fa-chevron-down):not(.fa-chevron-right) {
    display: none;
}

/* Dropdown Base Styles */
.nav-item.dropdown {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    height: 100%;
}

.nav-item.dropdown>a {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-item.dropdown i.fa-chevron-down {
    font-size: 0.7rem;
    transition: var(--transition);
}

.nav-item.dropdown:hover i.fa-chevron-down {
    transform: rotate(180deg);
}

/* First Level Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 1rem 0;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
}

.nav-item.dropdown:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    position: relative;
    padding: 0.7rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-dark) !important;
    font-size: 0.95rem;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: rgba(22, 202, 198, 0.05);
    color: var(--primary) !important;
}

/* Second Level Submenu */
.dropdown-item.has-submenu .submenu {
    position: absolute;
    left: 100%;
    top: -1px;
    width: 260px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 1rem 0;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1001;
}

.dropdown-item.has-submenu:hover>.submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.submenu-item {
    padding: 0.6rem 1.5rem;
    display: block;
    color: var(--text-muted) !important;
    font-size: 0.9rem;
    transition: var(--transition);
}

.submenu-item:hover {
    color: var(--primary) !important;
    padding-left: 1.8rem;
}

/* Mobile Dropdown Overrides */
@media (max-width: 991px) {
    .nav-item.dropdown {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        height: auto;
    }

    .nav-item.dropdown>a {
        width: 100%;
        justify-content: space-between;
        padding: 1rem 0;
    }

    .dropdown-menu {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        box-shadow: none;
        background: transparent;
        border: none;
        padding: 0;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-bottom: 1rem;
    }

    .dropdown-menu.mobile-active {
        display: block;
    }

    .dropdown-item {
        padding: 0.8rem 1rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .dropdown-item.has-submenu {
        width: 100%;
    }

    .dropdown-item.has-submenu>a {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .submenu {
        position: relative !important;
        left: 0 !important;
        top: 0 !important;
        width: 100% !important;
        box-shadow: none !important;
        background: transparent !important;
        border: none !important;
        padding: 0 0 0 1rem !important;
        display: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        margin-top: 0.5rem;
    }

    .submenu.mobile-active {
        display: block !important;
    }

    .submenu-item {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        text-align: left;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }
}

.nav-links a.btn-primary {
    color: white !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, rgba(22, 202, 198, 0.05), transparent),
        radial-gradient(circle at bottom left, rgba(6, 182, 212, 0.05), transparent);
    padding-top: 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.hero-image {
    position: relative;
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    filter: blur(60px);
    opacity: 0.1;
    z-index: -1;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

/* Contact Form */
input,
textarea {
    padding: 1rem;
    background: white;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-dark);
    font-size: 1rem;
    transition: var(--transition);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(22, 202, 198, 0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero p {
        margin: 0 auto 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.75rem;
    }
}

/* Why Choose Split Section */
.why-choose-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
}

.why-image img {
    width: 100%;
    border-radius: 2.5rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    transition: var(--transition);
}

.why-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 40px 80px rgba(22, 202, 198, 0.15);
}

.why-content h2 {
    font-size: 3rem;
    line-height: 1.1;
}

.why-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .why-choose-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .why-content h2 {
        font-size: 2.5rem;
    }
}

/* Process Sticky Split Section */
.process-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.process-sticky-image {
    position: sticky;
    top: 120px;
    transition: var(--transition);
}

.process-sticky-image img {
    width: 100%;
    border-radius: 2rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.process-timeline {
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 20px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--secondary), var(--accent), #10b981);
    opacity: 0.2;
}

.process-step {
    position: relative;
    padding-left: 4.5rem;
    margin-bottom: 3rem;
}

.step-marker {
    position: absolute;
    left: 0;
    top: 1.5rem;
    width: 42px;
    height: 42px;
    background: white;
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--primary);
    z-index: 2;
    box-shadow: 0 0 15px rgba(22, 202, 198, 0.1);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1rem;
}

.step-icon {
    font-size: 1.75rem;
    color: var(--primary);
}

.step-card {
    padding: 2.5rem;
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0;
    /* Inline with icon */
}

@media (max-width: 992px) {
    .process-split {
        grid-template-columns: 1fr;
    }

    .process-sticky-image {
        position: relative;
        top: 0;
        margin-bottom: 3rem;
    }
}

/* Who We Serve Section */
.serve-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.serve-card {
    text-align: center;
    padding: 3.5rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.serve-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(22, 202, 198, 0.05));
    opacity: 0;
    transition: var(--transition);
}

.serve-card:hover::after {
    opacity: 1;
}

.serve-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    display: block;
    transition: var(--transition);
}

.serve-card:hover .serve-icon {
    transform: translateY(-8px) scale(1.1);
}

.serve-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

/* Section Background Accent */
section[style*="background: var(--bg-surface)"] {
    background-image: radial-gradient(#e2e8f0 1.5px, transparent 1.5px);
    background-size: 40px 40px;
}

/* Redesigned Footer Section */
footer {
    background: #0f172a;
    padding: 5rem 0 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    color: #94a3b8;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-branding {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 5rem;
}

.footer-branding p {
    color: #94a3b8;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-top: 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-col h3 {
    color: #f8fafc;
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

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

.footer-col ul li {
    margin-bottom: 1.15rem;
}

.footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    display: inline-block;
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1.25rem;
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-item i {
    color: var(--primary);
    margin-top: 4px;
    font-size: 1.1rem;
}

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

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f8fafc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(22, 202, 198, 0.3);
    border-color: var(--primary);
}

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

.footer-bottom p {
    color: #64748b;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-branding {
        margin-bottom: 3rem;
    }
}

/* Mobile Navigation Styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    z-index: 1001;
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.nav-overlay.nav-active {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        position: relative;
        z-index: 1001;
    }

    /* Hide hamburger when menu is active */
    .nav-links.nav-active~.mobile-menu-btn {
        opacity: 0 !important;
        pointer-events: none;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: white;
        box-shadow: -10px 0 50px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        z-index: 1000;
        transform: translateX(100%);
        /* Start hidden on the right */
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        padding: 0;
        /* Reset padding to show sticky header */
        overflow-y: auto;
        display: flex !important;
    }

    .nav-links.nav-active {
        transform: translateX(0);
        /* Slide into view */
    }

    .nav-links a {
        font-size: 1.1rem;
        font-weight: 600;
        text-align: left;
        padding: 1.1rem 2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        color: var(--text-dark) !important;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .nav-links a i:not(.fa-chevron-down):not(.fa-chevron-right) {
        width: 20px;
        color: var(--primary);
        font-size: 1.1rem;
        display: inline-block;
    }

    .nav-links .btn-primary {
        margin: 1.5rem 2rem;
        width: calc(100% - 4rem);
        justify-content: center;
        display: flex !important;
        background: var(--primary) !important;
        color: white !important;
    }

    .nav-item.dropdown {
        width: 100%;
    }

    .nav-item.dropdown>a {
        display: flex;
        padding: 1.1rem 2rem;
        justify-content: flex-start !important;
        align-items: center;
        text-align: left !important;
    }

    .nav-item.dropdown>a i.fa-chevron-down,
    .dropdown-item.has-submenu>a i.fa-chevron-right {
        margin-left: auto;
    }

    .dropdown-menu {
        position: relative;
        top: 0;
        width: 100%;
        background: #f8fafc;
        padding: 0;
        border: none;
        border-radius: 0;
        box-shadow: none;
        display: none;
    }

    .dropdown-menu.mobile-active {
        display: block;
    }

    .dropdown-item {
        padding: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }

    .dropdown-item a {
        padding: 1rem 2rem 1rem 3rem;
        font-size: 1rem;
    }

    .dropdown-item.has-submenu>a {
        justify-content: flex-start;
    }

    .submenu {
        position: relative !important;
        background: #f1f5f9 !important;
        padding: 0 !important;
        display: none !important;
        box-shadow: none !important;
    }

    .submenu.mobile-active {
        display: block !important;
    }

    .submenu-item a {
        padding: 0.8rem 2rem 0.8rem 4rem;
        font-size: 0.95rem;
    }

    /* Fixed Header Area within Drawer */
    .drawer-header {
        position: sticky;
        top: 0;
        left: 0;
        right: 0;
        padding: 1.5rem 2rem;
        border-bottom: 1px solid var(--glass-border);
        background: white;
        z-index: 10;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0.5rem;
    }

    .drawer-logo {
        height: 35px;
        width: auto;
    }

    .mobile-close-btn {
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--text-dark);
        cursor: pointer;
        padding: 5px;
    }
}

/* Global Mobile Overrides */
@media (max-width: 600px) {
    :root {
        --section-padding: 4rem;
    }

    .section {
        padding: var(--section-padding) 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    h1 {
        font-size: 2.5rem !important;
    }

    h2 {
        font-size: 2rem !important;
    }

    h3 {
        font-size: 1.5rem !important;
    }

    .hero {
        padding-top: 100px;
        min-height: auto;
    }

    .hero-grid {
        gap: 2rem;
    }

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

    .btn {
        width: 100%;
        justify-content: center;
    }

    .glass-card {
        padding: 1.5rem;
        border-radius: 1.5rem;
    }

    /* Process Section Mobile Fixes */
    .process-split {
        gap: 2rem;
    }

    .process-step {
        padding-left: 3.5rem;
    }

    .step-marker {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .step-card {
        padding: 1.5rem;
    }

    .step-header {
        gap: 0.75rem;
    }

    .step-icon {
        font-size: 1.25rem;
    }

    /* Serve Section Mobile Fixes */
    .serve-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .serve-card {
        padding: 2rem 1.5rem;
    }

    /* Footer Mobile Fixes */
    .footer-grid {
        gap: 2.5rem;
    }

    .footer-branding {
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }
}

/* Mobile Navigation Drawer Fixes */
@media (max-width: 768px) {
    .nav-links {
        display: flex !important;
        /* Ensure visibility when drawer is active */
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* Contact Section Styles */
.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

form.glass-card {
    display: flex;
    flex-direction: column;
}

/* Contact Info Item Styles */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem !important;
    transition: var(--transition);
}

.contact-info-item:hover {
    transform: translateX(10px);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-surface);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow);
    flex-shrink: 0;
}

.contact-icon-location {
    color: var(--primary);
}

.contact-icon-phone {
    color: var(--secondary);
}

.contact-icon-email {
    color: var(--accent);
}

.contact-icon-web {
    color: #10b981;
}

.contact-info-item p {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
    overflow-wrap: break-word;
    word-break: break-word;
}

@media (max-width: 992px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    :root {
        --section-padding: 2.5rem;
    }

    .hero {
        padding-top: 140px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .contact-info-item {
        flex-direction: column;
        text-align: center;
        padding: 2rem !important;
    }

    .contact-info-item:hover {
        transform: translateY(-5px);
    }

    .contact-info-list {
        gap: 1.5rem;
    }
}