/* ===================================
   FOKES PROPERTY - PEARL CITY PROMO
   Mobile-First Design
   =================================== */

:root {
    --primary: #1a237e;
    --primary-dark: #0d1442;
    --secondary: #3949ab;
    --gold: #FFD700;
    --gold-dark: #d4af37;
    --red: #e53935;
    --green: #25d366;
    --white: #ffffff;
    --off-white: #f5f7ff;
    --gray: #8892b0;
    --dark: #0a0a1a;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
}

/* ===== FLOATING PROMO BADGE ===== */
.floating-badge {
    position: fixed;
    top: 80px;
    left: 0;
    background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
    color: var(--white);
    padding: 8px 15px;
    font-size: 0.7rem;
    font-weight: 800;
    z-index: 100;
    border-radius: 0 20px 20px 0;
}

/* ===== HEADER ===== */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 15px;
    background: transparent;
    z-index: 1000;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.logo-container {
    height: 55px;
}

.logo {
    height: 100%;
    width: auto;
}

/* ===== HERO SECTION WITH VIDEO ===== */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 90px 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #000;
}

/* Video Background - Simple, works everywhere */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* NO special mobile overrides - keep it simple */
@media screen and (max-width: 768px) {
    .hero-video {
        /* Same as desktop - no changes needed */
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
        min-width: 100%;
        min-height: 100%;
        transform: none;
        object-fit: cover;
        object-position: center center;
    }
}

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

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

.promo-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    line-height: 0.9;
    margin-bottom: 10px;
}

.discount-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 6rem;
    display: block;
    background: linear-gradient(135deg, #FFD700 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.off-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    display: block;
    color: var(--white);
    margin-top: -10px;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

/* Countdown */
.countdown-mini {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 25px;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 14px;
    border-radius: 12px;
    text-align: center;
    min-width: 55px;
}

.countdown-item span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    display: block;
    color: var(--gold);
}

.countdown-item small {
    font-size: 0.6rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.countdown-sep {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: var(--gold);
    align-self: center;
    padding-bottom: 15px;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #FFD700 0%, #d4af37 100%);
    color: var(--primary-dark);
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Promo Image Card */
.promo-image-card {
    position: relative;
    z-index: 2;
    margin-top: 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    max-width: 350px;
}

.promo-image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.promo-image-card .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 30px 15px 15px;
    text-align: center;
}

.promo-image-card .image-overlay span {
    color: var(--white);
    font-size: 0.8rem;
    opacity: 0.8;
}

/* ===== PEARL INTRO SECTION ===== */
.pearl-intro {
    padding: 50px 20px;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 35px;
}

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

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-header.light .section-tag {
    background: linear-gradient(135deg, #FFD700 0%, #d4af37 100%);
    color: var(--primary-dark);
}

.section-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--primary);
    letter-spacing: 2px;
}

.section-header.light h2 {
    color: var(--white);
}

.section-header p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 5px;
}

.section-header.light p {
    color: rgba(255, 255, 255, 0.7);
}

.pearl-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.highlight-card {
    background: var(--off-white);
    padding: 20px 15px;
    border-radius: 16px;
    text-align: center;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.highlight-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.highlight-card span {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary-dark);
}

/* ===== PRICING SECTION ===== */
.pricing {
    padding: 50px 20px;
    background: linear-gradient(180deg, #0d1442 0%, #1a237e 100%);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.price-card {
    background: var(--white);
    border-radius: 16px;
    padding: 18px 12px;
    position: relative;
}

.price-card.featured {
    background: linear-gradient(135deg, #1a237e 0%, #0d1442 100%);
    color: var(--white);
}

.featured-tag {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.55rem;
    font-weight: 700;
}

.price-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.6rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.price-badge.gold {
    background: linear-gradient(135deg, #FFD700 0%, #d4af37 100%);
    color: var(--primary-dark);
}

.price-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
    color: var(--primary);
}

.price-card.featured h3 {
    color: var(--white);
}

.price-display {
    margin-bottom: 12px;
}

.old-price {
    font-size: 0.75rem;
    color: var(--gray);
    text-decoration: line-through;
    display: block;
    margin-bottom: 3px;
}

.price-card.featured .old-price {
    color: rgba(255, 255, 255, 0.5);
}

.new-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--primary);
    letter-spacing: 1px;
}

.price-card.featured .new-price {
    color: var(--gold);
}

.price-features {
    list-style: none;
    margin-bottom: 15px;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.7rem;
}

.price-card.featured .price-features li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.price-features li i {
    color: var(--green);
    font-size: 0.7rem;
}

.price-features li i.fa-star {
    color: var(--gold);
}

.price-cta {
    display: block;
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    color: var(--white);
    text-align: center;
    padding: 12px 8px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.75rem;
    text-decoration: none;
    text-transform: uppercase;
}

