:root {
    --burgundy: #722F37;
    --burgundy-dark: #4a1f24;
    --gold: #C9A227;
    --gold-light: #d4b856;
    --sepia: #704214;
    --cream: #F5E6D3;
    --cream-dark: #E8D5C4;
    --charcoal: #1a1a1a;
    --ink: #2C2416;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Smooth transitions for interactive elements */
a, button, .nav-link, .service-card, .gallery-item, .testimonial-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Libre Baskerville', Georgia, serif;
    color: var(--ink);
    background: var(--cream);
    position: relative;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', Georgia, serif;
}

.navbar {
    background: rgba(26, 26, 26, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gold);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-icon {
    color: var(--gold);
    font-size: 1.2rem;
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.navbar-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.1);
}

.nav-link {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0.75rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.nav-link:hover {
    color: var(--gold) !important;
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.hero {
    height: 100vh;
    min-height: 700px;
    background: url('/static/images/tajamar1.jpg') center/cover no-repeat fixed;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26,26,26,0.6) 0%, rgba(44,36,22,0.7) 50%, rgba(26,26,26,0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--cream);
    text-align: center;
}

/* Hero Logo */
.hero-logo-container {
    margin-bottom: 1rem;
}

.hero-logo {
    width: auto;
    height: 280px;
    max-height: 280px;
    max-width: 90%;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(201, 162, 39, 0.5));
}

.hero-ornament {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.hero-ornament.top {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.hero-ornament.bottom {
    margin-top: 2rem;
    margin-bottom: 0;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 0 var(--burgundy-dark);
    letter-spacing: 3px;
}

.hero-divider {
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.hero-tagline {
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 0;
    text-shadow: 3px 3px 0 var(--burgundy-dark);
    letter-spacing: 2px;
}

.hero .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--burgundy);
    border: 2px solid var(--gold);
    padding: 0.85rem 2.5rem;
    font-family: 'Libre Baskerville', serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--burgundy-dark);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.3);
}

.btn-outline-light {
    border: 2px solid var(--cream);
    padding: 0.85rem 2.5rem;
    font-family: 'Libre Baskerville', serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.btn-outline-light:hover {
    background: rgba(245, 230, 211, 0.15);
    border-color: var(--gold);
    color: var(--gold);
}

.section-header {
    text-align: center;
    margin-bottom: 1rem;
}

.section-header.light .section-title {
    color: var(--cream);
}

.section-header.light .section-ornament {
    color: var(--gold);
}

.section-ornament {
    color: var(--burgundy);
    font-size: 1.5rem;
    margin: 0 1rem;
    vertical-align: middle;
}

.section-title {
    color: var(--burgundy-dark);
    font-weight: 700;
    font-size: 2.5rem;
    display: inline;
    letter-spacing: 2px;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid var(--cream-dark);
    transition: all 0.3s;
    height: 100%;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--burgundy);
    transform: scaleX(0);
    transition: transform 0.3s;
}

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

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

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease;
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--burgundy);
}

.service-card h4 {
    color: var(--ink);
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}

.card-divider {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin: 0.75rem auto;
}

.service-card p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

.pricing-box {
    background: var(--charcoal);
    padding: 0.5rem;
}

.pricing-border {
    border: 2px solid var(--gold);
    padding: 2.5rem;
}

.pricing-box h3 {
    color: var(--cream);
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.pricing-box p {
    color: rgba(245, 230, 211, 0.8);
}

.price .amount {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.price .period {
    color: rgba(245, 230, 211, 0.7);
    font-size: 0.9rem;
    font-style: italic;
}

/* Pricing Cards - New Design */
.pricing-card {
    background: #fff;
    border: 2px solid var(--cream-dark);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

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

.pricing-card.featured {
    border: 2px solid var(--gold);
    background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--burgundy);
    color: var(--cream);
    padding: 0.4rem 1.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 20px;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 1.5rem;
}

.pricing-icon {
    font-size: 2.5rem;
    color: var(--burgundy);
    margin-bottom: 0.75rem;
    display: block;
}

.pricing-card.featured .pricing-icon {
    color: var(--gold);
}

.pricing-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--charcoal);
    margin: 0;
}

.pricing-price {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--cream-dark);
}

.pricing-price .currency {
    font-size: 1.5rem;
    color: var(--sepia);
    vertical-align: top;
    line-height: 1;
}

.pricing-price .amount {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--burgundy);
    line-height: 1;
}

.pricing-card.featured .pricing-price .amount {
    color: var(--burgundy-dark);
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--sepia);
    font-style: italic;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.6rem 0;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.pricing-features li i {
    color: var(--burgundy);
    font-size: 1rem;
    flex-shrink: 0;
}

.pricing-features li.highlighted {
    color: var(--burgundy);
    font-weight: 600;
}

.pricing-features li.highlighted i {
    color: var(--gold);
}

.pricing-features li.not-included {
    color: #999;
}

.pricing-features li.not-included i {
    color: #ccc;
}

