/* Global Styles */
:root {
    --primary-color: #dc3545;
    --secondary-color: #000000;
    --text-color: #000000;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-medium: #6c757d;
    --border-color: #dee2e6;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Infant', serif;
    font-weight: 600;
}
/* Header Styles */
.header {
    background-color: #FFF0F0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 80px;
}
.navbar {
    padding: 0.75rem 0;
    height: 100%;
}
.navbar-brand {
    display: flex;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.logo-img {
    width: 70px;
    height: 60px;
    top: 10px;
    left: 100px;
    angle: 0deg;
    opacity: 1;
    margin-right: 0.5rem;
}
.om-symbol {
    font-size: 2rem;
    color: var(--secondary-color);
    font-weight: bold;
}
.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}
.navbar-nav {
    align-items: center;
    gap: 10px;
}
.navbar .navbar-nav.mx-auto {
    justify-content: center;
    flex: 1;
}
.navbar .navbar-nav:last-child {
    justify-content: flex-end;
}
.nav-link {
    color: var(--text-color) !important;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: var(--primary-color) !important;
}
.contact-btn {
    background-color: #E92726;
    border-color: #E92726;
    color: var(--white) !important;
    width: 125px;
    height: 40px;
    top: 23px;
    left: 1240px;
    angle: 0deg;
    opacity: 1;
    gap: 10px;
    padding: 8px;
    border-radius: 0px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 1;
    letter-spacing: 0%;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
}
.contact-btn:hover {
    background-color: #d63031;
    border-color: #d63031;
}
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid var(--border-color);
    border-radius: 0.25rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
}
.navbar-toggler:hover {
    background-color: var(--light-bg);
    border-color: var(--primary-color);
}
.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
    outline: none;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    width: 1.5em;
    height: 1.5em;
}
/* Hero Section */
.hero-section {
    padding: 140px 0 80px;
    background-color: #ffffff;
    position: relative;
    min-height: 400px;
}
.hero-content {
    padding-right: 2rem;
}
.hero-graphic {
    margin-bottom: 2rem;
    display: flex;
    justify-content: flex-end;
    padding-right: 10%;
}
.circular-graphic {
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 500;
    color: var(--secondary-color);
    position: relative;
}
.inner-warrior-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}
.hero-title {
    font-family: 'Cormorant Infant', serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 70px;
    leading-trim: none;
    line-height: 74px;
    letter-spacing: 0%;
    color: #141414;
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-line-1 {
    display: flex;
    gap: 15px;
    align-items: center;
}
.hero-line-2 {
    display: flex;
    gap: 15px;
    align-items: center;
    padding-left: 10%;
}
.star-icon {
    width: 34px;
    height: 34px;
    vertical-align: middle;
}
.hero-content-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
    align-items: flex-start;
}
.folder-icon {
    width: 40px;
    height: 40px;
    opacity: 1;
    flex-shrink: 0;
}
.hero-description {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    leading-trim: none;
    line-height: 150%;
    letter-spacing: 0%;
    color: #141414;
    margin: 0;
    padding-right: 10%;
}
.explore-btn {
	width: 200px;
	height: 45px;
	gap: 10px;
	angle: 0deg;
	opacity: 1;
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
	font-family: 'Cormorant Infant', serif;
	font-weight: 500;
	font-style: Medium;
	font-size: 18px;
	leading-trim: NONE;
	line-height: 100%;
	letter-spacing: 1%;
	color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0;
	background-color: #E92726;
	border-color: #E92726;
}
.hero-image img {
    width: 85%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.bg-pink {
    background-color: #FFF4F4 !important;
}
/* Experience Section */
.experience-section {
    padding: 80px 0;
    background-color: var(--white);
}
.experience-image img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    position: relative;
}
.experience-content .section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 60px;
    margin-bottom: 0;
}
.section-title-text.section-line-1 {
    display: flex;
    align-items: center;
}
.section-line-1 .star-icon {
    margin-right: 30px;
}
.people-count {
    color: #141414;
    font-family: D-DIN Expand, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    margin-left: 10px;
    margin-top: 15px;
}
.section-title-text.section-line-2 {
    padding-left: 15%;
}
.experience-content .section-title.section-partial-title {
    align-items: flex-start;
    width: 420px;
}
.section-line-3 .star-icon {
    position: absolute;
    bottom: -40px;
    right: 0px;
}
.yoga-offerings {
    margin-top: 40px;
}
.offering-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    padding-top: 30px;
    gap: 1.5rem;
    border-bottom: 1.5px solid #82837E;
    position: relative;
}
.yoga-offerings .offering-item:last-child {
    border: none;
    margin: 0;
}
.offering-number {
    color: #D9D9D5;
    font-weight: 600;
    font-size: 50px;
    position: absolute;
    top: -5px;
    left: 4px;
    font-family: 'Open Sans';
    z-index: -1;
}
.offering-content h4 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #141414;
}
.offering-content p {
    color: #494A45;
    margin: 0;
    font-size: 17px;
    font-family: 'Open Sans';
    line-height: 22px;
}
.experience-image {
    padding: 15px 10px 0px 0px;
}
/* Transform Section */
.transform-section {
    background-color: #ffffff;
    padding: 80px 0px;
}
.transform-section-content {
	border-top: 1.5px solid #92928E;
	border-bottom: 1.5px solid #92928E;
}
.transform-section .container {
	padding-left: 15px;
	padding-right: 15px;
	overflow: hidden;
}
.transform-section .container .row {
	margin-bottom: -5px;
}
.transform-section .col-lg-8 {
    overflow: hidden;
    padding-right: 0px;
}
.transform-intro {
    padding: 20px 30px 20px 0px;
}
.transform-title {
    font-family: 'Cormorant Infant', serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 50px;
    color: #141414;
    margin-bottom: 20px;
}
.transform-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #141414;
    line-height: 20px;
    margin-bottom: 20px;
}
.transform-btn {
    width: 125px;
    background-color: #E92726;
    border-color: #E92726;
    border-radius: 0;
    padding: 12px 24px;
    font-family: 'Cormorant Infant', serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
}
.transform-btn:hover {
    background-color: #d63031;
    border-color: #d63031;
}
/* Scrollable Features Container */
.features-scroll-container {
	overflow-x: auto;
	overflow-y: hidden;
	border-left: 1.5px solid #92928E;
	padding-bottom: 0;
	width: 100%;
}
.features-row {
    display: flex;
    min-width: max-content;
    margin: 0;
    padding: 0;
    width: max-content;
}
.feature-card {
    background-color: #ffffff;
    border-right: 1.5px solid #e0e0e0;
    padding: 2rem;
    min-width: 280px;
    max-width: 320px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    margin: 0;
    flex-shrink: 0;
    box-sizing: border-box;
}
.feature-card:last-child {
    border-right: none;
}
.feature-card:hover {
    background-color: #FFF4F4;
}
.feature-card h4 {
    font-family: 'Cormorant Infant', serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
    color: #141414;
    margin: 1.5rem 0 1rem 0;
}
.feature-card p.bold {
    font-weight: 600;
    margin-bottom: 10px;
}
.feature-card p {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #141414;
    line-height: 20px;
    margin: 0;
}
.feature-icon {
    margin-bottom: 1rem;
}
.icon-circle {
    width: 55px;
    height: 55px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E92726;
    color: #ffffff;
    font-size: 1.5rem;
}
.icon-circle.white {
    background-color: #ffffff;
    border: 1px solid #D8D9D7;
}
.icon-circle .om-icon {
    font-size: 1.8rem;
    color: #E92726;
}
.feature-icon-img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}
/* Custom scrollbar for the scrollable container */
.features-scroll-container::-webkit-scrollbar {
    display: none;
}
.features-scroll-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
/* About Section */
.about-section {
    padding: 0px 0 80px 0;
    background-color: var(--white);
}
.about-image {
    padding: 15px 30px 0px 0px;
}
.about-section .section-title {
    font-size: 50px;
    font-weight: 700;
    color: #141414;
    position: relative;
    margin-bottom: 15px;
    max-width: 400px;
    line-height: 50px;
}
.about-image img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.about-description {
    font-size: 16px;
    color: #141414;
    margin-bottom: 15px;
    line-height: 22px;
    font-family: 'Open Sans';
    max-width: 515px;
}
.benefits-list {
    margin-bottom: 20px;
}
.benefits-list p {
    font-size: 16px;
    color: #141414;
    margin-bottom: 20px;
    line-height: 22px;
    font-family: 'Open Sans';
    max-width: 515px;
}
.benefits-list ol {
    font-size: 16px;
    color: #141414;
    margin-bottom: 20px;
    line-height: 22px;
    font-family: 'Open Sans';
    max-width: 515px;
    padding-left: 20px;
    font-weight: 600;
}
.benefits-list li {
    color: #141414;
    line-height: 20px;
    padding-bottom: 5px;
}
/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}
.testimonials-section .section-title {
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #141414;
    position: relative;
}
.section-subtitle {
    font-family: 'Open Sans';
    font-size: 14px;
    color: #141414;
    margin-bottom: 40px;
}
.certificate-img {
    max-width: 100%;
    width: 100%;
}
.testimonial-card {
    background-color: var(--white);
    padding: 22px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
}
.stars {
    margin-bottom: 15px;
}
.testimonial-card .stars .star-rating {
    width: 120px;
}
.testimonial-card h4 {
    font-family: 'Cormorant Infant';
    font-size: 28px;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    line-height: 28px;
}
.testimonial-text {
    font-family: 'Open Sans';
    color: #141414;
    margin-bottom: 1.5rem;
    font-size: 14px;
    line-height: 20px;
}
.testimonial-author {
    border-top: 1.5px solid #000000;
    padding-top: 10px;
}
.testimonial-author h5 {
    font-family: 'Open Sans';
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 0;
}
/* Masonry container */
.masonry-grid {
  /* kill Bootstrap flex if you kept .row somewhere */
  display: block;             /* IMPORTANT: not flex */
  column-count: 3;
  /* column-gap: 2rem; */
  /* vendor prefixes for wider support */
  -webkit-column-count: 3;
  /* -webkit-column-gap: 2rem; */
  gap: 0px;
}
/* Each item (your cards/images) */
.masonry-grid > * {
  display: inline-block;
  width: 100%;
  /* margin: 0 0 2rem; */
  break-inside: avoid;
  -webkit-column-break-inside: avoid; /* Safari */
  page-break-inside: avoid;
}
/* Let cards size naturally (your CSS had height:100%) */
.testimonials-section .testimonial-card { height: auto; }
/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--white);
}
.faq-section .section-title {
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #141414;
    position: relative;
}
.faq-section .section-subtitle {
    font-family: 'Open Sans';
    font-size: 14px;
    color: #141414;
    margin-bottom: 40px;
}
.accordion-item {
    border: none;
    border-radius: 0px;
    margin-bottom: 0px;
    overflow: hidden;
    border-bottom: 1.5px solid #D0D0D0;
}
.accordion-button {
    font-family: 'Open Sans';
    background-color: var(--white);
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    padding: 15px 0px;
    border: none;
    text-align: left;
    width: 100%;
    transition: all 0.3s ease;
}
.accordion-button:not(.collapsed) {
    background-color: var(--white);
    color: var(--primary-color);
}
.accordion-button::after {
    width: 16px;
    height: 16px;
    background-size: 16px;
}
.accordion-button:focus {
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}
.accordion-body {
    padding: 15px;
    line-height: 1.6;
    font-family: 'Open Sans';
    font-size: 14px;
    color: #141414;
}
.accordion-item:last-of-type {
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}
/* Trial Section */
.trial-section .section-title {
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #ffffff;
    position: relative;
}
.trial-section .section-description {
    font-family: 'Open Sans';
    font-size: 14px;
    color: #ffffff;
    max-width: 450px;
}
.trial-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}
.trial-buttons a, .contact-buttons a {
    width: fit-content;
    padding-right: 20px;
    padding-left: 20px;
    font-size: 18px;
}
.contact-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.contact-buttons a {
    max-width: 185px;
    width: 100%;
}
.btn-white.btn-primary {
    background-color: #ffffff;
    color: #000000;
}
.btn-outline.btn-primary {
    background-color: #000000;
    border: 1px solid #ffffff;
}
.trial-section h5 {
    font-size: 34px;
    font-weight: 500;
    line-height: 34px;
}
.trial-section hr {
    border-width: 1.5px;
}
/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 20px;
}
.social-section {
    padding: 50px 0px;
}
.social-section h5,
.newsletter-section h5 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #000000;
}
.newsletter-section {
    padding: 30px 5px;
}
.newsletter-section h5 {
    font-size: 28px;
    font-weight: 600;
    line-height: 30px;
}
.footer-menu {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}
.footer-menu a {
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
}
.footer-menu a:focus, .footer-menu a:hover {
    color: var(--primary-color);
    text-decoration: none;
}
.social-icons {
    display: flex;
    gap: 5px;
}
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-icon img {
    width: 35px;
    height: 35px;
}
.social-icon:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}
.newsletter-form {
    display: flex;
}
.newsletter-form .form-control {
    max-width: 320px;
    font-size: 14px;
    border-radius: 0px;
    border: 1px solid #949492;
    background-color: rgba(255, 255, 255, 0.1);
    color: #000000;
    padding: 10px 15px;
}
.newsletter-form .form-control::placeholder {
    color: #000000;
}
.newsletter-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-color);
    box-shadow: none;
    color: #000000;
}
.newsletter-form .btn {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    padding: 0px 15px;
    width: 130px;
}
.footer-bottom {
    border-top: 1.5px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
}
.footer-bottom p {
    font-family: 'Open Sans';
    color: #ffffff;
    margin: 0;
    font-size: 12px;
    line-height: 16px;
    display: flex;
    justify-content: center;
    gap: 5px;
}
.footer-bottom span {
    font-size: 20px;
    font-weight: 600;
}
/* Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    padding: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    background-color: #c82333;
    border-color: #c82333;
    color: var(--white);
    transform: translateY(-2px);
    text-decoration: none;
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active, .btn:first-child:focus, :not(.btn-check)+.btn:focus {
    color: var(--bs-btn-active-color);
    background-color: #000000;
    border-color: #000000;
}
.btn.disabled, .btn:disabled, fieldset:disabled .btn {
    color: #ffffff;
    pointer-events: none;
    background-color: #000000;
    border-color: #000000;
    opacity: 0.8;
}
/* Responsive Design */
@media (min-width: 576px) {
    .transform-section-content .container-fluid {
        padding-left: calc((100vw - 540px + 12px) / 2);
    }
}
@media (min-width: 768px) {
    .transform-section-content .container-fluid {
        padding-left: calc((100vw - 720px + 12px) / 2);
    }
}
@media (min-width: 992px) {
    .transform-section-content .container-fluid {
        padding-left: calc((100vw - 960px + 12px) / 2);
    }
}
@media (min-width: 1200px) {
    .transform-section-content .container-fluid {
        padding-left: calc((100vw - 1140px + 12px) / 2);
    }
}
@media (min-width: 1400px) {
    .transform-section-content .container-fluid {
        padding-left: calc((100vw - 1320px + 12px) / 2);
    }
}
@media (max-width: 1200px) {
    .contact-buttons a {
        max-width: none;
        width: fit-content;
    }
}
@media (max-width: 992px) {
    .hero-title {
        font-size: 56px;
        line-height: 66px;
        margin-bottom: 2rem;
    }
    .hero-graphic {
        justify-content: center;
        padding-right: 0%;
    }
    .hero-content-row {
        align-items: center;
        margin-bottom: 2rem;
    }
    .hero-description {
        padding-right: 0%;
        text-align: center;
    }
    .experience-content .section-title {
        font-size: 56px;
        line-height: 66px;
    }
    .experience-content .section-title.section-partial-title {
        width: 100%;
        padding-left: 200px;
    }
    .experience-image {
        padding: 30px 0px 0px 0px;
        text-align: center;
    }
    .experience-image img {
        width: 100%;
    }
    .transform-section-content .container-fluid {
        padding-right: calc((100vw - 720px + 12px) / 2);
    }
    .transform-title {
        font-size: 56px;
        line-height: 66px;
    }
    .transform-intro {
        padding-right: 0px;
    }
    .transform-section .col-lg-8 {
        padding-right: 12px;
    }
    .features-scroll-container {
        scrollbar-width: none;
        border: 1.5px solid #92928E;
        border-bottom: none;
    }
    .about-image {
        padding: 0px 0px 30px 0px;
        text-align: center;
    }
    .about-image img {
        width: 100%;
    }
    .about-section .section-title {
        font-size: 56px;
        line-height: 66px;
        max-width: none;
    }
    .testimonials-section .section-title {
        font-size: 56px;
        line-height: 66px;
    }
    .faq-section .section-title {
        font-size: 56px;
        line-height: 66px;
    }
    .trial-section .section-title {
        font-size: 56px;
        line-height: 66px;
    }
    .footer-menu {
        justify-content: center;
    }
    .social-icons {
        justify-content: center;
        margin-bottom: 20px;
    }
    .masonry-grid, .masonry-grid { column-count: 2; -webkit-column-count: 2; }
}
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: var(--white);
        padding: 1rem;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        margin-top: 0.5rem;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }    
    .navbar-collapse.show {
        opacity: 1;
        transform: translateY(0);
    }    
    .navbar-nav {
        text-align: center;
        align-items: center;
    }    
    .navbar .navbar-nav.mx-auto {
        justify-content: center;
        gap: 0px;
    }    
    .navbar .navbar-nav:last-child {
        justify-content: center;
    }    
    .nav-link {
        margin: 0.5rem 0;
        padding: 0.5rem 1rem;
        border-radius: 5px;
        transition: all 0.3s ease;
    }    
    .nav-link:hover {
        background-color: var(--light-bg);
    }    
    .contact-btn {
        width: 100%;
        text-align: center;
    }
}
@media (max-width: 768px) {
    .nav-link {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .btn, .social-icon {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }    
    .btn {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }    
    .nav-link {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }    
    .social-icon {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 2rem;
    }    
    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    .experience-content .section-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    .people-count {
        font-size: 14px;
    }
    .circular-graphic {
        width: 150px;
        height: 150px;
    }
    .hero-content-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        margin-top: 2rem;
    }    
    .hero-description {
        font-size: 1rem;
    }
    .experience-content .section-title.section-partial-title {
        padding-left: 175px;
    }
    .offering-item {
        flex-direction: column;
        gap: 1rem;
    }    
    .offering-number {
        align-self: center;
    }    
    .feature-box {
        margin-bottom: 2rem;
    }
    .transform-section-content .container-fluid {
        padding-right: calc((100vw - 540px + 12px) / 2);
    }    
    .transform-section {
        padding: 60px 0;
    }    
    .transform-intro {
        padding-right: 0;
        margin-bottom: 2rem;
        text-align: center;
    }    
    .transform-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    .transform-intro a {
        display: inline-block;
    }
    .about-section {
        padding-top: 0px;
    }
    .about-section .section-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    .testimonials-section .section-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    .faq-section .section-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    .footer .row > div {
        text-align: center;
    }
    .trial-section .section-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    .trial-section .section-description {
        max-width: none;
        margin-bottom: 0;
    }
    .trial-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin: 20px 0px;
    }    
    .trial-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    .trial-section h5 {
        margin-top: 0px;
        margin-bottom: 0px;
        font-size: 30px;
        line-height: 30px;
    }
    .trial-section hr {
        margin: 30px 0px;
    }
    .social-section {
        padding: 30px 0px 0px 0px;
    }
    .social-section .row > .col-lg-6:first-child {
        margin-bottom: 0px;
    }
    .social-icons {
        justify-content: center;
        flex-wrap: wrap;
    }
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }    
    .newsletter-form .form-control {
        width: 100%;
        max-width: none;
    }    
    .newsletter-form .btn {
        width: 100%;
    }    
    .contact-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    .contact-buttons .btn {
        width: 100%;
        text-align: center;
        max-width: 300px;
    }
    .footer-bottom {
        border-top: none;
    }
}
@media (max-width: 576px) {
    .navbar {
        padding: 0.5rem 0;
    }    
    .navbar-brand {
        flex-direction: column;
        align-items: flex-start;
    }    
    .logo {
        margin-bottom: 0.5rem;
    }    
    .brand-text {
        font-size: 1.2rem;
    }    
    .hero-section {
        padding: 100px 0 50px;
    }    
    .hero-title {
        font-size: 1.8rem;
    }
    .experience-section,
    .transform-section,
    .about-section,
    .testimonials-section,
    .faq-section {
        padding: 50px 0;
    }
    .about-section {
        padding-top: 0px;
    }
    .hero-description {
        font-size: 0.95rem;
    }    
    .section-description {
        font-size: 1rem;
    }    
    .feature-box {
        padding: 1.5rem;
    }
    .transform-section-content .container-fluid {
        padding-left: 12px;
        padding-right: 12px;
    }    
    .transform-title {
        font-size: 1.8rem;
    }    
    .feature-card {
        min-width: 220px;
        max-width: 250px;
        padding: 1rem;
    }    
    .icon-circle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }    
    .testimonial-card {
        padding: 1.5rem;
    }    
    .accordion-button {
        padding: 1rem;
        font-size: 0.9rem;
    }    
    .accordion-body {
        padding: 1rem;
        font-size: 0.9rem;
    }    
    .footer {
        padding: 40px 0 20px;
    }    
    .social-section h5,
    .newsletter-section h5 {
        font-size: 1rem;
    }
    .masonry-grid, .masonry-grid { column-count: 1; -webkit-column-count: 1; }
}
@media (max-width: 475px) {
    .hero-title {
        font-size: 1.7rem;
    }
    .star-icon {
        width: 18px;
        height: 18px;
    }
    .experience-content .section-title {
        font-size: 1.7rem;
        line-height: 1.2;
    }
    .section-line-1 .star-icon {
        margin-right: 10px;
        width: 15px;
        height: 15px;
    }
    .people-count {
        font-size: 12px;
        margin-left: 5px;
    }
    .section-line-3 .star-icon {
        bottom: -30px;
        width: 18px;
        height: 18px;
    }
    .yoga-offerings {
        margin-top: 20px;
    }
    .offering-number {
        left: 0px;
    }
    .offering-content h4 {
        font-size: 24px;
    }
    .offering-content p {
        font-size: 16px;
    }
    .transform-title {
        font-size: 1.7rem;
    }
    .about-section .section-title {
        font-size: 1.7rem;
    }
    .testimonials-section .section-title {
        font-size: 1.7rem;
    }
    .testimonial-card h4 {
        font-size: 22px;
    }
    .faq-section .section-title {
        font-size: 1.7rem;
    }
    .faq-section .section-subtitle {
        margin-bottom: 20px;
    }
    .trial-section .section-title {
        font-size: 1.7rem;
    }
    .trial-section h5 {
        font-size: 26px;
        line-height: 26px;
    }
}