/* ==========================================
   RESET & GLOBAL STYLES
========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: #F8F4EF;
    font-family: 'Outfit', sans-serif;
    color: #244B47;
}

/* ==========================================
   HERO SECTION LAYOUT
========================================== */
.healing-hero {
    background: linear-gradient(180deg, #F8F3EE 0%, #FFFDFB 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-bottom: 30px;
    overflow: hidden;
}

/* ==========================================
   BACKGROUND BLOBS
========================================== */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.45;
    pointer-events: none;
}

.hero-blob-1 {
    width: 420px;
    height: 420px;
    background: #B8D6C9;
    top: -120px;
    left: -120px;
}

.hero-blob-2 {
    width: 380px;
    height: 380px;
    background: #E8D7B7;
    right: -100px;
    bottom: -120px;
}

/* ==========================================
   TOP ANNOUNCEMENT BANNER
========================================== */
.healing-banner {
    width: 100%;
    background: #2F5D57;
    color: #FFF8F4;
    text-align: center;
    padding: 16px 20px;
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1.4;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* ==========================================
   CONTAINER & CONTENT CONTAINER
========================================== */
.healing-container {
    width: min(850px, 92%);
    margin: 40px auto 0;
    position: relative;
    z-index: 2;
}

.healing-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ==========================================
   HEADINGS & SUBTITLES
========================================== */
.healing-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    line-height: 1.1;
    font-weight: 700;
    color: #244B47;
    margin-bottom: 20px;
}

.healing-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 500;
    color: #4F5E5B;
    max-width: 680px;
    margin: 0 auto 24px;
    line-height: 1.5;
}

/* ==========================================
   PROGRAM LANGUAGE BADGE
========================================== */
.program-language {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    border-radius: 100px;
    padding: 10px 24px;
    font-size: 0.95rem;
    color: #345D58;
    border: 1px solid rgba(47, 93, 87, 0.15);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    margin-bottom: 30px;
}

.program-language strong {
    color: #C49845;
    font-weight: 700;
}

/* ==========================================
   SECTION TAGLINE
========================================== */
.section-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.3rem);
    color: #244B47;
    margin-bottom: 25px;
    font-weight: 600;
}

/* ==========================================
   COUNTDOWN TIMER
========================================== */
.timer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 35px;
}

.timer-box {
    background: #2F5D57;
    color: #FFFFFF;
    width: 75px;
    height: 75px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(47, 93, 87, 0.25);
}

.timer-number {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.timer-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    opacity: 0.85;
}

.timer-colon {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2F5D57;
    margin-top: -15px;
}

/* ==========================================
   SOCIAL PROOF & CTA
========================================== */
.social-proof {
    max-width: 600px;
    margin-bottom: 30px;
}

.social-proof h3 {
    font-size: 1.3rem;
    color: #244B47;
    margin-bottom: 8px;
    font-weight: 700;
}

.social-proof p {
    font-size: 1rem;
    color: #5A6966;
    line-height: 1.6;
}
.cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2F5D57 0%, #185049 100%);
    color: #FFFFFF;
    font-size: 1.25rem;
    font-weight: 800;
    text-decoration: none;
    padding: 18px 50px;
    border-radius: 50px;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px rgba(47, 93, 87, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(196, 152, 69, 0.5);
}

/* Price Details Styling Inside Green Button */
.cta-btn-text {
    line-height: 1.2;
}

.cta-btn-price {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0;
    margin-top: 4px;
}

.cta-btn-price .price-cut {
    text-decoration: line-through;
    opacity: 1; /* Changed from 0.7 to 1 so pure white isn't faded */
    font-size: 1.6rem;
    color: #FFFFFF !important;
    font-weight: 550;
}

.cta-btn-price .price-actual {
    font-size: 1.4rem;
    font-weight: 800;
    color: #FFD782; /* Warm accent gold for price visibility */
}

.cta-btn-price .price-actual small {
    font-size: 1.4rem;
    font-weight: 600;
    opacity: 0.9;
}
/* ==========================================
   YOUTUBE VIDEO EMBED
========================================== */
.yt-video-container {
  width: 100%;
  max-width: 680px;
  margin: 0 auto 30px;
}