.pricing-note {
    font-size: 0.85rem;
    color: var(--sepia);
    font-style: italic;
    margin: 0;
    padding-top: 1rem;
    border-top: 1px solid var(--cream-dark);
}

.bg-dark-section {
    background: var(--charcoal);
    position: relative;
}

/* Parallax divider */
.parallax-divider {
    height: 300px;
    background: url('/static/images/pasto3.jpg') center/cover no-repeat fixed;
    position: relative;
}

.parallax-divider::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.5);
}

.contract-card {
    background: var(--cream);
    padding: 2.5rem;
    border: 2px solid var(--gold);
}

.contract-card h5 {
    color: var(--burgundy-dark);
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.contract-card h5:first-child {
    margin-top: 0;
}

.contract-card h5 i {
    color: var(--gold);
    margin-right: 0.5rem;
}

.contract-card ul {
    padding-left: 1.25rem;
    margin-bottom: 0;
}

.contract-card li {
    color: var(--ink);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.gallery-item {
    overflow: hidden;
    border: 3px solid var(--gold);
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    filter: sepia(20%);
    transition: filter 0.3s;
}

.gallery-item:hover img {
    filter: sepia(0%);
}

.gallery-zoom {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-zoom i {
    color: var(--gold);
    font-size: 2rem;
}

.gallery-item:hover .gallery-zoom {
    opacity: 1;
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border: 3px solid var(--gold);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 3rem;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--gold);
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: 2px solid var(--gold);
    color: var(--cream);
    font-size: 1.5rem;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10000;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover, .lightbox-next:hover {
    background: var(--burgundy);
    color: var(--gold);
}

#lightbox-caption {
    color: var(--cream);
    margin-top: 1rem;
    font-style: italic;
}

#lightbox-counter {
    color: var(--gold);
    font-size: 0.9rem;
}

.location-info {
    padding: 2rem;
    background: white;
    border: 1px solid var(--cream-dark);
}

.location-info h4 {
    color: var(--burgundy-dark);
    font-weight: 700;
    font-size: 1.5rem;
}

.location-info h4 i {
    color: var(--gold);
}

.location-sub {
    color: var(--sepia);
    font-style: italic;
    margin-bottom: 0;
}

.location-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 1.5rem 0;
}

.location-info p {
    line-height: 1.8;
}

.location-privacy-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--burgundy);
    border-radius: 8px;
    color: var(--cream);
}

.location-privacy-banner .privacy-icon {
    font-size: 2rem;
    color: var(--gold);
    flex-shrink: 0;
}

.location-privacy-banner p {
    margin: 0;
    font-size: 1.05rem;
    color: var(--cream);
    line-height: 1.5;
}

.location-privacy-banner strong {
    color: var(--gold);
}

.travel-time {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--cream);
    border-left: 4px solid var(--gold);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.travel-time i {
    font-size: 1.5rem;
    color: var(--burgundy);
}

.travel-time span {
    color: var(--ink);
}

