@import url('https://fonts.googleapis.com/css2?family=Forum&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
    font-family: 'TAN WHISTLING';
    src: url('../font/TANWHISTLING-Regular.woff2') format('woff2'),
        url('../font/TANWHISTLING-Regular.ttf') format('truetype'),
        url('../font/TANWHISTLING-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aileron';
    src: url('../font/Aileron-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Aileron';
    src: url('../font/Aileron-Italic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Aileron';
    src: url('../font/Aileron-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Aileron';
    src: url('../font/Aileron-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Aileron';
    src: url('../font/Aileron-Heavy.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Aileron';
    src: url('../font/Aileron-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

:root {
    --heading-font: 'Forum', serif;
    --logo-font: 'TAN WHISTLING', serif;
    --body-font: "Poppins", sans-serif;
    --subheading-font: 'Aileron', sans-serif;
    --vanilla-color: #F1EADA;
    --mocca-color: #856D55;
    --charcol-color: #010101;
    --sand-color: #cec1a8;
    --green-color: #959581;
    --olive-color: #768064;
}

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

html {
    scroll-behavior: smooth;
}

button:focus,
a:focus {
    outline: none;
}

a:hover {
    text-decoration: none;
}

body {
    background-color: #fff;
    overflow-x: hidden;
    font-family: var(--body-font);
    color: var(--vanilla-color);
}

.bg-mocca {
    background: var(--mocca-color) !important;
}

.bg-green {
    background: var(--green-color);
}

.bg-vanilla {
    background: var(--vanilla-color);
}

.text-charcol {
    color: var(--charcol-color) !important;
}

.text-mocca {
    color: var(--mocca-color) !important;
}


/*=====================
NAVABR
=====================*/
.nav-left {
    flex: 1;
}

.menu-toggle {
    cursor: pointer;
    width: 24px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: fixed;
    top: 26px;
    left: 40px;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 1.5px;
    background-color: var(--vanilla-color);
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-link {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    overflow: hidden;
    transition: opacity 0.3s ease;
}

.logo-image {
    height: 40px;
    width: auto;
    display: block;
    transition: transform 0.4s ease, filter 0.3s ease;
}

.logo-image.footer-logo-image {
    height: 46px;
    width: auto;
    display: block;
    transition: transform 0.4s ease, filter 0.3s ease;
}

.logo-link:hover {
    opacity: 0.9;
}

.logo-link:hover .logo-image {
    transform: scale(1.05);
}

.nav-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.login-btn,
.userDropdown {
    background: transparent;
    color: var(--vanilla-color);
    padding: 8px 22px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: var(--subheading-font);
    font-weight: 400;
}

.login-btn:hover,
.userDropdown:hover {
    background-color: var(--vanilla-color);
    color: var(--charcol-color);
    border-color: var(--vanilla-color);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cart-container {
    position: relative;
    text-decoration: none;
    color: var(--vanilla-color);
    font-size: 18px;
}

.cart-container:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: var(--vanilla-color);
    transition: 0.3s ease-in-out;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--vanilla-color);
    color: var(--charcol-color);
    font-size: 9px;
    font-weight: 700;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--subheading-font);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--charcol-color);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.overlay.active {
    transform: translateX(0);
}

.close-btn {
    position: absolute;
    top: 18px;
    left: 40px;
    color: var(--vanilla-color);
    font-size: 35px;
    cursor: pointer;
    line-height: 1;
    font-weight: 200;
}

.menu-links {
    list-style: none;
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease 0.4s;
}

.overlay.active .menu-links {
    opacity: 1;
}

.menu-links li {
    margin: 15px 0;
}

.menu-links a.main-link {
    font-family: var(--heading-font);
    color: var(--vanilla-color);
    text-decoration: none;
    font-size: clamp(12px, 5vw, 2rem);
    font-weight: 400;
    letter-spacing: 2px;
}

.mobile-extra {
    display: none;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.mobile-extra-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.notice {
    background-color: var(--vanilla-color);
    color: var(--charcol-color);
    padding: 10px 0;
    width: 100%;
    position: relative;
    z-index: 1100;
    text-align: center;
}

.notice p {
    font-family: var(--body-font);
    font-size: 12px;
    letter-spacing: 2px;
    margin: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 70px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 40px;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: top 0.3s ease, background 0.3s ease;
}

.navbar.scrolled {
    top: 0;
    background: rgba(0, 0, 0, 0.4);
}

/*=====================
NAVABR ENDS
=====================*/

/*=====================
HERO SECTION
=====================*/
.hero {
    position: relative;
    width: 100%;
    height: calc(100vh + 110px);
    margin-top: -110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
    z-index: 1;
    padding-top: 200px;
}

.hero::before {
    filter: grayscale(100%);
    z-index: -1;
}

.hero h1 {
    font-family: var(--heading-font);
    font-size: clamp(2rem, 9vw, 3rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: var(--vanilla-color) !important;
    opacity: 0;
}

.hero p {
    font-size: clamp(0.7rem, 1.53vw, 1.1rem);
    margin-bottom: 35px;
    letter-spacing: 1px;
    font-weight: 400;
    font-family: var(--body-font);
    color: var(--vanilla-color);
    opacity: 0;
}

.hero p.top {
    font-size: clamp(1.2rem, 1.7vw, 1.7rem);
    margin-bottom: 35px;
    letter-spacing: 1px;
    font-weight: 400;
    font-family: var(--body-font);
    color: var(--vanilla-color);
}
.hero a{
    opacity: 0;
}
.book-btn {
    background: var(--vanilla-color);
    color: var(--charcol-color);
    padding: 20px 40px;
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 15px;
    display: inline-block;
    font-family: var(--body-font);
}

.book-btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: var(--charcol-color);
}

.small-heading {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: var(--vanilla-color);
    padding: 5px 15px;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s ease;
    font-family: var(--subheading-font);
}

/* .small-heading:hover {
    color: var(--vanilla-color);
    transform: translateY(-10px);
    transition: 0.3s ease-in-out;
} */

.early-bird {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--vanilla-color);
    color: var(--charcol-color);
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 400;
    font-size: 13px;
    text-transform: uppercase;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    z-index: 500;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: var(--body-font);
}

.early-bird:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: var(--charcol-color);
}

.send-off-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/*=====================
HERO SECTION ENDS
=====================*/

/*=====================
OFFER SECTION STARTS
=====================*/
.offer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 50px 0;
    background: var(--mocca-color);
}

.offer-block {
    background-color: #f1eada;
    width: 100%;
    max-width: 1200px;
    border-radius: 40px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 40px;
    margin: 0 auto;
}

.offer-col-1 {
    text-align: center;
}

.offer-col-1 .main-offer-heading {
    font-family: var(--heading-font);
    font-size: clamp(26.4px, 4vw, 57px);
    color: var(--charcol-color);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.offer-col-1 .sub-offer-heading {
    font-family: var(--body-font);
    color: var(--charcol-color);
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-weight: 400;
}

.offer-col-2 .validity-text {
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 25px;
    color: var(--charcol-color);
    text-transform: capitalize;
    margin-bottom: 5px;
}

.offer-col-2 .auto-renew-text {
    font-family: var(--body-font);
    font-size: 13px;
    color: var(--charcol-color);
    font-style: italic;
}

.offer-col-3.membership {
    text-align: center;
}

.footer-email-envelope i {
    font-weight: 400;
    padding-right: 15px;
}

.get-started-btn {
    background-color: var(--charcol-color);
    color: var(--vanilla-color);
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--subheading-font);
    font-weight: 400;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.get-started-btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: var(--vanilla-color);
}

#Layer_1 {
    position: absolute;
    top: 3%;
    left: 6%;
    width: 87%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

#Layer_1 .cls-1 {
    fill: none;
    stroke: var(--vanilla-color);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

#Layer_2 {
    position: absolute;
    top: 3%;
    left: 6%;
    width: 87%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

#Layer_2 .cls-2 {
    fill: none;
    stroke: var(--vanilla-color);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

#Layer_3 {
    position: absolute;
    top: 3%;
    left: 6%;
    width: 87%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

#Layer_3 .cls-3 {
    fill: none;
    stroke: var(--vanilla-color);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

#Layer_4 .cls-4 {
    fill: none;
    stroke: var(--vanilla-color);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.roadmap-row {
    display: grid;
    grid-template-columns: 150px 1fr 150px;
    align-items: center;
    min-height: 160px;
    position: relative;
    z-index: 2;
    margin-bottom: 70px;
}

.roadmap-wrapper {
    position: relative;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.road-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 800px;
}


.icon-circle {
    color: var(--vanilla-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    margin: 0 auto;
}

.text-content {
    text-align: center;
    padding: 0 20px;
    color: var(--charcol-color);
}

.icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-circle img {
    width: 150px;
}

.text-content {
    text-align: center;
    padding: 0 40px;
}

.text-content h3 {
    font-family: var(--heading-font);
    font-size: 32px;
    color: var(--vanilla-color);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.text-content p {
    font-family: var(--body-font);
    color: var(--vanilla-color);
    font-size: 20px;
    line-height: 1.5;
    max-width: 550px;
    margin: 0 auto;
    font-weight: 400;
}

.connector-svg {
    position: absolute;
    top: 35px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.curve-path {
    fill: none;
    stroke: var(--vanilla-color);
    stroke-width: 2;
    opacity: 0.2;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin: 40px 0 0;
    font-family: var(--body-font);
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--vanilla-color);
    text-align: center;
    padding-top: 50px;
    padding-bottom: 20px;
}

.section-divider::before,
.section-divider::after,
.class-heading::before,
.class-heading::after {
    content: "";
    width: 8px;
    height: 8px;
    background-color: var(--vanilla-color);
    border-radius: 50%;
    display: inline-block;
    width: var(--expand-before, 0px);
}
.section-divider::after{
    width: var(--expand-after, 0px);
}
.class-heading .section-divider::before,
.class-heading .section-divider::after {
    content: "";
    width: 8px;
    height: 8px;
    background-color: var(--mocca-color);
    border-radius: 50%;
    display: inline-block;
}

#Layer_2 {
    display: none;
}

/*=====================
OFFER SECTION ENDS
=====================*/

/*=====================
CONTACT SECTION
=====================*/
.contact {
    padding: 70px 0 15px;
    background: var(--green-color);
}

/*=====================
CONTACT SECTION ENDS
=====================*/

/*=====================
BRAND SECTION
=====================*/

.brand-showcase {
    position: relative;
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vanilla-color);
    padding: 80px 20px;
    border-top: 3px solid var(--vanilla-color);
    border-bottom: 3px solid var(--vanilla-color);
    overflow: hidden;
}

.brand-showcase::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 0.50)),
        var(--bg-image) no-repeat center center/cover;
    filter: grayscale(100%);
    z-index: 1;
}

.brand-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.brand-container h2{
    opacity: 0;
}


.brand-heading {
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.brand-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.brand-list li {
    font-size: 1.1rem;
    font-weight: 400;
    white-space: nowrap;
    opacity: 0;
}

.brand-list li:not(:last-child)::after {
    content: "|";
    margin-left: 20px;
}

.brand-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.brand-heading {
    font-family: var(--heading-font);
    width: 50%;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-transform: uppercase;
    margin-bottom: 30px;
    line-height: 1.1;
}

.brand-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    gap: 15px;
    font-family: var(--subheading-font);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-list li {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-weight: bold;
    font-family: var(--body-font);
}

.brand-list li:not(:last-child)::after {
    content: "";
    width: 6px;
    height: 6px;
    background-color: var(--vanilla-color);
    border-radius: 50%;
    margin-left: 15px;
    display: inline-block;
}

/*=====================
BRAND SECTION ENDS
=====================*/

 

.main-offer-heading.pricing-same-header,
.offer-col-3.membership{
    opacity: 1;
}

/*=====================
FOOTER SECTION
=====================*/
.footer-upper h2, 
.footer-upper a {
    opacity: 0;
}
.main-footer {
    background-color: var(--charcol-color);
    color: var(--vanilla-color);
    width: 100%;
}

.footer-upper {
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 1px solid rgba(241, 234, 218, 0.2);
}

.footer-title {
    font-family: var(--subheading-font);
    font-size: 1.4rem;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.footer-book-btn {
    font-family: var(--subheading-font);
    background-color: var(--vanilla-color);
    color: var(--charcol-color);
    padding: 18px 45px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 400;
    border-radius: 50px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-book-btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Lower Footer Styles */
.footer-lower {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.footer-col-brand {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: center;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.footer-desc {
    font-family: var(--heading-font);
    font-size: 14px;
    color: var(--vanilla-color);
    margin: 0;
    text-transform: uppercase;
}

.footer-socials {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    justify-content: center;
}

.footer-socials a {
    color: #ffffff;
    font-size: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-socials a:hover {
    transform: translateY(-3px);
    color: var(--vanilla-color);
}

.footer-col-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.footer-link {
    font-family: var(--subheading-font);
    color: var(--vanilla-color);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--vanilla-color);
    transform: translateY(-4px);
}



/*=====================
FOOTER SECTION ENDS
=====================*/

/*=====================
EARLY BIRD MODAL
=====================*/
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background-color: var(--vanilla-color);
    width: 100%;
    max-width: 700px;
    padding: 40px;
    border-radius: 30px;
    position: relative;
    text-align: center;
    animation: modalSlideUp 0.4s ease;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-thumb {
    background-color: var(--mocca-color);
    border-radius: 10px;
}

@keyframes modalSlideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--charcol-color);
    cursor: pointer;
    line-height: 1;
}

.modal-heading {
    font-family: var(--heading-font);
    color: var(--charcol-color);
    font-size: 2.5rem;
    margin-bottom: 5px;
    margin-top: 10px;
    text-transform: uppercase;
    text-align: left;
}

.modal-subheading {
    font-family: var(--subheading-font);
    color: var(--charcol-color);
    font-size: 25px;
    opacity: 0.8;
    margin-bottom: 15px;
    text-align: left;
    font-weight: 400;
}

.modal-subheading-paragraph {
    color: var(--charcol-color);
    margin-bottom: 25px;
    text-align: left;
}

.modal-subheading-below {
    font-family: var(--subheading-font);
    color: var(--charcol-color);
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 15px;
    text-align: left;
    font-weight: 400;
}

.modal-offer-details {
    text-align: left;
}

.border-bottom-dark {
    border-bottom: 3px solid black;
}

.membership-title {
    font-family: var(--subheading-font);
    font-weight: 700;
    color: var(--charcol-color);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.pricing-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
}

.old-price {
    font-family: var(--subheading-font);
    text-decoration: line-through;
    color: var(--charcol-color);
    font-size: 1.2rem;
}

.new-price {
    font-family: var(--heading-font);
    color: var(--charcol-color);
    font-size: 2.5rem;
    font-weight: bold;
}

.modal-offer-text {
    font-family: var(--subheading-font);
    font-weight: 400;
    color: var(--charcol-color);
    font-size: 16px;
    text-align: left;
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-join,
.btn-learn {
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--subheading-font);
    font-weight: 400;
    font-size: 13px;
    text-transform: uppercase;
    transition: 0.3s ease;
    flex: 1;
}

.btn-join {
    background-color: var(--charcol-color);
    color: var(--vanilla-color);
}

.btn-learn {
    background-color: var(--sand-color);
    color: var(--charcol-color);
}

.btn-join:hover,
.btn-learn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: var(--vanilla-color);
}

.btn-learn:hover {
    color: var(--charcol-color);
}

/*=====================
EARLY BIRD MODAL ENDS
=====================*/

/*=====================
VISIT US SECTION
=====================*/

.responsive-visit-container {
    display: grid;
    grid-template-columns: 1fr;
    margin: 0rem auto;
    background-color: var(--vanilla-color);
    border-radius: 40px;
    overflow: hidden;
}

/* Desktop Layout */
@media (min-width: 768px) {
    .responsive-visit-container {
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }
}

.map-column {
    min-height: 300px;
    width: 100%;
}

.map-column iframe {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
}

.visit-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.visit-title {
    font-family: var(--heading-font);
    color: var(--charcol-color);
    font-size: clamp(26.4px, 4vw, 57px);
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}


.visit-info p {
    font-family: var(--body-font);
    color: var(--charcol-color);
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.6;
    margin-bottom: 0rem;
}

.visit-address {
    margin-bottom: 2rem !important;
}

/* Button Styling */
.get-started-btn {
    display: inline-block;
    padding: 20px 40px;
    background-color: var(--charcol-color);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-family: var(--body-font);
    font-weight: 400;
    transition: transform 0.2s ease;
}

.get-started-btn:hover {
    transform: translateY(-2px);
    color: #fff;
}

/*=====================
VISIT US SECTION ENDS
=====================*/

/*=====================
CONTACT MODAL SECTION
=====================*/

.contact-modal-content {
    background-color: var(--vanilla-color);
    width: 95%;
    max-width: 700px;
    padding: 50px;
    border-radius: 30px;
    position: relative;
    color: var(--charcol-color);

    /* Enable Scrolling */
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;

    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.contact-modal-content::-webkit-scrollbar {
    display: none;
}

.contact-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 4000;
    backdrop-filter: blur(8px);
}

.contact-overlay.active {
    display: flex;
}

.contact-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: var(--charcol-color);
}

.contact-heading {
    font-family: var(--heading-font);
    font-size: clamp(24px, 5vw, 42px);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.contact-intro {
    font-family: var(--body-font);
    margin-bottom: 30px;
    font-size: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}

.form-group label {
    font-family: var(--subheading-font);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    background: transparent;
    border: 1px solid rgba(1, 1, 1, 0.2);
    padding: 12px;
    border-radius: 40px;
    font-family: var(--body-font);
    color: var(--charcol-color);
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(1, 1, 1, 1);
}

.send-off-btn {
    align-self: flex-start;
    background-color: var(--vanilla-color);
    color: var(--charcol-color);
    border: 1px solid var(--charcol-color);
    padding: 15px 40px;
    text-transform: uppercase;
    font-family: var(--subheading-font);
    font-weight: 400;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.send-off-btn:hover {
    background-color: var(--charcol-color);
    color: var(--vanilla-color);
}

.contact-modal-form input::placeholder,
.contact-modal-form textarea::placeholder {
    color: var(--mocca-color);
    font-family: var(--body-font);
    opacity: 1;
}

.contact-modal-form input::placeholder {
    color: var(--mocca-color);
}

.contact-modal-form input:-ms-input-placeholder {
    color: var(--mocca-color);
}

.contact-modal-form input,
.contact-modal-form textarea {
    border: 1px solid var(--mocca-color);
    font-family: var(--body-font);
    background: transparent;
    padding: 10px;
    outline: none;
}

.contact-modal-form input::placeholder,
.contact-modal-form textarea::placeholder {
    color: var(--mocca-color);
    font-family: var(--body-font);
    opacity: 1;
}

.contact-modal-form input:focus,
.contact-modal-form textarea:focus {
    border-width: 2px;
    border-color: var(--mocca-color);
}

/*=====================
CONTACT MODAL SECTION ENDS
=====================*/

#Layer_2,
#Layer_3,
#Layer_4 {
    display: none;
}

.sub-offer-heading,
.visit-address,
.visit-time {
    font-size: 22px;
}

.page-content {
    padding-top: 70px;
    padding-bottom: 0px;
}

/*=====================
PRICING AND MEMBERSHIP
=====================*/
.membership-time p, 
.membership-time span {
    opacity: 0;
}
.membership-time {
    color: var(--vanilla-color);
    font-size: 16px;
    text-align: center;
    padding-bottom: 20px;
}

.membership-time p span {
    font-family: var(--body-font);
}

.offer-block-membership {
    background-color: #f1eada;
    width: 100%;
    max-width: 1200px;
    border-radius: 40px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    align-items: center;
    gap: 40px;
    margin: 0 auto;
}

.sub-offer-heading-membership {
    font-size: 35px;
    color: var(--mocca-color);
    text-transform: uppercase;
    font-weight: 700;
    font-family: var(--body-font);
    margin-top: -20px;
}

.offer-col-1-membership {
    text-align: left;
}

.pricing-section {
    padding: 60px 0px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.pricing-container,.pricing-container.workshop {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100%;
    max-width: 1100px;
}

.price-box {
    background-color: var(--vanilla-color);
    padding: 60px 40px;
    border-radius: 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.3s ease;
}

.price-heading {
    font-family: var(--heading-font);
    color: var(--charcol-color);
    text-transform: uppercase;
    font-size: 48px;
    margin-bottom: 15px;
}

.price-value {
    font-family: var(--subheading-font);
    color: var(--mocca-color);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.price-detail {
    font-family: var(--body-font);
    color: var(--charcol-color);
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    margin-bottom: 20px;
}


.get-started-btn-membership {
    background-color: var(--charcol-color);
    color: var(--vanilla-color);
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--subheading-font);
    font-weight: 400;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    width: fit-content;

    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.get-started-btn-membership:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: var(--vanilla-color);
}


.info-section {
    background-color: var(--vanilla-color);
    padding: 0px 0px;
    width: 100%;
}

.info-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr;
    align-items: center;
    gap: 0px;
    border-bottom: 1px solid var(--charcol-color);
}

.info-container-below {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 0px;
}

.info-col {
    padding: 60px 65px;
    text-align: left;
}

.main-heading {
    font-family: var(--heading-font);
    color: var(--charcol-color);
    font-size: 48px;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0;
    text-align: center;
}


.info-col:nth-child(2) {
    border-left: 1px solid rgba(1, 1, 1, 1);
    border-right: 1px solid rgba(1, 1, 1, 1);
}

.info-subheading {
    font-family: var(--subheading-font);
    color: var(--mocca-color);
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-text {
    font-family: var(--body-font);
    color: var(--charcol-color);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}


.get-started-btn-casual {
    background-color: var(--mocca-color);
    color: var(--vanilla-color);
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--subheading-font);
    font-weight: 400;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    width: fit-content;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.get-started-btn-casual:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: var(--vanilla-color);
}

/*=====================
PRICING AND MEMBERSHIP ENDS
=====================*/

/*=====================
LOGIN AND REGISTER MODAL
=====================*/
.user-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 5000;
    backdrop-filter: blur(10px);
}

.user-modal-overlay.active {
    display: flex;
}

.user-modal-content {
    background-color: var(--vanilla-color);
    width: 90%;
    max-width: 500px;
    padding: 50px 40px;
    border-radius: 40px;
    position: relative;
    color: var(--charcol-color);
    max-height: 90vh;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.user-modal-content::-webkit-scrollbar {
    display: none;
}

.user-modal-close {
    position: absolute;
    top: 25px;
    right: 30px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--charcol-color);
}

.user-modal-title {
    font-family: var(--heading-font);
    font-size: 32px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.user-modal-subtitle {
    font-family: var(--subheading-font);
    font-size: 15px;
    margin-bottom: 30px;
    opacity: 0.8;
}

.user-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.user-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.user-form-group label {
    font-family: var(--subheading-font);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.user-form-group input {
    background: transparent;
    border: 1px solid var(--mocca-color);
    padding: 14px;
    border-radius: 40px;
    font-family: var(--body-font);
    outline: none;
    transition: border-color 0.3s ease;
}

.user-form-group input:focus {
    border-color: var(--charcol-color);
}

.user-submit-btn {
    background-color: var(--charcol-color);
    color: var(--vanilla-color);
    border: none;
    padding: 16px;
    border-radius: 50px;
    font-family: var(--subheading-font);
    font-weight: 400;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.5px;
    cursor: pointer;
    margin-top: 10px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.user-submit-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.user-switch-text {
    margin-top: 25px;
    text-align: center;
    font-family: var(--body-font);
    font-size: 14px;
}

.user-switch-text a {
    color: var(--charcol-color);
    font-weight: 700;
    text-decoration: underline;
}

.user-form-group input::placeholder {
    color: var(--mocca-color);
}

.user-form-group input:-ms-input-placeholder {
    color: var(--mocca-color);
}

.user-form-group input::-moz-placeholder {
    color: var(--mocca-color);
}

/*=====================
LOGIN AND REGISTER MODAL ENDS
=====================*/

/*=====================
CLASSES PAGE STARTS
=====================*/

.class-container {
    padding-top: 25px;
    background: var(--vanilla-color);
    padding-bottom: 55px;
}

.class-container #momence-plugin-host-schedule .dImvNj {
    background: var(--vanilla-color);
    border-radius: 50px;
}

.class-container #momence-plugin-host-schedule .krelkN {
    background: var(--vanilla-color);
}

.class-container #momence-plugin-host-schedule .henUQy,
.class-container #momence-plugin-host-schedule .ilZyKr {
    background: var(--vanilla-color);
    font-family: var(--heading-font) !important;
    color: var(--charcol-color);
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
}

.class-container #momence-plugin-host-schedule .gFWJWQ {
    background: var(--vanilla-color);
}

/*=====================
CLASSES PAGE ENDS
=====================*/
.desktop-break {
    display: inline;
    content: "";
}

.mobile-break,
.sub-break,
.tab-break {
    display: none;
}

.footer-email-envelope img {
    width: 50px;
    margin-top: -15px;
}

.visit-title img {
    width: 50px;
}

.form-group textarea {
    background: transparent;
    border: 1px solid var(--mocca-color);
    padding: 12px;
    border-radius: 20px;
    font-family: var(--body-font);
    color: var(--charcol-color);
    outline: none;
    transition: border-color 0.3s ease;
}

.sub-offer-heading-email,
.visit-info p {
    font-size: clamp(0.9rem, 2vw, 1.4rem);
}

.contact-modal-content .contact-form .form-group {
    margin-bottom: 0;
}

.contact-message-field {
    margin: 20px 0 !important;
}

.pricing-same-header {
    font-size: 48px !important;
    margin-bottom: 20px !important;
}

.how-it-works-image {
    height: 500px;
}

.info-row:nth-child(2) .how-it-works-image {
    margin: 40px 0;
}

/*EXTRA CSS CLASSES*/


.legal-texts .page-content {
    padding-bottom: 70px;
}

.legal-texts p {
    color: var(--charcol-color);
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    margin-bottom: 20px;
    margin-bottom: 0;
    padding-bottom: 0px;
}

.legal-texts ul {
    color: var(--charcol-color);
    margin-left: 15px;
    padding: 0 0 15px 0;
}

.legal-texts .page-content h2 {
    font-family: var(--heading-font);
    color: var(--charcol-color);
    font-size: 48px;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0;
    text-align: left;
    margin-bottom: 15px;
    margin-top: 20px;
    font-weight: 400;
}

.legal-texts .page-content p {
    margin-bottom: 1rem;
    padding-bottom: 15px;
}

.legal-texts .page-content ul li p {
    margin-bottom: 0;
    padding-bottom: 0;
}

.tab-break {
    display: none;
}

.class-widget {
    text-align: center;
}

.faq-answer h2 {
    font-family: var(--heading-font);
    text-transform: uppercase;
}

.faq-answer ul li {
    list-style: disc;
}

.pricing-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
    max-width: 1100px;
}


/*EXTRA CSS CLASSES*/

@media (max-width: 1025px) {
    .sub-offer-heading-membership {
        font-size: 28px;
        margin-top: -15px;
    }

    .desktop-break {
        display: none;
    }
    .pricing-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .visit-container {
        grid-template-columns: 1fr;
    }


    .visit-title {
        justify-content: flex-start;
        align-items: left;
    }

    .direction-btn {
        align-self: center;
    }

    .visit-map {
        height: 350px;
    }

    .info-container {
        grid-template-columns: 1fr;
    }

    .info-container-below {
        grid-template-columns: 1fr;
    }

    .info-col {
        padding: 70px 10px;
        text-align: center;
    }

    .main-heading {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .visit-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .visit-map {
        height: 350px;
    }

    .sub-offer-heading-membership {
        font-size: 22px;
    }

    .pricing-same-header {
        font-size: 40px;
    }

    #Layer_1 {
        display: none;
    }
}

@media (max-width: 834px) {
    .pricing-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    /* .tab-break {
        display: inline;
        content: "";
    } */

    .mobile-break,
    .sub-break,
    .desktop-break {
        display: none;
    }

    .pricing-container {
        grid-template-columns: 1fr;
    }

    .class-widget {
        text-align: left;
    }

}

@media (max-width: 767px) {
    .footer-lower {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .brand-heading {
        width: 100%;
    }

    .brand-list {
        gap: 10px;
        font-size: 14px;
    }

    .nav-right .login-btn,
    .nav-right .login-btn-nav {
        display: none;
    }



    .mobile-extra {
        display: block;
    }

    .navbar {
        padding: 0 20px;
        height: 65px;
        top: 38px;
    }

    .menu-toggle,
    .close-btn {
        left: 20px;
        top: 24px;
    }

    .logo {
        font-size: 20px;
    }

    .hero {
        margin-top: -108px;
        padding-top: 90px;
    }

    .hero h1 {
        font-size: 3.2rem;
        margin-top: 7rem;
        visibility: visible;
    }

    .early-bird {
        bottom: 50px;
        right: 20px;
        padding: 12px 22px;
    }

    #Layer_1 {
        display: none !important;
    }

    #Layer_2 {
        position: absolute;
        top: 0%;
        left: 15%;
        width: 70%;
        height: 100%;
        z-index: 1;
        pointer-events: none;
        display: none;
    }

    .road-wrapper {
        padding: 40px 10px 0;
    }

    .roadmap-row {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        /* margin-bottom: 80px; */
        gap: 15px;
        width: 100%;
    }

    .roadmap-row:nth-child(odd) .icon-container {
        order: 1;
        /* width: 30%; */
    }

    .roadmap-row:nth-child(odd) .text-content {
        order: 2;
        /* width: 70%; */
        text-align: center;
    }

    .roadmap-row:nth-child(even) .icon-container {
        order: 2;
        /* width: 30% */
    }

    .roadmap-row:nth-child(even) .text-content {
        order: 1;
        /* width: 70%; */
        text-align: center;
    }

    .icon-circle img {
        width: 84px;
        height: auto;
    }

    .text-content h3 {
        font-size: 30px;
        margin-bottom: 5px;
    }

    .text-content p {
        font-size: 17px;
        line-height: 1.3;
    }

    .roadmap-row .icon-container:empty {
        display: none;
    }

    .footer-upper {
        padding: 60px 20px;
    }

    .footer-logo {
        justify-content: center;
    }

    .brand-list {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .brand-list li {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .brand-list li:not(:last-child)::after {
        content: "";
        display: block;
        width: 6px;
        height: 6px;
        background-color: var(--vanilla-color);
        border-radius: 50%;
        margin-left: 0;
        margin-top: 5px;
    }

    .offer-block {
        width: 100%;
    }

    .contact-modal-content {
        padding: 40px;
    }

    .form-row {
        flex-direction: column;
    }

    .send-off-btn {
        width: 100%;
    }

    .border-bottom-dark {
        border: none;
    }

    .new-price {
        font-size: 1.5rem;
    }

    #Layer_1,
    #Layer_3 {
        display: none;
    }

    .footer-email-envelope i,
    .visit-title i {
        font-size: 22px;
    }



    .price-box {
        padding: 40px 30px;
    }

    .page-content {
        padding-top: 65px;
    }

    .pricing-container {
        grid-template-columns: 1fr;
        /* padding: 0 20px; */
    }

    .offer-block-membership {
        grid-template-columns: 1fr;
        /* margin: 0 20px; */
        padding: 25px;
        gap: 10px;
        /* width: 90%; */
    }

    .sub-offer-heading-membership {
        font-size: 22px;
    }

    .offer-col-2 .validity-text {
        font-size: 20px;
    }

    .pricing-same-header {
        font-size: 38px !important;
    }

    .info-col:nth-child(even) {
        border-top: 1px solid rgba(1, 1, 1, 1);
        border-bottom: 1px solid rgba(1, 1, 1, 1);
        border-left: none;
        border-right: none;
    }

    .row-type-b .row-text {
        padding-left: 15px !important;
    }

    .roadmap-row {
        margin-bottom: 00px;
    }

    .offer-section {
        padding: 50px 0 0;
    }

    .roadmap-row {
        min-height: 150px;
    }

    .visit-info,
    .visit-title {
        text-align: center;
        justify-content: center;
    }

    .footer-col-brand {
        order: 2;
    }

    .footer-col-links {
        order: 1;
        text-align: center;
    }

    .pricing-container {
        grid-template-columns: 1fr;
    }

    .offer-col-3.membership {
        text-align: left;
    }

    .road-wrapper {
        min-height: 700px;
        height: 750px;
    }

    .mobile-break,
    .sub-break {
        display: inline;
        content: "";
    }



    .footer-email-envelope img {
        width: 35px;
        margin-top: -15px;
    }

    .visit-title img {
        width: 35px;
    }


    .private-section {
        padding-left: 0;
        text-align: center;
    }

    .legal-texts .page-content h2 {
        font-size: 38px;
    }

    .line-height-25 {
        line-height: 25px;
    }

    .footer-lower {
        gap: 0;
    }

    .footer-col-brand {
        padding-top: 60px;
    }

    .footer-single-gap {
        padding-bottom: 13px;
    }
}

@media (max-width: 610px) {
    .modal-actions {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 3.0rem;
        margin-top: 7rem;
    }

    .legal-texts .page-content h2 {
        font-size: 30px;
    }

    .tab-break {
        display: none;
    }
}

@media (max-width: 531px) {
    .hero h1 {
        font-size: 2.4rem;
    }

    .text-content h3 {
        font-size: 20px;
    }

    .text-content p {
        font-size: 13px;
    }

    .text-content {
        padding: 0 0;
    }

    .class-container #momence-plugin-host-schedule .gFWJWQ {
        background: var(--vanilla-color);
    }
    .section-divider {
    font-size: 19px;
    width: 90%;
    margin: 40px auto 0;
}

}


