/* ============================================
   🥥 DUSHI REUNION WEEK - GOLDEN HOUR VISUAL SYSTEM
   Tommy Coconut Private Resorts
   "Bioluminescent Luxury" / "Sunset at 5:30 PM"
   ============================================ */

/* ============================================
   CSS VARIABLES - THE GRAND SLAM PALETTE
   ============================================ */
:root {
    /* Primary Colors */
    --tommy-turquoise: #40E0D0;
    --magical-hour-gold: #FFC125;
    --deep-lagoon-navy: #002D42;
    --sunset-coral: #FF7F50;
    
    /* Supporting Colors */
    --warm-alabaster: #FDFBF7;
    --champagne: #F5D0A9;
    --amber-glow: rgba(255, 193, 37, 0.6);
    --turquoise-glow: rgba(64, 224, 208, 0.4);
    --coral-glow: rgba(255, 127, 80, 0.5);
    
    /* Text Colors */
    --text-light: #FDFBF7;
    --text-dark: #1a1a2e;
    --text-muted: rgba(253, 251, 247, 0.7);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-bg-warm: rgba(255, 193, 37, 0.1);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-border-gold: rgba(255, 193, 37, 0.3);
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #FFC125 0%, #F5D0A9 50%, #FFC125 100%);
    --gradient-sunset: linear-gradient(135deg, #FF7F50 0%, #FFC125 100%);
    --gradient-ocean: linear-gradient(180deg, #002D42 0%, #004d6d 100%);
    --gradient-hero: linear-gradient(180deg, 
        rgba(0, 45, 66, 0.7) 0%, 
        rgba(0, 45, 66, 0.9) 50%, 
        #002D42 100%);
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-max: 1200px;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background: var(--deep-lagoon-navy);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ============================================
   AMBIENT BACKGROUND GLOW
   ============================================ */
.ambient-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(255, 193, 37, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(64, 224, 208, 0.06) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 80%, rgba(255, 127, 80, 0.05) 0%, transparent 50%);
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.section-icon {
    display: block;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

/* Gold Shimmer Effect - Premium Metallic */
.gold-shimmer {
    background: linear-gradient(
        135deg,
        #BF953F 0%,
        #FCF6BA 25%,
        #FBF5B7 35%,
        #AA771C 50%,
        #FCF6BA 65%,
        #FBF5B7 75%,
        #BF953F 100%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: metallic-shimmer 4s ease-in-out infinite;
}

@keyframes metallic-shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Simpler gold shimmer for smaller text */
.gold-shimmer-simple {
    background: linear-gradient(135deg, #FFC125 0%, #F5D0A9 50%, #FFC125 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gold-text {
    color: var(--magical-hour-gold);
}

/* ============================================
   GLASS CARDS (HEAT HAZE EFFECT)
   ============================================ */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
}

.glass-card-warm {
    background: var(--glass-bg-warm);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border-gold);
    border-radius: 24px;
    padding: 2rem;
}

.glass-card-dark {
    background: rgba(0, 45, 66, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(64, 224, 208, 0.2);
    border-radius: 24px;
    padding: 2rem;
}

.glass-card-gold {
    background: linear-gradient(135deg, rgba(255, 193, 37, 0.15) 0%, rgba(245, 208, 169, 0.1) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border-gold);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 0 30px rgba(255, 193, 37, 0.2);
}

/* ============================================
   BUTTONS - THE LANTERN EFFECT
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--magical-hour-gold);
    color: var(--deep-lagoon-navy);
}

.btn-glow {
    box-shadow: 
        0 0 20px var(--amber-glow),
        0 4px 15px rgba(0, 0, 0, 0.3);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 
            0 0 20px var(--amber-glow),
            0 4px 15px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 
            0 0 35px var(--amber-glow),
            0 0 50px rgba(255, 193, 37, 0.3),
            0 4px 15px rgba(0, 0, 0, 0.3);
    }
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 0 40px var(--amber-glow),
        0 8px 25px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--tommy-turquoise);
    box-shadow: 0 0 15px var(--turquoise-glow);
}

.btn-secondary:hover {
    background: var(--tommy-turquoise);
    color: var(--deep-lagoon-navy);
    transform: translateY(-3px);
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        url('/images/hero-background.png') center 100% / cover no-repeat;
        
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(180deg, 
            rgba(0, 45, 66, 0.2) 0%, 
            rgba(0, 45, 66, 0.3) 50%, 
            rgba(0, 45, 66, 0.6) 80%,
            rgba(0, 45, 66, 0.85) 95%,
            rgba(0, 45, 66, 1) 100%),
        radial-gradient(ellipse at 50% 30%, rgba(255, 193, 37, 0.15) 0%, transparent 60%);
}

.hero-content {
    text-align: center;
    padding: 60px 24px;
    position: relative;
    z-index: 2;
}

.badge-exclusive {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 45, 66, 0.7);
    border: 1px solid var(--glass-border-gold);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--magical-hour-gold);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(255, 193, 37, 0.2);
}

.coconut-icon {
    font-size: 1.2rem;
}

.hero-title {
    font-size: clamp(3.5rem, 12vw, 7rem);
    font-weight: 700;
    line-height: 1;
    text-shadow: 
        0 4px 30px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.05em;
}

.title-line {
    display: block;
}

.title-line:first-child {
    /* Premium metallic gold for "DUSHI" */
    background: linear-gradient(
        180deg,
        #FFF9E6 0%,
        #FFD700 20%,
        #FFC125 40%,
        #DAA520 60%,
        #B8860B 80%,
        #8B6914 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.hero-title .gold-shimmer {
    font-size: clamp(2.5rem, 9vw, 5.5rem);
    filter: drop-shadow(0 4px 15px rgba(255, 193, 37, 0.4));
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
    position: relative;
    padding: var(--section-padding) 0;
    background: transparent;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, var(--deep-lagoon-navy) 0%, transparent 100%);
    pointer-events: none;
}

@media (min-width: 769px) {
    .video-section::before {
        height: 40px;
    }
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto 3rem;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 193, 37, 0.15);
    border: 2px solid var(--glass-border-gold);
}

.video-container {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 22px;
}

.hero-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1;
    transition: var(--transition-smooth);
}

.video-play-overlay:focus {
    outline: 2px solid var(--magical-hour-gold);
    outline-offset: 3px;
}

.video-play-overlay:hover .video-overlay {
    background: rgba(0, 45, 66, 0.15);
}

.video-play-overlay:hover .play-button {
    transform: scale(1.15);
    box-shadow:
        0 0 60px var(--amber-glow),
        0 0 100px rgba(255, 193, 37, 0.5);
}

.video-container.is-playing .video-play-overlay {
    visibility: hidden;
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 45, 66, 0.3);
    transition: var(--transition-smooth);
}

.play-button {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--magical-hour-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 40px var(--amber-glow),
        0 0 80px rgba(255, 193, 37, 0.3);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
    animation: pulse-glow 2s ease-in-out infinite;
}

.play-button i {
    font-size: 2.2rem;
    color: var(--deep-lagoon-navy);
    margin-left: 8px;
}

.video-label {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
}

/* Tommy's Message */
.tommy-message {
    max-width: 700px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.tommy-avatar {
    font-size: 3rem;
    flex-shrink: 0;
}

.tommy-text p {
    margin-bottom: 1rem;
}

.checklist {
    list-style: none;
    margin: 1.5rem 0;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
}

.checklist i {
    color: var(--tommy-turquoise);
}

.tommy-signature {
    font-style: italic;
    color: var(--magical-hour-gold);
    font-weight: 600;
}

/* CTA Group */
.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.cta-hint {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================
   COUNTDOWN SECTION
   ============================================ */
.countdown-section {
    padding: 60px 0;
}

.countdown-wrapper {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.countdown-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.countdown-header h2 {
    font-size: 1.5rem;
    color: var(--text-light);
}

.clock-icon {
    font-size: 2rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-value {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    color: var(--magical-hour-gold);
    text-shadow: 0 0 20px var(--amber-glow);
    line-height: 1;
}

.time-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.time-separator {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 6vw, 3rem);
    color: var(--tommy-turquoise);
    align-self: flex-start;
    margin-top: 0.2rem;
}

.countdown-urgency {
    color: var(--text-muted);
    line-height: 1.8;
}

.countdown-urgency strong {
    color: var(--magical-hour-gold);
}

/* Urgency: struck "50", "28" to the right in turquoise */
.urgency-spots-wrap {
    display: inline;
}

.urgency-spots-new {
    color: var(--tommy-turquoise);
    font-size: 1.1em;
}

.urgency-spots-old {
    text-decoration: line-through;
}

.countdown-urgency em {
    color: var(--tommy-turquoise);
}

/* Large Countdown */
.countdown-large .time-value {
    font-size: clamp(3rem, 10vw, 5rem);
}

/* ============================================
   STORY SECTION
   ============================================ */
.story-section {
    padding: var(--section-padding) 0;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-quotes {
    margin: 2rem 0;
}

.story-quotes .quote {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--magical-hour-gold);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.story-quotes p {
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.story-reality {
    margin-top: 3rem;
    text-align: left;
}

.story-reality p {
    margin-bottom: 1rem;
}

/* ============================================
   HEARD SECTION
   ============================================ */
.heard-section {
    padding: var(--section-padding) 0;
}

.heard-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.lead {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.highlight {
    color: var(--magical-hour-gold);
    font-weight: 600;
}

.testimonial {
    margin-top: 3rem;
    text-align: center;
}

.testimonial-image {
    margin-bottom: 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.testimonial-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
}

.testimonial p {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.testimonial cite {
    display: block;
    color: var(--magical-hour-gold);
    font-style: normal;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.testimonial-note {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================
   INTRO SECTION
   ============================================ */
.intro-section {
    padding: var(--section-padding) 0;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-lead {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.intro-content p {
    margin-bottom: 1rem;
}

.product-reveal {
    margin-top: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 193, 37, 0.1) 0%, rgba(0, 45, 66, 0.8) 100%);
    border-radius: 24px;
    border: 2px solid var(--glass-border-gold);
}

.mega-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.tagline-sub {
    color: var(--text-muted);
}

/* Dushi Showcase - Collage Image */
.dushi-showcase {
    margin-top: 3rem;
    text-align: center;
}

.dushi-showcase img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 24px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(255, 193, 37, 0.15);
    border: 2px solid var(--glass-border-gold);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.dushi-showcase img:hover {
    transform: scale(1.02);
    box-shadow: 
        0 30px 100px rgba(0, 0, 0, 0.6),
        0 0 80px rgba(255, 193, 37, 0.25);
}

.showcase-caption {
    margin-top: 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--tommy-turquoise);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ============================================
   THIRD OPTION SECTION - REDESIGNED
   ============================================ */
.third-option-section {
    padding: var(--section-padding) 0;
}

.options-comparison {
    max-width: 900px;
    margin: 0 auto;
}

/* Old Options Row */
.old-options {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    margin-top: 2rem;
}

.option-card.option-old {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
}

.options-divider {
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
}

.options-divider span {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.option-old .option-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--text-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.option-old h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.option-old p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.option-old .negative {
    color: var(--sunset-coral);
    font-size: 0.85rem;
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.option-old .negative i {
    font-size: 0.75rem;
}

/* New Option Arrow */
.new-option-wrapper {
    margin-top: 2rem;
}

.new-option-arrow {
    text-align: center;
    margin-bottom: 1.5rem;
}

.new-option-arrow span {
    display: block;
    color: var(--tommy-turquoise);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.new-option-arrow i {
    color: var(--magical-hour-gold);
    font-size: 1.5rem;
    animation: bounce-down 1.5s ease-in-out infinite;
}

@keyframes bounce-down {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* New Option Card */
.option-card.option-new {
    padding: 0;
    overflow: hidden;
}

.option-new-content {
    display: flex;
    align-items: stretch;
}

.option-new-text {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.option-new-image {
    width: 45%;
    min-height: 300px;
    overflow: hidden;
}

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

.option-new:hover .option-new-image img {
    transform: scale(1.05);
}

.option-new .option-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--magical-hour-gold);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--deep-lagoon-navy);
    margin-bottom: 1rem;
}

.option-new h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.option-tagline {
    color: var(--magical-hour-gold);
    font-weight: 600;
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.option-features {
    list-style: none;
    margin: 1rem 0;
}

.option-features li {
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.option-features li i {
    color: var(--magical-hour-gold);
    font-size: 0.85rem;
}

.option-bottom {
    margin-top: 1rem;
    color: var(--tommy-turquoise);
    font-size: 0.95rem;
}

.option-credit {
    text-align: center;
    padding: 1rem 2rem 1.5rem;
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 193, 37, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .old-options {
        flex-direction: column;
    }
    
    .options-divider {
        justify-content: center;
        padding: 0.5rem 0;
    }
    
    .option-new-content {
        flex-direction: column;
    }
    
    .option-new-image {
        width: 100%;
        min-height: 200px;
        order: -1;
    }
    
    .option-new-text {
        padding: 1.5rem;
    }
}

/* ============================================
   CHANGES SECTION
   ============================================ */
.changes-section {
    padding: var(--section-padding) 0;
}

.changes-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-answer {
    font-size: 1.2rem;
    color: var(--text-light);
}

.change-card {
    max-width: 900px;
    margin: 0 auto 3rem;
    overflow: hidden;
}

.change-image {
    margin: -2rem -2rem 2rem -2rem;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
}

.change-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.change-image-cover {
    object-fit: cover;
    object-position: center;
}

.change-card:hover .change-image img {
    transform: scale(1.03);
}

/* 4-Photo Grid for Culinary Section */
.change-image-grid {
    margin: -2rem -2rem 2rem -2rem;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

/* 3-Photo Grid for Car Section */
.change-image-grid.car-gallery {
    grid-template-columns: repeat(3, 1fr);
}

.change-image-grid.car-gallery img:first-child {
    border-top-left-radius: 22px;
    border-top-right-radius: 0;
}

.change-image-grid.car-gallery img:nth-child(2) {
    border-top-right-radius: 0;
}

.change-image-grid.car-gallery img:nth-child(3) {
    border-top-right-radius: 22px;
}

@media (max-width: 768px) {
    .change-image-grid.car-gallery {
        grid-template-columns: 1fr 1fr;
    }
    
    .change-image-grid.car-gallery img:nth-child(3) {
        grid-column: 1 / 3;
        border-top-right-radius: 0;
    }
}

.change-image-grid img {
    width: 100%;
    height: 175px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.change-image-grid img:hover {
    transform: scale(1.05);
    z-index: 1;
    filter: brightness(1.1);
}

/* Round corners only on outer edges */
.change-image-grid img:first-child {
    border-top-left-radius: 22px;
}

.change-image-grid img:nth-child(2) {
    border-top-right-radius: 22px;
}

@media (max-width: 768px) {
    .change-image-grid img {
        height: 120px;
    }
}

.change-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.change-card h3 {
    font-size: 1.8rem;
    color: var(--magical-hour-gold);
    margin-bottom: 1.5rem;
}

.change-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.change-before, .change-after {
    padding: 1rem;
    border-radius: 12px;
}

.change-before {
    background: rgba(255, 127, 80, 0.1);
    border-left: 3px solid var(--sunset-coral);
}

.change-after {
    background: rgba(64, 224, 208, 0.1);
    border-left: 3px solid var(--tommy-turquoise);
}

.label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.change-before .label {
    color: var(--sunset-coral);
}

.change-note {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.change-result {
    color: var(--tommy-turquoise);
}

.change-punchline {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: var(--magical-hour-gold);
}

/* Culinary Details */
.culinary-details {
    margin: 2rem 0;
}

.culinary-details h4 {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.culinary-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.culinary-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Experiences Table */
.experiences-table-wrapper {
    overflow-x: auto;
    margin-top: 2rem;
}

.experiences-table {
    width: 100%;
    border-collapse: collapse;
}

.experiences-table th,
.experiences-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

.experiences-table th {
    color: var(--magical-hour-gold);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.experiences-table td {
    color: var(--text-light);
}

.exp-icon {
    margin-right: 0.5rem;
}

/* Zero Fees List */
.zero-fees-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.zero-fees-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.zero-fees-list i {
    color: var(--tommy-turquoise);
}

/* No-Mental-Load: support features grid */
.support-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.support-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 45, 66, 0.3);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.support-feature .feature-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.support-feature strong {
    display: block;
    color: var(--magical-hour-gold);
    margin-bottom: 0.3rem;
}

.support-feature p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 768px) {
    .support-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Memory Makers & Extras grid */
.memory-makers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 2rem;
    gap: 1.5rem;
}

.memory-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(0, 45, 66, 0.3);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.memory-item .memory-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.8rem;
}

.memory-item strong {
    display: block;
    color: var(--magical-hour-gold);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.memory-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 768px) {
    .memory-makers-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    padding: var(--section-padding) 0;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.grand-slam-image {
    max-width: 800px;
    margin: 0 auto 3rem;
    border-radius: 20px;
    overflow: hidden;
}

.grand-slam-image img {
    width: 100%;
    height: auto;
    display: block;
}

.pricing-story {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

.pricing-story p {
    margin-bottom: 1rem;
}

.pricing-punchline {
    color: var(--magical-hour-gold);
    font-size: 1.2rem;
}

.pricing-table-wrapper {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table td {
    padding: 1.2rem;
    border-bottom: 1px solid var(--glass-border);
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table .price {
    text-align: right;
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.strikethrough {
    text-decoration: line-through;
    color: var(--text-muted);
}

.featured-row {
    background: rgba(255, 193, 37, 0.1);
    border-radius: 12px;
}

.featured-row td {
    border-bottom: none;
}

.gold-price {
    color: var(--magical-hour-gold);
    font-size: 2rem !important;
    text-shadow: 0 0 20px var(--amber-glow);
}

.savings-time-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

@media (max-width: 768px) {
    .savings-time-grid {
        grid-template-columns: 1fr;
    }
}

.savings-breakdown {
    margin: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.savings-breakdown h3 {
    color: var(--tommy-turquoise);
    margin-bottom: 1.5rem;
}

.savings-breakdown ul {
    list-style: none;
    margin-bottom: 2rem;
}

.savings-breakdown li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
}

.saving-amount {
    color: var(--magical-hour-gold);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.savings-note {
    color: var(--text-muted);
    line-height: 1.8;
}

.time-audit-teaser {
    margin: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.time-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.time-audit-teaser h3 {
    color: var(--magical-hour-gold);
    margin-bottom: 1rem;
}

.time-result {
    color: var(--tommy-turquoise);
    font-size: 1.1rem;
}

/* ============================================
   VIBE CHECK SECTION
   ============================================ */
.vibe-check-section,
.apply-here-section {
    padding: var(--section-padding) 0;
    scroll-margin-top: 5rem; /* offset for fixed nav when scrolling to #vibe-check */
}

/* In-page anchor for #apply-here; no layout space; 0 margin so section lands in view */
.anchor-target {
    display: block;
    height: 0;
    overflow: hidden;
    scroll-margin-top: 0;
}

/* Apply page: nav above form (standalone page for everyone) */
.apply-page-header {
    padding: 1.5rem 0 0;
}
.apply-page-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}
.apply-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}
.apply-back-link:hover {
    color: var(--magical-hour-gold);
}
.apply-back-link:focus {
    outline: 2px solid var(--magical-hour-gold);
    outline-offset: 2px;
}
.apply-nav-note {
    font-size: 0.85em;
    color: var(--text-muted);
    font-weight: 400;
}

.vibe-check-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.vibe-check-form {
    max-width: 900px;
    margin: 0 auto 2rem;
}

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

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

.form-row-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.form-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.form-buttons .btn {
    flex: 1;
    max-width: 280px;
    min-width: 200px;
}

.form-group label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-light);
}

.form-group label .required {
    color: var(--sunset-coral, #e57474);
    margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    background: rgba(0, 45, 66, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--magical-hour-gold);
    box-shadow: 0 0 15px var(--amber-glow);
}

.form-group select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='rgba(253%2C251%2C247%2C0.5)' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    padding-right: 2.5rem;
}

.form-group select option {
    background: var(--deep-lagoon-navy);
}

/* Phone input: country code dropdown + number side by side */
.phone-input-wrapper {
    display: flex;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(0, 45, 66, 0.5);
    transition: var(--transition-smooth);
    width: 100%;
}

.phone-input-wrapper:focus-within {
    border-color: var(--magical-hour-gold);
    box-shadow: 0 0 15px var(--amber-glow);
}

.phone-input-wrapper select,
.phone-input-wrapper input {
    border: none;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 0.7rem 0.9rem;
}

/* Country code overlay: transparent select over visible display span */
.country-code-wrapper {
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    border-right: 1px solid var(--glass-border);
}

.country-code-display {
    padding: 0.7rem 1.6rem 0.7rem 0.7rem;
    white-space: nowrap;
    pointer-events: none;
    font-size: inherit;
    color: inherit;
}

.country-code-wrapper .country-code-select-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    /* Override appearance: none from .form-group select so native dropdown still works */
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
    background-image: none;
    padding: 0;
    flex-shrink: unset;
}

/* Bottom-aligned row: inputs line up even when labels wrap to different heights */
.form-row.form-row-bottom-align {
    align-items: end;
}

.form-row.form-row-bottom-align .form-group {
    display: flex;
    flex-direction: column;
}

.form-row.form-row-bottom-align .form-group label {
    flex: 1;
    display: flex;
    align-items: flex-end;
    margin-bottom: 0;
    padding-bottom: 0.3rem;
}

/* Equal-height inputs row: grid stretches both cells to same height,
   inputs fill remaining space so they end up identical height */
.form-row.form-row-fill-inputs .form-group {
    display: flex;
    flex-direction: column;
}

.form-row.form-row-fill-inputs .form-group input,
.form-row.form-row-fill-inputs .form-group .phone-input-wrapper {
    flex: 1;
}

.phone-input-wrapper input {
    flex: 1;
    min-width: 0;
    width: auto;
}

/* Estate Ranking Styles */
.estate-ranking {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.estate-rank-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: rgba(0, 45, 66, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.estate-rank-item:hover {
    border-color: var(--magical-hour-gold);
    background: rgba(0, 45, 66, 0.7);
}

.estate-name {
    font-weight: 500;
    color: var(--text-light);
    font-size: 1rem;
}

.estate-rank-item select {
    width: 80px;
    padding: 0.5rem 0.75rem;
    background: rgba(0, 45, 66, 0.8);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.estate-rank-item select:focus {
    outline: none;
    border-color: var(--magical-hour-gold);
    box-shadow: 0 0 10px var(--amber-glow);
}

/* Date Fields Animation */
.date-fields {
    transition: all 0.3s ease;
}

.date-fields-hidden {
    display: none;
}

.date-fields-visible {
    display: flex;
}

.form-note {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.alternative-cta p {
    margin-top: 1rem;
    color: var(--text-muted);
}

/* ============================================
   PROMISE SECTION
   ============================================ */
.promise-section {
    padding: var(--section-padding) 0;
}

.promise-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.promise-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.promise-card h2 {
    font-size: 2rem;
    color: var(--magical-hour-gold);
    margin-bottom: 1.5rem;
}

.promise-card p {
    margin-bottom: 1rem;
}

.promise-reassurance {
    color: var(--text-muted);
}

.promise-close {
    color: var(--tommy-turquoise);
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

/* ============================================
   PAYMENT SECTION
   ============================================ */
.payment-section {
    padding: var(--section-padding) 0;
}

.payment-header {
    text-align: center;
    margin-bottom: 3rem;
}

.payment-options {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.payment-options .payment-card {
    flex: 1 1 280px;
}

.payment-card {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
}

.payment-card .btn {
    margin-top: auto;
}

.payment-card:hover {
    transform: translateY(-5px);
}

.payment-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.payment-card h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.payment-label {
    display: inline-block;
    padding: 4px 12px;
    background: var(--tommy-turquoise);
    color: var(--deep-lagoon-navy);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.payment-price {
    margin: 1rem 0;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--magical-hour-gold);
}

.price-frequency {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.payment-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.payment-featured {
    position: relative;
}

.payment-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sunset-coral);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 0 20px var(--coral-glow);
}

/* Easy Path: same palette as payment-label (turquoise + navy) */
.payment-badge--popular {
    background: var(--tommy-turquoise);
    color: var(--deep-lagoon-navy);
    box-shadow: 0 0 20px var(--turquoise-glow);
}

/* Balanced Path: tertiary-style (champagne + navy) — no tertiary in style guide */
.payment-badge--traditional {
    background: var(--champagne);
    color: var(--deep-lagoon-navy);
    box-shadow: 0 0 15px rgba(245, 208, 169, 0.4);
}

.payment-bonus {
    background: rgba(0, 45, 66, 0.5);
    padding: 1rem;
    border-radius: 12px;
    margin: 1rem 0;
    text-align: left;
}

.bonus-tag {
    display: inline-block;
    padding: 4px 10px;
    background: var(--sunset-coral);
    color: white;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.payment-bonus p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.bonus-detail {
    color: var(--text-muted);
}

.payment-flex {
    color: var(--tommy-turquoise);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.payment-reassurance {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.payment-weeks-indicator {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-weeks-indicator label {
    font-weight: 500;
    color: var(--text-light);
}

.payment-weeks-indicator .weeks-dropdown {
    color: var(--magical-hour-gold);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.6rem 2.5rem 0.6rem 1.2rem;
    background: rgba(255, 183, 77, 0.15);
    border-radius: 8px;
    border: 2px solid var(--magical-hour-gold);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23FFB74D' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    transition: all 0.3s ease;
}

.payment-weeks-indicator .weeks-dropdown:hover {
    background-color: rgba(255, 183, 77, 0.25);
    box-shadow: 0 0 15px rgba(255, 183, 77, 0.3);
}

.payment-weeks-indicator .weeks-dropdown:focus {
    outline: none;
    box-shadow: 0 0 20px rgba(255, 183, 77, 0.4);
}

.payment-weeks-indicator .weeks-dropdown option {
    background: var(--deep-lagoon-navy);
    color: var(--text-light);
    padding: 0.5rem;
}

/* ============================================
   ESTATES SECTION
   ============================================ */
.estates-section {
    padding: var(--section-padding) 0;
}

.estates-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.estate-collection {
    margin-bottom: 4rem;
}

.collection-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.collection-icon {
    font-size: 2rem;
}

.collection-header h3 {
    font-size: 1.5rem;
    color: var(--text-light);
}

.collection-specs {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.collection-price {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.collection-price.included {
    background: var(--tommy-turquoise);
    color: var(--deep-lagoon-navy);
}

.collection-price.upgrade {
    background: var(--magical-hour-gold);
    color: var(--deep-lagoon-navy);
}

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

.estates-grid.single {
    max-width: 600px;
    margin: 0 auto;
}

.estate-card {
    text-align: center;
    transition: var(--transition-smooth);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.estate-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Estate Image */
.estate-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin: -2rem -2rem 0 -2rem;
    width: calc(100% + 4rem);
    border-radius: 24px 24px 0 0;
}

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

.estate-card:hover .estate-image img {
    transform: scale(1.08);
}

.estate-image-placeholder {
    background: linear-gradient(135deg, rgba(0, 45, 66, 0.8), rgba(0, 90, 100, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.estate-image-placeholder .placeholder-icon {
    font-size: 3rem;
    opacity: 0.5;
}

.flagship-placeholder {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.3), rgba(255, 200, 87, 0.2));
}

/* Flagship Grid - Full Width */
.flagship-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
}

.flagship-grid .estate-flagship {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    text-align: left;
}

.flagship-grid .estate-image {
    margin: -1.5rem 0 -1.5rem -1.5rem;
    width: calc(100% + 1.5rem);
    height: auto;
    min-height: 300px;
    border-radius: 20px 0 0 20px;
}

.flagship-grid .estate-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flagship-grid .estate-stats {
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .flagship-grid .estate-flagship {
        grid-template-columns: 1fr;
    }
    
    .flagship-grid .estate-image {
        margin: -1.5rem -1.5rem 0 -1.5rem;
        width: calc(100% + 3rem);
        min-height: 200px;
        border-radius: 20px 20px 0 0;
    }
    
    .flagship-grid .estate-content {
        text-align: center;
    }
    
    .flagship-grid .estate-stats {
        justify-content: center;
    }
}

/* Estate Content */
.estate-content {
    padding: 1.5rem 0 0 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.estate-card h4 {
    font-size: 1.4rem;
    color: var(--magical-hour-gold);
    margin-bottom: 0.75rem;
}

.flagship-badge {
    display: inline-block;
    font-size: 0.7rem;
    background: var(--magical-hour-gold);
    color: var(--deep-lagoon-navy);
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    vertical-align: middle;
    margin-left: 0.5rem;
    font-weight: 700;
}

.coming-soon-badge {
    display: inline-block;
    font-size: 0.7rem;
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    vertical-align: middle;
    margin-left: 0.5rem;
    font-weight: 700;
}

.estate-coming-soon {
    position: relative;
}

.estate-coming-soon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(68, 160, 141, 0.05));
    border-radius: 20px;
    pointer-events: none;
}

.estate-vibe {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
}

/* Estate Stats */
.estate-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

.estate-stat {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-light);
    background: rgba(0, 45, 66, 0.5);
    padding: 0.4rem 0.75rem;
    border-radius: 20px;
}

.estate-stat i {
    color: var(--magical-hour-gold);
    font-size: 0.75rem;
}

/* Estate card: clickable and slot badge (application-form) - no card hover, image zoom only */
.estate-card-selectable {
    cursor: pointer;
    position: relative;
}

.estate-card-selectable:hover {
    transform: none;
    box-shadow: none;
}

.estate-card-selectable:hover .estate-image img {
    transform: scale(1.08);
}

.estate-slot-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 2;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--deep-lagoon-navy);
    background: var(--magical-hour-gold);
    border-radius: 50%;
    pointer-events: none;
    transition: none;
}

.estate-slot-badge:empty {
    display: none;
}

.application-form-page .estates-grid .estate-card {
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.application-form-page .estate-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-height: 0;
}

.application-form-page .estate-stats {
    margin-top: auto;
    width: 100%;
}

.estate-flagship {
    padding: 1.5rem;
}

.estate-flagship .estate-image {
    height: 250px;
}

.estate-flagship .estate-stats .estate-stat {
    background: rgba(218, 165, 32, 0.2);
}

.estate-selection {
    max-width: 800px;
    margin: 0 auto;
}

.estate-selection h4 {
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--magical-hour-gold);
}

.selection-note {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.selection-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

/* ============================================
   MULTI-WEEK SECTION
   ============================================ */
.multiweek-section {
    padding: var(--section-padding) 0;
}

.multiweek-header {
    text-align: center;
    margin-bottom: 3rem;
}

.multiweek-table-wrapper {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.multiweek-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
    background: var(--glass-bg);
    border-radius: 16px;
    overflow: hidden;
}

.multiweek-table th,
.multiweek-table td {
    padding: 1.2rem;
    text-align: center;
}

.multiweek-table th {
    background: rgba(64, 224, 208, 0.1);
    color: var(--tommy-turquoise);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.multiweek-table td {
    border-bottom: 1px solid var(--glass-border);
}

.multiweek-table tr:last-child td {
    border-bottom: none;
}

.highlight-row {
    background: rgba(255, 193, 37, 0.05);
}

.highlight-row.best {
    background: rgba(255, 193, 37, 0.1);
}

.discount-badge {
    display: inline-block;
    padding: 4px 8px;
    background: var(--sunset-coral);
    color: white;
    border-radius: 4px;
    font-size: 0.7rem;
    margin-left: 0.5rem;
}

.savings {
    color: var(--magical-hour-gold);
    font-weight: 600;
}

.multiweek-note {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

.no-asterisks {
    color: var(--magical-hour-gold);
    font-weight: 600;
    margin-top: 1rem;
}

.partnership-cta {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.partnership-cta h3 {
    color: var(--magical-hour-gold);
    margin-bottom: 1rem;
}

.partnership-cta p {
    margin-bottom: 0.5rem;
}

.partnership-cta .btn {
    margin-top: 1.5rem;
}

/* ============================================
   SAVINGS MISSION SECTION (Kim & Juan Carlos)
   ============================================ */
.savings-mission-section {
    padding: 60px 0 20px;
}

.savings-mission-image {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
}

.savings-mission-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px 20px 0 0;
}

.savings-mission-caption {
    padding: 1.5rem 2rem;
    text-align: center;
    background: var(--glass-bg-warm);
    border-top: 1px solid var(--glass-border-gold);
}

.savings-mission-caption p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-light);
}

.savings-mission-caption p strong {
    color: var(--magical-hour-gold);
}

.savings-mission-caption .caption-subtitle {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: var(--tommy-turquoise);
    font-style: italic;
}

@media (max-width: 768px) {
    .savings-mission-section {
        padding: 40px 0 10px;
    }
    
    .savings-mission-caption {
        padding: 1rem 1.5rem;
    }
    
    .savings-mission-caption p {
        font-size: 1rem;
    }
    
    .savings-mission-caption .caption-subtitle {
        font-size: 0.9rem;
    }
}

/* ============================================
   RECEIPTS / ACCORDION SECTION
   ============================================ */
.receipts-section {
    padding: var(--section-padding) 0;
}

.receipts-header {
    text-align: center;
    margin-bottom: 3rem;
}

.accordion {
    max-width: 1000px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.accordion-header:hover {
    color: var(--magical-hour-gold);
}

.accordion-header i {
    transition: var(--transition-smooth);
    color: var(--tommy-turquoise);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0 2rem;
}

.accordion-item.active .accordion-content {
    max-height: 5000px;
    padding: 0 2rem 2rem;
}

.stack-category {
    margin-bottom: 2rem;
}

.stack-category h4 {
    color: var(--magical-hour-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.stack-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed; /* Same column positions across all categories */
}

.stack-table th,
.stack-table td {
    padding: 0.8rem;
    border-bottom: 1px solid var(--glass-border);
}

/* Fixed column widths so DIY Cost & In Your Reunion align across categories */
.stack-table th:nth-child(1),
.stack-table td:nth-child(1) {
    width: 58%;
    text-align: left;
}

.stack-table th:nth-child(2),
.stack-table td:nth-child(2) {
    width: 20%;
    text-align: right;
}

.stack-table th:nth-child(3),
.stack-table td:nth-child(3) {
    width: 22%;
    text-align: right;
}

.stack-table th {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.diy-cost {
    color: var(--sunset-coral);
    font-weight: 600;
}

.included {
    color: var(--tommy-turquoise);
    font-weight: 600;
}

.included.zero {
    color: var(--magical-hour-gold);
}

/* Time Audit Table */
.time-audit-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.time-audit-table th,
.time-audit-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

.time-audit-table th {
    color: var(--tommy-turquoise);
}

.time-saved {
    color: var(--magical-hour-gold);
    font-weight: 600;
    text-align: right;
}

.total-row {
    background: rgba(255, 193, 37, 0.1);
}

.total-row .time-saved.total {
    font-size: 1.2rem;
}

.time-audit-summary {
    color: var(--tommy-turquoise);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.time-audit-bonus {
    color: var(--text-muted);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: var(--section-padding) 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--magical-hour-gold);
}

.faq-question i {
    color: var(--tommy-turquoise);
    transition: var(--transition-smooth);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

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

/* ============================================
   FINAL CLOCK SECTION
   ============================================ */
.final-clock-section {
    padding: var(--section-padding) 0;
}

.final-clock-wrapper {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.final-clock-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.final-clock-header h2 {
    font-size: 2rem;
    color: var(--magical-hour-gold);
}

.final-urgency strong {
    color: var(--magical-hour-gold);
}

.final-urgency {
    color: var(--text-muted);
    line-height: 1.8;
}

.final-message {
    text-align: center;
    margin-bottom: 3rem;
}

.final-closer {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.final-treasure {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--magical-hour-gold);
    font-style: italic;
    margin-bottom: 1rem;
}

.final-signature {
    font-size: 1.3rem;
    color: var(--text-light);
}

.final-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.final-hint {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 60px 0 30px;
    background: rgba(0, 20, 30, 0.8);
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-quote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.footer-team {
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============================================
   MODAL
   ============================================ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 20, 30, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal.active {
    display: flex;
}

.modal-content {
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    line-height: 1;
}

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

.modal-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.modal-content h3 {
    font-size: 1.8rem;
    color: var(--magical-hour-gold);
    margin-bottom: 1rem;
}

.modal-content p {
    margin-bottom: 0.5rem;
}

.modal-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    /* Ensure changes section is visible on mobile (fade-in-section starts opacity: 0) */
    .changes-section.fade-in-section {
        opacity: 1;
        transform: none;
    }

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .hero-title .gold-shimmer {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }

    .tommy-message {
        flex-direction: column;
        text-align: center;
    }

    .cta-group {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 320px;
    }

    .countdown-timer {
        gap: 0.5rem;
    }

    .time-value {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .time-separator {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .change-comparison {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .change-image {
        margin: -1.5rem -1.5rem 1.5rem -1.5rem;
        border-radius: 16px 16px 0 0;
    }

    .change-image img {
        height: 250px;
    }

    .option-image {
        margin: -1.5rem -1.5rem 1.5rem -1.5rem;
        border-radius: 16px 16px 0 0;
    }

    .option-image img {
        height: 220px;
    }

    .testimonial-image img {
        max-width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-row-3 {
        grid-template-columns: 1fr;
    }

    .form-buttons {
        flex-direction: column;
        align-items: center;
    }

    .form-buttons .btn {
        max-width: 100%;
        width: 100%;
    }

    .payment-options {
        grid-template-columns: 1fr;
    }

    .collection-header {
        flex-direction: column;
    }

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

    .estate-image {
        height: 180px;
    }

    .estate-stats {
        gap: 0.4rem;
    }

    .estate-stat {
        font-size: 0.75rem;
        padding: 0.35rem 0.6rem;
    }

    .selection-form {
        grid-template-columns: 1fr;
    }

    .multiweek-table th,
    .multiweek-table td {
        padding: 0.8rem 0.5rem;
        font-size: 0.85rem;
    }

    .discount-badge {
        display: block;
        margin-left: 0;
        margin-top: 0.3rem;
    }

    .stack-table {
        font-size: 0.85rem;
    }

    .stack-table th,
    .stack-table td {
        padding: 0.6rem 0.4rem;
    }

    .accordion-header {
        padding: 1.2rem 1rem;
        font-size: 0.95rem;
    }

    .accordion-content {
        padding: 0 1rem;
    }

    .accordion-item.active .accordion-content {
        padding: 0 1rem 1.5rem;
    }

    .final-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .experiences-table {
        font-size: 0.85rem;
    }

    .experiences-table th,
    .experiences-table td {
        padding: 0.6rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .glass-card,
    .glass-card-warm,
    .glass-card-dark,
    .glass-card-gold {
        padding: 1.5rem;
        border-radius: 16px;
    }

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

    .pricing-table .price {
        font-size: 1.2rem;
    }

    .gold-price {
        font-size: 1.5rem !important;
    }

    .payment-card {
        padding: 1.5rem;
    }

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

    .estate-card {
        padding: 1.5rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .faq-answer {
        padding: 0 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Intersection Observer Animation Classes */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============================================
   FLATPICKR DARK THEME OVERRIDES
   ============================================ */
.flatpickr-calendar {
    background: #0f1e35;
    border: 1px solid rgba(253, 251, 247, 0.15);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    color: rgba(253, 251, 247, 0.9);
}
.flatpickr-months .flatpickr-month,
.flatpickr-weekdays,
span.flatpickr-weekday {
    background: #0f1e35;
    color: rgba(253, 251, 247, 0.9);
    fill: rgba(253, 251, 247, 0.9);
}
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month .cur-year-dropdown {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: rgba(253, 251, 247, 0.07);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='rgba(253%2C251%2C247%2C0.5)' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.4rem center;
    border: 1px solid rgba(253, 251, 247, 0.2);
    border-radius: 4px;
    color: rgba(253, 251, 247, 0.9);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 3px 1.6rem 3px 6px;
    height: 30px;
    box-sizing: border-box;
    line-height: 1;
    vertical-align: middle;
}
.flatpickr-day {
    color: rgba(253, 251, 247, 0.85);
    border-radius: 4px;
}
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: transparent;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
    background: #d4af37;
    border-color: #d4af37;
    color: #0f1e35;
    font-weight: 600;
}
.flatpickr-day.inRange {
    background: rgba(212, 175, 55, 0.15);
    border-color: transparent;
    box-shadow: -5px 0 0 rgba(212, 175, 55, 0.15), 5px 0 0 rgba(212, 175, 55, 0.15);
    color: rgba(253, 251, 247, 0.85);
}
.flatpickr-day.today {
    border-color: rgba(212, 175, 55, 0.5);
}
.flatpickr-day.today:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.5);
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: rgba(253, 251, 247, 0.25);
}
.flatpickr-prev-month svg,
.flatpickr-next-month svg {
    fill: rgba(253, 251, 247, 0.7);
}
.flatpickr-prev-month:hover svg,
.flatpickr-next-month:hover svg {
    fill: #d4af37;
}
