/* ============================================================
           BASE RESET & TYPOGRAPHY
           ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #696972;
    background: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: #050414;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #00d8e4;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Apfel Grotezk', 'DM Sans', sans-serif;
    font-weight: 500;
    color: #050414;
    letter-spacing: -0.060em;
}

/* ============================================================
           GLOBAL LAYOUT VARIABLES
           Keep every section's left/right edge lined up. Change these
           two values to resize the whole site's content width at once.
           ============================================================ */
:root {
    --site-max: 1400px;
    --site-pad: 60px;
    --site-pad-md: 30px;
    --site-pad-sm: 18px;
}

/* ============================================================
           UTILITY
           ============================================================ */
.container {
    max-width: var(--site-max);
    margin: 0 auto;
    padding: 0 var(--site-pad);
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ============================================================
           HEADER
           ============================================================ */
.site-header {
    position: relative;
    width: 100%;
    background: #ffffff;
    z-index: 9999;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}



.header-inner {
    max-width: var(--site-max);
    height: 140px;
    margin: 0 auto;
    padding: 0 var(--site-pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.site-header.is-sticky .header-inner {
    height: 90px;
    padding: 0 var(--site-pad);
}

.header-logo {
    flex: 0 0 auto;
}

.header-logo img {
    width: 248px;
    height: auto;
    display: block;
}

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

.header-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: 34px;
    margin: 0;
    padding: 0;
}

.header-nav a {
    font-size: 18px;
    font-weight: 500;
    color: #171622;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.header-nav a:hover {
    color: #00d8e4;
}

.header-nav .plus {
    font-size: 25px;
    font-weight: 300;
    line-height: 0;
    position: relative;
    top: -1px;
}

.work-badge {
    position: absolute;
    top: -30px;
    right: -24px;
    width: 22px;
    height: 28px;
    background: #00d8e4;
    color: #fff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

.header-nav li {
    position: relative;
    display: flex;
    align-items: center;
}

.header-cta {
    flex: 0 0 auto;
}

.header-cta a {
    height: 62px;
    min-width: 218px;
    padding: 0 31px;
    background: #080713;
    color: #fff;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    transition: background 0.3s ease, transform 0.3s ease;
}

.header-cta a:hover {
    background: #00d8e4;
    transform: translateY(-2px);
    color: #fff;
}

.header-cta .arrow {
    font-size: 19px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.header-cta a:hover .arrow {
    transform: translate(3px, -3px);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 50%;
    background: #080713;
    cursor: pointer;
    padding: 14px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 25px;
    background: #fff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    flex-direction: column;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu>a {
    padding: 17px 0;
    border-bottom: 1px solid #e8e8e8;
    color: #090816;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

.mobile-menu .mobile-cta {
    margin-top: 20px;
    padding: 18px 25px;
    border: none;
    border-radius: 50px;
    text-align: center;
    background: #080713;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 1200px) {
    .header-inner {
        padding: 0 30px;
    }

    .header-logo img {
        width: 175px;
    }

    .header-nav ul {
        gap: 22px;
    }

    .header-nav a {
        font-size: 16px;
    }

    .header-cta a {
        min-width: 190px;
        height: 56px;
    }
}

@media (max-width: 991px) {
    .header-inner {
        height: 90px;
        padding: 0 25px;
    }

    .header-logo img {
        width: 160px;
    }

    .header-nav,
    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }
}

@media (max-width: 575px) {
    .header-inner {
        height: 78px;
        padding: 0 18px;
    }

    .header-logo img {
        width: 145px;
    }

    .mobile-toggle {
        width: 45px;
        height: 45px;
        padding: 12px;
    }
}

.hero-decorations .draw {
    clip-path: inset(0 0 100% 0);
    animation: drawArrow 1s linear infinite;
}

@keyframes drawArrow {
    0% {
        clip-path: inset(0 0 100% 0);
    }

    100% {
        clip-path: inset(0 0 0 0);
    }
}



/* ============================================================
           HERO
           ============================================================ */
.hero-section {
    padding: 20px 0 0;
}

.hero-heading-wrap {
    text-align: center;
    margin-bottom: -130px;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    display: inline-block;
    background: #050414;
    color: #ffffff;
    padding: 6px 24px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero-title {
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -2px;
    margin: 0 0 24px;
    color: black;
}

.hero-text {
    font-size: 18px;
    line-height: 1.7;
    color: black;
    max-width: 600px;
}

.highlight {
    display: inline-block;
    position: relative;
    padding: 10px 20px;
    margin: 0px 5px;

}

.a {

    margin-right: -70px;
}

.highlight-text {
    position: relative;
    z-index: 5;
    color: #ffffff;
    display: inline-block;
    padding: 0px 10px 0px 12px;
    padding-top: 7px;

    transform: rotate(-4.4deg);
    line-height: 1.5;
    font-weight: 600;
}

.hero-title .highlight-underline {
    position: absolute;
    top: 60%;
    left: 50%;
    width: 6.2em;
    aspect-ratio: 280 / 122;
    transform: translate(-50%, -50%);
    z-index: 0;
    background: url('../images/c.png') center center / 80% 70% no-repeat;
    pointer-events: none;
    user-select: none;
}

.hero-desc-row {
    position: relative;
}

.hero-desc {
    max-width: 456px;
    margin: 28px auto 0;
    font-size: 18px;
    line-height: 27px;
    color: #050414;
}

.hero-decorations {
    position: absolute;
    top: 50%;
    right: 6%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 18px;
}

.hero-decorations img {
    display: inline-block;
}



@media (max-width: 991px) {
    .hero-decorations {
        position: static;
        transform: none;
        margin-top: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .highlight {

        margin-bottom: 30px;
    }

}

@media (max-width: 640px) {
    .hero-title {
        font-size: 26px;
        line-height: 0.4;
        font-weight: 900;
        color: #050414;
    }

    .highlight {
        display: inline-block;
        position: relative;
        padding: 10px 0px;
        margin: 0px 5px;

    }

    .hero-desc {
        max-width: 456px;
        margin: -15px auto 0;
        font-size: 18px;
        line-height: 27px;
        color: #050414;
    }

}

/* ============================================================
           CURVED SLIDER - VIDEO VERSION
           ============================================================ */
.slider-section {
    position: relative;
    margin-top: 20px;
}

.curved-container {
    width: 100%;
    height: 660px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.curved-stage {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    perspective: 1400px;
    transform-style: preserve-3d;
}

.curved-track {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transform-style: preserve-3d;
    cursor: grab;
}

.curved-track:active {
    cursor: grabbing;
}

.curved-slide {
    position: absolute;
    width: 480px;
    height: 770px;
    left: 50%;
    top: 50%;
    margin-left: -240px;
    margin-top: -385px;
    border-radius: 24px;
    overflow: hidden;
    transform-style: preserve-3d;
    will-change: transform;
    transform: scaleX(-1);
}

/* Video styles */
.curved-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    user-select: none;
    transform: scaleX(-1);
}

/* Active state with subtle glow */
.curved-slide.is-active {
    z-index: 1;
}

/* Fallback for videos that don't load */
.curved-slide video::poster {
    object-fit: cover;
}

.hero-actions-wrap {
    margin-top: -130px;
    text-align: center;
    position: relative;
    z-index: 3;
}

.hero-actions-wrap .btn {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    padding: 15px 40px;
    background: #00d8e4;
    color: #fff;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.hero-actions-wrap .btn:hover {
    background: #050414;
    transform: translateY(-2px);
    color: #fff;
}

.hero-actions-wrap .btn-icon {
    font-size: 19px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.hero-actions-wrap .btn:hover .btn-icon {
    transform: translate(3px, -3px);
}

.hero-actions-wrap .action-decorations {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .curved-slide {
        width: 240px;
        height: 380px;
        margin-left: -120px;
        margin-top: -190px;
        border-radius: 16px;
    }

    .curved-container {
        height: 520px;
    }
}

@media (max-width: 640px) {
    .curved-slide {
        width: 470px;
        height: 770px;
    }

    .hero-actions-wrap {
        margin-top: -15px;
    }

    .hero-heading-wrap {
        margin-bottom: -200px;
    }

    .hero-actions-wrap {
        margin-top: 20px;
        text-align: center;
        position: relative;
        z-index: 3;
    }

}

/* ============================================================
           STATS
           ============================================================ */
.stats-section {
    padding: 75px 0 0;
    margin-bottom: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 74px;
    font-weight: 600;
    letter-spacing: -1px;
    color: #050414;
}

.stat-item h5 {
    font-size: 29px;
    font-weight: 600;
    color: #050414;
    margin: 14px 0 6px;
}

.stat-item p {
    font-size: 19px;
    line-height: 1.6;
    color: #777681;
    margin: 0;
}

@media (max-width: 767px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px 20px;
    }

    .stat-number {
        font-size: 34px;
    }

    .stats-section {
        margin-top: -30px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px 16px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-item h5 {
        font-size: 15px;
        margin: 8px 0 4px;
    }

    .stat-item p {
        font-size: 13px;
    }
}

/* ============================================================
   DECORATION MARQUEE (small line) - RIGHT TO LEFT
   ============================================================ */
.marq {
    width: 100%;
    overflow: hidden;
    padding: 58px 0;
    position: relative;
}

.wrapper {
    display: flex;
    align-items: center;
    width: max-content;
    animation: rqueeScroll 120s linear infinite;
    will-change: transform;
}

.wrapper img {
    width: 1300px;
    height: 20px;
    display: block;
    flex-shrink: 0;
    object-fit: contain;
}

@keyframes rqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Hover pause */
.marquee .wrapper {
    animation-play-state: paused;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1400px) {
    .wrapper img {
        width: 1000px;
        height: 18px;
    }
}

@media (max-width: 1024px) {
    .marqu img {
        width: 700px;
        height: 16px;
    }

    .brands-title h4 {
        font-size: 28px;
        font-weight: 700;
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .marqu {
        padding: 20px 0;
    }

    .wrapper img {
        width: 500px;
        height: 16px;
    }

    .brands-title h4 {
        width: 700PX;
        font-size: 26px;
        font-weight: 700;
        white-space: nowrap;
        line-height: 1.1;
    }
}

@media (max-width: 480px) {
    .marq {
        padding: 15px 0;
    }

    .wrapper img {
        width: 300px;
        height: 15px;
    }

    .brands-title h4 {
        font-size: 22px;
        font-weight: 700;
        white-space: nowrap;
        line-height: 1;
    }
}
/* ============================================================
   GLOBAL BRANDS
   ============================================================ */
.brands-section {
    width: 100%;
    background: #fff;
    padding: 0 0 70px;
    margin-bottom: -70px;
    overflow: hidden;
}

.brands-inner {
    max-width: var(--site-max);
    margin: 0 auto;
    padding: 0 var(--site-pad);
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    align-items: center;
    column-gap: 55px;
}

.brands-title {
    flex-shrink: 0;
    margin-left: 40px;
}

.brands-title h4 {
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: #080817;
}

.brands-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.brands-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 70px;
    animation: brandsScroll 25s linear infinite;
    will-change: transform;
}

.brands-track:hover {
    animation-play-state: paused;
}

.brand-logo {
    width: auto;
    height: 65px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* TEXT STYLING - Bold 600, Black, 17px, Single Line */
.brand-logo span {
    font-weight: 600;
    color: #000000;
    font-size: 20px;
    white-space: nowrap;
    line-height: 1;
}

.brand-logo img {
    max-width: 120px;
    max-height: 42px;
    object-fit: contain;
}

@keyframes brandsScroll {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(calc(-50% - 35px), 0, 0);
    }
}

/* ============================================================
   BRANDS SECTION - PHONE RESPONSIVE
   ============================================================ */

/* Phone responsive - up to 768px */
@media (max-width: 768px) {
    .brands-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .brands-title {
        text-align: center;
        margin-bottom: 20px;
    }

    .brands-title h4 {
        font-size: 20px;
        line-height: 1.3;
        margin: 0;
        padding-right: 58px;
    }

    .brands-marquee {
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    .brands-track {
        display: flex;
        align-items: center;
        width: max-content;
        animation: brandsScroll 30s linear infinite;
        will-change: transform;
        gap: 20px;
        padding: 0 10px;
    }

    .brand-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        padding: 10px 15px;
        min-width: 80px;
        text-align: center;
    }

    .brand-logo i {
        font-size: 24px;
        margin-bottom: 6px;
        display: block;
        color: #333;
    }

    .brand-logo span {
        font-size: 11px;
        font-weight: 500;
        line-height: 1.2;
        display: block;
        color: #333;
        max-width: 80px;
        word-wrap: break-word;
    }

    @keyframes brandsScroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    /* Hover pause */
    .brands-marquee:hover .brands-track {
        animation-play-state: paused;
    }
}

/* Extra small phones - up to 480px */
@media (max-width: 480px) {
    .brands-title h4 {
        font-size: 17px;
    }

    .brand-logo {
        padding: 8px 12px;
        min-width: 65px;
    }

    .brand-logo i {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .brand-logo span {
        font-size: 15px;
        max-width: 90px;
    }

    .brands-track {
        gap: 15px;
    }
}

/* ============================================================
SERVICE & PRICING - ALL EXPANDED
============================================================ */
.pricing-section {
    max-width: var(--site-max);
    margin: 30px auto 0;
    padding: 0 var(--site-pad);
}

.pricing-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 55px;
}

.pricing-title {
    flex: 1;
}

.pricing-title h2 {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -1.5px;
    color: #080808;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0;
}

.pricing-title .desc {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #6f6f78;
}

.pricing-toggle {
    flex-shrink: 0;
    margin-top: 5px;
}

.toggle-wrapper {
    display: flex;
    align-items: center;
    background: #f7f5f3;
    border-radius: 40px;
    overflow: hidden;
}

.toggle-label {
    height: 44px;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 500;
    color: #111;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    user-select: none;
}

.toggle-label.active {
    background: #05030f;
    color: #fff;
    border-radius: 30px;
}

.pricing-list {
    width: 100%;
}

.pricing-item {
    display: grid;
    grid-template-columns: minmax(200px, 280px) 1fr auto;
    align-items: start;
    gap: 30px;
    padding: 30px 0;
    border-top: 1px solid #e5e3df;
    transition: all 0.3s ease;
}

.pricing-item:last-child {
    border-bottom: 1px solid #e5e3df;
}

.pricing-item-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
}

.pricing-item-title {
    margin: 0;
    font-size: 26px;
    font-weight: 500;
    color: #050414;
    transition: color 0.3s ease;
}

.pricing-item:hover .pricing-item-title {
    color: #00d8e4;
}

.pricing-item-year {
    font-size: 13px;
    color: #a3a1ab;
}

.pricing-item-body {
    display: flex;
    flex-direction: column;
}

.pricing-item-desc p {
    margin: 0;
    max-width: 560px;
    font-size: 15px;
    line-height: 1.6;
    color: #777681;
}

/* Always show categories - no display:none */
.pricing-item-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.pricing-item-cat {
    padding: 6px 14px;
    border-radius: 20px;
    background: #f4f3f1;
    font-size: 12px;
    color: #444;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing-item-cat:hover {
    background: #00d8e4;
    color: #fff;
}

.pricing-item-price {
    font-size: 24px;
    font-weight: 500;
    color: #050414;
    white-space: nowrap;
    text-align: right;
    opacity: 1;
    /* Always visible */
}

/* ============================================================
SERVICE & PRICING - RESPONSIVE ONLY (WITH INCREASED LINE HEIGHT)
============================================================ */

@media (max-width: 1200px) {
    .pricing-section {
        padding: 0 var(--site-pad-md);
    }

    .pricing-item {
        grid-template-columns: minmax(160px, 220px) 1fr auto;
        gap: 24px;
        padding: 28px 0;
    }

    .pricing-item-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .pricing-item-desc p {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 6px;
    }

    .pricing-item-cats {
        gap: 10px;
        margin-top: 14px;
    }

    .pricing-item-cat {
        font-size: 12px;
        padding: 6px 14px;
        line-height: 1.5;
    }

    .pricing-item-price {
        font-size: 26px;
        line-height: 1.2;
    }
}

@media (max-width: 992px) {
    .pricing-item {
        grid-template-columns: minmax(140px, 200px) 1fr auto;
        gap: 20px;
        padding: 24px 0;
    }

    .pricing-item-title {
        font-size: 22px;
        line-height: 1.4;
    }

    .pricing-item-year {
        font-size: 12px;
        line-height: 1.4;
        margin-top: 2px;
    }

    .pricing-item-desc p {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 8px;
    }

    .pricing-item-cats {
        gap: 10px;
        margin-top: 14px;
    }

    .pricing-item-cat {
        font-size: 11px;
        padding: 5px 12px;
        border-radius: 18px;
        line-height: 1.5;
    }

    .pricing-item-price {
        font-size: 28px;
        line-height: 1.2;
    }
}

@media (max-width: 767px) {
    .pricing-section {
        padding: 0 var(--site-pad-sm);
    }

    .pricing-header {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 32px;
    }

    .pricing-title h2 {
        font-size: 32px;
        line-height: 1.3;
        letter-spacing: -0.5px;
    }

    .pricing-title .desc {
        font-size: 14px;
        line-height: 1.8;
        margin-top: 10px;
    }

    .pricing-toggle {
        margin-left: 0;
        width: 100%;
    }

    .toggle-wrapper {
        width: 100%;
        border-radius: 30px;
    }

    .toggle-label {
        height: 42px;
        padding: 0 18px;
        font-size: 13px;
        flex: 1;
        border-radius: 30px;
        line-height: 1.2;
    }

    .toggle-label.active {
        border-radius: 30px;
    }

    .pricing-item {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px 0;
    }

    .pricing-item:first-child {
        padding-top: 15px;
    }

    .pricing-item-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        flex-wrap: wrap;
    }

    .pricing-item-title {
        font-size: 21px;
        line-height: 1.4;
        margin: 0;
    }

    .pricing-item-year {
        font-size: 12px;
        line-height: 1.4;
        white-space: nowrap;
    }

    .pricing-item-body {
        gap: 10px;
    }

    .pricing-item-desc p {
        font-size: 14px;
        line-height: 1.9;
        max-width: 100%;
        margin: 0 0 4px 0;
    }

    .pricing-item-cats {
        gap: 10px;
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
    }

    .pricing-item-cat {
        font-size: 11px;
        padding: 5px 12px;
        border-radius: 16px;
        line-height: 1.6;
    }

    .pricing-item-price {
        font-size: 34px;
        font-weight: 600;
        text-align: left;
        margin-top: 6px;
        letter-spacing: -0.5px;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 0 16px;
    }

    .pricing-header {
        gap: 18px;
        margin-bottom: 26px;
    }

    .pricing-title h2 {
        font-size: 28px;
        line-height: 1.3;
        letter-spacing: -0.5px;
    }

    .pricing-title .desc {
        font-size: 13px;
        line-height: 1.8;
        margin-top: 8px;
    }

    .pricing-item {
        padding: 18px 0;
        gap: 10px;
    }

    .pricing-item-header {
        gap: 10px;
    }

    .pricing-item-title {
        font-size: 19px;
        line-height: 1.4;
    }

    .pricing-item-year {
        font-size: 10px;
        line-height: 1.3;
    }

    .pricing-item-body {
        gap: 8px;
    }

    .pricing-item-desc p {
        font-size: 13px;
        line-height: 2;
        margin: 0 0 2px 0;
    }

    .pricing-item-cats {
        gap: 8px;
        margin-top: 10px;
    }

    .pricing-item-cat {
        font-size: 10px;
        padding: 4px 10px;
        border-radius: 14px;
        line-height: 1.6;
    }

    .pricing-item-price {
        font-size: 30px;
        font-weight: 600;
        margin-top: 4px;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }

    .toggle-label {
        height: 38px;
        padding: 0 14px;
        font-size: 11px;
        line-height: 1.2;
    }
}

/* Extra small devices */
@media (max-width: 380px) {
    .pricing-item-title {
        font-size: 17px;
    }

    .pricing-item-desc p {
        font-size: 12px;
        line-height: 2;
    }

    .pricing-item-cat {
        font-size: 9px;
        padding: 3px 8px;
        line-height: 1.5;
    }

    .pricing-item-price {
        font-size: 26px;
    }

    .pricing-item-year {
        font-size: 9px;
    }

    .toggle-label {
        height: 34px;
        padding: 0 10px;
        font-size: 10px;
    }
}


/* ============================================================
PROCESS - BLACK BACKGROUND
============================================================ */
.process-section {
    width: 100%;
    background: #000000;
    overflow: hidden;
    padding: 90px 0 80px;
    margin-top: -85px;
}

.process-container {
    max-width: var(--site-max);
    margin: 50px auto;
    padding: 0 var(--site-pad);
}

.process-header {
    align-items: start;
    margin-bottom: 40px;
}

.process-label {
    padding-top: 4px;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #00d8e4;
}

.process-heading h2 {
    padding-top: 4px;
    padding-left: -7px;
    font-size: 34px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #ffffff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 42px;
}

.process-item {
    min-width: 0;
}

.process-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 23px;
}

.process-title-row h3 {
    margin: 0;
    font-size: 29px;
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: -1.3px;
    color: #ffffff;
}

.process-title-row span {
    flex-shrink: 0;
    font-size: 29px;
    line-height: 1;
    font-weight: 400;
    color: #777681;
}

.process-item p {
    margin: 0;
    max-width: 340px;
    font-size: 19px;
    line-height: 1.58;
    font-weight: 400;
    color: #999999;
}

.process-icon {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    background: #1a1a1a;
    border-radius: 5px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.process-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.process-item:hover .process-icon {
    transform: translateY(-5px);
    background: #2a2a2a;
}

@media (max-width: 1400px) {
    .process-container {
        max-width: 1250px;
    }

    .process-header {
        grid-template-columns: 30% 70%;
    }

    .process-grid {
        gap: 32px;
    }

    .process-title-row h3 {
        font-size: 26px;
    }

    .process-title-row span {
        font-size: 27px;
    }

    .process-item p {
        font-size: 17px;
    }
}

@media (max-width: 991px) {
    .process-section {
        padding: 80px 0 90px;
    }

    .process-container {
        padding: 0 30px;
    }

    .process-header {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 55px;
    }

    .process-heading h2 {
        font-size: 48px;
        letter-spacing: -2px;
        color: #ffffff;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 55px;
        column-gap: 35px;
    }

    .process-title-row h3 {
        font-size: 25px;
        color: #ffffff;
    }

    .process-item p {
        max-width: 100%;
        font-size: 17px;
        color: #999999;
    }
}

@media (max-width: 600px) {
    .process-section {
        padding: 65px 0 75px;
    }

    .process-container {
        padding: 0 18px;
    }

    .process-header {
        margin-bottom: 45px;
    }

    .process-label {
        font-size: 11px;
        letter-spacing: 1.2px;
        color: #00d8e4;
    }

    .process-heading h2 {
        font-size: 38px;
        line-height: 1.1;
        letter-spacing: -1.7px;
        color: #ffffff;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .process-title-row {
        margin-bottom: 15px;
    }

    .process-title-row h3 {
        font-size: 25px;
        color: #ffffff;
    }

    .process-title-row span {
        font-size: 23px;
    }

    .process-item p {
        font-size: 16px;
        line-height: 1.55;
        color: #999999;
    }

    .process-icon {
        width: 62px;
        height: 62px;
        margin-top: 20px;
        background: #1a1a1a;
    }
}

/* ============================================================
CONTACT - UPDATED (BLACK BACKGROUND)
============================================================ */
.contact-section {
    position: relative;
    width: 100%;
    min-height: 720px;
    background-color: #000000;
    overflow: hidden;
    padding: 0;
    margin-top: 45px;
}

.contact-layout {
    max-width: 1400px;
    min-height: 720px;
    margin: 0 auto;
    padding: 70px 60px;
    display: grid;
    grid-template-columns: 45% 55%;
    column-gap: 60px;
    align-items: center;
}

/* Left Side */
.contact-left {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
}

.contact-badge {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    margin-bottom: 18px;
    border-radius: 40px;
    background: #00d8e4;
    color: #11101b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-left h2 {
    max-width: 650px;
    margin: 0;
    color: #ffffff;
    font-size: 48px;
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -2px;
}

.contact-info {
    width: 100%;
    margin-top: auto;
    padding-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 50px;
    color: #fff;
}

.contact-info-box h4 {
    margin: 0 0 6px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.contact-info-box p {
    margin: 2px 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.7;
}

.contact-info-box a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.25s ease;
}

.contact-info-box a:hover {
    color: #00d8e4;
}

/* Right Side - Form */
.contact-right {
    width: 100%;
    max-width: 690px;
    padding: 38px 40px 42px;
    background: #ffffff;
    border-radius: 20px;
    color: #111;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.contact-right h3 {
    margin: 0 0 8px;
    color: #11101b;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -1px;
}

.contact-right>p {
    margin: 0 0 25px;
    max-width: 620px;
    color: #77747d;
    font-size: 14px;
    line-height: 1.55;
}

.contact-right form {
    width: 100%;
    margin: 0;
}

.contact-right .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 17px;
    row-gap: 0;
}

.contact-right .form-row .full {
    grid-column: 1 / -1;
}

.contact-right .form-group {
    margin-bottom: 12px;
}

.contact-right label {
    display: block;
    margin-bottom: 5px;
    color: #151515;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
}

.contact-right input[type="text"],
.contact-right input[type="email"],
.contact-right input[type="tel"],
.contact-right input[type="date"],
.contact-right select {
    width: 100%;
    height: 48px;
    padding: 0 13px;
    border: 1px solid #e5e3df;
    border-radius: 8px;
    outline: none;
    background: #f8f8f8;
    color: #222;
    font-size: 13px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-right input:focus,
.contact-right select:focus,
.contact-right textarea:focus {
    border-color: #00d8e4;
    box-shadow: 0 0 0 3px rgba(0, 216, 228, 0.1);
    background: #ffffff;
}

.contact-right input::placeholder {
    color: #aaa;
    opacity: 1;
}

.contact-right select {
    cursor: pointer;
    appearance: auto;
}

.contact-right input[type="date"] {
    cursor: pointer;
}

.contact-right textarea {
    width: 100%;
    height: 120px;
    min-height: 120px;
    padding: 14px;
    border: 1px solid #e5e3df;
    border-radius: 8px;
    background: #f8f8f8;
    color: #222;
    font-size: 13px;
    resize: vertical;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-right textarea::placeholder {
    color: #aaa;
    opacity: 1;
}

.contact-right .form-group p {
    margin: 0;
}

.contact-right .submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    height: 50px;
    min-width: 160px;
    padding: 4px 20px 4px 4px;
    border: 0;
    border-radius: 30px;
    background: #05030f;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-right .submit-btn:hover {
    background: #00d8e4;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 216, 228, 0.3);
}

.contact-right .submit-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.contact-right .submit-btn:hover i {
    transform: rotate(90deg);
}

/* Responsive */
@media (max-width: 1100px) {
    .contact-layout {
        padding: 50px 40px;
        grid-template-columns: 1fr 1fr;
        column-gap: 40px;
    }

    .contact-left h2 {
        font-size: 38px;
        color: #ffffff;
    }

    .contact-right {
        padding: 30px;
    }

    .contact-info {
        gap: 25px 30px;
    }
}

@media (max-width: 991px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
    }

    .contact-left {
        order: 2;
    }

    .contact-right {
        order: 1;
        max-width: 100%;
    }

    .contact-info {
        grid-template-columns: 1fr 1fr;
        padding-top: 40px;
    }
}

@media (max-width: 767px) {
    .contact-section {
        min-height: auto;
        background-position: center;
    }

    .contact-layout {
        padding: 40px 20px;
        min-height: auto;
        display: block;
    }

    .contact-left {
        display: block;
        margin-bottom: 35px;
    }

    .contact-left h2 {
        font-size: 34px;
        line-height: 1.15;
        letter-spacing: -1px;
        color: #ffffff;
    }

    .contact-info {
        margin-top: 35px;
        padding-top: 0;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-right {
        width: 100%;
        max-width: none;
        padding: 25px 18px;
        border-radius: 16px;
    }

    .contact-right h3 {
        font-size: 24px;
    }

    .contact-right .form-row {
        grid-template-columns: 1fr;
    }

    .contact-right .form-row .full {
        grid-column: auto;
    }

    .contact-right input[type="text"],
    .contact-right input[type="email"],
    .contact-right input[type="tel"],
    .contact-right input[type="date"],
    .contact-right select {
        height: 44px;
    }
}

@media (max-width: 480px) {
    .contact-layout {
        padding: 30px 15px;
    }

    .contact-left h2 {
        font-size: 28px;
        color: #ffffff;
    }

    .contact-right {
        padding: 20px 15px;
    }

    .contact-right h3 {
        font-size: 20px;
    }

    .contact-right .submit-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
GUARANTEE - WITH 6 POINTS
============================================================ */
.guarantee-section {
    padding: 90px 15px 40px;
    max-width: 1320px;
    margin: 0 auto;
}

.guarantee-heading h2 {
    margin: 0 0 50px;
    font-size: clamp(30px, 3.4vw, 44px);
    font-weight: 500;
    letter-spacing: -1.5px;
    color: #050414;
    text-align: center;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 50px;
    align-items: start;
}

.guarantee-points {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

/* Left points - align text to right */
.guarantee-points.left-points {
    text-align: right;
    align-items: flex-end;
}

.guarantee-points.left-points .guarantee-point {
    max-width: 100%;
}

/* Right points - align text to left */
.guarantee-points.right-points {
    text-align: left;
    align-items: flex-start;
}

.guarantee-points.right-points .guarantee-point {
    max-width: 100%;
}

.guarantee-point-num {
    font-size: 45px;
    font-weight: 600;
    color: #d5d4d2;
    margin-bottom: 12px;
    line-height: 1;
    transition: color 0.3s ease;
}

.guarantee-point:hover .guarantee-point-num {
    color: #00d8e4;
}

.guarantee-point h5 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 600;
    color: #050414;
    transition: color 0.3s ease;
}

.guarantee-point:hover h5 {
    color: #00d8e4;
}

.guarantee-point p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #777681;
}

/* Left points text alignment */
.guarantee-points.left-points .guarantee-point h5,
.guarantee-points.left-points .guarantee-point p {
    text-align: right;
}

/* Right points text alignment */
.guarantee-points.right-points .guarantee-point h5,
.guarantee-points.right-points .guarantee-point p {
    text-align: left;
}

/* Image Wrapper */
.guarantee-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guarantee-image {
    position: relative;
}

.guarantee-image img {
    border-radius: 250px 250px 250px 250px;
    width: 314px;
    height: 514px;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.guarantee-image img:hover {
    transform: scale(1.02);
}

/* Decorative ring around image */
.guarantee-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 260px 260px 260px 260px;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 1200px) {
    .guarantee-grid {
        gap: 40px;
    }

    .guarantee-image img {
        width: 260px;
        height: 426px;
    }
}

@media (max-width: 991px) {
    .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .guarantee-image-wrapper {
        order: 0;
        /* Reset order - will be set in phone view */
    }

    .guarantee-image img {
        width: 280px;
        height: 420px;
    }

    /* Reset text alignment for mobile */
    .guarantee-points.left-points {
        text-align: left;
        align-items: flex-start;
    }

    .guarantee-points.left-points .guarantee-point h5,
    .guarantee-points.left-points .guarantee-point p {
        text-align: left;
    }

    .guarantee-points.right-points {
        text-align: left;
        align-items: flex-start;
    }

    .guarantee-points.right-points .guarantee-point h5,
    .guarantee-points.right-points .guarantee-point p {
        text-align: left;
    }

    .guarantee-points {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .guarantee-grid {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .guarantee-points.left-points {
        order: 1;
    }

    .guarantee-image-wrapper {
        order: 2;
        display: flex;
        justify-content: center;
    }

    .guarantee-points.right-points {
        order: 3;
    }
}

@media (max-width: 600px) {
    .guarantee-section {
        padding: 60px 15px 30px;
    }

    .guarantee-heading h2 {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .guarantee-image img {
        width: 200px;
        height: 320px;
        margin-left: 70px;
    }

    .guarantee-point-num {
        font-size: 35px;
    }

    .guarantee-point h5 {
        font-size: 18px;
    }

    .guarantee-point p {
        font-size: 14px;
    }

    .guarantee-points {
        gap: 25px;
    }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
    width: 100%;
    background: #f3f2f0;
    padding: 60px 0 75px;
}

.faq-container {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 110px;
    display: grid;
    grid-template-columns: 38% 62%;
    column-gap: 70px;
}

.faq-left h2 {
    margin: 0 0 25px;
    color: #080719;
    font-size: 62px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: -3px;
}

.faq-left p {
    max-width: 460px;
    margin: 0 0 30px;
    color: #777580;
    font-size: 20px;
    line-height: 1.5;
}

.faq-left a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #11101d;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: opacity 0.25s ease;
}

.faq-left a span {
    font-size: 18px;
    line-height: 1;
}

.faq-left a:hover {
    opacity: 0.6;
}

.faq-right {
    width: 100%;
}

.faq-item {
    width: 100%;
    border-bottom: 1px solid #d5d4d2;
}

.faq-item:first-child {
    border-top: 0;
}

.faq-question {
    width: 100%;
    min-height: 72px;
    border: 0;
    outline: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #0b0919;
    text-align: left;
    font-family: inherit;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    cursor: pointer;
    padding: 4px 0;
}

.faq-icon {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #050315;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.35s ease, background 0.25s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.faq-answer p {
    max-width: 720px;
    margin: 0;
    padding: 0 70px 18px 0;
    color: #777580;
    font-size: 15px;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-question:hover .faq-icon {
    transform: scale(1.05);
}

.faq-item.active .faq-question:hover .faq-icon {
    transform: rotate(45deg) scale(1.05);
}

@media (max-width: 1100px) {
    .faq-section {
        padding: 50px 0 60px;
    }

    .faq-container {
        padding: 0 40px;
        grid-template-columns: 35% 65%;
        column-gap: 40px;
    }

    .faq-left h2 {
        font-size: 50px;
        margin-bottom: 20px;
    }

    .faq-left p {
        font-size: 17px;
        margin-bottom: 24px;
    }

    .faq-question {
        font-size: 18px;
        min-height: 64px;
    }

    .faq-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .faq-section {
        padding: 40px 0 50px;
    }

    .faq-container {
        padding: 0 20px;
        display: block;
    }

    .faq-left {
        margin-bottom: 35px;
    }

    .faq-left h2 {
        margin-bottom: 16px;
        font-size: 40px;
        letter-spacing: -2px;
    }

    .faq-left p {
        margin-bottom: 20px;
        font-size: 16px;
    }

    .faq-question {
        min-height: 56px;
        font-size: 15px;
        gap: 12px;
        padding: 2px 0;
    }

    .faq-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .faq-answer p {
        padding: 0 50px 14px 0;
        font-size: 13px;
    }

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

/* ============================================================
TESTIMONIALS - 3 COLUMN WITH VERTICAL SCROLL
============================================================ */
.testimonials-section {
    width: 100%;
    background: #ffffff;
    padding: 30px 0 60px;
    overflow: hidden;
    position: relative;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px; /* Reduced padding */
}

/* Centered header - Trusted box removed */
.testimonials-header {
    text-align: center;
    margin-bottom: 45px;
}

.testimonials-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #050414;
    margin-bottom: 16px;
}

.testimonials-header h2 {
    margin: 0 0 16px 0;
    font-size: clamp(38px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -2px;
    font-weight: 500;
    color: #050414;
}

.testimonials-subtext {
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
    color: #6e6e78;
}


/* ============================================================
3 COLUMN GRID
============================================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
    height: 520px;
    margin: 30px 0 40px;
}

.testimonial-col {
    overflow: hidden;
    border-radius: 16px;
    position: relative;
}

.scroll-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.vertical-track {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 5px 8px;
    width: 100%;
}

/* Bottom to Top Scroll (Column 1 & 3) */
.col-bottom-top .vertical-track {
    animation: scrollBottomToTop 28s linear infinite;
}

/* Top to Bottom Scroll (Column 2) */
.col-top-bottom .vertical-track.reverse {
    animation: scrollTopToBottom 28s linear infinite;
}

.vertical-track:hover {
    animation-play-state: paused;
}

/* Review Cards */
.review-card {
    width: 100%;
    background: #f8f7f5;
    border-radius: 18px;
    padding: 22px 20px 20px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(5, 4, 20, 0.08);
}

.review-rating {
    color: #00d8e4;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-align: left;
}

.review-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #050414;
    flex: 1;
    text-align: left;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    margin-top: 14px;
    border-top: 1px solid #deddda;
    text-align: left;
}

.avatar-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #050414;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

.review-user div {
    text-align: left;
}

.review-user h4 {
    margin: 0 0 2px;
    font-size: 14px;
    line-height: 1.2;
    color: #050414;
    text-align: left;
}

.review-user span {
    display: block;
    font-size: 11px;
    color: #777681;
    text-align: left;
}

/* Vertical Animations */
@keyframes scrollBottomToTop {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

@keyframes scrollTopToBottom {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0);
    }
}

/* ============================================================
   MOBILE ONLY - 1 COLUMN / BOTTOM TO TOP
   DESKTOP & TABLET UNCHANGED
============================================================ */


@media (max-width: 480px) {

    .testimonials-section {
        padding: 55px 0;
    }

    .testimonials-container {
        padding: 0 12px;
    }

    .testimonials-header {
        margin-bottom: 30px;
    }

    .testimonials-label {
        margin-bottom: 12px;
    }

    .testimonials-header h2 {
        font-size: 35px;
        line-height: 1.1;
        letter-spacing: -1.3px;
    }

    .testimonials-subtext {
        font-size: 14px;
        padding: 0 8px;
    }


    /* =========================================
       ONE COLUMN ONLY
    ========================================= */

    .testimonials-grid {
        grid-template-columns: 1fr;
        height: 600px;
        gap: 0;
        margin: 25px 0 30px;
    }


    /* Hide column 2 and column 3 */
    .testimonials-grid .testimonial-col:nth-child(2),
    .testimonials-grid .testimonial-col:nth-child(3) {
        display: none;
    }


    /* Show only first column */
    .testimonials-grid .testimonial-col:first-child {
        display: block;
        width: 100%;
        height: 100%;
    }


    /* =========================================
       SCROLL AREA
    ========================================= */

    .testimonial-col:first-child .scroll-wrapper {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }


    /* =========================================
       BOTTOM → TOP
    ========================================= */

    .testimonial-col:first-child .vertical-track {
        display: flex;
        flex-direction: column;
        gap: 14px;
        padding: 5px 0;

        animation: mobileBottomToTop 22s linear infinite;
        will-change: transform;
    }


    /* Keep animation running */
    .testimonial-col:first-child .vertical-track:hover {
        animation-play-state: paused;
    }


    /* =========================================
       REVIEW CARD
    ========================================= */

    .testimonial-col:first-child .review-card {
        width: 100%;
        min-height: 175px;
        padding: 16px 14px 14px;
        border-radius: 16px;
    }

    .testimonial-col:first-child .review-text {
        font-size: 13px;
        line-height: 1.5;
    }

    .testimonial-col:first-child .review-rating {
        font-size: 12px;
        letter-spacing: 1.5px;
        margin-bottom: 8px;
    }

    .testimonial-col:first-child .review-user {
        gap: 10px;
        padding-top: 12px;
        margin-top: 12px;
    }

    .testimonial-col:first-child .avatar-placeholder {
        width: 34px;
        height: 34px;
        font-size: 10px;
    }

    .testimonial-col:first-child .review-user h4 {
        font-size: 13px;
    }

    .testimonial-col:first-child .review-user span {
        font-size: 10px;
    }
}


/* ============================================================
   MOBILE CONTINUOUS BOTTOM → TOP ANIMATION
============================================================ */

@keyframes mobileBottomToTop {

    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }

}

/* ============================================================
   FOOTER
============================================================ */

.site-footer {
    background: #000;
    padding: 40px 0 25px;
    overflow: hidden;
    position: relative;
    border-radius: 1cm;
    margin:10px 10px 10px 10px;
}

.container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 40px;
}


/* ============================================================
   MAIN FOOTER
   LEFT 40% / RIGHT 60%
============================================================ */

.footer-layout {
    display: grid;
    grid-template-columns: 60% 40%;
    align-items: start;
}


/* ============================================================
   LEFT SIDE - STAY CONNECTED
============================================================ */

.footer-left {
    padding-right: 70px;
}

.section-title {
    margin: 0 0 14px;
    font-size: 40px;
    line-height: 1.1;
    font-weight: 600;
    color: #fff;
}

.section-desc {
    max-width: 390px;
    margin: 0 0 25px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 15px;
    line-height: 1.6;
}


/* ============================================================
   NEWSLETTER
============================================================ */

.newsletter-form {
    width: 100%;
    max-width: 390px;

    display: flex;
    align-items: center;

    border-bottom: 1px solid rgba(255, 255, 255, 0.35);

    margin-bottom: 22px;
}

.newsletter-form input {
    flex: 1;

    width: 100%;
    height: 48px;

    border: 0;
    outline: none;

    background: transparent;

    color: #fff;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.newsletter-form button {
    width: 45px;
    height: 45px;

    border: 0;
    background: transparent;

    color: #fff;

    cursor: pointer;

    font-size: 17px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.newsletter-form button:hover {
    color: #00d8e4;
    transform: translateX(4px);
}


/* ============================================================
   SOCIAL ICONS
============================================================ */

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #000;

    border: 1px solid rgba(255, 255, 255, 0.15);

    color: #fff;

    text-decoration: none;

    font-size: 15px;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.footer-social a:hover {
    background: #00d8e4;
    border-color: #00d8e4;
    transform: translateY(-3px);
}


/* ============================================================
   RIGHT SIDE - 60%
============================================================ */

.footer-right {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 35px;

    padding-left: 50px;
}


/* ============================================================
   FOOTER LINKS
============================================================ */

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h3 {
    margin: 0 0 8px;

    font-size: 12px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 1px;

    color: rgba(255, 255, 255, 0.4);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.72);

    text-decoration: none;

    font-size: 14px;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-links a:hover {
    color: #00d8e4;
    transform: translateX(3px);
}


/* ============================================================
   LOGO + CONTACT
============================================================ */

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-brand {
    display: inline-block;
    margin-bottom: 3px;
}

.footer-brand-logo {
    display: block;
    margin-top: -27px;

    width: 230px;
    max-width: 100%;
    height: auto;
}


/* ============================================================
   CONTACT
============================================================ */

.footer-contact-group strong {
    display: block;

    margin-bottom: 5px;

    font-size: 11px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 1px;

    color: rgba(255, 255, 255, 0.38);
}

.footer-contact-group p,
.footer-contact-group a {
    display: block;

    margin: 2px 0;

    color: rgba(255, 255, 255, 0.72);

    text-decoration: none;

    font-size: 14px;
    line-height: 1.6;
}

.footer-contact-group a:hover {
    color: #00d8e4;
}


.contact-cl{
    color:#00d8e4 !important;
}

.contact-cl:hover {
    color: rgba(255, 255, 255, 0.72) !important;
}


/* ============================================================
   MOMENTS WORDMARK
============================================================ */

.footer-wordmark {
    position: relative;

    margin-top: 55px;
    margin-bottom: 30px;

    min-height: 250px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.wordmark-wrapper {
    display: flex;
    align-items: left;
    justify-content: left;

    gap: 22px;

    width: 100%;

    font-size: clamp(60px, 11vw, 140px);

    font-weight: 700;

    letter-spacing: 18px;

    color: rgba(255, 255, 255, 0.10);

    white-space: nowrap;
}

.wordmark-wrapper .letter {
    display: inline-block;

    opacity: 0;

    transform: rotateX(0deg) scale(1);

    animation:
        flipReverse 4s ease forwards infinite alternate;

    transform-origin: center;

    backface-visibility: visible;

    transition: color 0.3s ease;
}

.wordmark-wrapper .letter:hover {
    color: rgba(255, 255, 255, 0.4);
}


/* ============================================================
   FLIP ANIMATION
============================================================ */

@keyframes flipReverse {

    0% {
        opacity: 0;
        transform: rotateX(0deg) scale(1);
    }

    25% {
        opacity: 1;
        transform: rotateX(90deg) scale(1.15);
    }

    50% {
        opacity: 1;
        transform: rotateX(180deg) scale(1.25);
    }

    75% {
        opacity: 1;
        transform: rotateX(90deg) scale(1.05);
    }

    100% {
        opacity: 1;
        transform: rotateX(0deg) scale(1);
    }
}


/* ============================================================
   COPYRIGHT
============================================================ */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    padding-top: 5px;

    font-size: 13px;

    color: rgba(255, 255, 255, 0.4);
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 991px) {

    .container {
        padding: 0 25px;
    }

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

    .footer-left {
        padding-right: 30px;
    }

    .footer-right {
        padding-left: 25px;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .wordmark-wrapper {
        font-size: clamp(50px, 10vw, 90px);
        gap: 15px;
        letter-spacing: 12px;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 600px) {

    .wordmark-wrapper .letter {
    display: inline-block;

    opacity: 0;

    transform: rotateX(0deg) scale(1);

    animation:
        flipReverse 6s ease forwards infinite alternate !important; 

    transform-origin: center;

    backface-visibility: visible;

    transition: color 0.3s ease;
}

    .site-footer {
        padding: 45px 0 20px;
    }

    .container {
        padding: 0 18px;
    }

    .footer-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-left {
        padding-right: 0;
    }

    .footer-right {
        padding-left: 0;

        grid-template-columns: 1fr 1fr;

        gap: 25px;
    }

    .section-title {
        font-size: 27px;
    }

    .section-desc {
        font-size: 14px;
    }

    .footer-brand-logo {
        width: 145px;
    }

    .footer-wordmark {
        margin-top: 45px;

        min-height: 100px;

        padding: 20px 0;
    }

    .wordmark-wrapper {
        font-size: clamp(32px, 9vw, 55px);

        gap: 7px;

        letter-spacing: 6px;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;

        font-size: 12px;
    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 420px) {

    .wordmark-wrapper .letter {
    display: inline-block;

    opacity: 0;

    transform: rotateX(0deg) scale(1);

    animation:
        flipReverse 6s ease forwards infinite alternate !important;

    transform-origin: center;

    backface-visibility: visible;

    transition: color 0.3s ease;
}

    .footer-right {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-wordmark {
        min-height: 80px;
    }

    .wordmark-wrapper {
        font-size: 27px;
        gap: 4px;
        letter-spacing: 4px;
    }

    .wordmark-wrapper .letter {
        animation-duration: 0.8s;
    }

    .footer-social a {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

}




/* ============================================================
           SWIPER OVERRIDES
           ============================================================ */
.swiper {
    width: 100%;
}

/* ============================================================
           RESPONSIVE FINE-TUNE
           ============================================================ */
@media (max-width: 767px) {
    .pricing-title h2 {
        font-size: 28px;
    }

    .contact-left h2 {
        font-size: 30px;
    }

    .faq-left h2 {
        font-size: 38px;
    }

    .testimonials-heading h2 {
        font-size: 30px;
    }
}

/* ============================================================
    TERMS & CONDITIONS & PRIVACY POLICY - FULL STYLES
    ============================================================ */

/* --- Background Colors --- */
.terms-hero {
    background: white;
    color: black;
    padding: 100px 0 70px;
}

.legal-section {
    background: white;
    color: black;
    padding: 60px 0 100px;
}

.section-pad {
    padding: 30px 0;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 10px 40px;
}

/* --- Hero --- */
.terms-hero-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 60px;
    align-items: start;
}

.terms-hero-copy .eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #00d8e4;
    margin-bottom: 20px;
}


.terms-update {
    background: white;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px 28px;
}

.terms-update .eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: black;
    margin-bottom: 6px;
}

.terms-update strong {
    display: block;
    font-size: 28px;
    font-weight: 600;
    color: black;
    margin-bottom: 10px;
}

.terms-update p {
    margin: 0;
    font-size: 14px;
    color: rgba(22, 21, 21, 0.5);
    line-height: 1.6;
}

/* --- Layout --- */
.terms-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 60px;
    align-items: start;
}

/* --- Sidebar --- */
.terms-sidebar {
    position: sticky;
    top: 100px;
}

.terms-sidebar .eyebrow {
    display: block;
    font-size: 17px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: black;
    margin-bottom: 20px;
}

.terms-sidebar nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.terms-sidebar nav a {
    color: black;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.terms-sidebar nav a:hover {
    color: black;
    background: #00d8e4;
}

/* --- Content --- */
.terms-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.legal-block {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-block:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.legal-number {
    font-size: 24px;
    font-weight: 700;
    color: #00d8e4;
    opacity: 0.5;
    line-height: 1.2;
}

.legal-block h2 {
    font-size: 22px;
    font-weight: 600;
    color: black;
    margin: 0 0 16px;
}

.legal-block p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(1, 1, 1, 0.7);
    margin: 0 0 12px;
}

.legal-block ul {
    margin: 0;
    padding: 0 0 0 20px;
    list-style: none;
}

.legal-block ul li {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(8, 8, 8, 0.7);
    padding: 4px 0 4px 20px;
    position: relative;
}

.legal-block ul li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #00d8e4;
    opacity: 0.5;
}

.legal-block strong {
    color: black;
}

/* Mobile landscape & portrait tablets */
@media (max-width: 820px) {

    .terms-hero-grid {
        grid-template-columns: 1fr;
        gap: 1px;
    }

    .terms-update {
        padding: 10px 24px;
    }

    .terms-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .terms-sidebar {
        position: relative;
        top: 0;
        display: none;
        /* hidden on mobile, can be toggled with a button */
    }

    .terms-content {
        gap: 40px;
    }

    .legal-block {
        grid-template-columns: 1fr;
        gap: 8px;
        padding-bottom: 3px;
    }

    .legal-number {
        font-size: 20px;
        opacity: 0.4;
    }

    .legal-block h2 {
        font-size: 20px;
        margin-top: 4px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {


    .terms-update strong {
        font-size: 24px;
    }

    .legal-block h2 {
        font-size: 18px;
    }

    .legal-block p,
    .legal-block ul li {
        font-size: 14px;
    }

    .terms-update p {
        font-size: 13px;
    }

    .terms-sidebar nav a {
        font-size: 13px;
        padding: 6px 12px;
    }
}

#bookingMessage {
    margin-top: 15px;
    font-size: 14px;
    font-weight: 500;
}

.booking-success {
    color: #2e7d32;
}

.booking-error {
    color: #c62828;
}

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