.yt-video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(47, 93, 87, 0.15);
  border: 1px solid rgba(47, 93, 87, 0.1);
  background: #000;
}

.yt-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ==========================================
   UPDATED PRICING CARD WITH REGISTER BUTTON
========================================== */
.pricing-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  background: #FFFFFF;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1.5px dashed #C49845;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.price-details {
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-original {
  text-decoration: line-through;
  color: #000;
  font-size: 1.6rem;
  font-weight: 650;
}

.price-current {
  font-size: 1.7rem;
  font-weight: 800;
  color: #2F5D57;
}

.price-current small {
  font-size: 1.6rem;
  color: #C49845;
  font-weight: 700;
}

.price-register-btn {
  background: linear-gradient(135deg, #2F5D57 0%, #185049 100%);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.price-register-btn:hover {
  background: #a88035;
  transform: translateY(-1px);
}

/* Mobile Pricing & Video Scaling Fix */
@media (max-width: 600px) {
  .pricing-card {
    flex-direction: column;
    border-radius: 20px;
    padding: 16px 20px;
    gap: 12px;
    width: 100%;
    max-width: 340px;
  }

  .price-details {
    flex-direction: row;
    gap: 10px;
  }

  .price-current {
    font-size: 1.45rem;
  }

  .price-current small {
    font-size: 1.3rem;
  }

  .price-register-btn {
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }
  .cta-btn-price .price-actual small {
    font-size: 1.25rem;
}
}
/* ==========================================
   MOBILE RESPONSIVENESS
========================================== */
@media (max-width: 600px) {
    .timer-box {
        width: 60px;
        height: 60px;
    }
    .timer-number {
        font-size: 1.3rem;
    }
    .timer-label {
        font-size: 0.55rem;
    }
    .timer-colon {
        font-size: 1.3rem;
    }
    .cta-button {
        width: 100%;
        padding: 16px 20px;
    }
}
/* ==========================================
   MOBILE PRICE SCALING FIX
========================================== */
@media (max-width: 600px) {
    /* Targets the pricing container/card in the hero section */
    .hero-price-box, 
    .price-container {
        padding: 12px 16px; /* Reduced box padding */
        max-width: 280px;   /* Constrains box width on smaller screens */
        margin: 0 auto;
    }

    /* Scales down the primary price text */
    .hero-price, 
    .price-amount {
        font-size: 1.6rem;  /* Reduced font size for price */
        line-height: 1.1;
    }

    /* Scales down the strike-through / original price */
    .original-price, 
    .strike-price {
        font-size: 0.95rem;
    }

    /* Scales down secondary badges or labels like "ONLY FOR TODAY" */
    .price-label, 
    .price-tag {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
        margin-bottom: 4px;
    }
}
/* ==========================================
   WHAT YOU'LL LEARN SECTION (BRAND COLORS)
========================================== */
.learn-section {
    background: #FFFDFB;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
}

.learn-container {
    width: min(780px, 92%);
    margin: 0 auto;
    text-align: center;
}

.learn-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    color: #244B47;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

/* Vertical Stack Layout */
.learn-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 45px;
}

/* Card Item matching website cream gradient & soft border */
.learn-item {
    background: linear-gradient(90deg, #F8F4EF 0%, #FFFDFB 100%);
    border: 1px solid rgba(47, 93, 87, 0.15);
    border-radius: 20px;
    padding: 22px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

/* Brand Deep Teal Circle Arrow Icon */
.arrow-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    background-color: #2F5D57;
    color: #FFF8F4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Text & Bold Highlighting Styling */
.learn-text {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    color: #4F5E5B;
    line-height: 1.4;
    font-weight: 400;
}

.learn-text strong {
    font-weight: 800;
    color: #244B47;
}

/* CTA Wrapper */
.learn-cta-wrapper {
    margin-top: 10px;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .learn-section {
        padding: 25px 15px;
    }

    .learn-item {
        padding: 16px 18px;
        gap: 14px;
        border-radius: 16px;
    }

    .arrow-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }

    .arrow-icon svg {
        width: 16px;
        height: 16px;
    }

    .learn-text {
        font-size: 1.05rem;
    }
}
/* ==========================================
   TICKET INCLUDES SECTION (SCREENSHOT STYLE)
========================================== */
.ticket-includes-section {
    background: #F8F4EF; /* Clean brand cream background */
    padding: 40px 20px;
    position: relative;
    z-index: 2;
}

.ticket-container {
    width: min(720px, 92%);
    margin: 0 auto;
    text-align: center;
}

.ticket-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 700;
    color: #244B47;
    margin-bottom: 25px;
    line-height: 1.2;
}

