:root {
    --font-birthstone: "Birthstone", cursive;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

html {
    margin-top: 0 !important;
}

.site {
    position: relative;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    padding: 1rem 1.5rem;
    background: transparent;
}

.site-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

.site-branding {
    flex: 0 0 auto;
    z-index: 22;
    margin-right: -7rem;
}

.site-logo img {
    max-height: 150px;
    height: auto;
    width: auto;
    display: block;
}

.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.menu-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #FEFAE0;
    backdrop-filter: blur(5px);
    box-shadow: 2px 6px 10px rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    padding: 8px 10px;
}

.main-navigation a {
    color: #132a13;
    font-size: 0.95rem;
    transition: 0.3s;
    padding: 4px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    display: block;
}

.main-navigation .current-menu-item a,
.main-navigation .current_page_item a,
.main-navigation a:hover,
.main-navigation a:focus {
    background-color: #132a13;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
    color: #FEFAE0;
}

/* Buttons */
.join-tribe-button {
    display: inline-block;
    padding: 0.6em 1.5em;
    border-radius: 9999px;
    border: 1px solid #BC6C25;
    background-color: #BC6C25;
    color: #FEFAE0 !important;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    white-space: nowrap;
}

.join-tribe-button:hover,
.join-tribe-button:focus {
    background-color: #000;
    border-color: #000;
}

.header-cta-desktop {
    flex: 0 0 auto;
    display: block;
}

.mobile-nav-cta {
    display: none;
    /* Hidden on desktop */
}

.menu-toggle {
    display: none;
    /* Hidden on desktop */
}

/* =========================================
   Mobile Navigation (Slide-in)
   ========================================= */
@media (max-width: 1024px) {
    .site-header {
        padding: 1rem;
    }

    /* Change layout order for mobile: Logo Left, Hamburger Right */
    .site-header-container {
        justify-content: space-between;
    }

    .main-navigation {
        flex: 0 0 auto;
        order: 2;
        margin-left: auto;
        /* Push to far right */
    }

    .header-cta-desktop {
        display: none;
        /* Hide desktop CTA */
    }

    /* Hamburger Button */
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        padding: 0;
        cursor: pointer;
        color: #132a13;
        z-index: 10001;
        outline: none;
        /* Remove default focus outline */
    }

    .menu-toggle:hover,
    .menu-toggle:focus,
    .menu-toggle:active {
        background-color: transparent;
        outline: none;
        box-shadow: none;
    }

    /* Hamburger Icon Animation */
    .menu-toggle .hamburger-box {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 18px;
    }

    .menu-toggle .icon-bar {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #132a13;
        border-radius: 2px;
        transition: transform 0.3s ease, opacity 0.3s ease;
        transform-origin: left;
    }

    /* Animate to Close (X) Icon when toggled */
    .main-navigation.toggled .menu-toggle .icon-bar:nth-child(1) {
        transform: rotate(45deg) translate(0px, -1px);
        transform-origin: center;
    }

    .main-navigation.toggled .menu-toggle .icon-bar:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .main-navigation.toggled .menu-toggle .icon-bar:nth-child(3) {
        transform: rotate(-45deg) translate(0px, 1px);
        transform-origin: center;
    }

    /* Adjust transform origin for cleaner X */
    .main-navigation.toggled .menu-toggle .icon-bar:nth-child(1),
    .main-navigation.toggled .menu-toggle .icon-bar:nth-child(3) {
        transform-origin: center;
        /* Re-center for perfect cross */
        position: absolute;
        top: 50%;
        left: 0;
        margin-top: -1px;
    }

    /* Slide-in Menu Wrapper */
    .menu-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 80%;
        max-width: 320px;
        background-color: #FEFAE0;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 6rem 1.5rem 2rem;
        box-shadow: 4px 0 15px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        /* Hidden by default */
        transition: transform 0.3s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        z-index: 10000;
    }

    /* Active State (Toggled via JS) */
    .main-navigation.toggled .menu-wrapper {
        transform: translateX(0);
        /* Slide in */
    }

    /* Menu List inside Slide-in */
    .main-navigation ul {
        flex-direction: column;
        width: 100%;
        background: transparent;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        gap: 1rem;
        margin-top: 3rem;
        margin-bottom: 2rem;
    }

    .main-navigation li {
        width: 100%;
        margin: 0;
        padding-bottom: 20px;
    }

    .main-navigation a {
        padding: 8px 20px;
        font-size: 1.1rem;
        border-radius: 50px;
        border-bottom: none;
        width: fit-content;
        color: #132a13;
    }

    .main-navigation .current-menu-item a,
    .main-navigation a:hover {
        background-color: #132a13;
        color: #FEFAE0;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
        padding-left: 20px;
    }

    .mobile-nav-cta {
        display: block;
        width: 100%;
        text-align: center;
    }

    .mobile-nav-cta .join-tribe-button {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }

    /* Overlay for clicking outside (Optional, handled by JS event usually 
       but we can add a pseudo element if JS supports it. 
       For now, we rely on JS 'toggled' class on parent) */
}

