/* Iberlux Design System - High Impact Sales */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    --primary-blue: #1d71b8;
    /* Brand Blue */
    --primary-blue-dark: #155a94;
    --brand-pink: #ec008c;
    /* Brand Pink */
    --brand-pink-hover: #d1007c;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --text-dark: #0f172a;
    /* Slate 900 */
    --text-muted: #334155;
    /* Slate 700 */
    --accent-green: #10b981;
    --star-yellow: #fbbf24;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 25px -3px rgba(29, 113, 184, 0.1), 0 4px 6px -2px rgba(29, 113, 184, 0.05);
    --shadow-lg: 0 20px 40px -5px rgba(236, 0, 140, 0.15), 0 10px 15px -5px rgba(236, 0, 140, 0.05);
    --radius-lg: 24px;
    --radius-xl: 32px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 18px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

p {
    color: var(--text-muted);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    /* Sombra aumentada para contraste */
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo img {
    height: 55px;
    display: block;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
}

/* Secondary Nav */
.secondary-nav {
    background: #f0f6fc;
    /* Azul muy suave */
    border-bottom: 1px solid rgba(29, 113, 184, 0.15);
}

.service-nav-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 15px 0;
}

.service-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-muted);
    transition: var(--transition);
}

.service-nav-icon {
    width: 55px;
    height: 55px;
    border-radius: 16px;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    color: var(--primary-blue);
    transition: var(--transition);
    border: 1px solid rgba(29, 113, 184, 0.1);
}

.service-nav-item:hover {
    color: var(--brand-pink);
}