.price-cta.gold {
    background: linear-gradient(135deg, #FFD700 0%, #d4af37 100%);
    color: var(--primary-dark);
}

.deadline-banner {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.9rem;
}

.deadline-banner i {
    color: var(--gold);
}

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

/* ===== FEATURES SECTION ===== */
.features {
    padding: 50px 20px;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.feature-item {
    text-align: center;
    padding: 20px 10px;
    background: var(--off-white);
    border-radius: 16px;
}

.feature-icon-wrap {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.feature-icon-wrap i {
    font-size: 1.4rem;
    color: var(--white);
}

.feature-item span {
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--primary-dark);
    display: block;
    line-height: 1.3;
}

/* ===== WHY US SECTION ===== */
.why-us {
    padding: 50px 20px;
    background: linear-gradient(180deg, #0d1442 0%, #1a237e 100%);
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 25px;
    border-radius: 16px;
    text-align: center;
    flex: 1;
}

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--gold);
    display: block;
}

.stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 12px;
    color: var(--white);
}

.trust-item i {
    font-size: 1.3rem;
    color: var(--gold);
    width: 30px;
}

.trust-item span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 50px 20px;
    background: var(--white);
}

.google-form-btn-container {
    margin-bottom: 30px;
}

.google-form-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 20px;
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    color: var(--white);
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(26, 35, 126, 0.3);
}

.google-form-btn i {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

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

.contact-alternatives p {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.phone-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.phone-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 10px;
    background: var(--off-white);
    border-radius: 10px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
}

.phone-item i {
    color: var(--green);
}

.contact-buttons {
    display: flex;
    gap: 12px;
}

.contact-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
}

.contact-btn.whatsapp {
    background: var(--green);
    color: var(--white);
}

/* ===== FOOTER ===== */
.footer {
    padding: 40px 20px 120px;
    background: var(--dark);
    text-align: center;
    color: var(--white);
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo img {
    height: 70px;
    margin: 0 auto;
    display: block;
}

.footer-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 20px;
    padding: 0 10px;
    text-align: center;
}

.footer-address i {
    color: var(--gold);
    font-size: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    text-decoration: none;
}

.social-links a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.handle {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.website-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
}

.copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 85px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: var(--white);
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
}

.whatsapp-float i {
    font-size: 1.3rem;
}

/* ===== BOTTOM CTA BAR ===== */
.bottom-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    padding: 15px 20px;
    z-index: 998;
}

.bottom-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
}

/* =============================================
   ANIMATIONS & TRANSITIONS
   ============================================= */

/* Scroll Reveal Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Fade In Up */
.reveal-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Fade In Left */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

/* Fade In Right */
.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Scale Up */
.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Stagger Animation for Grid Items */
.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-item.active {
    opacity: 1;
    transform: translateY(0);
}

/* Button Hover Effects */
.cta-button {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* Pulse Animation */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* Card Hover Effects */
.highlight-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(26, 35, 126, 0.15);
}

.price-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.feature-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(26, 35, 126, 0.12);
}

/* Icon Animations */
.highlight-icon,
.feature-icon-wrap {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-card:hover .highlight-icon,
.feature-item:hover .feature-icon-wrap {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(26, 35, 126, 0.3);
}

/* Stats Counter Animation */
.stat-num {
    transition: all 0.3s ease;
}

.stat-box:hover .stat-num {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* Trust Items */
.trust-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.1);
}

/* Phone Items */
.phone-item {
    transition: all 0.3s ease;
}

.phone-item:hover {
    transform: scale(1.05);
    background: var(--primary);
    color: var(--white);
}

.phone-item:hover i {
    color: var(--gold);
}

/* Social Links */
.social-links a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    background: var(--gold);
    color: var(--primary-dark);
}

/* WhatsApp Float Animation */
.whatsapp-float {
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

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

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

/* Bottom CTA Bar */
.bottom-cta-bar {
    transition: all 0.3s ease;
}

.bottom-cta {
    transition: all 0.3s ease;
}

.bottom-cta:active {
    transform: scale(0.98);
}

/* Promo Image Card */
.promo-image-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-image-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

/* Google Form Button */
.google-form-btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.google-form-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.google-form-btn:hover::before {
    left: 100%;
}

.google-form-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(26, 35, 126, 0.4);
}

/* Price CTA Buttons */
.price-cta {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.price-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 35, 126, 0.3);
}

.price-cta.gold:hover {
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Section Tags Animation */
.section-tag {
    transition: all 0.3s ease;
}

.section-tag:hover {
    transform: scale(1.05);
}

/* Countdown Animation */
.countdown-item {
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.25);
}

/* Deadline Banner */
.deadline-banner {
    transition: all 0.3s ease;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 5px rgba(255, 215, 0, 0.2);
    }
    to {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    }
}

/* Smooth Section Transitions */
section {
    transition: background 0.5s ease;
}

/* Hero Content Animation on Load */
.hero-content {
    animation: heroFadeIn 1s ease-out forwards;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Promo Card Animation on Load */
.promo-image-card {
    animation: promoSlideIn 1.2s ease-out 0.3s forwards;
    opacity: 0;
}

@keyframes promoSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Price Badge Bounce */
.price-badge {
    animation: badgeBounce 2s ease-in-out infinite;
}

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

/* Featured Tag Shine */
.featured-tag {
    position: relative;
    overflow: hidden;
}

.featured-tag::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 200%;
    }
