/* =============================================
   VAASTU WELLNESS WORKSHOP - CUSTOM STYLES
   Color Palette (from new design):
   - Blue: #1a237e
   - Green: #2e7d32
   - Yellow: #f9c846
   - Light BG: gradient (pink/green/yellow tones)
   ============================================= */

:root {
    --blue: #1a237e;
    --blue-light: #283593;
    --green: #2e7d32;
    --green-light: #4caf50;
    --yellow: #f9c846;
    --yellow-light: #fdd835;
    --red: #e53935;
    --white: #ffffff;
    --gray-text: #666666;
    --light-bg: linear-gradient(135deg, #fce4ec 0%, #e8f5e9 30%, #fff8e1 60%, #e8f5e9 100%);
    --gradient-glow: radial-gradient(ellipse at top, rgba(255,255,255,0.9) 0%, transparent 60%);
}

/* ============================================= 
   BASE STYLES 
   ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--light-bg);
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--blue);
}

.text-highlight {
    color: var(--green);
}

.section-padding {
    padding: 80px 0;
}

/* ============================================= 
   BUTTONS 
   ============================================= */
.btn-primary-green {
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 14px 32px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-primary-green:hover {
    background: #1b5e20;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.5);
}

.btn-gold {
    background: var(--yellow);
    color: var(--blue);
    border: none;
    border-radius: 8px;
    padding: 12px 28px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(249, 200, 70, 0.4);
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: var(--yellow-light);
    color: var(--blue);
    transform: translateY(-2px);
}

/* ============================================= 
   SECTION COMMON STYLES 
   ============================================= */
.section-overline {
    display: inline-block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--green-light));
    border-radius: 2px;
    margin-bottom: 20px;
}

/* ============================================= 
   HEADER 
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
}

.header .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 55px;
    width: auto;
}

@media (max-width: 768px) {
    .logo {
        height: 45px;
    }
}

.contact-link {
    color: var(--green);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact-link:hover {
    color: var(--green-light);
}

.contact-link i {
    font-size: 1rem;
}

.btn-book-now {
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.btn-book-now:hover {
    background: #1b5e20;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

/* ============================================= 
   HERO SECTION - BANNER IMAGES
   ============================================= */
.hero-section {
    padding-top: 75px;
}

.hero-banner {
    width: 100%;
    display: block;
}

.hero-desktop {
    display: block;
}

.hero-mobile {
    display: none;
}

@media (max-width: 768px) {
    .hero-desktop {
        display: none;
    }
    .hero-mobile {
        display: block;
    }
}

/* ============================================= 
   TRUST SECTION 
   ============================================= */
.trust-section {
    background: var(--white);
    padding: 40px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-item {
    padding: 20px;
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: rgba(46, 125, 50, 0.1);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--green);
    font-size: 1.5rem;
}

.trust-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 4px;
    font-family: 'Poppins', sans-serif;
}

.trust-label {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================= 
   ABOUT SECTION 
   ============================================= */
.about-section {
    background: var(--light-bg);
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: 24px;
    border: 2px solid rgba(46, 125, 50, 0.2);
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    background: rgba(46, 125, 50, 0.1);
    border-radius: 24px;
    z-index: -1;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 24px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--blue);
}

.feature-list i {
    color: var(--green);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================= 
   BENEFITS SECTION 
   ============================================= */
.benefits-section {
    background: var(--white);
}

.benefit-card {
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(26, 35, 126, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(46, 125, 50, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--green);
    font-size: 1.75rem;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: var(--green);
    color: var(--white);
    transform: scale(1.1);
}

.benefit-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.benefit-text {
    color: var(--gray-text);
    margin: 0;
}

/* ============================================= 
   SPEAKER SECTION 
   ============================================= */
.speaker-section {
    background: var(--blue);
}

.speaker-image-wrapper {
    position: relative;
}

.speaker-image {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid var(--green);
}

@media (min-width: 768px) {
    .speaker-image {
        width: 320px;
        height: 320px;
    }
}

.experience-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--yellow);
    color: var(--blue);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.speaker-title {
    color: var(--green);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 16px;
    border-radius: 12px;
    color: var(--white);
    font-size: 0.9rem;
}

.credential-item i {
    color: var(--yellow);
    font-size: 1.1rem;
}

/* ============================================= 
   LEARNING SECTION 
   ============================================= */
.learning-section {
    background: var(--light-bg);
}

.learning-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--white);
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.learning-item i {
    color: var(--green);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.learning-item span {
    color: var(--blue);
    font-weight: 500;
}

/* ============================================= 
   DETAILS SECTION 
   ============================================= */
.details-section {
    background: var(--white);
}

.details-card {
    background: var(--blue);
    border-radius: 32px;
    padding: 48px 32px;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .details-card {
        padding: 60px 48px;
    }
}

.details-item {
    margin-bottom: 24px;
}

.details-icon {
    width: 60px;
    height: 60px;
    background: var(--yellow);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--blue);
    font-size: 1.5rem;
}