/* Home page hero */
.hero {
    min-height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../images/vincent.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1.5rem;
}

.hero-content {
    align-items: center;
    position: relative;
    max-width: 1200px;
    margin-top: 1.5rem;
    color: #fff;
}

.hero h1 {
    font-size: 6rem;
    font-weight: 600;
    line-height: 0.8;
    margin-bottom: 2.5rem;
    letter-spacing: -0.3rem;
    word-spacing: -0.2rem;
}

.hero-highlight {
    font-size: 9rem;
    color: #bcd95c;
    font-family: var(--font-birthstone);
    font-weight: 400;
}

.hero-subtitle-wrapper {
    /* background: rgba(137, 137, 137, 0.5); */
    padding: 1.5rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.01);
    border-radius: 20px;
    max-width: 700px;
    margin: 0 auto 1.5rem auto;
}

.hero-subtitle {
    max-width: 650px;
    font-size: 1.125rem;
    margin: 0 auto 1rem auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 1);
}

.hero-subtitle-2 {
    max-width: 650px;
    font-size: 1.125rem;
    margin: 0 auto 0 auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {

    .hero {
        min-height: 80vh;
        padding: 0 0.5rem;
    }

    .hero-content {
        margin-top: 6rem;
    }

    .hero h1 {
        font-size: 4rem;
        margin-bottom: 1.3rem;
        font-weight: 600;
        line-height: 0.9;
        margin-bottom: 1.5rem;
        letter-spacing: -0.3rem;
        word-spacing: 0;
    }

    .hero-highlight {
        font-size: 6rem;
        color: #bcd95c;
        font-family: var(--font-birthstone);
        font-weight: 400;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 2rem;
    }
}

/* Global button color overrides */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    border: 1px solid #16a34a;
    background-color: #16a34a;
    color: #ffffff;
}

button:hover,
button:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="reset"]:hover,
input[type="reset"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
    border-color: #14532d;
    background-color: #14532d;
}


/* About Section Styles */

.about-us {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 6rem 1.5rem;
}

.about-us-content {
    max-width: 680px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* gap: 2rem; */
}

.about-us-content h2 {
    font-family: var(--font-birthstone);
    font-size: 5rem;
    font-weight: 500;
    line-height: 0.1;
    margin-bottom: 30px;
    margin-top: 0px;
}

.about-us-content p {
    margin-bottom: 0rem;
}

.about-us-icon {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    max-width: 1400px;
}

.service-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.service-icon {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.service-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #404040;
}

.service-item p {
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
    margin: 0;
}

.about-us-cta-desc {
    margin-top: 0;
    margin-bottom: 1.5rem !important;
}

@media (max-width: 768px) {

    .about-us {
        padding: 4rem 0.5rem;
    }

    .about-us-content h2 {
        font-size: 5rem;
        line-height: 0.8;
        margin-bottom: auto;
    }

    .about-us-icon {
        gap: 1rem;
        margin-left: -15px;
        margin-right: -15px;
    }

    .service-item {
        flex: 0 0 calc(50% - 1.5rem);
        max-width: calc(50% - 1.5rem);
        min-width: 0;
        border: 1px solid #132a13;
        border-radius: 20px;
        padding: 15px;
    }

    .service-icon {
        width: 48px;
        height: 48px;
    }

    .service-item h3 {
        font-size: 0.9rem;
        margin-top: 5px;
    }

    .service-item p {
        font-size: 0.8rem;
    }
}



.about {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
}

.about-content {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
}

.about-left,
.about-right {
    flex: 1;
}

.about-subtitle {
    margin-left: 10px;
    color: #606C38;
}