@media (max-width: 431px) {
    .text-content h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .offer-block-membership {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .offer-col-3.membership {
        text-align: left;
    }

    .footer-lower {
        grid-template-columns: 1fr;
    }

    .footer-col-links {
        order: 1;
    }

    .footer-col-brand {
        order: 2;
    }

    .hero-content {
        padding: 0 40px;
    }

    .visit-title {
        justify-content: center;
    }

    .visit-time,
    .visit-address {
        text-align: center;
    }

    .visit-info .offer-col-3 {
        text-align: center;
    }

    .text-content p {
        font-size: 14px;
    }

    .text-content {
        text-align: center;
        padding: 0 0px;
    }

    #Layer_1,
    #Layer_2,
    #Layer_3 {
        display: none;
    }

    #Layer_4 {
        position: absolute;
        top: 0%;
        left: 15%;
        width: 70%;
        height: 100%;
        z-index: 1;
        pointer-events: none;
        display: none;
    }

    .modal-actions {
        flex-direction: column;
    }

    /* .offer-block-membership {
        width: 90%;
    } */

    .roadmap-row:nth-child(1) {
        margin-top: -20px;
    }

    .desktop-break {
        display: none;
    }

    .roadmap-row {
        min-height: 130px;
    }

    .road-wrapper {
        min-height: 650px;
        height: 660px;
    }

    .section-divider {
        font-size: 19px;
        width: 90%;
        margin: 40px auto 0;
    }

    .private-section {
        padding-left: 0;
        text-align: center;
    }
}