/* Screenshot Style Table Frame */
.ticket-table {
    background: #2F5D57; /* Dark Brand Teal Outer Frame */
    border: 2px solid #C49845; /* Gold Outer Border */
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(47, 93, 87, 0.15);
    margin-bottom: 25px;
}

/* Table Rows Structure */
.ticket-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(196, 152, 69, 0.35); /* Gold Inner Separator */
    transition: background 0.2s ease;
}

.ticket-row:last-child {
    border-bottom: none;
}

.ticket-row:nth-child(even) {
    background: rgba(255, 255, 255, 0.03); /* Subtle striping */
}

/* Left Column: Text Description */
.ticket-text {
    flex: 1;
    text-align: left;
    padding: 16px 20px;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: #FFFFFF;
    line-height: 1.45;
    font-weight: 500;
    border-right: 1px solid rgba(196, 152, 69, 0.35); /* Vertical Divider */
}

.ticket-text .val-tag {
    color: #FFD782; /* Bright Gold Accent for (Value ₹X,XXX) */
    font-weight: 700;
}

/* Highlight Row for Bonus */
.ticket-row.highlight-bonus {
    background: rgba(196, 152, 69, 0.15);
}

.ticket-row.highlight-bonus .ticket-text strong {
    color: #FFD782;
}

/* Right Column: Checkmark Box */
.ticket-check {
    width: 80px;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 10px;
}

.check-icon {
    width: 32px;
    height: 32px;
    background: #2BB673; /* Screenshot Green Badge */
    color: #FFFFFF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 900;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.ticket-cta-wrapper {
    margin-top: 10px;
}
/* ==========================================
   5 FEATURE BOXES GRID (ABOVE TABLE)
========================================== */
/* ==========================================
   AESTHETIC GRADIENT FEATURE BOXES
========================================== */
.feature-boxes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
  margin-bottom: 35px;
}

