:root {
    --primary-color: #001C3D; /* Midnight Navy */
    --secondary-color: #1a1a1a;
    --accent-color: #004E9A; /* Precision Blue */
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --complementary-color: #B38B59; /* Muted Gold / Bronze */
    --highlight-color: #D48806; /* Vibrant Amber */
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-muted: #7A7A7A;
    --heading-color: #001C3D;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --section-padding: 120px 0;
}

/* Base Resets */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    line-height: 1.2;
}

/* Decorative Elements */
.content-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(179, 139, 89, 0.03) 0%, transparent 70%);
    top: -300px;
    right: -300px;
    z-index: 0;
    pointer-events: none;
}

.content-section:nth-child(even)::after {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 78, 154, 0.02) 0%, transparent 70%);
    bottom: -400px;
    left: -400px;
    z-index: 0;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
    position: relative;
    z-index: 1;
}

/* Header & Navbar */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.header.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(255, 255, 255, 1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

#header-logo {
    height: 220px;
    width: auto;
    display: block;
    filter: brightness(0) saturate(100%) invert(13%) sepia(35%) saturate(5796%) hue-rotate(215deg) brightness(92%) contrast(108%); /* Navy logo */
    transition: var(--transition-smooth);
}

.header.scrolled #header-logo {
    height: 180px;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--heading-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition-smooth);
    position: relative;
}

.header.scrolled .nav-links a {
    color: var(--heading-color);
}

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

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

.nav-links a:hover, .nav-links a.active {
    color: var(--complementary-color);
}

.header.scrolled .nav-links a:hover, 
.header.scrolled .nav-links a.active {
    color: var(--highlight-color);
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--heading-color);
    margin: 5px 0;
    transition: var(--transition-smooth);
}

.header.scrolled .hamburger span {
    background-color: var(--heading-color);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 140vh;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
    align-items: center; 
    text-align: center;
    padding: 120px 1rem 10rem 1rem;
    background-image: url('../images/hero.png');
    background-size: cover;
    background-position: center;
    overflow: hidden; 
}

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

.hero-content-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15rem;
    position: relative;
    z-index: 10;
}

.hero-panels-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 4rem;
    transition-delay: 0.3s;
    position: relative;
    z-index: 10;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    color: var(--white);
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.85); /* Semi-transparent see-through effect */
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(0,0,0,0.8), 0 0 10px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 2rem;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.75); /* Semi-transparent see-through effect */
    text-shadow: 0 2px 15px rgba(0,0,0,0.8);
}

/* Hero Panels */
.hero-panels {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    gap: 1.5rem; 
    max-width: 1200px;
    width: 100%;
    padding: 0 1rem;
    margin: 0 auto;
}

.panel-item {
    background: rgba(255, 255, 255, 0.7); /* 30% see-through */
    backdrop-filter: blur(8px);
    padding: 2rem; 
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: left;
    color: var(--text-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.panel-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    background: rgba(255, 255, 255, 1);
}

.panel-item i {
    font-size: 2.5rem;
    color: var(--complementary-color);
    margin-bottom: 1.5rem;
}

.panel-item h3 {
    font-size: 1.2rem; 
    font-weight: 700;
    margin-bottom: 0.75rem; 
    color: var(--heading-color);
}

.panel-item p {
    font-size: 0.95rem; 
    line-height: 1.6;
    color: var(--text-color);
    font-weight: 400;
}

/* Content Sections */
.content-section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.content-section:nth-child(even) {
    background-color: var(--light-bg);
}

.section-header {
    max-width: 800px;
    margin: 0 auto 5rem;
    text-align: center;
}

.section-eyebrow {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--complementary-color);
    margin-bottom: 1rem;
}

.content-section h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: -1.5px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.content-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--complementary-color);
    margin: 1.5rem auto 0;
}

/* Who We Are Refinements */
#who-we-are .two-column {
    align-items: stretch;
}