@media (max-width: 426px) {
    .hero {
        padding-top: 30px;
    }

    .modal-content {
        padding: 40px 20px;
        width: 92%;
        margin: 20px;
    }

    .modal-actions {
        flex-direction: column;
        /* Stack buttons on small phones */
    }

    .modal-heading {
        font-size: 2rem;
    }

    .footer-lower {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .footer-col-brand {
        order: 2;
    }

    .footer-col-links {
        order: 1;
    }

    /* .offer-block {
        width: 90%;
    } */

    .footer-lower {
        padding: 60px 60px;
    }

    #Layer_1,
    #Layer_2,
    #Layer_4 {
        display: none;
    }

    .hero h1 {
        font-size: 2.2rem;
        margin-top: 10rem;
    }

    #Layer_3 {
        position: absolute;
        top: 0%;
        left: 15%;
        width: 72%;
        height: 100%;
        z-index: 1;
        pointer-events: none;
        display: none;
    }

    .footer-email-envelope i,
    .visit-title i {
        font-size: 18px;
    }


    .offer-block-membership {
        grid-template-columns: 1fr;
        padding: 40px 30px;
        gap: 30px;
        text-align: left;
    }

    .offer-col-1-membership {
        text-align: center;
    }

    .sub-offer-heading-membership {
        font-size: 22px;
        text-align: left;
    }

    .offer-col-1 .main-offer-heading {
        text-align: left;
        padding-left: 70px;
    }

    /* .offer-block-membership {
        width: 90%;

    } */

    .price-heading {
        font-size: 35px;
    }

    .text-content p {
        font-size: 12px;
        max-width: 255px;
    }

    .hero p:nth-of-type(1) {
        font-size: 0.9rem
    }

    .hero p:nth-of-type(2) {
        font-size: 0.9remrem;
    }

    .text-content {
        text-align: center;
        padding: 0 0px;
    }

    .main-heading {
        margin-bottom: 0px;
    }

    .offer-col-2 .auto-renew-text {
        font-size: 14px;
    }

    .offer-block {
        padding: 30px;
    }


    .footer-email-envelope img {
        width: 30px;
    }

    /* .visit-title img {
        width: 20px;
    } */

    .roadmap-row {
        width: 88%;
    }

    .roadmap-row.roadrow-2 {
        margin-left: 45px;
    }

    .sub-offer-heading-membership {
        margin-top: 0;
    }

    .offer-col-2 .validity-text {
        font-size: 22px;
    }

    .offer-col-3.membership {
        text-align: left;
    }

    .info-col:nth-child(2) {
        border-left: none;
        border-top: 1px solid rgba(1, 1, 1, 1);
        border-right: none;
        border-bottom: 1px solid rgba(1, 1, 1, 1);
    }

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

    .info-container {
        gap: 0px;
    }

    .hero {
        height: calc(100vh + 70px);
    }

    /* .roadmap-row:nth-child(2) {
        margin-top: -10px;
    }

    .roadmap-row:nth-child(3) {
        margin-top: 115px;
    } */

    .footer-email-envelope img {
        margin-top: -5px;
    }

    .visit-info {
        align-items: center;
    }

    .visit-info p {
        text-align: center;
    }

    /* .responsive-visit-container {
        max-width: 90%;
    } */

    .pricing-same-header {
        font-size: 35px !important;
    }

    .footer-lower {
        grid-template-columns: 1fr;
    }

    .text-content h3 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .visit-info {
        padding: 3rem 2.5rem;
    }

    .private-section .offer-col-1 .main-offer-heading {
        padding-left: 0;
        text-align: center;
    }

}

