/* =========================================
   RESET & VARIABLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gradient-primary: linear-gradient(135deg, #6a4c93 0%, #d98c5f 100%);
    --gradient-soft: linear-gradient(135deg, #f3eef8 0%, #fdf3e7 100%);
    --color-purple: #6a4c93;
    --color-orange: #d98c5f;
    --color-dark: #2c2c2c;
    --color-text: #4a4a4a;
    --color-light-text: #777777;
    --color-bg: #ffffff;
    --color-off-white: #fafafa;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --section-padding: 100px 0;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.7;
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    line-height: 1.3;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-padding {
    padding: var(--section-padding);
}

/* =========================================
   SCROLL REVEAL ANIMATIONS
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.program-card:nth-child(1).reveal { transition-delay: 0.1s; }
.program-card:nth-child(2).reveal { transition-delay: 0.2s; }
.program-card:nth-child(3).reveal { transition-delay: 0.3s; }

.why-card:nth-child(1).reveal { transition-delay: 0.1s; }
.why-card:nth-child(2).reveal { transition-delay: 0.2s; }
.why-card:nth-child(3).reveal { transition-delay: 0.3s; }
.why-card:nth-child(4).reveal { transition-delay: 0.4s; }

.faq-item:nth-child(1).reveal { transition-delay: 0.1s; }
.faq-item:nth-child(2).reveal { transition-delay: 0.15s; }
.faq-item:nth-child(3).reveal { transition-delay: 0.2s; }
.faq-item:nth-child(4).reveal { transition-delay: 0.25s; }
.faq-item:nth-child(5).reveal { transition-delay: 0.3s; }

/* =========================================
   TOP BAR & HEADER
   ========================================= */
.top-bar {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 12px 0;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.header {
    background: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.04);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 22px;
    color: var(--color-dark);
    letter-spacing: 0.5px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-purple);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-purple);
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 10px 0;
    margin-top: 15px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 10px 25px;
    font-size: 13px;
    color: var(--color-text);
}

.dropdown-content a:hover {
    background: var(--color-off-white);
    color: var(--color-purple);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--color-dark);
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    color: var(--color-purple);
    transform: translateY(-2px);
}

.social-icons svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-dark);
    transition: var(--transition-smooth);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav ul {
    text-align: center;
}

.mobile-nav ul li {
    margin: 30px 0;
}

.mobile-nav ul li a {
    font-size: 24px;
    font-weight: 500;
    color: var(--color-dark);
    font-family: var(--font-heading);
}

.mobile-nav ul li a:hover {
    color: var(--color-purple);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: url('../images/home-hero-bg.jpg');
    background-size: cover;
    background-position: 70% center; 
    background-attachment: fixed;
}

.hero .container {
    max-width: 100%;
    padding-left: 30px; 
    padding-right: 30px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    color: white;
}

