/* ===== GLOBAL STYLES ===== */
.main-content {
    opacity: 0;
    font-family: 'DM Sans', sans-serif;
    background: radial-gradient(50% 50% at 50% 0%, #FFB578 0%, #FF7A00 100%);
    min-height: 100vh;
}

.section {
    min-height: 100vh;
    position: relative;
    padding-top: 120px;
}

/* ===== NAVBAR ===== */
/* Replace the existing .navbar CSS with this */
.navbar {
    position: absolute; /* Changed from 'fixed' to 'absolute' */
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 53px 52px;
    z-index: 1000;
    pointer-events: none;
}

.navbar > * {
    pointer-events: all;
}

.logo-container {
    width: 220px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 138px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
}

.logo-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.menu-toggle {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.menu-text {
    font-weight: 600;
    font-size: 18px;
    color: #FFFFFF;
    letter-spacing: -0.04em;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: #FFFFFF;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== PROGRESS BAR ===== */
.progress-container {
    position: absolute;
    top: 144px;
    left: 52px;
    width: calc(100% - 104px);
    height: 5px;
    display: flex;
    align-items: center;
    gap: 150px;
}

.progress-line {
    position: absolute;
    width: 100%;
    height: 1px;
    background: #FFFFFF;
    opacity: 0.5;
}

/* .progress-indicator {
    width: 150px;
    height: 5px;
    background: #FFFFFF;
    border-radius: 115px;
    position: relative;
    opacity: 0.3;
    transition: all 0.5s ease;
}

.progress-indicator.active {
    box-shadow: 0px 0px 4px 1px #FFFFFF;
    opacity: 1; */
/* } */

/* ===== SECTION 1: HERO ===== */
.hero-section {
    display: flex;
    align-items: flex-start;
    padding: 200px 82px 100px;
    min-height: 100vh;
}

.hero-content {
    flex: 1;
    max-width: 850px;
    z-index: 2;
}

.hero-description {
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    opacity: 0.7;
    margin-bottom: 75px;
}

.hero-subtitle {
    font-weight: 400;
    font-size: 64px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    margin-bottom: 0;
}

.hero-title {
    font-weight: 600;
    font-size: 110px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    margin-top: -10px;
    margin-bottom: 50px;
}

.cta-button {
    width: 200px;
    height: 50px;
    background: linear-gradient(180deg, #FE7A01 62%, #CB6100 100%);
    border: 1px solid rgba(255, 255, 255, 0.19);
    border-radius: 204px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 26px;
    color: #FFFFFF;
    letter-spacing: -0.03em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 20px rgba(254, 122, 1, 0.4);
}

.hero-image {
    position: absolute;
    right: 40px;
    top: 120px;
    width: 560px;
    height: 650px;
    z-index: 1;
}

.monk-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

/* ===== SECTION 2: HEALING OPTIONS (1-2-1-2-1 PATTERN - 7 CIRCLES) ===== */
.options-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 150px 50px;
    min-height: 100vh;
}

.enter-content {
    text-align: center;
    margin-bottom: 100px;
}

.enter-title {
    font-weight: 500;
    font-size: 60px;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.enter-subtitle {
    font-weight: 400;
    font-size: 24px;
    color: #FFFFFF;
    opacity: 0.9;
}

.options-pyramid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    max-width: 1400px;
}

.pyramid-row {
    display: flex;
    justify-content: center;
    gap: 120px;
}

/* ===== HEALING CIRCLES - PROFESSIONAL ANIMATED ===== */
.healing-option {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: visible;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.02);
}

/* ===== CONTINUOUS FLOATING ANIMATIONS ===== */
@keyframes floatSlow {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    25% {
        transform: translateY(-20px) rotate(2deg);
    }
    50% { 
        transform: translateY(-30px) rotate(0deg); 
    }
    75% {
        transform: translateY(-20px) rotate(-2deg);
    }
}

@keyframes floatMedium {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg); 
    }
    33% {
        transform: translateY(-25px) translateX(10px) rotate(3deg);
    }
    66% { 
        transform: translateY(-15px) translateX(-10px) rotate(-3deg); 
    }
}