@media (max-width: 402px) {
    /* .roadmap-row:nth-child(1) {
        margin-bottom: 130px;
    }
    .roadmap-row:nth-child(2) {
        margin-top: -57px;
    }

    .roadmap-row:nth-child(3) {
        margin-top: 100px;
    }

    .roadmap-row:nth-child(3) {
        margin-top: -25px;
    } */

    #Layer_3 {
        top: 0%;
        width: 70%;
    }

    .price-value {
        font-size: 22px;
    }
}

@media (max-width: 394px) {

    /* .roadmap-row:nth-child(2) {
        margin-top: -80px;
    }

    .roadmap-row:nth-child(3) {
        margin-top: 110px;
    }

    .roadmap-row.roadrow-2 {
        margin-left: 45px;
        margin-top: -40px;
    } */

    .visit-info {
        padding: 3rem 2rem;
    }

    .brand-heading {
        font-size: clamp(1.6rem, 5vw, 3.5rem);
    }

}

@media (max-width: 376px) {
    .section-divider {
        gap: 5px;
    }

    #Layer_3 {
        position: absolute;
        top: 0%;
        left: 13%;
        width: 80%;
    }

    .roadmap-row.roadrow-2 {
        margin-left: 20px;
    }

    .roadmap-row {
        width: 100%;
    }

    .roadmap-row {
        gap: 0px;
    }

    .offer-col-1 .main-offer-heading {
        padding-left: 50px;
    }
}