.hero-title {
    font-size: 56px;
    color: white;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-subtext {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 300;
    max-width: 550px;
    margin-bottom: 30px;
}

/* Unified Book Now Button */
.btn-book {
    display: inline-block;
    padding: 16px 40px;
    background-color: #f4a261;
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-book:hover {
    background-color: #e76f51;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* =========================================
   SECTION DIVIDERS
   ========================================= */
.section-divider {
    padding: 0 30px;
}

.divider-line {
    max-width: 1200px;
    margin: 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e0e0e0 50%, transparent 100%);
}

/* =========================================
   SECTIONS GENERAL
   ========================================= */
.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 500;
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.about-content h2 {
    text-align: left;
    font-size: 38px;
    margin-bottom: 30px;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 15px;
    color: var(--color-light-text);
}

/* =========================================
   WHAT WE OFFER (ORIGINAL)
   ========================================= */
.program-card {
    background: white;
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.program-card p {
    font-size: 14px;
    color: var(--color-light-text);
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-outline {
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid var(--color-dark);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-dark);
    transition: var(--transition-smooth);
}

.btn-outline:hover {
    background: var(--color-dark);
    color: white;
    transform: translateY(-2px);
}

/* =========================================
   WHY CHOOSE SECTION (STATIC)
   ========================================= */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.why-card {
    padding: 40px;
    background: var(--color-off-white);
    border-radius: 12px;
}

.why-card:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
    background: var(--color-off-white); 
}

.why-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.why-card p {
    font-size: 14px;
    color: var(--color-light-text);
    line-height: 1.8;
}

/* =========================================
   GALLERY SECTION (LANDSCAPE LAYOUT)
   ========================================= */
.gallery {
    background: var(--color-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.gallery-item-large {
    grid-column: 1 / span 4;
    grid-row: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-caption {
    color: white;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

/* Hover Effects */
.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 350px repeat(4, 250px);
        gap: 15px;
    }
    
    .gallery-item-large {
        grid-column: 1;
        grid-row: 1;
    }
    
    .gallery-item:nth-child(2) { grid-row: 2; }
    .gallery-item:nth-child(3) { grid-row: 3; }
    .gallery-item:nth-child(4) { grid-row: 4; }
    .gallery-item:nth-child(5) { grid-row: 5; }
    
    .gallery-overlay {
        opacity: 1;
        padding: 20px;
    }
    
    .gallery-caption {
        font-size: 14px;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 400px repeat(2, 300px);
    }
    
    .gallery-item-large {
        grid-column: 1 / span 2;
    }
    
    .gallery-item:nth-child(2) { grid-column: 1; grid-row: 2; }
    .gallery-item:nth-child(3) { grid-column: 2; grid-row: 2; }
    .gallery-item:nth-child(4) { grid-column: 1; grid-row: 3; }
    .gallery-item:nth-child(5) { grid-column: 2; grid-row: 3; }
}

/* =========================================
   LIGHTBOX MODAL
   ========================================= */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 50px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 2001;
}

.lightbox-close:hover {
    color: var(--color-orange);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: white;
    background: rgba(255,255,255,0.1);
    border: none;
    cursor: pointer;
    padding: 20px 15px;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.2);
    color: var(--color-orange);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-caption {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 18px;
    font-family: var(--font-heading);
    text-align: center;
    padding: 0 20px;
}

/* Mobile Lightbox */
@media (max-width: 768px) {
    .lightbox-close {
        top: 20px;
        right: 25px;
        font-size: 40px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 35px;
        padding: 15px 10px;
    }
    
    .lightbox-prev { left: 15px; }
    .lightbox-next { right: 15px; }
    
    .lightbox-caption {
        bottom: 30px;
        font-size: 16px;
    }
    
    .lightbox img {
        max-width: 95%;
        max-height: 75vh;
    }
}

/* =========================================
   FAQ SECTION (ACCORDION)
   ========================================= */
.faq {
    background: var(--color-off-white);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: var(--transition-smooth);
}

.faq-item:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: background 0.3s ease;
    background: white;
}

.faq-question:hover {
    background: var(--color-off-white);
}

.faq-question h3 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0;
    padding-right: 20px;
}

.faq-toggle {
    font-size: 28px;
    color: var(--color-purple);
    font-weight: 300;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    flex-shrink: 0;
    line-height: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.faq-answer p {
    padding: 0 30px 20px;
    font-size: 15px;
    color: var(--color-light-text);
    line-height: 1.8;
    margin: 0;
}

.faq-list-items {
    padding: 0 30px 15px;
    margin: 0;
    list-style: none;
}

.faq-list-items li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    font-size: 15px;
    color: var(--color-light-text);
    line-height: 1.6;
}

.faq-list-items li::before {
    content: '•';
    color: var(--color-orange);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* CHANGED: .active to .faq-open */
.faq-item.faq-open .faq-answer {
    max-height: 800px;
    transition: max-height 0.6s ease-in-out;
}

.faq-item.faq-open .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.faq-open .faq-question {
    background: var(--color-off-white);
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta {
    position: relative;
    padding: 120px 0;
    background-image: url('../images/cta.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: white;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 44, 44, 0.7);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content h2 {
    font-size: 48px;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 16px;
    margin-bottom: 40px;
    font-weight: 300;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-list,
    .social-icons {
        display: none;
    }
    
    .hero-title { font-size: 42px; }
    .hero .container { padding: 0 5%; }
    
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .programs-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .header .container { flex-direction: column; gap: 20px; }
    .nav { flex-direction: column; gap: 20px; }
    
    .hero { height: auto; padding: 120px 0; }
    .hero-title { font-size: 32px; }
    .hero-subtext { font-size: 15px; }
    
    .section-title { font-size: 32px; }
    .cta-content h2 { font-size: 32px; }
    
    .footer-bottom-content {
        justify-content: center;
        text-align: center;
    }
}

/* =========================================
   ACCESSIBILITY
   ========================================= */
a:focus,
button:focus {
    outline: 3px solid var(--color-orange);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: white;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Back to 3 columns */
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h4 {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--color-dark);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a, .footer-column p {
    font-size: 13px;
    color: var(--color-light-text);
    line-height: 1.6;
    margin: 0;
}

.footer-column a:hover {
    color: var(--color-purple);
}

.footer-bottom {
    border-top: 1px solid #eaeaea;
    padding-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: flex-end;
    font-size: 11px;
    color: #999;
}

/* Mobile adjustments for footer */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr; /* Stacks to 1 column on mobile */
        gap: 30px;
    }

    .footer-bottom-content {
        justify-content: center;
        text-align: center;
    }
}

/* =========================================
   PRICING PAGE
   ========================================= */
.page-hero {
    background: var(--gradient-soft);
    padding: 80px 0 60px;
    text-align: center;
}

.page-title {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 18px;
    color: var(--color-light-text);
    font-weight: 300;
}

.pricing-section {
    background: var(--color-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
}

.pricing-card-title {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--color-dark);
}

.pricing-card-subtitle {
    font-size: 15px;
    color: var(--color-light-text);
    margin-bottom: 40px;
    font-weight: 300;
}

.pricing-list {
    display: flex;
    flex-direction: column;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 25px 0;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pricing-info h3 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 5px;
    line-height: 1.4;
}

.pricing-detail {
    font-size: 13px;
    color: var(--color-light-text);
    font-weight: 400;
}

.pricing-price {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark);
    white-space: nowrap;
    margin-left: 20px;
}

.per-person {
    font-size: 12px;
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--color-light-text);
}

/* Gold Exchange Special Styling */
.gold-exchange {
    background: #fdfbf7; /* Very subtle warm background */
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 8px;
}

.price-gold {
    color: #b8860b; /* Dark gold color */
}

.gold-badge {
    display: inline-block;
    background: #f4a261;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    vertical-align: middle;
    margin-left: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.gold-note {
    margin-top: 30px;
    font-size: 12px;
    color: #999;
    font-style: italic;
    text-align: center;
    line-height: 1.6;
}

/* Responsive Pricing */
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 40px 30px;
    }
}