@keyframes floatFast {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
    }
    20% {
        transform: translateY(-15px) scale(1.02);
    }
    40% { 
        transform: translateY(-35px) scale(1); 
    }
    60% {
        transform: translateY(-25px) scale(0.98);
    }
    80% {
        transform: translateY(-10px) scale(1.01);
    }
}

.floating-slow {
    animation: floatSlow 6s ease-in-out infinite;
}

.floating-medium {
    animation: floatMedium 5s ease-in-out infinite;
}

.floating-fast {
    animation: floatFast 4s ease-in-out infinite;
}

/* Pulsing Glow Effect */
.circle-glow {
    position: absolute;
    width: 130%;
    height: 130%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(0.9);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.7;
    }
}

/* Rotating Border Effect */
.healing-option::before {
    content: '';
    position: absolute;
    width: 108%;
    height: 108%;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: rgba(255, 255, 255, 0.5);
    border-right-color: rgba(255, 255, 255, 0.2);
    animation: rotateBorder 8s linear infinite;
}

@keyframes rotateBorder {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Icon Styling */
.icon-wrapper {
    font-size: 70px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    transition: all 0.5s ease;
    animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
    }
    50% { 
        transform: translateY(-12px) scale(1.1);
    }
}

/* Hover Effects */
.healing-option:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.12) translateY(-20px);
    box-shadow: 
        0 30px 70px rgba(0, 0, 0, 0.35),
        0 0 100px rgba(255, 255, 255, 0.15);
    animation: none; /* Stop floating on hover */
}

.healing-option:hover .icon-wrapper {
    transform: scale(1.25) rotate(10deg);
    color: #FFFFFF;
    text-shadow: 0 5px 25px rgba(255, 255, 255, 0.3);
    animation: none;
}

.healing-option:hover .circle-glow {
    animation-duration: 1.5s;
    opacity: 1;
}

/* Title Styling */
.healing-option h3 {
    font-weight: 500;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    letter-spacing: -0.01em;
    transition: all 0.5s ease;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    padding: 0 20px;
}

.healing-option:hover h3 {
    transform: scale(1.12);
    color: #FFFFFF;
    text-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
}

/* Center Circle Special Effects */
.healing-option.center {
    background: rgba(255, 255, 255, 0.06);
    border-width: 3px;
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.healing-option.center::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    animation: centerPulse 2.5s ease-in-out infinite;
}

@keyframes centerPulse {
    0%, 100% { 
        opacity: 0.4; 
        transform: scale(0.92); 
    }
    50% { 
        opacity: 0.8; 
        transform: scale(1.08); 
    }
}

/* ===== SECTION 3: AI CHAT ===== */
.chat-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 150px 80px;
    min-height: 100vh;
}

.chat-header {
    text-align: center;
    margin-bottom: 60px;
}

.chat-header h2 {
    font-weight: 500;
    font-size: 52px;
    color: #FFFFFF;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.chat-header p {
    font-weight: 400;
    font-size: 22px;
    color: #FFFFFF;
    opacity: 0.9;
}

.chat-container {
    width: 100%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.chat-message {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #FF7A00;
}

.message-content {
    flex: 1;
}

.sender {
    display: block;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    opacity: 0.7;
    margin-bottom: 8px;
}

.message-content p {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.6;
    color: #FFFFFF;
    margin: 0;
}

/* ===== SECTION 4: TESTIMONIALS ===== */
.testimonials-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 150px 80px;
    min-height: 100vh;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    width: 100%;
    max-width: 1400px;
}

.testimonials-header h2 {
    font-weight: 500;
    font-size: 52px;
    color: #FFFFFF;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.testimonials-header p {
    font-weight: 400;
    font-size: 22px;
    color: #FFFFFF;
    opacity: 0.9;
    margin-bottom: 30px;
}