.feature-box {
  /* Rich Brand Green/Teal Gradient */
  background: linear-gradient(145deg, #2F5D57 0%, #1A3D38 100%);
  border: 1px solid rgba(196, 152, 69, 0.4); /* Elegant Gold Border Accent */
  border-radius: 16px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(47, 93, 87, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Glassmorphism subtle inner glow */
.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.feature-box:hover {
  transform: translateY(-4px);
  border-color: #C49845;
  box-shadow: 0 14px 30px rgba(47, 93, 87, 0.35);
}

.feature-icon-wrapper {
  width: 44px;
  height: 44px;
  background: rgba(196, 152, 69, 0.18);
  border: 1px solid rgba(196, 152, 69, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #FFD782;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.feature-box p {
  font-family: 'Outfit', sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  color: #FFFDFB;
  line-height: 1.45;
  margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
  .feature-boxes-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-box {
    flex-direction: row;
    text-align: left;
    padding: 16px 18px;
    gap: 14px;
  }

  .feature-icon-wrapper {
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 1.1rem;
  }

  .feature-box p {
    font-size: 0.92rem;
  }
}
/* ==========================================
   ACT NOW SPECIAL VALUE ROW
========================================== */
.ticket-row.act-now-row {
  background: linear-gradient(135deg, #C49845 0%, #A87E32 100%);
  border-top: 2px solid #FFD782;
}

.ticket-row.act-now-row .ticket-text {
  color: #FFFFFF;
  font-size: 1.15rem;
  border-right-color: rgba(255, 255, 255, 0.3);
}

.act-now-tag {
  background: #FFFFFF;
  color: #244B47;
  font-size: 1.1rem;
  font-weight: 900;
  padding: 6px 14px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Mobile Adjustments for Feature Boxes */
@media (max-width: 600px) {
 
  .act-now-tag {
    font-size: 0.95rem;
    padding: 4px 10px;
  }
}
/* Mobile Adjustments */
@media (max-width: 600px) {
    .ticket-includes-section {
        padding: 30px 15px;
    }

    .ticket-text {
        padding: 12px 14px;
        font-size: 0.88rem;
    }

    .ticket-check {
        width: 60px;
        min-width: 60px;
        padding: 12px 6px;
    }

    .check-icon {
        width: 26px;
        height: 26px;
        font-size: 0.9rem;
        border-radius: 6px;
    }
}
/* ==========================================
   BEFORE VS AFTER TRANSFORMATION SECTION
========================================== */
.transformation-section {
    background: #F3ECE3; 
    padding: 50px 20px;
    position: relative;
    z-index: 2;
}

.transformation-container {
    width: min(1180px, 100%);
    margin: 0 auto;
    text-align: center;
}

.transformation-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4.5vw, 3rem);
    font-weight: 700;
    color: #244B47;
    margin-bottom: 35px;
    letter-spacing: 1px;
}

.transformation-title .highlight-title {
    color: #C49845; /* Gold Accent Title */
}

/* Side-by-Side Flex Layout */
.transformation-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 30px;
    position: relative;
    margin-bottom: 35px;
}

.transform-card {
    flex: 1 1 500px;
    max-width: 540px;
    border-radius: 24px;
    padding: 35px 30px;
    text-align: left;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    position: relative;
}

/* BEFORE Card Styling (Light Cream Card with Dark Text) */
.before-card {
    background: #FFFDFB;
    border: 1px solid rgba(196, 152, 69, 0.3);
    color: #244B47;
}

.before-card .card-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #244B47;
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.before-card .transform-list li {
    border-bottom: 1px solid rgba(36, 75, 71, 0.12);
    color: #244B47;
    font-weight: 500;
}

.icon-cross {
    color: #E57373; /* Subtle Muted Red Cross */
    font-weight: 800;
    font-size: 1.1rem;
    margin-right: 12px;
}

/* AFTER Card Styling (Deep Dark Teal with Light Text) */
.after-card {
    background: #244B47 !important;
    border: 2px solid #C49845; /* Gold Accent Border */
    color: #FFFFFF;
}

.after-card .card-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #FFF8F4;
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.after-card .transform-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: #F1F5F4;
    font-weight: 500;
}

.icon-check {
    color: #2BB673; /* Green Checkmark */
    font-weight: 900;
    font-size: 1.15rem;
    margin-right: 12px;
}

/* Shared List Styling */
.transform-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.transform-list li {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    padding: 12px 0;
    display: flex;
    align-items: center;
    line-height: 1.4;
}

.transform-list li:last-child {
    border-bottom: none;
}

/* Central Red/Gold Arrow Circle Badge */
.transform-arrow-wrapper {
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transform-arrow {
    width: 56px;
    height: 56px;
    background: #C49845; /* Gold Circle Icon */
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    border: 3px solid #F3ECE3;
}

/* Responsive Adjustments for Mobile */
@media (max-width: 850px) {
    .transformation-section {
        padding: 30px 15px;
    }

    .transformation-grid {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .transform-arrow-wrapper {
        margin: -5px 0;
    }

    .transform-arrow {
        transform: rotate(90deg); /* Points downwards on mobile stacking */
        width: 46px;
        height: 46px;
        font-size: 1.3rem;
    }

    .transform-card {
        width: 100%;
        max-width: 100%;
        padding: 24px 20px;
    }

    .before-card .card-heading,
    .after-card .card-heading {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .transform-list li {
        font-size: 0.88rem;
        padding: 8px 0;
    }
}
/* ==========================================
   WHO IS THIS MASTERCLASS FOR SECTION
========================================== */
.who-is-for-section {
    background: #F8F4EF; /* Brand cream background */
    padding: 50px 20px;
    position: relative;
    z-index: 2;
}

.who-container {
    width: min(1140px, 94%);
    margin: 0 auto;
    text-align: center;
}

.who-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4.5vw, 3rem);
    font-weight: 700;
    color: #244B47;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.who-title .highlight-title {
    color: #C49845; /* Brand Gold Accent */
}

.who-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    color: #5C6B67;
    margin-bottom: 35px;
}

/* 3 Cards per row on Desktop */
.who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 35px;
    justify-content: center !important;
}

/* Screenshot Image Card Style */
.who-card {
    position: relative;
    height: 340px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.who-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(36, 75, 71, 0.15);
}

.who-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Top-Left Red/Gold Badge from Screenshot */
.who-card .who-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #C49845; /* Brand Gold Pill Badge */
    color: #FFFFFF;
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Bottom Floating Dark Overlay Box */
.who-card .who-overlay {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    background: rgba(36, 75, 71, 0.92); /* Brand Teal semi-transparent backdrop */
    backdrop-filter: blur(4px);
    border-radius: 14px;
    padding: 16px;
    text-align: left;
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.who-card .who-overlay h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #FFF8F4;
    margin-bottom: 8px;
    line-height: 1.35;
}

.who-card .who-accent-line {
    width: 40px;
    height: 3px;
    background-color: #C49845; /* Gold Accent Bar */
    border-radius: 2px;
}


/* Responsive Styles */
@media (max-width: 992px) {
    .who-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .who-is-for-section {
        padding: 35px 15px;
    }

    .who-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .who-card {
        height: 290px;
    }

    .who-card .who-overlay h3 {
        font-size: 0.95rem;
    }
}
/* ==========================================
   WHY JOIN THIS PROGRAM SECTION (IMAGE CARDS)
========================================== */
.why-join-section {
    background: #F3ECE3; /* Soft warm background (not pure white) */
    padding: 40px 20px; /* Compact section padding */
    position: relative;
    z-index: 2;
}

.why-join-container {
    width: min(1000px, 92%);
    margin: 0 auto;
    text-align: center;
}

.why-join-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #244B47;
    margin-bottom: 25px; /* Reduced space */
    letter-spacing: 0.5px;
}