@media (max-width: 600px) {
    .pricing-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .pricing-price {
        margin-left: 0;
        font-size: 20px;
    }
    
    .gold-exchange {
        margin: 0;
    }
}

/* Best Value Highlight */
.best-value {
    background: linear-gradient(135deg, #fff9f0 0%, #fdfbf7 100%);
    border: 2px solid #f4a261;
    margin: 0 -20px;
    padding: 20px 20px 20px 20px;
    border-radius: 12px;
    position: relative;
}

.best-value::before {
    content: 'BEST VALUE';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-orange);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.saves-badge {
    display: block;
    font-size: 11px;
    font-family: var(--font-body);
    font-weight: 600;
    color: #27ae60;
    margin-top: 4px;
}

/* =========================================
   HOW TO RESERVE SECTION
   ========================================= */
.reserve-section {
    background: var(--gradient-soft); /* Matches the page hero background */
}

.reserve-header {
    text-align: center;
    margin-bottom: 60px;
}

.reserve-header .section-title {
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-light-text);
    font-weight: 300;
}

.reserve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 50px;
    position: relative;
}

/* The connecting line between steps on desktop */
.reserve-grid::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 15%;
    right: 15%;
    height: 1px;
    background: #e0dcd5;
    z-index: 0;
}

.reserve-step {
    text-align: center;
    position: relative;
    z-index: 1;
    background: transparent;
}

.step-number {
    width: 70px;
    height: 70px;
    background: white; /* MUST be solid white to hide the line behind it */
    border: 2px solid var(--color-purple);
    color: var(--color-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    margin: 0 auto 25px;
    box-shadow: 0 5px 15px rgba(106, 76, 147, 0.1);
    
    /* ADD THESE TWO LINES TO FIX THE OVERLAP */
    position: relative; 
    z-index: 2; 
}
.reserve-step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--color-dark);
}

.reserve-step p {
    font-size: 15px;
    color: var(--color-light-text);
    line-height: 1.7;
    margin-bottom: 15px;
}

.step-note {
    font-size: 13px !important;
    font-style: italic;
    color: var(--color-purple) !important;
    margin-top: 10px;
}

.reserve-cta {
    text-align: center;
}