.map-container {
    border: 4px solid var(--gold);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.travel-times-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.travel-times-grid .travel-time {
    margin-top: 0;
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 3rem;
    border: 1px solid var(--cream-dark);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-quote {
    color: var(--gold);
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--ink);
    font-style: italic;
    margin-bottom: 0;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 1rem;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    object-fit: cover;
    margin-bottom: 0.5rem;
}

.testimonial-initials {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    background: var(--burgundy);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.testimonial-author strong {
    color: var(--burgundy-dark);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.testimonial-author span {
    color: var(--sepia);
    font-size: 0.9rem;
}

.contact-card {
    background: var(--cream);
    padding: 3rem;
    border: 2px solid var(--gold);
}

.form-control {
    background: white;
    border: 1px solid var(--cream-dark);
    padding: 0.9rem 1rem;
    font-family: 'Libre Baskerville', serif;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

.form-label {
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 1px;
    font-size: 0.85rem;
    text-transform: uppercase;
}

#formMessage.success {
    background: rgba(201, 162, 39, 0.15);
    color: var(--sepia);
    padding: 1rem;
    border: 1px solid var(--gold);
    text-align: center;
}

#formMessage.error {
    background: rgba(114, 47, 55, 0.1);
    color: var(--burgundy);
    padding: 1rem;
    border: 1px solid var(--burgundy);
    text-align: center;
}

.form-privacy {
    font-size: 0.8rem;
    color: #666;
    text-align: center;
    margin-bottom: 0;
}

footer {
    background: var(--charcoal);
    color: var(--cream);
    border-top: 1px solid var(--gold);
}

.footer-logo {
    height: 180px;
    width: auto;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 20px rgba(201, 162, 39, 0.3));
}

.footer-tagline {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-divider {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.footer-motto {
    font-style: italic;
    color: rgba(245, 230, 211, 0.7);
    font-size: 0.9rem;
}

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    color: white;
}

.instagram-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(225, 48, 108, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    z-index: 1000;
    text-decoration: none;
}

.instagram-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(225, 48, 108, 0.5);
    color: white;
}

.footer-phone {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-phone:hover {
    color: var(--gold-light);
}

.footer-phone i {
    margin-right: 0.5rem;
}

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

.footer-social a {
    color: var(--cream);
    font-size: 1.5rem;
    transition: color 0.3s, transform 0.3s;
}

.footer-social a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-logo {
        height: 200px;
    }

    .hero h1,
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    .hero-tagline {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

    .hero .lead {
        font-size: 1rem;
    }

    .hero-ornament.top {
        font-size: 2rem;
    }

    .hero-divider {
        font-size: 0.9rem;
    }

    .footer-brand {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-ornament {
        display: block;
        margin: 0.5rem 0;
    }

    .pricing-border {
        padding: 1.5rem;
        text-align: center;
    }

    .price {
        margin-top: 1.5rem;
    }

    .price .amount {
        font-size: 2.5rem;
    }

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

    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }

    .instagram-btn {
        bottom: 85px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }

    .gallery-item img {
        height: 150px;
    }

    .lightbox-prev, .lightbox-next {
        padding: 0.75rem;
        font-size: 1.2rem;
    }

    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }

    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 2.5rem;
    }

    .lightbox-content img {
        max-height: 70vh;
    }

    .travel-time {
        padding: 0.75rem;
    }

    .travel-times-grid .travel-time {
        padding: 0.5rem 0.75rem;
    }

    .map-container iframe {
        min-height: 250px !important;
    }

    .whatsapp-btn, .instagram-btn {
        width: 50px;
        height: 50px;
        right: 15px;
    }

    .whatsapp-btn {
        bottom: 15px;
    }

    .instagram-btn {
        bottom: 75px;
        font-size: 1.4rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .testimonial-avatar {
        width: 60px;
        height: 60px;
    }

    /* Disable parallax on mobile - doesn't work well on iOS */
    .hero {
        background-attachment: scroll;
    }

    .parallax-divider {
        background-attachment: scroll;
        height: 200px;
    }

    /* Testimonial carousel on mobile */
    .testimonial-carousel {
        overflow: hidden;
        position: relative;
    }

    .testimonial-track {
        display: flex;
        transition: transform 0.5s ease;
    }

    .testimonial-slide {
        min-width: 100%;
        padding: 0 0.5rem;
        box-sizing: border-box;
    }

    .testimonial-dots {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1.5rem;
    }

    .testimonial-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--cream-dark);
        border: none;
        cursor: pointer;
        transition: background 0.3s;
    }

    .testimonial-dot.active {
        background: var(--gold);
    }
}

/* =============================================
   DOPAMINE ENGAGEMENT STYLES
   ============================================= */

/* 1. Hero staggered entrance animation */
.hero-stagger {
    opacity: 0;
    transform: translateY(20px);
    animation: heroReveal 0.8s ease forwards;
    animation-delay: calc(var(--stagger) * 200ms + 300ms);
}

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

/* 2. Scroll progress bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    z-index: 9999;
    transition: width 0.1s linear;
}

/* 3. Stats counter strip */
.stats-strip {
    background: var(--charcoal);
    padding: 3rem 0;
    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
}

.stat-item {
    padding: 1rem 0;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.stat-plus {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-light);
}

.stat-label {
    display: block;
    color: var(--cream);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0.5rem;
    opacity: 0.85;
}

.stat-label-only {
    display: block;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    font-style: italic;
    line-height: 1.3;
}

/* 4. Pricing CTA buttons */
.btn-outline-pricing {
    display: inline-block;
    padding: 0.7rem 2rem;
    border: 2px solid var(--burgundy);
    color: var(--burgundy);
    font-family: 'Libre Baskerville', serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-outline-pricing:hover {
    background: var(--burgundy);
    color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(114, 47, 55, 0.3);
}

.btn-pricing-featured {
    display: inline-block;
    padding: 0.7rem 2rem;
    background: var(--burgundy);
    border: 2px solid var(--gold);
    color: var(--cream);
    font-family: 'Libre Baskerville', serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-pricing-featured:hover {
    background: var(--burgundy-dark);
    color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.3);
}

/* 5. WhatsApp FAB pulse animation */
.whatsapp-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.25);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* 6. Service card icon hover micro-interaction */
.service-icon i {
    transition: transform 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.2);
    color: var(--gold);
}

.service-card:hover .service-icon {
    border-color: var(--gold-light);
}

/* 7. Urgency / scarcity cue */
.urgency-cue {
    text-align: center;
    color: var(--burgundy);
    font-size: 0.95rem;
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.urgency-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--burgundy);
    animation: urgencyBlink 1.5s ease-in-out infinite;
}

@keyframes urgencyBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

/* 8. Testimonial carousel - desktop: grid, mobile: carousel */
.testimonial-carousel {
    margin-top: 2rem;
}

@media (min-width: 769px) {
    .testimonial-track {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .testimonial-slide {
        min-width: unset;
    }

    .testimonial-dots {
        display: none;
    }
}

/* Stats responsive */
@media (max-width: 768px) {
    .stat-number {
        font-size: 2rem;
    }

    .stat-plus {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }
}