/* 4-Card Compact Grid */
.why-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px; /* Tighter gap between cards */
    margin-bottom: 30px; /* Reduced vertical space before CTA */
}

/* Image Card Container */
.why-img-card {
    position: relative;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease;
}

.why-img-card:hover {
    transform: translateY(-4px);
}

.why-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Badge at Top Left */
.card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #C49845; /* Soft Gold Accent */
    color: #FFFFFF;
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    z-index: 2;
}

/* Teal Overlay Box at Bottom */
.card-text-overlay {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    background: rgba(47, 93, 87, 0.92); /* Brand Deep Teal with transparency */
    backdrop-filter: blur(4px);
    border-radius: 14px;
    padding: 16px 14px 14px;
    text-align: left;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.card-text-overlay h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #FFF8F4;
    margin-bottom: 6px;
    line-height: 1.25;
}

.card-text-overlay p {
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    color: #E2ECE9;
    line-height: 1.35;
    font-weight: 400;
    margin-bottom: 8px;
}

/* Bottom Red/Gold Accent Bar from Screenshot */
.card-line {
    width: 35px;
    height: 3px;
    background-color: #C49845;
    border-radius: 2px;
}

/* CTA Wrapper */
.why-join-cta-wrapper {
    margin-top: 5px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .why-join-section {
        padding: 30px 15px;
    }

    .why-card-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 15px;
    }

    .why-img-card {
        height: 340px;
    }
}
/* ==========================================
   4. LIFE TRANSFORMATION SECTION (COMPACT)
========================================== */
.transformation-section {
    background: #FFFDFB; /* Warm soft background */
    padding: 40px 20px; /* Tight, compact padding */
    position: relative;
    z-index: 2;
}

.transformation-container {
    width: min(980px, 92%);
    margin: 0 auto;
    text-align: center;
}

.transformation-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #244B47;
    margin-bottom: 25px; /* Minimal space */
    letter-spacing: 0.5px;
}

/* 2x3 Compact Grid */
.transformation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px; /* Tight gap */
    margin-bottom: 25px;
}

/* Transformation Card */
.transform-card {
    background: #F8F4EF;
    border: 1px solid rgba(47, 93, 87, 0.12);
    border-radius: 16px;
    padding: 18px 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.transform-card:hover {
    transform: translateY(-3px);
    border-color: rgba(196, 152, 69, 0.4);
}

/* Before -> After Pill Badge */
.shift-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    border: 1px solid rgba(47, 93, 87, 0.15);
    border-radius: 50px;
    padding: 4px 12px;
    margin-bottom: 10px;
    width: fit-content;
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
}