#who-we-are .text-content {
    background: var(--white);
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    z-index: 2;
    margin-right: -10rem;
    align-self: center;
}

#who-we-are .image-content {
    z-index: 1;
    position: relative;
    padding: 2rem;
}

#who-we-are .image-content::after {
    content: '';
    position: absolute;
    top: 4rem;
    right: 0;
    bottom: 4rem;
    left: 4rem;
    border: 2px solid var(--complementary-color);
    border-radius: 20px;
    z-index: -1;
}

#who-we-are .image-content img {
    height: 100%;
    min-height: 550px;
    object-fit: cover;
    border-radius: 20px;
}

@media (max-width: 992px) {
    #who-we-are .text-content {
        margin-right: 0;
        padding: 3rem;
        margin-bottom: -4rem;
    }
}

.mb-5 {
    margin-bottom: 5rem !important;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
    align-items: center;
}

.two-column.reverse {
    grid-template-columns: 0.9fr 1.1fr;
}

.two-column .text-content h3 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 2rem;
    letter-spacing: -1px;
    line-height: 1.1;
}

.two-column .text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.two-column .image-content {
    position: relative;
    padding: 2rem;
}

.two-column .image-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    background: var(--light-bg);
    border-radius: 30px;
    z-index: -1;
    transform: translate(-10%, -10%);
}

.two-column .image-content img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    transition: var(--transition-smooth);
    display: block;
}

.two-column .image-content img:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.18);
}

.two-column .image-content img:not(:last-child) {
    margin-bottom: 2.5rem;
}

/* Technology Section Specifics */
#what-we-build .two-column {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
    align-items: center;
}

.image-collage {
    position: relative;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    height: 600px;
}

.collage-main {
    grid-column: 1 / 11;
    grid-row: 1 / 11;
    z-index: 2;
}

.collage-secondary {
    grid-column: 8 / 13;
    grid-row: 6 / 13;
    z-index: 3;
    border: 8px solid var(--white);
    border-radius: 20px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.15);
}

.collage-main img, .collage-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 80% center; /* This shifts the image content to focus on the right side */
    border-radius: 20px;
    display: block;
}

.collage-main img {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.collage-badge {
    position: absolute;
    bottom: 2rem;
    left: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.2rem 1.8rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 4;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    animation: float 3s ease-in-out infinite;
}

.collage-badge i {
    font-size: 1.4rem;
    color: var(--complementary-color);
}

.collage-badge span {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.check-list {
    display: grid;
    gap: 1.8rem;
    margin-top: 2rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.check-list i {
    color: var(--complementary-color);
    font-size: 1.1rem;
    background: rgba(179, 139, 89, 0.1);
    padding: 0.9rem;
    border-radius: 12px;
    transition: var(--transition-smooth);
    min-width: 3.2rem;
    text-align: center;
}

.check-list li:hover i {
    background: var(--complementary-color);
    color: var(--white);
    transform: scale(1.1);
}

.check-content strong {
    display: block;
    font-size: 1.1rem;
    color: var(--heading-color);
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.check-content p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin-bottom: 0 !important;
    color: var(--text-secondary);
}

@media (max-width: 1200px) {
    .check-list {
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    #what-we-build .two-column {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .image-collage {
        height: 450px;
    }

    .check-list {
        gap: 1.8rem;
    }
}

/* Mission Grid */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
}

.mission-item {
    background: var(--white);
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    transition: var(--transition-smooth);
    overflow: hidden;
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
}

.mission-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    border-color: transparent;
}

.mission-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--complementary-color), var(--highlight-color));
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-item:hover::after {
    width: 100%;
}

.mission-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 240px;
    background: var(--primary-color);
}

.mission-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    opacity: 0.9;
}

.mission-item:hover .mission-image-wrapper img {
    transform: scale(1.1);
    opacity: 1;
}

