/* Global Styles */
:root {
    --primary-orange: #FF9933;
    --primary-green: #138808;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --off-white: #F9F9F9;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-green);
}

.divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-orange), var(--primary-green));
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #e68a00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 153, 51, 0.3);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--primary-green);
}

.logo img {
    height: 50px;
    margin-right: 10px;
    border-radius: 50%;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-link {
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-orange);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-orange);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-contact {
    padding: 8px 20px;
    border: 2px solid var(--primary-orange);
    border-radius: 25px;
    color: var(--primary-orange);
}

.btn-contact:hover {
    background-color: var(--primary-orange);
    color: var(--white);
}

.btn-contact::after {
    display: none;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: var(--transition);
    background-color: var(--text-dark);
}

/* Hero Section (Full Width) */
/* Hero Section (Full Width) */
.hero-split {
    padding: 120px 0 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Background Vector Decoration */
.hero-split::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    /* Large size */
    height: 80%;
    background-image: url('assets/images/bg-element.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.04;
    /* Very low opacity */
    z-index: 0;
    mix-blend-mode: multiply;
    /* Ensure white bg of vector disappears */
    pointer-events: none;
}


.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 1;
    /* Content above background vector */
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #2c2c2c;
    /* Dark visible text */
    margin-bottom: 20px;
    line-height: 1.1;
    font-family: 'Playfair Display', serif;
}

