/* CSS Variables */
:root {
    /* Brand Colors */
    --navy-blue: #0B2A4A;
    --fresh-green: #6DBE45;
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --text-dark: #212529;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    
    /* Shadows & Effects */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 24px rgba(11, 42, 74, 0.1);
    --shadow-green: 0 8px 24px rgba(109, 190, 69, 0.25);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset for sticky navbar */
}

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

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

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

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

.text-green {
    color: var(--fresh-green);
}

.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.ml-2 { margin-left: 0.5rem; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--navy-blue);
    line-height: 1.2;
    font-weight: 700;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.lead-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.divider {
    width: 60px;
    height: 4px;
    background-color: var(--fresh-green);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.divider.align-left {
    margin-left: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    gap: 8px;
}

.btn-primary {
    background-color: var(--fresh-green);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: #5ba337;
    box-shadow: var(--shadow-green);
    transform: translateY(-2px);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--navy-blue);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.badge-outline {
    border: 1px solid var(--navy-blue);
    color: var(--navy-blue);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
    height: 80px;
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    height: 70px;
}

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

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

.navbar.scrolled .logo img {
    height: 40px;
}

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

.nav-link {
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--fresh-green);
    transition: var(--transition);
}

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

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--navy-blue);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 100px;
    padding-bottom: 60px;
    background-color: var(--navy-blue);
    background: linear-gradient(135deg, #091a2f 0%, #173656 100%);
    color: var(--white);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

/* Creating the diagonal geometric background shapes */
.hero-bg-shapes::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
    transform: rotate(25deg);
}

.hero-bg-shapes::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(109, 190, 69, 0.05) 0%, rgba(0,0,0,0) 100%);
    transform: rotate(-15deg);
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.hero-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-text-content {
    flex: 1.2;
}

.hero-main-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 2rem;
    color: var(--white);
}

.hero-subtitle-box {
    position: relative;
    padding: 1.5rem 0 1.5rem 1.5rem;
}

/* The dashed border brackets for subtitle */
.hero-subtitle-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 100%;
    border-left: 2px dashed rgba(255,255,255,0.3);
}
.hero-subtitle-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top: 2px dashed rgba(255,255,255,0.3);
    border-bottom: 2px dashed rgba(255,255,255,0.3);
    pointer-events: none;
    clip-path: polygon(0 0, 100% 0, 100% 10px, 10px 10px, 10px calc(100% - 10px), 100% calc(100% - 10px), 100% 100%, 0 100%);
}

/* Fix the dashed borders using a simpler approach */
.hero-subtitle-box {
    border-left: 1px dashed rgba(255,255,255,0.4);
    position: relative;
}
.hero-subtitle-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -1px;
    width: 100%;
    border-top: 1px dashed rgba(255,255,255,0.4);
}
.hero-subtitle-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -1px;
    width: 100%;
    border-bottom: 1px dashed rgba(255,255,255,0.4);
    clip-path: none;
}
/* Little dots at the end of lines */
.hero-subtitle-box p::before, .hero-subtitle-box p::after {
    content: '◆';
    position: absolute;
    font-size: 8px;
    color: rgba(255,255,255,0.8);
    left: 100%;
    transform: translateX(-50%);
}
.hero-subtitle-box p::before { top: -4px; }
.hero-subtitle-box p::after { bottom: -4px; }

.hero-subtitle-box p {
    font-size: 1.15rem;
    color: var(--gray-100);
    line-height: 1.6;
    letter-spacing: 0.5px;
    position: relative;
}

.hero-image-content {
    flex: 0.8;
    position: relative;
}

.hero-machine-img {
    width: 100%;
    max-width: 500px;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
    margin: 0 auto;
}

/* Stats Section */
.hero-stats {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1;
    min-width: 160px;
    background: linear-gradient(180deg, rgba(8,30,55,0.9) 0%, rgba(13,45,80,0.9) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 0 0 12px 12px;
    border-bottom-left-radius: 50% 100%;
    border-bottom-right-radius: 50% 100%;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--fresh-green);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--white);
    line-height: 1.2;
}