/* =========================================
   BOOKING GUIDE INFO BOX
   ========================================= */
.booking-guide {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 12px;
    padding: 30px 40px;
    max-width: 900px;
    margin: 0 auto 60px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
}

.guide-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
}

.guide-icon {
    font-size: 28px;
    flex-shrink: 0;
    margin-top: 2px;
}

.guide-item h4 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.guide-item p {
    font-size: 14px;
    color: var(--color-light-text);
    line-height: 1.6;
    margin: 0;
}

.guide-divider {
    width: 1px;
    height: 60px;
    background: #e0e0e0;
    margin: 0 40px;
    flex-shrink: 0;
}

/* Mobile Responsive for Booking Guide */
@media (max-width: 768px) {
    .booking-guide {
        flex-direction: column;
        padding: 25px;
        gap: 25px;
    }
    
    .guide-divider {
        width: 100%;
        height: 1px;
        margin: 0;
    }
    
    .guide-item {
        width: 100%;
    }
}

.booking-rule {
    margin-top: 12px !important;
    margin-bottom: 0 !important;
    font-size: 13px !important;
    color: var(--color-purple) !important;
    font-weight: 500;
    background: #f8f5fa; /* Very subtle purple tint background */
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-block;
}

.booking-rule strong {
    font-weight: 700;
    color: var(--color-dark);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .reserve-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    /* Hide the connecting line on mobile */
    .reserve-grid::before {
        display: none;
    }
    
    .reserve-step {
        background: white;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    }
}

/* =========================================
   TRUST & PREPARATION SECTION (EQUAL HEIGHTS)
   ========================================= */
.trust-section {
    background: var(--color-off-white);
}

.trust-layout {
    display: flex; /* Changed to Flexbox for perfect equal heights */
    gap: 40px;
    align-items: stretch; /* Forces left and right to be the exact same height */
}

/* Image Container */
.trust-image {
    flex: 1; /* Takes up 1 part of the width */
    position: relative; /* Allows the image to fill it perfectly */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* The actual image stretching to fit */
.trust-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crops the sides if needed, but NEVER cuts the top/bottom */
    display: block;
}

/* Right Side Cards Container */
.trust-cards {
    flex: 1.3; /* Takes up slightly more width (1.3 parts) */
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ... keep the rest of your .info-card, .info-list, etc. CSS exactly as it is ... */

/* Responsive */
@media (max-width: 900px) {
    .trust-layout {
        flex-direction: column; /* Stacks them on mobile */
    }
    
    .trust-image {
        height: 350px; /* Gives it a nice fixed height on mobile */
        order: -1; /* Keeps image on top */
    }
    
    .info-card {
        padding: 30px 25px;
    }
}

.info-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: var(--color-dark);
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

/* Standard Bullet List Styling */
.info-list {
    padding-left: 20px;
    margin: 0;
}

.info-list li {
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.6;
    padding-left: 5px;
}

.info-list li::marker {
    color: var(--color-orange); /* Makes the bullet dots match your brand */
    font-size: 1.2em;
}

/* Payment & Cancellation Blocks */
.info-block {
    margin-bottom: 25px;
}

.info-block:last-child {
    margin-bottom: 0;
}

.info-block h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-purple);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.info-block p {
    font-size: 14px;
    color: var(--color-light-text);
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .trust-layout {
        grid-template-columns: 1fr;
    }
    
    .trust-image {
        min-height: 350px;
        order: -1; /* Keeps image on top on mobile */
    }
    
    .info-card {
        padding: 30px 25px;
    }
}
/* =========================================
   TESTIMONIALS CAROUSEL
   ========================================= */
.testimonials-section {
    background: var(--gradient-soft);
    padding: 100px 0;
}

.testimonial-carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-track {
    position: relative;
    overflow: hidden;
    min-height: 400px; 
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    padding: 0 20px;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.testimonial-content {
    background: white;
    padding: 50px 60px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    text-align: center;
}

/* REMOVED: The decorative quotation mark (::before) */

.stars {
    color: #f4a261; 
    font-size: 48px; /* Much bigger stars! */
    letter-spacing: 10px;
    margin-bottom: 30px;
    display: block;
    line-height: 1;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.9;
    color: var(--color-text);
    margin-bottom: 30px;
    font-style: italic;
    font-weight: 300;
}

.testimonial-author {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
    letter-spacing: 0.5px;
}

/* Navigation Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--color-purple);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot:hover {
    background: var(--color-purple);
    transform: scale(1.2);
}

.dot.active {
    background: var(--color-purple);
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-content {
        padding: 35px 30px;
    }
    
    .stars {
        font-size: 36px; /* Still big on mobile */
        letter-spacing: 6px;
    }
    
    .testimonial-text {
        font-size: 15px;
        line-height: 1.8;
    }
    
    .testimonial-track {
        min-height: 450px; 
    }
}

