:root {
    /* Invisalign-inspired Palette */
    --primary: #1E3968;
    /* Deep Navy */
    --primary-hover: #152a4d;
    --action: #0077C8;
    /* Bright Blue */
    --action-hover: #0062a3;
    --accent: #00BFB3;
    /* Cyan/Teal */
    --white: #FFFFFF;
    --light-gray: #F2F2F2;
    --text-dark: #333333;
    --text-light: #666666;

    /* Spacing & Layout */
    --container-width: 1140px;
    --header-height: 80px;
    --radius-btn: 50px;
    --radius-card: 12px;

    /* Shadows */
    --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 60px;
    /* Space for sticky CTA on mobile */
}

h1,
h2,
h3,
h4,
h5,
.logo-text {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Navigation --- */
.navbar {
    height: var(--header-height);
    background: var(--white);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.logo-icon {
    height: 50px;
    /* Adjust based on navbar height */
    width: auto;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text {
    font-size: 1.4rem;
    letter-spacing: -0.5px;
    color: var(--primary);
}

.logo-sub {
    font-size: 0.9rem;
    color: var(--action);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

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

.nav-actions {
    display: flex;
    align-items: center;
}

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

/* --- Buttons --- */
.btn {
    padding: 12px 28px;
    border-radius: var(--radius-btn);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--action-hover);
    border-color: var(--action-hover);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 119, 200, 0.4);
    }

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

    100% {
        box-shadow: 0 0 0 0 rgba(0, 119, 200, 0);
    }
}

/* --- Hero Section --- */
.hero {
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 80px;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.text-highlight {
    color: var(--action);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-img-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.hero-img {
    width: 100%;
    display: block;
}

/* --- Gallery Redesign (Master-Detail) --- */
.gallery-redesign-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.gallery-text-col {
    padding-right: 20px;
}

.gallery-subtitle {
    font-size: 0.9rem;
    color: var(--action);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 15px;
}

.gallery-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #333;
}

.gallery-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.gallery-visuals-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-slider-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* Square-ish */
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.img-comp-container {
    position: relative;
    height: 100%;
    /* Fill wrapper */
    width: 100%;
    overflow: hidden;
}

.img-comp-img {
    position: absolute;
    width: auto;
    height: auto;
    overflow: hidden;
}

.img-comp-img img {
    display: block;
    height: 100%;
    width: auto;
    object-fit: cover;
    /* Ensure it covers the area */
}

/* Custom Pill Handle */
.img-comp-slider {
    position: absolute;
    z-index: 9;
    cursor: ew-resize;
    width: 120px;
    /* Pill width */
    height: 40px;
    background-color: var(--white);
    border: 2px solid var(--action);
    /* Green/Blue border */
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 700;
    top: 85% !important;
    /* Position near bottom */
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.img-comp-slider::after {
    content: "< Deslizar >";
    color: var(--text-dark);
}

.img-comp-slider i {
    display: none;
    /* Hide old icon */
}

/* Thumbnails */
.thumbnails-row {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.thumb-item {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.2s;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-item:hover {
    opacity: 0.8;
}

.thumb-item.active {
    opacity: 1;
    border-color: var(--action);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .gallery-redesign-container {
        grid-template-columns: 1fr;
    }

    .gallery-text-col {
        text-align: center;
        padding-right: 0;
        margin-bottom: 30px;
    }
}

/* --- Audience Section --- */
#audience {
    padding-bottom: 100px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    text-align: center;
    margin-top: 40px;
}

.audience-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.audience-img-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease;
}

.audience-item:hover .audience-img-circle {
    transform: scale(1.05);
}

.audience-img-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.audience-item h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.audience-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 300px;
    /* Limit line length for readability */
}

.audience-link {
    color: var(--action);
    /* Blue link */
    font-weight: 700;
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

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

.audience-link i {
    font-size: 1.1rem;
}

/* --- 3D Promo Section --- */
.promo-3d-section {
    background-color: #0077C8;
    color: var(--white);
    padding-top: 100px;
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
    /* "No se salgan" - Contained */
    z-index: 10;
}

.promo-3d-container {
    display: flex;
    align-items: center;
    position: relative;
    min-height: 400px;
}

.promo-3d-content {
    max-width: 50%;
    position: relative;
    z-index: 30;
    /* Text ON TOP of everything */
}

.promo-subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 15px;
    opacity: 0.9;
}

.promo-title {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
}

.promo-desc {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 450px;
}

.promo-3d-visuals {
    position: absolute;
    right: -300px;
    top: -150px;
    width: 900px;
    height: 900px;
    pointer-events: none;
    z-index: 10;
}

.promo-case-img {
    width: 100%;
    height: auto;
    transform: rotate(5deg);
    filter: drop-shadow(-20px 40px 60px rgba(0, 0, 0, 0.5));
    position: relative;
    z-index: 1;
}

/* Floating Popcorn */
.popcorn {
    position: absolute;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

/* --- Specific Positions (Contained & Larger) --- */

/* P1: Bottom Left (Large, Blurry) */
.popcorn.p1 {
    width: 180px;
    /* Larger */
    bottom: 50px;
    /* Contained */
    left: -400px;
    /* Closer to center */
    filter: blur(4px);
    z-index: 20;
    transform: rotate(45deg);
}

/* P2: Top Center */
.popcorn.p2 {
    width: 100px;
    top: 50px;
    /* Contained */
    left: -200px;
    transform: rotate(-15deg);
    z-index: 20;
}

/* P3: Middle Left (Avoid text) */
.popcorn.p3 {
    width: 80px;
    top: 30%;
    left: -450px;
    animation-delay: 1s;
    transform: rotate(10deg);
}

/* P4: Bottom Center */
.popcorn.p4 {
    width: 120px;
    bottom: 80px;
    /* Contained */
    left: -150px;
    filter: blur(2px);
    animation-delay: 2s;
    z-index: 20;
}

/* P5: Top Right */
.popcorn.p5 {
    width: 70px;
    top: 150px;
    right: 200px;
    animation-delay: 3s;
}

/* P6: Bottom Right */
.popcorn.p6 {
    width: 90px;
    bottom: 250px;
    right: 350px;
    animation-delay: 1.5s;
    transform: rotate(-30deg);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

.promo-bottom-bar {
    text-align: center;
    padding: 60px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    position: relative;
    z-index: 20;
    /* Ensure text is on top */
}

.promo-bottom-bar {
    text-align: center;
    padding: 60px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.promo-bottom-bar h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.btn-white {
    background: var(--white);
    color: var(--action);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .promo-3d-container {
        flex-direction: column;
        text-align: center;
    }

    .promo-3d-content {
        max-width: 100%;
        margin-bottom: 300px;
        /* Space for image */
    }

    .promo-3d-visuals {
        right: 50%;
        transform: translateX(50%);
        top: auto;
        bottom: -50px;
        width: 400px;
        height: auto;
    }

    .promo-desc {
        margin: 0 auto;
    }
}

/* --- Premium Testimonials Section --- */
#testimonios {
    padding-bottom: 100px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #FFD700;
    /* Gold */
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 25px;
}

.patient-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.patient-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.patient-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.treatment-type {
    font-size: 0.85rem;
    color: var(--text-light);
    display: block;
}

/* --- Testimonials Ticker --- */
.bg-dark {
    background-color: var(--primary);
    color: var(--white);
}

.text-white {
    color: var(--white) !important;
}

.testimonial-ticker-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.testimonial-ticker {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
    cursor: grab;
}

.testimonial-ticker::-webkit-scrollbar {
    display: none;
}

.testimonial-ticker:active {
    cursor: grabbing;
}

.ticker-card {
    flex: 0 0 320px;
    /* Fixed width for ticker items */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px;
    border-radius: 16px;
    color: var(--white);
    transition: transform 0.3s ease, background 0.3s;
}

.ticker-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.ticker-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.ticker-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.ticker-info h4 {
    font-size: 1rem;
    margin: 0;
    color: var(--white);
}

.ticker-info .stars {
    font-size: 0.8rem;
    color: #FFC107;
    margin: 0;
}

.ticker-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

/* --- Contact & Location --- */
/* --- Contact & Location --- */
.location-section {
    background-color: var(--primary);
    color: var(--white);
    padding: 40px 0;
    /* Reduced padding */
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    /* Reduced gap */
}

/* ... (lines 855-1202 skipped) ... */

.contact-map {
    min-height: 300px;
    /* Reduced height */
    border-radius: 20px;
    overflow: hidden;
}

.contact-info h2 {
    color: var(--white);
    margin-bottom: 10px;
}

.contact-intro {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

/* Slideshow Styles */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 250px;
    background: #000;
}

.slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide-img.active {
    opacity: 1;
}

.contact-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    /* WhatsApp Green */
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 40px;
    transition: transform 0.2s;
}

.contact-phone-btn:hover {
    transform: scale(1.05);
}

.hours-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.hours-box h4,
.locations-list h4 {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* --- Interactive Map List --- */
.location-item {
    margin-bottom: 20px;
    border-left: 4px solid transparent;
    padding: 15px;
    cursor: pointer;
    border-radius: 0 8px 8px 0;
    transition: all 0.2s ease;
}

.location-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.location-item.active {
    border-left-color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
}

.location-item h5 {
    color: var(--white);
    margin-bottom: 5px;
}

.location-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.click-hint {
    color: var(--accent);
    font-size: 0.8rem;
    display: block;
    margin-top: 5px;
}

.map-link {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Animations */
/* --- Premium Experience Grid --- */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.exp-item {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    height: 300px;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease;
    cursor: pointer;
    /* Indicate clickable */
}

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

.exp-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.exp-item:hover .exp-img {
    transform: scale(1.05);
}

.exp-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(30, 57, 104, 0.95), transparent);
    padding: 20px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.exp-item:hover .exp-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(30, 57, 104, 1), rgba(30, 57, 104, 0.4));
}

.exp-overlay h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.see-more {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.exp-item:hover .see-more {
    opacity: 1;
    transform: translateY(0);
}

/* --- Modals --- */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

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

.close-modal {
    color: var(--text-light);
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s;
}

.close-modal:hover {
    color: var(--action);
}

/* Modal Navigation Arrows */
.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 20;
    font-size: 1.2rem;
}

.modal-nav:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.modal-nav.prev {
    left: 10px;
}

.modal-nav.next {
    right: 10px;
}

@media (min-width: 768px) {
    .modal-nav.prev {
        left: -20px;
    }

    .modal-nav.next {
        right: -20px;
    }
}

.modal-body {
    padding: 30px;
    text-align: left;
}

.modal-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    margin: -30px -30px 20px -30px;
    /* Pull image to edges */
    width: calc(100% + 60px);
}

.modal-body h2 {
    color: var(--primary);
    margin-bottom: 15px;
}

.modal-body p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.modal-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.modal-body ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
}

.modal-body ul li i {
    color: var(--action);
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.contact-map {
    min-height: 300px;
    border-radius: 20px;
    overflow: hidden;
}

.map-frame {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- Sticky Mobile CTA --- */
.sticky-cta-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: var(--white);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 2000;
}

.btn-sticky {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: var(--action);
    color: var(--white);
    padding: 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {

    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-cta-group {
        justify-content: center;
    }

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

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

    .sticky-cta-mobile {
        display: block;
    }

    body {
        padding-bottom: 80px;
    }

    /* Ensure content isn't hidden behind sticky CTA */
}