.from-text {
    color: #8C9A96;
    text-decoration: line-through;
}

.arrow-sep {
    color: #C49845;
    font-weight: 800;
}

.to-text {
    color: #2F5D57;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Description Text */
.transform-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: #244B47;
    line-height: 1.45;
    font-weight: 500;
}

/* CTA Wrapper */
.transform-cta-wrapper {
    margin-top: 5px;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .transformation-section {
        padding: 30px 15px;
    }

    .transformation-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .transform-card {
        padding: 16px;
    }
}

/* ==========================================
   JOURNEY & MAJOR TAKEAWAYS SECTION
========================================== */
.journey-section {
    background: linear-gradient(180deg, #F8F3EE 0%, #FFFDFB 100%); 
    padding: 40px 20px;
    position: relative;
    z-index: 2;
}

.journey-container {
    width: min(1000px, 92%);
    margin: 0 auto;
    text-align: center;
}

.journey-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #244B47;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

/* 1. SESSION CARDS: Exactly 2 cards per line */
.sessions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.session-card {
    background: #FFFDFB;
    border: 1px solid rgba(47, 93, 87, 0.15);
    border-radius: 16px;
    padding: 22px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.session-header {
    border-bottom: 1px solid rgba(47, 93, 87, 0.1);
    padding-bottom: 10px;
    margin-bottom: 12px;
}

.session-badge {
    font-family: 'Outfit', sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #C49845;
    background: rgba(196, 152, 69, 0.12);
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 6px;
}

.session-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #2F5D57;
    line-height: 1.3;
}

.session-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.session-list li {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    color: #4F5E5B;
    position: relative;
    padding-left: 16px;
    margin-bottom: 6px;
    line-height: 1.4;
}

.session-list li::before {
    content: "•";
    color: #C49845;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Special Opportunity Banner */
.special-opportunity-banner {
    background: #2F5D57;
    color: #FFF8F4;
    border-radius: 12px;
    padding: 12px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 35px;
    box-shadow: 0 4px 12px rgba(47, 93, 87, 0.12);
}

.special-opportunity-banner .star-icon {
    color: #C49845;
    font-size: 1.2rem;
}

.special-opportunity-banner p {
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    margin: 0;
}

.special-opportunity-banner strong {
    color: #FFFFFF;
}

/* Major Takeaways Wrapper */
.takeaways-wrapper {
    margin-top: 10px;
    margin-bottom: 30px;
}

.takeaways-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: #244B47;
    margin-bottom: 20px;
}

/* 2. MAJOR TAKEAWAYS CARDS: Exactly 3 cards per line */
.takeaways-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    width: 100%;
    margin: 0 auto;
}

.takeaway-img-card {
    position: relative;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.takeaway-img-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(47, 93, 87, 0.12);
}

.takeaway-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.takeaway-img-card .card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #C49845;
    color: #FFFFFF;
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    z-index: 2;
}

.takeaway-img-card .card-text-overlay {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    background: rgba(47, 93, 87, 0.92);
    backdrop-filter: blur(4px);
    border-radius: 14px;
    padding: 16px 14px 14px;
    text-align: left;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.takeaway-img-card .card-text-overlay h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #FFF8F4;
    margin-bottom: 8px;
    line-height: 1.3;
}

.takeaway-img-card .card-line {
    width: 35px;
    height: 3px;
    background-color: #C49845;
    border-radius: 2px;
}

.journey-cta-wrapper {
    margin-top: 10px;
}

/* Responsive Adjustments */
@media (max-width: 850px) {
    .takeaways-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

@media (max-width: 650px) {
    .journey-section {
        padding: 30px 15px;
    }

    .sessions-grid, 
    .takeaways-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .takeaway-img-card {
        height: 280px;
    }
}
/* ==========================================
   MEET YOUR MENTORS
========================================== */
.mentor-section {
    background: #F8F4EF;
    padding: 20px 0px;
    position: relative;
    z-index: 2;
}

.mentor-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #244B47;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 25px;
    text-align: center;
}