@media (max-width: 480px) {
    .testimonial-track {
        min-height: 500px; 
    }
    
    .stars {
        font-size: 32px;
    }
}
/* =========================================
   SOUND HEALING PAGE SPECIFIC BLOCKS
   ========================================= */

/* Sub-Hero */
.sub-hero {
    background: var(--gradient-primary);
    padding: 80px 0;
    text-align: center;
    color: white;
}
.sub-hero-title {
    font-size: 42px;
    color: white;
    margin-bottom: 10px;
}
.sub-hero-subtitle {
    font-size: 18px;
    font-weight: 300;
}

/* Icon List (Why Choose) */
.icon-list-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.icon-list-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.icon-list-symbol {
    font-size: 24px;
    color: var(--color-orange);
    flex-shrink: 0;
    margin-top: 2px;
}
.icon-list-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--color-dark);
}
.icon-list-item p {
    font-size: 15px;
    color: var(--color-light-text);
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   CURRICULUM DAILY LIST
   ========================================= */
.curriculum-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.curriculum-day {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
}

.day-header {
    background: var(--color-off-white);
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.day-badge {
    background: var(--color-purple);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.day-header h3 {
    font-size: 18px;
    margin: 0;
    color: var(--color-dark);
}

.day-content {
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.lesson-block h4 {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.lesson-block p {
    font-size: 14px;
    color: var(--color-light-text);
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   INTERACTIVE COURSE FORMATS
   ========================================= */
.formats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.format-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.format-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-purple);
    box-shadow: 0 15px 40px rgba(106, 76, 147, 0.15);
}

.format-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.format-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--color-dark);
}

.format-card p {
    font-size: 14px;
    color: var(--color-light-text);
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

.format-cta {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-purple);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.format-card:hover .format-cta {
    color: var(--color-orange);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .day-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .formats-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   OUTCOMES GRID (WHAT YOU'LL RECEIVE) - UPDATED
   ========================================= */
.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.outcome-card {
    background: var(--color-off-white);
    padding: 40px 20px; /* Increased padding */
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    cursor: default; /* Ensures it doesn't look clickable */
}

.outcome-card:hover { 
    transform: translateY(-5px); 
}

.outcome-card h4 {
    font-size: 18px; /* Increased font size */
    color: var(--color-dark);
    margin: 0 0 15px 0;
    font-weight: 600;
    line-height: 1.3;
}

.outcome-desc {
    font-size: 15px; /* Increased font size */
    color: var(--color-light-text);
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .outcomes-grid { 
        grid-template-columns: repeat(3, 1fr); 
    }
}

@media (max-width: 768px) { 
    .outcomes-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    .outcomes-grid .outcome-card:last-child { 
        grid-column: span 2; 
    }
}

@media (max-width: 480px) {
    .outcomes-grid {
        grid-template-columns: 1fr;
    }
    .outcomes-grid .outcome-card:last-child {
        grid-column: span 1;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
    .outcomes-grid .outcome-card:last-child { grid-column: span 2; }
    .sub-hero-title { font-size: 32px; }
}
/* =========================================
   CURRICULUM SUBJECT LIST
   ========================================= */
.curriculum-subject-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.curriculum-subject {
    background: white;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border-left: 4px solid var(--color-purple); /* Elegant accent */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.curriculum-subject:hover {
    transform: translateX(5px); /* Subtle slide effect on hover */
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.subject-title {
    font-size: 18px;
    color: var(--color-dark);
    margin-bottom: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
}

.subject-desc {
    font-size: 15px;
    color: var(--color-light-text);
    line-height: 1.6;
    margin: 0;
}

/* Mobile adjustment */
@media (max-width: 768px) {
    .curriculum-subject {
        padding: 20px;
    }
}
/* =========================================
   WHY CHOOSE ICON CARDS
   ========================================= */
.icon-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.icon-card {
    background: white;
    padding: 40px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    transition: transform 0.3s ease;
}

.icon-card:hover {
    transform: translateY(-5px);
}

.icon-card-symbol {
    font-size: 32px;
    margin-bottom: 20px;
}

.icon-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--color-dark);
}

.icon-card p {
    font-size: 14px;
    color: var(--color-light-text);
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   COURSE FORMATS PRICING & SUBTITLE
   ========================================= */
.format-subtitle {
    font-size: 13px;
    color: var(--color-purple);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    margin-top: -5px;
}

.format-price {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-dark);
    text-align: center;
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.outcome-desc {
    font-size: 13px;
    color: var(--color-light-text);
    line-height: 1.5;
    margin-top: 10px;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .icon-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .icon-card-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================================
   MINIMALIST HERO (CONCEPT 1)
   ========================================= */
.minimalist-hero {
    background: #faf9f6; /* Warm cream/off-white background */
    padding: 100px 0 80px;
    text-align: center;
    border-bottom: 1px solid #f0ede5;
}

.minimalist-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.minimalist-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-light-text);
    letter-spacing: 1px;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .minimalist-hero {
        padding: 80px 0 60px;
    }
    
    .minimalist-title {
        font-size: 42px;
    }
    
    .minimalist-subtitle {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .minimalist-title {
        font-size: 36px;
    }
}
/* =========================================
   SUB-HERO EDITORIAL SPLIT (CONCEPT 3)
   ========================================= */
.sub-hero-editorial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white; /* Match the page background */
    width: 100%;
    margin: 0;
}

.sub-hero-image {
    height: 450px;
    overflow: hidden;
}

.sub-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sub-hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 100px;
    background: white;
}

.sub-hero-editorial-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 500;
    color: var(--color-dark);
    line-height: 1.3;
    margin: 0;
    text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
    .sub-hero-editorial {
        grid-template-columns: 1fr;
    }
    
    .sub-hero-image {
        height: 300px;
    }
    
    .sub-hero-content {
        padding: 60px 40px;
    }
    
    .sub-hero-editorial-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .sub-hero-content {
        padding: 50px 30px;
    }
    
    .sub-hero-editorial-title {
        font-size: 28px;
    }
}/* =========================================
   BRIDGE SECTION (TRANSITION)
   ========================================= */
.bridge-section {
    text-align: center;
    background: white;
    padding: 60px 0 40px; /* Slightly less padding at bottom to flow into the next section */
}

/* Concept 2: Visual Divider with Context */
.bridge-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-purple);
    margin-bottom: 25px;
    display: inline-block;
    position: relative;
}

/* Elegant little lines on the sides of the label */
.bridge-label::before,
.bridge-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: #e0e0e0;
}
.bridge-label::before { right: 100%; margin-right: 15px; }
.bridge-label::after { left: 100%; margin-left: 15px; }

/* Concept 1: Gentle Bridge Text */
.bridge-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.bridge-text {
    font-size: 16px;
    color: var(--color-light-text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .bridge-label::before,
    .bridge-label::after {
        display: none; /* Hide lines on mobile for cleaner look */
    }
    
    .bridge-title {
        font-size: 28px;
    }
}
/* =========================================
   WHAT YOU'LL RECEIVE (NEW SPLIT LAYOUT)
   ========================================= */
.outcomes-layout {
    display: grid;
    grid-template-columns: 1fr 2fr; /* 1/3 Title, 2/3 Cards */
    gap: 60px;
    align-items: center;
}

.outcomes-header h2 {
    text-align: left;
    margin-bottom: 20px;
}

.outcomes-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns for big cards */
    gap: 25px;
}

.outcome-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
    cursor: default;
}