.read-more {
    position: absolute;
    right: 0;
    top: 0;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    text-decoration: underline;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.read-more:hover {
    opacity: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    width: 100%;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.testimonial-card .avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    font-size: 45px;
}

.testimonial-card h3 {
    font-weight: 500;
    font-size: 28px;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.stars {
    color: #FFD700;
    font-size: 24px;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #FFFFFF;
    opacity: 0.8;
    text-align: left;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero-title { font-size: 80px; }
    .hero-subtitle { font-size: 48px; }
    .hero-image {
        width: 450px;
        height: 550px;
        right: 50px;
    }
    .healing-option {
        width: 300px;
        height: 300px;
    }
    .icon-wrapper { font-size: 55px; }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar { padding: 30px 20px; }
    .logo-container {
        width: 180px;
        height: 50px;
    }
    .section { padding-top: 100px; }
    .hero-section {
        flex-direction: column;
        padding: 150px 20px 50px;
    }
    .hero-content { max-width: 100%; }
    .hero-description {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 60px;
    }
    .hero-subtitle { font-size: 32px; }
    .hero-title {
        font-size: 48px;
        margin-bottom: 30px;
    }
    .hero-image {
        position: relative;
        width: 100%;
        height: 400px;
        margin-top: 40px;
        right: 0;
        top: 0;
    }
    .enter-title { font-size: 36px; }
    .pyramid-row {
        flex-direction: column;
        gap: 50px;
    }
    .healing-option {
        width: 280px;
        height: 280px;
    }
    .icon-wrapper { font-size: 50px; }
    .chat-section,
    .testimonials-section {
        padding: 100px 20px;
    }
    .chat-header h2,
    .testimonials-header h2 {
        font-size: 32px;
    }
    .chat-container { padding: 30px 20px; }
}

/* ===== FOOTER SECTION ===== */
.footer-section {
    background: linear-gradient(180deg, #2FA5A4 0%, #1E8180 100%);
    padding: 0;
    margin-top: 100px;
}

.footer-main {
    padding: 80px 60px 60px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    color: #FFFFFF;
}

/* Brand Column */
.brand-column {
    max-width: 400px;
}

.footer-brand {
    font-size: 42px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.footer-description {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0.95;
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 22px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 25px;
    letter-spacing: -0.01em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #FFFFFF;
    transform: translateX(5px);
}

/* Email Signup */
.signup-column {
    gap: 30px;
}

.email-signup {
    margin-top: 20px;
}

.email-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border-radius: 50px;
    padding: 0 25px;
    height: 55px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.email-input-wrapper i {
    font-size: 20px;
    color: #2FA5A4;
    margin-right: 15px;
}

.email-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    color: #333;
    background: transparent;
    font-family: 'DM Sans', sans-serif;
}

.email-input::placeholder {
    color: #999;
}

/* Footer Bottom */
.footer-bottom {
    background: #000000;
    padding: 25px 60px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    margin: 0;
}

/* ===== FOOTER RESPONSIVE ===== */
@media (max-width: 1200px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .brand-column {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 60px 20px 40px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        font-size: 32px;
    }
    
    .footer-description {
        font-size: 15px;
    }
    
    .footer-title {
        font-size: 20px;
    }
    
    .email-input-wrapper {
        height: 50px;
        padding: 0 20px;
    }
    
    .footer-bottom {
        padding: 20px;
    }
    
    .footer-bottom p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer-brand {
        font-size: 28px;
    }
    
    .footer-links a {
        font-size: 15px;
    }
    
    .email-input {
        font-size: 14px;
    }
}


/* Music Controls - Subtle Bottom Right */
/* .music-controls {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(47, 165, 164, 0.9);
    padding: 12px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.music-controls:hover {
    background: rgba(47, 165, 164, 1);
    transform: scale(1.05);
}

.music-controls button {
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.2s ease;
}

.music-controls button:hover {
    transform: scale(1.2);
}

.volume-slider {
    width: 80px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    outline: none;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    background: #FFFFFF;
    border-radius: 50%;
    cursor: pointer;
}

.volume-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: #FFFFFF;
    border-radius: 50%;
    cursor: pointer;
    border: none;
} */