/* Feature Box */
.hero-feature-box {
    background: linear-gradient(90deg, rgba(11, 35, 65, 0.95) 0%, rgba(18, 48, 85, 0.95) 100%);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.feature-box-inner {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.feature-box-icon {
    width: 120px;
    height: 120px;
    background: #000;
    border-radius: 16px;
    border: 2px solid rgba(255,255,255,0.8);
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-box-icon img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.feature-box-content h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.feature-box-content p {
    color: var(--gray-200);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    max-width: 900px;
}

.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.pill {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pill-dark {
    background-color: transparent;
    color: var(--white);
    text-transform: uppercase;
}

.pill-red {
    background: linear-gradient(90deg, #b92b27 0%, #8b1815 100%);
    color: var(--white);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Responsive adjustments for Hero */
@media (max-width: 992px) {
    .hero-top {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-subtitle-box {
        padding: 1.5rem;
        border: 1px dashed rgba(255,255,255,0.4);
    }
    
    .hero-subtitle-box::before, .hero-subtitle-box::after, .hero-subtitle-box p::before, .hero-subtitle-box p::after {
        display: none;
    }

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

    .feature-box-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-pills {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
    }
    
    .stat-card {
        width: 100%;
    }
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius-md);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--fresh-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(109, 190, 69, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 15px;
}

.service-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-content h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-content p {
    color: var(--gray-600);
}

/* Protocols Section */
.protocols-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.protocol-card {
    display: flex;
    align-items: center;
    background-color: #f0f4f8;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.protocol-card.dark {
    background-color: var(--navy-blue);
    color: var(--white);
}

.protocol-image {
    flex: 1;
    height: 100%;
}

.protocol-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.protocol-content {
    flex: 1;
    padding: 3rem;
}

.protocol-badge {
    display: inline-block;
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.protocol-card.dark .protocol-badge {
    background-color: var(--fresh-green);
    color: var(--navy-blue);
}

.protocol-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.protocol-card.dark h3 {
    color: var(--white);
}

.protocol-content p {
    color: var(--gray-600);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.protocol-card.dark p {
    color: var(--gray-200);
}

.protocol-checklist {
    list-style: none;
    padding: 0;
}

.protocol-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.protocol-checklist i {
    color: var(--fresh-green);
    font-size: 1.2rem;
}

/* Responsive Protocols */
@media (max-width: 992px) {
    .protocol-card, .protocol-card.dark {
        flex-direction: column;
    }
    
    .protocol-card.dark {
        flex-direction: column-reverse;
    }

    .protocol-image, .protocol-content {
        width: 100%;
    }
    
    .protocol-content {
        padding: 2.5rem 1.5rem;
    }
    
    .protocol-content h3 {
        font-size: 1.75rem;
    }
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-main-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: -1px;
    right: -1px;
    background-color: var(--fresh-green);
    color: var(--white);
    padding: 2rem;
    border-top-left-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.experience-badge .number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--gray-600);
}

.mission-vision-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.mv-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--navy-blue);
    transition: var(--transition);
}

.mv-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.mv-card:nth-child(2) {
    border-left-color: var(--fresh-green);
}

.mv-icon {
    font-size: 1.5rem;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.mv-card:nth-child(2) .mv-icon {
    color: var(--fresh-green);
}

.mv-card h4 {
    margin-bottom: 0.5rem;
}

.mv-card p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-card {
    background: var(--navy-blue);
    color: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-lg);
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item .icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--fresh-green);
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.contact-item a, .contact-item span {
    color: var(--gray-300);
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--fresh-green);
}

.form-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.form-card h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--gray-800);
}

.form-group input, 
.form-group textarea, 
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
    background-color: #fafafa;
}

.form-group input:focus, 
.form-group textarea:focus, 
.form-group select:focus {
    outline: none;
    border-color: var(--fresh-green);
    box-shadow: 0 0 0 3px rgba(109, 190, 69, 0.2);
    background-color: var(--white);
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    cursor: pointer;
}

.select-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--gray-600);
}

.map-wrapper {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
    background-color: #06192d; /* Darker navy */
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-desc {
    color: var(--gray-300);
    margin-bottom: 1.5rem;
    max-width: 400px;
}

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

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

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

.footer-col h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

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

.footer-col.links ul li a {
    color: var(--gray-300);
}

.footer-col.links ul li a:hover {
    color: var(--fresh-green);
    padding-left: 5px;
}

.coverage-badges {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-start;
}

.coverage-badges .badge {
    border-color: rgba(255,255,255,0.2);
    color: var(--gray-200);
    margin-bottom: 0;
}

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

/* Floating Elements */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 100;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    color: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title { font-size: 3rem; }
    .hero-container { gap: 2rem; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title { font-size: 2.5rem; }
    
    .hero-subtitle {
        margin: 0 auto 2rem;
    }
    
    .hero-highlights li {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
        flex-direction: column;
    }
    
    .mission-vision-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Mobile Menu */
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-md);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
        gap: 1.5rem;
    }
    
    .nav-links.show {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .nav-cta {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .section { padding: 50px 0; }
    .form-card { padding: 2rem 1.5rem; }
    .hero-title { font-size: 2rem; }
}