/* Dual Photo Grid Container */
.mentor-dual-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 0 auto 35px;
    max-width: 580px;
}

.mentor-card {
    flex: 1;
    max-width: 240px;
    position: relative;
}

.mentor-img-frame {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #2F5D57; /* Deep Teal background fill */
    border: 2px solid #C49845; /* Gold Border Frame */
    box-shadow: 0 10px 25px rgba(47, 93, 87, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mentor-card:hover .mentor-img-frame {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(47, 93, 87, 0.28);
}

.mentor-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

/* Bio Content Styling */
.mentor-bio-box {
    margin-top: 10px;
    text-align: center;
}

.mentor-intro {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: #244B47;
    line-height: 1.5;
    margin: 0 auto 24px;
    font-weight: 500;
    max-width: 620px;
}

/* Modality Tags Grid */
.modalities-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.modality-tag {
    background: #FFFFFF;
    border: 1px solid rgba(47, 93, 87, 0.2);
    color: #2F5D57;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

/* Mission Box */
.mentor-mission-card {
    background: #FFFFFF;
    border-left: 4px solid #C49845;
    border-radius: 12px;
    padding: 18px 22px;
    text-align: left;
    margin-bottom: 25px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.mission-label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #C49845;
    margin-bottom: 6px;
}

.mentor-mission-card p {
    font-family: 'Outfit', sans-serif;
    font-size: 0.98rem;
    color: #244B47;
    line-height: 1.5;
    margin: 0;
}

.mentor-mission-card strong {
    color: #2F5D57;
}
/* Mentor Name Below Photo */
.mentor-name-label {
    font-family: "Bodoni Moda", serif;
    font-style: italic;
    font-size: 1.45rem;
    font-weight: 700;
    color: #244B47;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .mentor-dual-wrapper {
        gap: 12px;
    }

    .mentor-img {
        height: 200px;
    }

    .mentor-intro {
        font-size: 0.95rem;
    }

    .modality-tag {
        font-size: 0.78rem;
        padding: 6px 12px;
    }
}
/* ==========================================
   6. TRANSFORM THROUGH HEALING (COMPACT BRIDGE)
========================================== */
.final-transform-section {
    background: #F8F4EF; /* Soft cream background */
    padding: 20px 20px; /* Low vertical padding */
    position: relative;
    z-index: 2;
}

.final-transform-container {
    width: min(780px, 92%);
    margin: 0 auto;
    text-align: center;
}

/* Heading */
.final-transform-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    color: #244B47;
    margin-bottom: 16px;
    line-height: 1.2;
}

/* Lead Paragraph */
.final-transform-lead {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #4F5E5B;
    line-height: 1.5;
    margin-bottom: 22px;
    font-weight: 400;
}

.final-transform-lead strong {
    color: #2F5D57;
    font-weight: 700;
}

/* Highlight Quote Box */
.final-transform-box {
    background: #FFFDFB;
    border-left: 4px solid #C49845; /* Gold Accent Bar */
    border-radius: 0 16px 16px 0;
    padding: 20px 24px;
    margin: 0 auto 28px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(47, 93, 87, 0.04);
}

.final-transform-box p {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    color: #244B47;
    line-height: 1.55;
    font-weight: 500;
    margin: 0;
}

/* Final Step Banner & CTA */
.final-step-card {
    background: linear-gradient(135deg, #6b9a93 0%, #2d534f 100%);
    border: 1px solid rgba(196, 152, 69, 0.3);
    border-radius: 20px;
    padding: 28px 24px;
    color: #FFFFFF;
    box-shadow: 0 8px 25px rgba(36, 75, 71, 0.15);
}

.final-step-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.15rem, 2.5vw, 1.4rem);
    font-weight: 600;
    color: #FFF8F4;
    margin-bottom: 20px;
    line-height: 1.35;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .final-transform-section {
        padding: 20px 15px;
    }

    .final-transform-box {
        padding: 16px 18px;
        margin-bottom: 22px;
    }

    .final-step-card {
        padding: 22px 18px;
    }
}
/* ==========================================
   7. FOOTER SECTION
========================================== */
.site-footer {
    background: #244B47; /* Deep Teal background for footer grounding */
    color: #E2ECE9;
    padding: 35px 20px 25px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.footer-container {
    width: min(800px, 92%);
    margin: 0 auto;
}

/* Brand Title */
.powered-by {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #C49845; /* Soft Gold Accent */
    display: block;
    margin-bottom: 2px;
}

.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

/* Contact Items Horizontal Row */
.footer-contact-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFFFFF;
  text-decoration: none;
  font-family: var(--font-sans, sans-serif);
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-item:hover {
  color: var(--tarot-gold, #d4af37);
}

.contact-icon {
  width: 22px;
  height: 22px;
  color: var(--tarot-gold, #d4af37);
  flex-shrink: 0;
}

/* Divider Line */
.footer-divider {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin: 20px auto;
    width: 100%;
}

/* Disclaimer Text */
.footer-disclaimer p {
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    color: #A3B8B4;
    line-height: 1.5;
    margin-bottom: 16px;
}

.footer-disclaimer strong {
    color: #D1E0DD;
}

/* Policy Links */
.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #C49845;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #FFFFFF;
}

.footer-links .dot {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.8rem;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .site-footer {
        padding: 25px 15px 20px;
    }

    .footer-contact {
        flex-direction: column;
        gap: 10px;
    }

    .footer-links {
        gap: 6px;
    }
}

/* ==========================================
   TESTIMONIALS & GALLERY SECTION
========================================== */
.testimonials-section {
  background: #F8F4EF;
  padding: 0px 20px 0px;
  position: relative;
  z-index: 2;
}

.testimonials-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 35px;
}

.section-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #C49845;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.testimonials-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: #244B47;
  line-height: 1.15;
  margin-bottom: 12px;
}