.about-left h2 {
    font-family: var(--font-birthstone);
    font-size: 5.5rem;
    font-weight: 500;
    line-height: 1;
    margin: -20px 0 0;
}

.about-left-desc {
    font-size: 1.3rem;
    line-height: 1.2;
}

.about-left-p {
    font-size: 1.3rem;
    line-height: 1.2;
    margin-bottom: 40px;
}

/* About Section Image Grid */
.about-image-grid {
    display: flex;
    gap: 1.5rem;
    height: 100%;
}

.about-grid-large {
    flex: 6;
    height: 530px;
}

.about-grid-stack {
    flex: 5;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 530px;
}

.about-grid-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.about-grid-stack img {
    width: 100%;
    height: calc(50% - 0.75rem);
    object-fit: cover;
    border-radius: 20px;
}

.about-content-icon {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 5rem;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

.home-marquee {
    margin: 2rem 0;
}

/* Marquee Component */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    background-color: #132a13;
    color: #FEFAE0;
    padding: 1rem 0;
    position: relative;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    padding-right: 2rem;
    display: inline-block;
    word-spacing: 2rem;
}

@keyframes marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}


.why-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 1.5rem;
}

.why-layout {
    display: flex;
    gap: 4rem;
}

.why-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-img-large {
    height: 700px;
}

.why-img-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.why-handwritten {
    font-family: var(--font-birthstone);
    font-size: 2rem;
    line-height: 1;
    word-spacing: 10px;
    text-align: right;
    color: #132a13;
    align-self: flex-end;
    max-width: 90%;
    margin: 0 0;
}

.why-right {
    flex: 1;
    padding-top: 0rem;
}