.outcome-card:hover {
    transform: translateY(-5px);
}

.outcome-card h4 {
    font-size: 20px;
    color: var(--color-purple);
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.outcome-desc {
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments for new layout */
@media (max-width: 992px) {
    .outcomes-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .outcomes-header h2 {
        text-align: center;
    }
    .outcomes-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .outcomes-cards-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================================
   PROGRAMS GRID LAYOUT
   ========================================= */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .programs-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================================
   BREADCRUMB NAVIGATION
   ========================================= */
.breadcrumb-section {
    background: transparent;
    padding: 30px 0 15px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.breadcrumb-link {
    color: var(--color-light-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--color-purple);
}

.breadcrumb-separator {
    color: #d0d0d0;
}

.breadcrumb-current {
    color: var(--color-dark);
    font-weight: 500;
}
/* =========================================
   BALINESE ENERGY HEALING PAGE STYLES
   ========================================= */

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: white;
    padding: 40px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    color: var(--color-purple);
    margin-bottom: 15px;
    opacity: 0.3;
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--color-dark);
}

.step-card p {
    font-size: 14px;
    color: var(--color-light-text);
    line-height: 1.6;
    margin: 0;
}

/* Prepare List */
.prepare-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.prepare-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}

.prepare-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.prepare-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--color-dark);
}