@media (max-width: 321px) {

    .offer-col-1 .main-offer-heading {
        text-align: left;
        padding-left: 29px;
    }

    .footer-email-envelope img {
        margin-top: -5px;
    }
}


/*CONTACT SINGLE PAGE*/

.breadcrumb-section {
    position: relative;
    width: 100%;
    /* height: 300px; */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-size: cover;
    overflow: hidden;
}

.breadcrumb-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
    padding-bottom: 90px;
}

/* Adjusting your existing section-divider for this context */
.breadcrumb-section .section-divider {
    color: var(--vanilla-color);
    font-family: var(--body-font);
    font-size: 20px;
    text-transform: uppercase;
    border: none;
    padding-top: 120px;
    padding-bottom: 20px;
    /* Removing borders if they exist in your global class */
}

.breadcrumb-subtitle {
    font-family: var(--body-font);
    color: var(--vanilla-color);
    font-size: 18px;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    /* .breadcrumb-section {
        height: 55vh;
    } */

    .breadcrumb-section .section-divider {
        font-size: 20px;
    }

    .breadcrumb-subtitle {
        font-size: 16px;
    }
}

.faq-section {
    background-color: var(--green-color);
    padding: 10px 0px 100px;
}

.legal-faq-section {
    background-color: var(--green-color);
    padding: 100px 0px 100px;
}