.details-label {
    color: var(--yellow);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.details-value {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.details-subtext {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

.details-address {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
}

.address-title {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.address-text {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.btn-outline-gold {
    border: 2px solid var(--yellow);
    color: var(--yellow);
    border-radius: 50px;
    padding: 12px 24px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-gold:hover {
    background: var(--yellow);
    color: var(--blue);
}

.details-price {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price-label-lg {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.price-value-lg {
    color: var(--yellow);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.price-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================= 
   TESTIMONIALS SECTION 
   ============================================= */
.testimonials-section {
    background: var(--light-bg);
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.stars {
    margin-bottom: 16px;
}

.stars i {
    color: var(--yellow);
    font-size: 1.1rem;
    margin-right: 2px;
}

.testimonial-text {
    color: var(--gray-text);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
}

.author-name {
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 2px;
}

.author-role {
    color: var(--gray-text);
    font-size: 0.875rem;
    margin: 0;
}

/* ============================================= 
   REGISTRATION SECTION 
   ============================================= */
.registration-section {
    background: var(--blue);
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow);
    color: var(--blue);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.price-display {
    margin: 32px 0;
}

.price-label-sm {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.price-value-display {
    color: var(--yellow);
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

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

.inclusion-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 500;
}

.inclusion-list i {
    color: var(--yellow);
}

.registration-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.form-title {
    font-size: 1.75rem;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.form-subtitle {
    color: var(--gray-text);
    margin-bottom: 32px;
}

.form-label {
    font-weight: 500;
    color: var(--blue);
    margin-bottom: 8px;
}

.form-control {
    padding: 14px 18px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.2);
}

.form-note {
    text-align: center;
    color: var(--gray-text);
    font-size: 0.875rem;
    margin-top: 16px;
    margin-bottom: 0;
}

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

.accordion-item {
    background: var(--light-bg);
    border: none;
    border-radius: 16px !important;
    margin-bottom: 16px;
    overflow: hidden;
}

.accordion-button {
    background: transparent;
    color: var(--blue);
    font-weight: 600;
    padding: 20px 24px;
    border-radius: 16px !important;
}

.accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--green);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232e7d32'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    color: var(--gray-text);
    padding: 0 24px 20px;
    line-height: 1.8;
}

/* ============================================= 
   FINAL CTA SECTION 
   ============================================= */
.final-cta-section {
    background: var(--light-bg);
}

.cta-note {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-top: 24px;
}

/* ============================================= 
   FOOTER 
   ============================================= */
.footer {
    background: var(--blue);
    padding: 80px 0 30px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 16px;
}

.footer-tagline {
    color: var(--yellow);
    font-style: italic;
    font-weight: 600;
}

.footer-title {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--yellow);
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.footer-contact i {
    color: var(--yellow);
    margin-top: 4px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--yellow);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--yellow);
    color: var(--blue);
    transform: translateY(-3px);
}

.workshop-date-footer {
    margin-top: 20px;
}

.date-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 4px;
}

.date-value {
    color: var(--yellow);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 24px;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin: 0;
}

.footer-policy-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.875rem;
    margin-left: 24px;
    transition: color 0.3s ease;
}

.footer-policy-link:hover {
    color: var(--yellow);
}

/* ============================================= 
   MOBILE STICKY CTA 
   ============================================= */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mobile-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue);
    margin: 0;
}

/* ============================================= 
   FLOATING WHATSAPP BUTTON 
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

@media (min-width: 992px) {
    .whatsapp-float {
        bottom: 30px;
    }
}

/* ============================================= 
   ANIMATIONS 
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

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

/* ============================================= 
   RESPONSIVE 
   ============================================= */
@media (max-width: 991px) {
    .hero-content {
        text-align: center;
        margin-top: 40px;
    }
    
    .hero-logo {
        margin: 0 auto 25px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .section-divider:not(.mx-auto) {
        margin-left: auto;
        margin-right: auto;
    }
    
    body {
        padding-bottom: 80px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .registration-form-card {
        padding: 28px;
    }
    
    .details-card {
        padding: 32px 24px;
    }
}