.prepare-item p {
    font-size: 14px;
    color: var(--color-light-text);
    line-height: 1.6;
    margin: 0;
}

/* Benefits List */
.benefits-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px 30px;
    border-radius: 8px;
}

.benefit-bullet {
    color: var(--color-orange);
    font-size: 20px;
    flex-shrink: 0;
}

.benefit-item p {
    font-size: 15px;
    color: var(--color-text);
    margin: 0;
}

/* Levels Comparison */
.levels-comparison {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.level-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}

.level-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--color-purple);
}

.level-subtitle {
    font-size: 14px;
    color: var(--color-light-text);
    margin-bottom: 25px;
    font-style: italic;
}

.level-content {
    list-style: none;
    padding: 0;
    margin: 0;
}

.level-content li {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.level-content li::before {
    content: '•';
    color: var(--color-orange);
    position: absolute;
    left: 0;
    font-size: 18px;
}

/* Course Formats Grid */
.course-formats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.format-card-large {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.format-card-large:hover {
    transform: translateY(-5px);
    border-color: var(--color-purple);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.format-card-large.featured {
    border-color: var(--color-orange);
    background: linear-gradient(135deg, #fff9f0 0%, #ffffff 100%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-orange);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.format-card-large h3 {
    font-size: 26px;
    margin-bottom: 10px;
    color: var(--color-purple);
}

.format-subtitle {
    font-size: 13px;
    color: var(--color-light-text);
    margin-bottom: 20px;
    font-weight: 500;
}

.format-card-large p {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 25px;
}

.format-price {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 25px;
    padding: 15px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.format-card-large .btn-book {
    display: inline-block;
    padding: 12px 35px;
    background: var(--color-orange);
    color: white;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.format-card-large .btn-book:hover {
    background: var(--color-purple);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .prepare-list {
        grid-template-columns: 1fr;
    }
    
    .levels-comparison {
        grid-template-columns: 1fr;
    }
    
    .course-formats-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-item {
        padding: 15px 20px;
    }
}
/* =========================================
   BALINESE ENERGY HEALING PAGE ADDITIONS
   ========================================= */

/* Secondary Hero Text */
.sub-hero-subtitle {
    font-size: 16px;
    color: var(--color-purple);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
    margin-bottom: 0;
}

.sub-hero-text {
    font-size: 15px;
    color: var(--color-light-text);
    line-height: 1.7;
    margin-top: 20px;
}

/* Course Format Details */
.format-details {
    font-size: 13px;
    color: var(--color-light-text);
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Update Steps Grid to 3 columns */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}
/* Tighten up the two-line descriptions in course formats */
.format-card-large p + p {
    margin-top: -10px;
}
/* =========================================
   SHAMANISM PAGE SPECIFIC STYLES
   ========================================= */

/* After Ceremony Section */
.after-ceremony-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-off-white);
    padding: 50px;
    border-radius: 12px;
    border-left: 4px solid var(--color-orange);
}

.after-ceremony-container h2 {
    text-align: left;
    margin-bottom: 20px;
}

.after-ceremony-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.after-ceremony-list li {
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.after-ceremony-list li::before {
    content: '•';
    color: var(--color-orange);
    position: absolute;
    left: 0;
    font-size: 20px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .after-ceremony-container {
        padding: 30px 25px;
    }
}
/* Centers 2-card grids and keeps them responsive */
.grid-center-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto;
    gap: 30px;
}

@media (max-width: 768px) {
    .grid-center-2 {
        grid-template-columns: 1fr;
    }
}
/* =========================================
   FIX ANCHOR LINKS FOR STICKY HEADER
   ========================================= */
html {
    scroll-behavior: smooth;
}

/* Pushes the scroll target down so the header doesn't cover it */
#shamanism-courses {
    scroll-margin-top: 120px; 
}
/* =========================================
   FIX BALINESE COURSE ANCHOR LINK
   ========================================= */
#balinese-course {
    scroll-margin-top: 120px; 
}
/* Soft Warm Background for specific sections */
.soft-warm-bg {
    background: var(--gradient-soft); /* This uses your existing soft purple-to-peach gradient */
    /* OR if you prefer a solid warm color like the screenshot, use this instead: */
    /* background: #fdfbf7; */ 
}
/* =========================================
COURSE INCLUSIONS SPLIT LAYOUT
========================================= */
.outcomes-layout {
    display: grid;
    grid-template-columns: 1fr 2fr; /* 1/3 Title, 2/3 Cards */
    gap: 60px;
    align-items: center; /* Vertically centers the title with the grid */
}

.outcomes-header h2 {
    text-align: left;
    margin-bottom: 20px;
    font-size: 42px; /* Big, bold title like the screenshot */
}

.outcomes-header p {
    font-size: 16px;
    color: var(--color-light-text);
    line-height: 1.6;
}

.outcomes-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 25px;
}

/* Card styling to match the screenshot exactly */
.outcome-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04); /* Soft shadow */
    text-align: center;
    border: 1px solid #f0f0f0; /* Very subtle border */
    transition: transform 0.3s ease;
}