.faq-container {
    max-width: 1140px;
    margin: 0 auto;
}

.faq-main-title {
    font-family: var(--heading-font);
    color: var(--charcol-color);
    text-transform: uppercase;
    margin-bottom: 50px;
    text-align: center;
}

.faq-item {
    border-bottom: 2px solid var(--vanilla-color);
    width: 100%;
}

/* Special Border for the first item */
.faq-item.first-item {
    border-top: 2px solid var(--vanilla-color);
}

.faq-question {
    padding: 30px 0;
    display: grid;
    grid-template-columns: 1fr 0.1fr;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--subheading-font);
    font-size: 20px;
    color: var(--vanilla-color);
    text-transform: uppercase;
    font-weight: 700;
}

.faq-toggle-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--vanilla-color);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-toggle-circle i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

.faq-answer ul {
    list-style-type: disc !important;
    list-style-position: inside;
    padding-left: 20px;
}

.faq-answer ol {
    list-style-type: decimal !important;
    padding-left: 20px;
}

.faq-answer li {
    display: list-item;
}

.faq-answer p {
    font-family: var(--body-font);
    color: var(--vanilla-color);
    padding-bottom: 10px;
    line-height: 1.6;
    font-size: 17px;
    margin: 0;
}

.faq-answer p.contact-faq-answer {
    font-family: var(--body-font);
    color: var(--vanilla-color);
    padding-bottom: 30px;
    line-height: 1.6;
    font-size: 17px;
    margin: 0;
}
/* 
.faq-item.active-page{
    padding-bottom: 20px;
} */