.mission-content {
    padding: 3rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.mission-item h3 {
    font-size: 1.6rem;
    color: var(--heading-color);
    margin-bottom: 1.2rem;
    font-weight: 700;
    transition: color 0.3s ease;
    letter-spacing: -0.5px;
}

.mission-item:hover h3 {
    color: var(--accent-color);
}

.mission-item p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.contact-info {
    padding: 0;
}

.contact-info h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.contact-info > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border: 1px solid transparent;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.contact-item:hover {
    background: var(--white);
    transform: translateX(10px);
    border-color: var(--complementary-color);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.contact-icon {
    font-size: 1.3rem;
    color: var(--complementary-color);
    background: var(--white);
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    height: 3.2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
}

.contact-item:hover .contact-icon {
    background: var(--complementary-color);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(179, 139, 89, 0.3);
}

.contact-details h4 {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.contact-details p, 
.contact-details a {
    font-size: 1.1rem;
    color: var(--heading-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--accent-color);
}

.contact-form {
    background: var(--white);
    padding: 4.5rem;
    border-radius: 24px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--complementary-color), var(--highlight-color));
}

.contact-form h3 {
    color: var(--heading-color);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: left;
    letter-spacing: -1px;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background-color: var(--light-bg);
    border: 2px solid transparent;
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background-color: var(--white);
    border-color: var(--complementary-color);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.submit-btn {
    display: inline-block;
    width: auto;
    min-width: 200px;
    padding: 1.2rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 1rem;
}

.submit-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 78, 154, 0.25);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem 0 0.75rem;
    height: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1rem;
    margin-bottom: 0.75rem;
}

.footer-logo img {
    height: 120px;
    filter: brightness(0) invert(1);
}

.footer-nav {
    display: flex;
    gap: 3rem;
}

.footer-nav a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.footer-nav a:hover {
    color: var(--white);
}

.footer .copyright {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    text-align: center;
}

/* Utility / Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.validation-error {
    color: #ff4d4d;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    z-index: 10;
    opacity: 0.8;
}

.scroll-indicator span {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% { top: 6px; opacity: 1; }
    100% { top: 25px; opacity: 0; }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
        padding: 0 3rem;
    }
    
    .hero-panels {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }

    #who-we-are .text-content {
        margin-right: -5rem;
    }
}

@media (max-width: 992px) {
    .header {
        background-color: var(--white);
        backdrop-filter: blur(15px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        padding: 0.5rem 0;
        border-bottom: 1px solid #f0f0f0;
    }

    #header-logo {
        filter: brightness(0) saturate(100%) invert(13%) sepia(35%) saturate(5796%) hue-rotate(215deg) brightness(92%) contrast(108%);
    }

    .hamburger span {
        background-color: var(--heading-color);
    }

    .hero {
        background-image: url('../images/mobile_hero.png');
    }

    .container {
        max-width: 720px;
        padding: 0 2rem;
    }

    .nav-links {
        display: none; /* Hidden on mobile by default */
    }

    .hamburger {
        display: block;
    }

    .hero-panels {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }

    .two-column {
        grid-template-columns: 1fr !important;
        gap: 4rem;
    }

    .two-column.reverse {
        grid-template-columns: 1fr !important;
    }

    #who-we-are .text-content {
        margin-right: 0;
        padding: 3rem;
        margin-top: -4rem;
        width: 100%;
    }

    #who-we-are .image-content::after {
        display: none;
    }

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

@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 1.5rem;
    }

    .hero-panels {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .content-section {
        padding: 80px 0;
    }

    .content-section h2 {
        font-size: 2rem;
    }

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

    .contact-form {
        padding: 3rem 1.5rem;
    }

    #header-logo {
        height: 160px;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Mobile Menu Active State */
@media (max-width: 992px) {
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 2rem;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        border-top: 1px solid #f0f0f0;
        z-index: 1000;
    }

    .nav-links.active li {
        margin: 1rem 0;
    }

    .nav-links.active a {
        color: var(--heading-color);
        font-size: 1.1rem;
    }
}