.hero-text p {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-join {
    background-color: #3b3b3b;
    /* Dark theme button */
    color: var(--white);
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-join:hover {
    background-color: var(--primary-orange);
    transform: translateY(-3px);
}

.btn-contact-hero {
    background-color: #3b3b3b;
    color: var(--white);
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-contact-hero:hover {
    background-color: var(--primary-orange);
    transform: translateY(-3px);
}


.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* Align image to bottom if needed */
}

.hero-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    /* max-height: 600px; */
}

/* Responsive Hero */
@media (max-width: 992px) {
    .hero-split {
        padding-top: 100px;
        text-align: center;
        min-height: auto;
    }

    .hero-container {
        flex-direction: column;
    }

    .hero-text {
        margin-top: 30px;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-buttons {
        justify-content: center;
    }
}

/* About Section */
.about {
    background-color: var(--white);
    padding: 100px 0;
    overflow: hidden;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-text {
    flex: 1;
    max-width: 550px;
}

.sub-heading {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-orange);
    margin-bottom: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #4A6755;
    /* Dark Green from reference */
    line-height: 1.2;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

.closing-line {
    font-style: italic;
    color: #4A6755 !important;
    font-weight: 500;
    margin-top: 30px;
}

/* Complex Image Layout */
.about-images {
    flex: 1;
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    /* Increased width for side-by-side */
    height: auto;
    display: flex;
    gap: 20px;
    align-items: center;
}

.about-img-1 {
    position: relative;
    width: 48%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    z-index: 1;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-img-2 {
    position: relative;
    width: 48%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    z-index: 1;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
    /* Slight vertical offset for visual interest */
    border: none;
}

/* Badges */
.about-badge {
    position: absolute;
    background-color: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    /* Pill shape */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
    min-width: 200px;
    animation: float 3s ease-in-out infinite;
}

.badge-top-right {
    top: 20px;
    right: -40px;
    animation-delay: 0s;
}

.badge-bottom-left {
    bottom: 40px;
    left: -40px;
    animation-delay: 1.5s;
}

.badge-icon {
    width: 40px;
    height: 40px;
    background-color: #E8F5E9;
    /* Light Green bg */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2ECC71;
    /* Green icon */
    font-size: 1.2rem;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    font-size: 1.1rem;
    color: #0F4C3A;
    line-height: 1.2;
}

.badge-text span {
    font-size: 0.8rem;
    color: var(--text-light);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Responsive About */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        gap: 60px;
    }

    .about-text {
        text-align: center;
        max-width: 100%;
    }

    .about-images {
        width: 100%;
        height: auto;
        min-height: 500px;
    }

    .about-img-container {
        height: 500px;
        margin: 0 auto;
    }

    .badge-top-right {
        right: 0;
    }

    .badge-bottom-left {
        left: 0;
    }
}

@media (max-width: 576px) {
    .about-img-container {
        height: 450px;
        max-width: 100%;
    }

    .about-img-1 {
        width: 220px;
        height: 320px;
        right: 10px;
    }

    .about-img-2 {
        width: 200px;
        height: 280px;
        left: 10px;
    }

    .about-badge {
        padding: 10px 15px;
        min-width: auto;
    }

    .badge-top-right {
        top: 20px;
        right: 0;
    }

    .badge-bottom-left {
        bottom: 20px;
        left: 0;
    }

    .badge-text strong {
        font-size: 0.9rem;
    }

    .badge-text span {
        font-size: 0.7rem;
    }
}

/* Entrance Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
}

.btn-secondary:hover {
    background-color: var(--primary-green);
    color: var(--white);
}

/* Services Section */
/* Services Section */
.services {
    background-color: var(--white);
    padding-top: 50px;
}

.services-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-card-detailed {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

/* Specific Card Backgrounds */
.morning-card {
    background-color: var(--white);
    border: 1px solid #eee;
}

.evening-card {
    background-color: #FFF8F0;
    /* Light cream/beige */
    border: 1px solid #FFF8F0;
}

.service-card-detailed:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.card-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

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

.service-card-detailed:hover .card-image img {
    transform: scale(1.05);
}

/* Rounded bottom-left corner for image effect if desired, 
   or just keep standard rounded. Let's add a subtle curve overlay or mask if possible, 
   but standard rounded is safer and clean. */

.card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.8rem;
    color: #0F4C3A;
    /* Dark Green */
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.time-slot {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.description {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.benefits-list {
    margin-bottom: 30px;
    flex: 1;
    /* Push button to bottom */
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.benefits-list li i {
    color: #0F4C3A;
    /* Dark Green */
    margin-top: 4px;
    flex-shrink: 0;
}

.btn-enroll {
    background-color: #0F4C3A;
    /* Dark Green */
    color: var(--white);
    text-align: center;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-enroll:hover {
    background-color: #0a3528;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(15, 76, 58, 0.3);
}

/* Responsive Services */
@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
        align-items: center;
    }

    .service-card-detailed {
        width: 100%;
    }
}

/* FAQs Section */
.faqs {
    background-color: var(--white);
}

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

.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.accordion-header:hover {
    color: var(--primary-orange);
}

.accordion-header.active {
    color: var(--primary-green);
}

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

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    /* Changing to transition all for padding as well */
    padding: 0 20px;
    /* Reset vertical padding */
    opacity: 0;
    /* Adding opacity for smoother fade */
}

.accordion-item .accordion-content p {
    padding-top: 15px;
    padding-bottom: 20px;
}

.accordion-header.active+.accordion-content {
    opacity: 1;
}

/* Contact Section */
.contact {
    background-color: var(--off-white);
}

.contact-wrapper {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.info-item {
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-social-action {
    flex: 1;
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-social-action h3 {
    font-size: 2rem;
    color: #0F4C3A;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.contact-social-action p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.social-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.btn-telegram {
    background-color: #0088cc;
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 136, 204, 0.3);
}

.btn-whatsapp:hover {
    background-color: #20bd5a;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
    color: var(--white);
}

.btn-telegram:hover {
    background-color: #0077b5;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 136, 204, 0.4);
    color: var(--white);
}

.btn-whatsapp i,
.btn-telegram i {
    font-size: 1.3rem;
}

/* Footer */
footer {
    background-color: #222;
    color: var(--white);
    padding: 30px 0;
}

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

.social-links a {
    color: var(--white);
    margin-left: 15px;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-orange);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 16px 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-content,
    .contact-wrapper {
        flex-direction: column;
    }
}

/* What is Yoga Section */
.what-is-yoga {
    background-color: #0F4C3A;
    /* Dark Green */
    color: var(--white);
    text-align: center;
}

.what-is-yoga .section-header h2 {
    color: var(--white);
}

.sub-heading-light {
    display: block;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 15px;
    opacity: 0.9;
}

.what-is-yoga-content {
    max-width: 1000px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 50px;
    opacity: 0.9;
}

.yoga-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.yoga-type-card {
    text-align: center;
}

.yoga-type-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: var(--transition);
}

.yoga-type-card:hover img {
    transform: scale(1.05);
}

.yoga-type-card h3 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 500;
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: var(--white);
    /* Optional subtle pattern background could go here */
}

.why-choose-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.feature-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-column.left {
    text-align: right;
    align-items: flex-end;
}

.feature-column.right {
    text-align: left;
    align-items: flex-start;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 350px;
}

.feature-column.left .feature-item {
    flex-direction: row-reverse;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: #E8C547;
    /* Gold/Yellow from reference */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(232, 197, 71, 0.3);
}

.feature-text h3 {
    font-size: 1.1rem;
    color: #0F4C3A;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.feature-center-image {
    flex: 0 0 300px;
    text-align: center;
}

.feature-center-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 20px;
    /* Or full body cutout if transparent PNG */
}

/* Testimonials Section */
/* Testimonials Section (Carousel) */
.testimonials {
    background-color: var(--off-white);
    overflow: hidden;
    /* Prevent horizontal scrollbar on body if track overflows */
}

.testimonial-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0 40px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    /* Will be adjusted by JS or just flex container */
}

.testimonial-slide {
    flex: 0 0 33.333%;
    /* 3 slides per view on desktop */
    padding: 0 15px;
    box-sizing: border-box;
}

.testimonial-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    border: 1px solid #eee;
    height: 100%;
    /* Equal height cards */
    min-height: 300px;
}

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

.testimonial-quote {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 1rem;
}

.testimonial-author h4 {
    color: #0F4C3A;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.member-tag {
    display: block;
    font-size: 0.85rem;
    color: #E8C547;
    margin-bottom: 10px;
}

.stars {
    color: #FFD700;
    font-size: 0.9rem;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: #0F4C3A;
    transform: scale(1.2);
}

/* Responsive Carousel */
@media (max-width: 992px) {
    .testimonial-slide {
        flex: 0 0 50%;
        /* 2 slides on tablet */
    }
}

@media (max-width: 768px) {
    .testimonial-slide {
        flex: 0 0 100%;
        /* 1 slide on mobile */
    }
}

/* Responsive New Sections */
@media (max-width: 992px) {
    .why-choose-content {
        flex-direction: column;
        gap: 60px;
    }

    .feature-column.left,
    .feature-column.right {
        text-align: center;
        align-items: center;
    }

    .feature-column.left .feature-item {
        flex-direction: column;
    }

    .feature-column.right .feature-item {
        flex-direction: column;
    }

    .feature-item {
        flex-direction: column !important;
        text-align: center;
    }
}