/* Active State Styles */
.faq-item.active .faq-toggle-circle {
    background-color: var(--vanilla-color);
    color: var(--charcol-color);
}

.faq-item.active .faq-toggle-circle i {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 3500px;
}


.alternating-rows {
    width: 100%;
    overflow: hidden;
}

.info-row {
    display: grid;
    align-items: center;
}

.row-type-a {
    grid-template-columns: 65% 35%;
}

.row-type-b {
    background: var(--vanilla-color);
    grid-template-columns: 35% 65%;
}

.row-text {
    background-color: var(--green-color);
    padding: 50px 10%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.row-type-b .row-text {
    background: var(--vanilla-color);
    padding-left: 200px;
}

.row-text h2 {
    font-family: var(--heading-font);
    color: var(--vanilla-color);
    text-transform: uppercase;
    font-size: 48px;
    margin-bottom: 20px;
}

.row-text p {
    font-family: var(--body-font);
    color: var(--vanilla-color);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
}

.row-image {
    height: 100%;
    width: 100%;
}

.row-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
}


.negative-top {
    /* margin-top: -80px; */
    position: relative;
    z-index: 5;
}

.row-type-b .row-text h2,
.row-type-b .row-text p {
    color: var(--charcol-color);
}

.row-overlap {
    background: var(--green-color);
}