.outcome-card:hover {
    transform: translateY(-5px);
}

.outcome-card h4 {
    font-size: 20px;
    color: var(--color-purple); /* Purple heading */
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.outcome-desc {
    font-size: 15px;
    color: var(--color-text); /* Darker text for readability */
    line-height: 1.6;
    margin: 0;
}

/* Responsive: Stack on smaller screens */
@media (max-width: 992px) {
    .outcomes-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .outcomes-header h2 {
        text-align: center;
    }
    .outcomes-header p {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .outcomes-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .outcomes-cards-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================================
CONTACT PAGE
========================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    min-height: 450px;
    background: #f0f0f0; /* Fallback color */
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.contact-form-container {
    background: white;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
}

.contact-form-container h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--color-dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-text);
    transition: border-color 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-purple);
    background: white;
}
/* =========================================
WHATSAPP CTA COMPONENT
========================================= */
.whatsapp-cta {
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #f0f0f0;
}

.whatsapp-text {
    font-size: 15px;
    color: var(--color-light-text);
    margin-bottom: 20px;
    font-weight: 400;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background: #25D366; /* WhatsApp green */
    color: white;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
    background: #128C7E; /* WhatsApp darker green */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.whatsapp-icon {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.whatsapp-note {
    font-size: 13px;
    color: var(--color-light-text);
    margin-top: 15px;
    font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .btn-whatsapp {
        padding: 14px 28px;
        font-size: 14px;
    }
    .whatsapp-cta {
        margin-top: 30px;
        padding-top: 30px;
    }
}

.form-group textarea {
    resize: vertical;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-map {
        min-height: 350px;
        order: 2; /* Puts map below form on mobile */
    }
    .contact-form-container {
        padding: 40px 30px;
    }
}
/* Fix the dropdown hover gap issue */
.dropdown {
    position: relative;
    padding-bottom: 15px; /* Creates an invisible hover bridge */
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 10px 0;
    margin-top: 0; /* REMOVE the 15px gap */
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
/* =========================================
BOOKRETREATS ALTERNATIVE BANNER
========================================= */
.bookretreats-banner {
    display: flex;
    align-items: center;
    gap: 25px;
    background: #f8f5fa; /* Very subtle warm purple tint */
    border: 1px solid #e8e0f0;
    border-radius: 12px;
    padding: 30px 40px;
    max-width: 900px;
    margin: 0 auto 60px; /* Space below it before the next section */
}

.bookretreats-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.bookretreats-content h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bookretreats-content p {
    font-size: 14px;
    color: var(--color-light-text);
    line-height: 1.6;
    margin: 0;
}

.bookretreats-content a {
    color: var(--color-purple);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: #d4c5e8; /* Lighter underline */
    text-underline-offset: 3px;
    transition: all 0.3s ease;
}

.bookretreats-content a:hover {
    color: var(--color-orange);
    text-decoration-color: var(--color-orange);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .bookretreats-banner {
        flex-direction: column;
        text-align: center;
        padding: 25px;
        gap: 15px;
    }
}
/* Privacy Policy Link Styling */
.footer-bottom-content a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-content a:hover {
    color: var(--color-purple);
}