.why-subtitle {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #606C38;
    margin-top: 0;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.why-title {
    font-size: 4.5rem;
    font-weight: 500;
    line-height: 1;
    margin-top: 2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.why-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.why-service {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.why-service img {
    width: 48px;
    height: 48px;
    margin-top: 8px;
    object-fit: contain;
}

.why-service-content h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #333;
}

.why-service-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

.why-img-bottom {
    height: 300px;
    margin-top: auto;
}

.why-img-bottom img {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    object-fit: cover;
}

/* Why Join Mobile Responsive */
@media (max-width: 768px) {
    .why-container {
        padding: 4rem 0.5rem;
    }

    .why-layout {
        flex-direction: column;
        gap: 1.5rem;
    }

    /* Unwrap why-left to interleave its children with why-right */
    .why-left {
        display: contents;
    }

    .why-img-large {
        order: 1;
        height: 280px;
    }

    .why-right {
        order: 2;
        padding-top: 0;
    }

    .why-handwritten {
        order: 3;
        text-align: center;
        align-self: center;
        font-size: 1.5rem;
        margin-top: 0;
    }

    .why-subtitle {
        text-align: center;
    }

    .why-title {
        font-size: 2.5rem;
        font-weight: 600;
        line-height: 1.2;
        text-align: center;
        margin-top: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .why-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .why-service {
        border: 1px solid #132a13;
        border-radius: 20px;
        padding: 1rem;
    }

    .why-img-bottom {
        height: 200px;
    }
}

/* Footer Styling */
.site-footer {
    background: linear-gradient(to bottom, #fefae025, #f0fdf4);
    padding: 6rem 0 3rem;
    color: #1a1938;
    margin-top: 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6rem;
}

.footer-group-left,
.footer-group-right {
    display: flex;
    gap: 5rem;
}

.footer-group-right {
    display: none;
}

.footer-col {
    min-width: 150px;
}

.footer-heading {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
    margin-bottom: 1.5rem;
}

.footer-spacing {
    margin-top: 2rem;
}

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

.footer-links.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, auto);
    column-gap: 2rem;
    row-gap: 0.5rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: 1.3rem;
    color: #1a1938;
    text-decoration: none;
    line-height: 1.2;
}

.footer-text,
.footer-text a {
    font-size: 1rem;
    line-height: 1.6;
    color: #1a1938;
    text-decoration: none;
    margin: 0;
}

.footer-branding-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.footer-line {
    flex: 1;
    height: 1px;
    background-color: #dcd0e8;
}

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

.footer-bottom-left p {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #666;
    text-transform: uppercase;
}

.footer-bottom-center {
    text-align: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    color: #1a1938;
}

.brand-the {
    font-family: var(--font-birthstone);
    font-size: 1.7rem;
    font-style: italic;
    margin-bottom: -5px;
}

.brand-name {
    font-family: "Times New Roman", serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 5px;
}

.brand-bali {
    font-size: 0.75rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    font-weight: 700;
}

.footer-legal {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.footer-legal a {
    color: rgb(102, 102, 102) !important;
    text-decoration: none;
}

.footer-disclosure-text {
    font-size: 0.7rem;
    margin-bottom: 0;
}

/* Footer Mobile Responsive */
@media (max-width: 768px) {

    .site-footer {
        padding: 2rem 0 0rem;
    }

    .footer-container {
        padding: 2rem 1rem;
    }

    .footer-top {
        flex-direction: column;
        gap: 3rem;
        margin-bottom: 1.5rem;
    }

    .footer-group-left {
        flex-direction: row;
        justify-content: space-between;
        gap: 1rem;
        width: 100%;
    }

    .footer-group-right {
        flex-direction: column;
        gap: 2rem;
        width: 100%;
    }

    .footer-group-right .footer-col {
        display: grid;
        grid-template-rows: auto auto;
        grid-auto-flow: column;
        grid-template-columns: 1fr 1fr;
        column-gap: 2rem;
        row-gap: 0.5rem;
    }

    .footer-group-right .footer-col .footer-heading {
        margin-top: 0;
        margin-bottom: 0px;
    }

    .footer-group-left {
        order: 1;
    }

    .footer-group-right {
        order: 2;
    }

    .footer-links a {
        font-size: 1.1rem;
    }

    .footer-text,
    .footer-text a {
        font-size: 0.8rem;
    }

    .footer-branding-row {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 0px;
    }

    .footer-line {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-bottom-left p {
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 1.5rem;
    color: #1a1938;
}

.testimonials-container {
    max-width: 100%;
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 1rem;
}

.testimonials-slider {
    padding: 2rem 0 4rem 0;
    overflow: hidden;
}

.swiper-slide {
    width: 70%;
    max-width: 900px;
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0.5;
    transform: scale(0.85) !important;
    transform-origin: center center;
}

.swiper-slide-active {
    opacity: 1;
    transform: scale(1) !important;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.swiper-button-next,
.swiper-button-prev {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
    font-weight: 800;
}

.testimonials-badge {
    background-color: #132a13;
    color: #FEFAE0;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
}

.testimonials-title {
    color: #141414;
    font-size: 4rem;
    font-weight: 700;
    margin: 0;
    margin-left: 100px;
}

.dynamic-word {
    display: inline-block;
    color: #606C38;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    opacity: 1;
    transform: translateY(0);
    min-width: 400px;
    text-align: left;
}

.dynamic-word.no-transition {
    transition: none !important;
}

.dynamic-word.fade-out {
    opacity: 0;
    transform: translateY(-20px);
}

.dynamic-word.from-bottom {
    opacity: 0;
    transform: translateY(20px);
}

.testimonials-grid {
    display: flex;
    justify-content: center;
}

.testimonials-content {
    width: 100%;
}

.testimonials-layout-row {
    display: flex;
    background: linear-gradient(135deg, #606C38, #132a13);
    border-radius: 20px;
    padding: 1rem;
    gap: 3rem;
    align-items: stretch;
    max-width: 1000px;
    max-height: 380px;
    margin: 0 auto;
}

/* Left side inside row */
.testimonials-img-wrapper {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.testimonials-main-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.testimonial-card {
    flex: 1;
    padding: 2rem;
    border-radius: 20px;
    position: relative;
}

.quote-icon {
    height: 68px;
    width: 68px;
    margin-bottom: 1.5rem;
}

.testimonial-rating {
    position: absolute;
    top: 3rem;
    right: 3rem;
    color: #ffffff;
    font-size: 1.35rem;
    background: linear-gradient(to right, transparent, rgba(65, 66, 65, 0.4), transparent);
    padding: 0.2rem 0;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #ffffff;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
}

.author-info span {
    font-size: 0.875rem;
    opacity: 0.9;
    color: #ffffff;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.nav-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #334155;
    cursor: pointer;
    transition: 0.3s;
}

.nav-dot.active {
    background-color: #606C38;
    width: 30px;
    border-radius: 5px;
}

/* Testimonials Mobile Responsive */
@media (max-width: 768px) {

    .testimonials {
        padding: 2rem 0.5rem;
    }

    .testimonials-slider {
        padding: 2rem 0 4rem 0;
        overflow: hidden;
    }

    .testimonials-header {
        text-align: center;
        margin-bottom: 0;
    }

    .testimonials-title {
        font-size: 2.8rem;
        line-height: 1.2;
        margin-left: 0;
        text-align: center;
    }

    .testimonials-header .dynamic-word {
        min-width: auto;
        display: block;
        text-align: center;
    }

    .swiper-slide {
        width: 90%;
    }

    .testimonials-layout-row {
        flex-direction: column;
        max-height: none;
        padding: 0;
        gap: 0;
    }

    .testimonials-img-wrapper {
        width: 100%;
        height: 250px;
        max-height: 250px;
        border-radius: 20px 20px 0 0;
    }

    .testimonials-main-img {
        height: 100%;
        border-radius: 20px 20px 0 0;
    }

    .testimonial-card {
        padding: 1.5rem;
        border-radius: 0 0 20px 20px;
    }

    .quote-icon {
        height: 50px;
        width: 50px;
    }

    .testimonial-rating {
        top: 1.8rem;
        right: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .author-img {
        width: 45px;
        height: 45px;
    }

    .author-info h4 {
        font-size: 0.9rem;
    }

    .author-info span {
        font-size: 0.7rem;
    }
}

/* CTA Section */
.cta {
    padding: 60px 0;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.cta-card {
    background-color: #1a1a1a;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cta-left {
    flex: 1;
    max-width: 45%;
    padding-right: 40px;
}

.cta-right {
    flex: 1;
    max-width: 50%;
    padding-left: 30px;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 20px;
    color: #FEFAE0;
    line-height: 1.1;
}

.cta-description {
    font-size: 1.125rem;
    color: #a0a0a0;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 40px;
}

.cta-price .currency {
    font-size: 2rem;
    margin-right: 5px;
    color: #FEFAE0;
}

.cta-price .amount {
    font-size: 4rem;
    font-weight: 700;
    color: #FEFAE0;
    line-height: 1;
}

.cta-price .period {
    font-size: 1.125rem;
    color: #a0a0a0;
    margin-left: 10px;
}

.cta-card .cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #FEFAE0;
    color: #132a13;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 12px 30px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.cta-button .icon-user {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.cta-status {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background-color: #606C384b;
    padding: 8px 16px;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
}

.status-dot {
    width: 10px;
    height: 10px;
    background-color: #22c55e;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 10px #22c55e;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.status-text {
    font-size: 0.875rem;
    color: #a0a0a0;
}

.cta-features {
    list-style: none;
    padding: 0;
    padding-top: 20px;
    margin: 0;
}

.cta-features li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.125rem;
    color: #FEFAE0;
}

.cta-features li.last {
    margin-bottom: 0;
}

.cta-features .check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 15px;
    font-size: 0.875rem;
    color: #FEFAE0;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .cta-card {
        flex-direction: column;
        padding: 20px;
    }

    .cta-left {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .cta-title {
        /* text-align: center; */
        font-size: 1.5rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-right {
        max-width: 100%;
        width: 100%;
        padding-left: 0;
    }

    .cta-status {
        justify-content: center;
        margin-bottom: 0px;
        margin-left: 0;
    }

    .cta-features .check-icon {
        width: 20px;
        height: 20px;
        font-size: 0.75rem;
        margin-top: -13px;
    }

    .feature-text {
        font-size: 0.9rem;
    }
}

/* Newsletter Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: #ffffff;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    display: flex;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffffff;
    color: #000;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.modal-close::before,
.modal-close::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 1.5px;
    background-color: #000000;
    border-radius: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-close:hover {
    transform: scale(1.1);
    background-color: #FEFAE0;
}

.modal-body {
    display: flex;
    width: 100%;
}

.modal-left {
    background-color: #fefae025;
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.modal-right {
    flex: 0 0 45%;
    position: relative;
}

.modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-image-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: #ffffff;
}

.overlay-text {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 0;
}

.modal-title {
    font-family: inherit;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0;
    color: #000;
}

.modal-text {
    font-size: 1.1rem;
    color: #333;
    margin-top: 0;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.modal-input {
    padding: 18px !important;
    border: 1px solid #e5e7eb;
    border-radius: 20px !important;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

.modal-input:focus {
    border-color: #606C38;
}

.modal-submit {
    background-color: #132a13;
    color: #FEFAE0;
    padding: 24px;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.modal-submit:hover {
    background-color: #000000;
}

.modal-disclaimer {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.4;
}

.modal-disclaimer a {
    color: #6b7280;
    text-decoration: underline;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-body {
        flex-direction: column-reverse;
    }

    .modal-right {
        height: 150px;
        flex: none;
    }

    .overlay-text {
        font-size: 2rem;
        font-weight: 700;
        line-height: 1;
    }

    .modal-left {
        padding: 1rem;
    }

    .modal-title {
        margin-top: 0;
        font-size: 2rem;
    }

    .modal-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .modal-disclaimer {
        margin: 0 0;
    }

    .modal-close {
        top: 10px;
        right: 10px;
    }
}

/* =========================================
   Top Announcement Bar (Independent CSS)
   ========================================= */
.top-announcement-bar {
    width: 100%;
    background-color: #fefae025;
    color: #132a13;
    overflow: hidden;
    position: relative;
    z-index: 99999;
    padding: 10px 0;
    border-bottom: 1px solid rgba(254, 250, 224, 0.1);
}

.top-announcement-track {
    display: flex;
    white-space: nowrap;
    animation: top-ticker-scroll 40s linear infinite;
    width: max-content;
}

.top-announcement-item {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 2rem;
    display: inline-flex;
    align-items: center;
}

.top-announcement-item .separator {
    margin-left: 2rem;
    opacity: 0.5;
}

@keyframes top-ticker-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.top-announcement-bar:hover .top-announcement-track {
    animation-play-state: paused;
}

/* =========================================
   Sponsor Banner / Modal Styles (Centralized)
   ========================================= */
.sponsor-wrapper {
    position: fixed;
    bottom: 5%;
    right: 0;
    z-index: 999;
}

/* Floating Trigger Button (Vertical Tab) */
.sponsor-trigger-btn {
    background-color: rgb(135, 206, 235, 0.3);
    color: #1a1a1a;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-left: none;
    border-radius: 0 10px 10px 0;
    padding: 20px 12px 20px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    box-shadow: 5px -5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg) translateX(-5px);
    animation: sponsor-pop 3s infinite ease-in-out;
}

.sponsor-trigger-btn:hover {
    background-color: rgb(135, 206, 235, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transform: rotate(180deg) translateX(0);
    box-shadow: 8px -8px 25px rgba(0, 0, 0, 0.15);
    animation-play-state: paused;
}

@keyframes sponsor-pop {

    0%,
    85%,
    100% {
        transform: rotate(180deg) translateX(-5px);
    }

    90% {
        transform: rotate(180deg) translateX(0px);
    }

    95% {
        transform: rotate(180deg) translateX(-5px);
    }
}

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

.sponsor-btn-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transform: rotate(180deg);
}

.sponsor-btn-text {
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.sponsor-modal-container {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 550px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(120%);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sponsor-modal-container.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Modal Content */
.sponsor-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    padding: 0;
    line-height: 1;
}

.sponsor-close-btn:hover {
    background: none;
    color: #000;
}

/* Logo Area */
.logo-partnership {
    display: flex;
    align-items: end;
    gap: 10px;
    margin-bottom: 10px;
}

.partner-logo {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.partner-logo.silo-logo {
    max-height: 35px;
}

.partner-logo.bv-logo {
    max-height: 70px;
}

.partner-x {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ccc;
    line-height: 1;
}

.bonus-logo {
    font-size: 2.5rem;
    font-weight: 600;
    color: #132a13;
    line-height: 1;
}

.sponsor-logo-area p {
    margin: 5px 0 15px;
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.sponsor-img img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    margin-bottom: 15px;
    display: block;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.sponsor-img p {
    font-size: 0.85rem;
    color: #4a4a4a;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.5;
}

.sponsor-body p {
    font-size: 0.82rem;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.5;
}

.sponsor-cta-btn {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #3b83f7;
    color: #ffffff !important;
    padding: 12px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s;
}

.sponsor-cta-btn:hover {
    background-color: #000;
    color: #fff !important;
}

@media (max-width: 768px) {

    .sponsor-wrapper {
        position: fixed;
        bottom: 5%;
        right: 0;
        z-index: 999;
    }

    .sponsor-trigger-btn {
        padding: 13px 12px 13px 13px;
    }

    .sponsor-btn-text {
        font-weight: 700;
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }
}