.alternating-rows .info-row:nth-child(3) .how-it-works-image {
    margin-top: -30px;
    /* margin-bottom: 80px; */
}

/* Responsive: Stack columns on mobile */
@media (max-width: 992px) {
    .row-type-b .row-text {
        padding-left: 100px;
    }
}

@media (max-width: 767px) {

    .row-type-a,
    .row-type-b {
        grid-template-columns: 1fr;
    }

    .row-type-b .row-image {
        order: 1;
        padding-top: 0 !important;
        padding-left: 0 !important;
        padding-bottom: 0 !important;
    }

    .negative-top {
        padding-right: 0px;
    }

    .negative-top {
        margin-top: 0;
        /* Remove overlap on mobile for better flow */
    }

    .row-text {
        padding: 9rem 30px 60px;
        order: 1;
    }

    .row-image img {
        padding: 25px;
        height: 650px;
    }

    .info-row:nth-child(2) .how-it-works-image {
        margin: 0px 0;
    }

    .alternating-rows .info-row:nth-child(3) .how-it-works-image {
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .row-type-b .row-text {
        padding-left: 030px;
    }

    .small-mobile-text{
        font-size: 14px !important;
    }



}

@media (max-width: 450px) {
    .row-text {
        padding: 0rem 15px 60px;
        order: 1;
    }

    .row-image img {
        padding: 40px 15px;
    }

    /* .row-text p{
        margin-top: 60px;
    } */
    .row-image img {
        height: 450px;
    }

    .how-it-works-image {
        height: 450px;
    }
}

@media (max-width: 431px) {
    .faq-section {
        padding: 10px 0px 100px;
    }

    .faq-toggle-circle {
        height: 40px;
    }

    .faq-question {
        grid-template-columns: 1fr 0.2fr;
        gap: 20px;
    }

    .row-image img {
        height: 450px;
    }

    .row-text h2 {
        font-size: 36px;
    }

    .row-text {
        padding: 0rem 15px 60px;
        order: 1;
    }

    .how-it-works-image {
        height: 455px;
    }

    .row-image img {
        padding: 40px 15px;
    }

    /* .row-type-b .row-text {
        padding-left: 40px !important;
    } */

    .breadcrumb-content {
        padding-left: 40px;
        padding-right: 40px;
    }
}