.testimonials-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: #5A6966;
  line-height: 1.5;
}

.testimonial-subsection {
  margin-bottom: 50px;
}

/* ------------------------------------------
   PART 1: FIXED HORIZONTAL VIDEO GRID
------------------------------------------ */
.horizontal-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 1050px;
  margin: 0 auto;
}

.video-card {
  background: #2F5D57;
  border: 1px solid rgba(196, 152, 69, 0.4);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(47, 93, 87, 0.15);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(47, 93, 87, 0.28);
  border-color: #C49845;
}

.video-frame-16-9 {
  width: 100%;
  position: relative;
  padding-top: 56.25%; /* 16:9 Aspect Ratio Lock */
  background: #000000;
  overflow: hidden;
}

.video-frame-16-9 video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
  outline: none;
}

.video-caption {
  padding: 14px 16px;
  background: #1F443F;
  border-top: 1px solid rgba(196, 152, 69, 0.25);
  flex-grow: 1;
}

.user-location {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: #FFD782;
  display: block;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.video-caption h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.35;
}

/* ------------------------------------------
   PART 2: ADAPTIVE MASONRY PHOTO GALLERY
------------------------------------------ */
.photo-masonry-grid {
  column-count: 3; 
  column-gap: 20px;
  max-width: 1050px;
  margin: 0 auto;
}

.photo-card {
  break-inside: avoid; 
  margin-bottom: 20px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(196, 152, 69, 0.4);
  box-shadow: 0 8px 20px rgba(47, 93, 87, 0.1);
  background: #2F5D57;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.photo-card:hover {
  transform: translateY(-4px);
  border-color: #C49845;
  box-shadow: 0 12px 26px rgba(47, 93, 87, 0.22);
}

.photo-card img {
  width: 100%;
  height: auto; 
  display: block;
}

/* Responsive Breakpoints */
@media (max-width: 900px) {
  .photo-masonry-grid {
    column-count: 2; 
  }
}

@media (max-width: 768px) {
  .horizontal-video-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

@media (max-width: 500px) {
  .photo-masonry-grid {
    column-count: 1; /* Single column on mobile phones */
  }
}

.btn-attention {
  animation: continuousAttention 2.5s infinite ease-in-out;
}

@keyframes continuousAttention {
  0%, 100% {
    transform: scale(1); /* Normal size */
  }
  50% {
    transform: scale(1.1); /* Grows bigger / comes out toward viewer */
  }
}