.service-nav-item:hover .service-nav-icon {
    background: var(--brand-pink);
    color: white;
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.service-nav-item span {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    gap: 10px;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--primary-blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(29, 113, 184, 0.3);
}

.btn-pink {
    background-color: var(--brand-pink);
    color: var(--bg-white);
    box-shadow: var(--shadow-lg);
}

.btn-pink:hover {
    background-color: var(--brand-pink-hover);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px -5px rgba(236, 0, 140, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

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

.btn-nav {
    padding: 12px 28px;
    font-size: 1rem;
    box-shadow: none;
}

/* Hero */
.hero {
    padding: 280px 0 120px;
    text-align: center;
    background: radial-gradient(circle at top right, rgba(236, 0, 140, 0.05) 0%, transparent 40%),
        radial-gradient(circle at bottom left, rgba(29, 113, 184, 0.05) 0%, transparent 40%);
    background-color: #f7fbff;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 40px;
    background: var(--bg-light);
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 100%);
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.hero h1 span {
    color: var(--primary-blue);
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-muted);
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.hero .btn-primary {
    background-color: var(--primary-blue);
    color: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.hero .btn-primary:hover {
    background-color: var(--primary-blue-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Global Sections */
.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 60px;
}

/* Grids */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Cards */
.card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(29, 113, 184, 0.1);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(29, 113, 184, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary-blue);
}

.card-icon svg {
    width: 35px;
    height: 35px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card p {
    font-size: 1.05rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* About Us Grid (Mission & Values) */
.about-box {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.about-list {
    list-style: none;
    margin-top: 20px;
}

.about-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.about-list li svg {
    color: var(--accent-green);
    flex-shrink: 0;
    margin-top: 5px;
}

/* Testimonials */
.stats-banner {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-xl);
    text-align: center;
    margin-bottom: 50px;
    border: 2px solid rgba(236, 0, 140, 0.1);
}

.stats-banner h3 {
    font-size: 2.5rem;
    color: var(--brand-pink);
    margin-bottom: 10px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stars {
    color: var(--star-yellow);
    display: flex;
    gap: 2px;
    margin-bottom: 15px;
}

.stars svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

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

.author-avatar {
    width: 45px;
    height: 45px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: 'Outfit';
}

/* Sales Form */
.sales-banner {
    background: #f0f7ff;
    border: 1px solid #dbeafe;
    border-radius: var(--radius-xl);
    padding: 60px;
    color: var(--text-dark);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.banner-content h2 {
    color: var(--text-dark);
    font-size: 3rem;
    margin-bottom: 20px;
}

.banner-content p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 30px;
}

.form-box {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-box h3 {
    color: var(--text-dark);
    font-size: 1.75rem;
    margin-bottom: 10px;
}

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

input,
textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: #f8fafc;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--brand-pink);
    background: var(--bg-white);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
}

/* Contact Info Blocks */
.contact-info-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.info-block {
    background: var(--bg-white);
    border: 1px solid #e2e8f0;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.info-block svg {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

.info-block h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-block p,
.info-block a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
}

/* Footer */
footer {
    background: #0b1120;
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 40px;
}

footer p {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-logo {
    height: 50px;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--brand-pink);
}

.copyright {
    text-align: center;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    margin-bottom: 15px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
    border-color: rgba(29, 113, 184, 0.1);
}

.faq-item.active {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.15rem;
    padding-right: 20px;
}

.faq-icon {
    color: var(--primary-blue);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background: var(--bg-light);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.4s ease-in-out;
}

.faq-answer p {
    padding: 0 30px 25px;
    margin: 0;
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Interactive Form Styles */
.interactive-form h3 {
    font-size: 1.85rem;
    color: var(--primary-blue);
    font-weight: 800;
}

.form-step {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.form-step:last-of-type {
    border-bottom: none;
    margin-bottom: 15px;
    padding-bottom: 0;
}

.form-step h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-step h4 span:not(.step-num) {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-left: 5px;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--brand-pink);
    color: white;
    border-radius: 50%;
    font-size: 0.95rem;
    font-weight: bold;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Custom Select */
.select-wrapper {
    position: relative;
}

.select-wrapper select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: #f8fafc;
    appearance: none;
    cursor: pointer;
    color: var(--text-dark);
}

.select-wrapper select:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(29, 113, 184, 0.1);
}

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

/* Radio Boxes */
.radio-group-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.radio-group-boxes.small-boxes {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.radio-box {
    cursor: pointer;
    position: relative;
}

.radio-box input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-content {
    border: 2px solid #e2e8f0;
    background: #f8fafc;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.radio-group-boxes.small-boxes .radio-content {
    padding: 12px 10px;
    gap: 5px;
}

.radio-content svg {
    width: 24px;
    height: 24px;
    color: var(--text-muted);
    transition: var(--transition);
}

.radio-content span {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.3;
    transition: var(--transition);
}

.radio-group-boxes.small-boxes .radio-content span {
    font-size: 0.85rem;
}

.radio-box:hover .radio-content {
    border-color: rgba(29, 113, 184, 0.3);
    background: white;
}

.radio-box:hover .radio-content svg,
.radio-box:hover .radio-content span {
    color: var(--primary-blue);
}

.radio-box input:checked~.radio-content {
    border-color: var(--primary-blue);
    background: rgba(29, 113, 184, 0.05);
    box-shadow: 0 4px 10px rgba(29, 113, 184, 0.1);
}

.radio-box input:checked~.radio-content svg,
.radio-box input:checked~.radio-content span {
    color: var(--primary-blue);
}

/* File Upload */
.hidden-file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.file-upload-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 20px;
    border: 2px dashed #cbd5e1;
    border-radius: 16px;
    background: #f8fafc;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 10px;
}

.file-upload-zone:hover {
    border-color: var(--brand-pink);
    background: rgba(236, 0, 140, 0.02);
}

.file-upload-zone svg {
    width: 40px;
    height: 40px;
    color: var(--text-muted);
    margin-bottom: 15px;
    transition: var(--transition);
}

.file-upload-zone:hover svg {
    color: var(--brand-pink);
    transform: translateY(-3px);
}

.upload-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.upload-subtext {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    display: block;
    max-width: 90%;
}

.upload-btn {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.file-upload-zone:hover .upload-btn {
    border-color: var(--brand-pink);
    color: var(--brand-pink);
}

.file-name-display {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    font-weight: 500;
}

/* Pulse animation for CTA */
@keyframes pulse-pink {
    0% {
        box-shadow: 0 0 0 0 rgba(236, 0, 140, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(236, 0, 140, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(236, 0, 140, 0);
    }
}

.btn-pulse {
    animation: pulse-pink 2s infinite;
}

.final-consent {
    background: #f8fafc;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.final-consent input {
    margin-top: 5px;
    width: 18px;
    height: 18px;
    accent-color: var(--brand-pink);
    flex-shrink: 0;
}

.final-consent label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.9rem;
}

/* WhatsApp Float */
.whatsapp-float {
    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;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
}

/* Cookie Overlay (Invasive) */
.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
    /* Dark blur */
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease;
}

.cookie-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.cookie-modal {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-xl);
    width: 90%;
    max-width: 480px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cookie-overlay.hidden .cookie-modal {
    transform: translateY(50px);
}

.cookie-icon {
    width: 60px;
    height: 60px;
    background: rgba(29, 113, 184, 0.1);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.cookie-icon svg {
    width: 30px;
    height: 30px;
}

.cookie-modal h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.cookie-modal p {
    font-size: 0.95rem;
    margin-bottom: 25px;
    color: var(--text-muted);
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 12px 20px;
    font-size: 1rem;
    flex: 1;
    border-radius: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.cookie-link {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: underline;
}

.cookie-link:hover {
    color: var(--primary-blue);
}

/* Responsive */
@media (max-width: 1024px) {
    .sales-banner {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 16px;
    }

    /* Mobile Menu */
    .menu-toggle {
        display: block;
    }

    .btn-nav {
        display: none;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 0 24px;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid #f8fafc;
        width: 100%;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 20px 0;
        font-size: 1.1rem;
    }

    /* Mobile Secondary Nav */
    .service-nav-list {
        justify-content: flex-start;
        overflow-x: auto;
        gap: 15px;
        padding: 15px 0;
        scrollbar-width: none;
    }

    .service-nav-list::-webkit-scrollbar {
        display: none;
    }

    .service-nav-item {
        flex-shrink: 0;
        min-width: 75px;
    }

    .service-nav-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 6px;
    }

    .service-nav-item span {
        font-size: 0.85rem;
    }

    /* Forms responsive */
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .radio-group-boxes,
    .radio-group-boxes.small-boxes {
        grid-template-columns: 1fr;
    }

    /* Prevent Hero Overlap */
    .hero {
        padding: 260px 0 80px;
    }

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