/* ============================================
   COMPLETE PRODUCT.CSS - EXACT FIGMA MATCH
   ============================================ */

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

:root {
    /* Colors from Figma */
    --primary-blue: #015bf8;
    --secondary-blue: #01d0fc;
    --gradient: linear-gradient(90deg, #01d0fc 0%, #015bf8 100%);
    --text-primary: #000000;
    --text-secondary: #868686;
    --text-white: #ffffff;
    --bg-cream: #f4f0e9;
    --bg-light: #f1f1f1;
    --bg-white: #ffffff;
    --bg-dark: #181f1f;
    --border-color: #ebebeb;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Container */
    --container-width: 1200px;
    --container-wide: 1440px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    color: var(--text-primary);
    background: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button {
    border: none;
    background: none;
    font-family: inherit;
    cursor: pointer;
}

.hero-content {
    margin-top: 210px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: sticky;
    top: 0;
    background: var(--bg-white);
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: none;
}

.nav-link {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    position: relative;
    transition: color 0.3s ease;
}

.nav-link.active {
    color: var(--primary-blue);
}

.nav-actions {
    display: none;
}

.nav-login {
    font-size: 18px;
    font-weight: 400;
    margin-top: 11px;
}

.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 28px;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--gradient);
    color: var(--text-white);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(1, 91, 248, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 32px;
    background: var(--text-secondary);
    color: var(--text-white);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--text-primary);
    color: var(--text-white);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 400;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--bg-white);
    color: var(--text-primary);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 400;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 32px;
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
}

.btn-large {
    padding: 14px 28px;
    font-size: 17px;
}

.btn-xl {
    padding: 18px 36px;
    font-size: 18px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding: 70px 0;
    background: var(--bg-light);
}

.hero-container {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.hero-title {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

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

.video-card {
    position: relative;
    border-radius: 39px;
    overflow: hidden;
}

.video-card img {
    width: 90%;
    height: auto;
}

.video-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 15px;
}

.play-btn {
    width: 50px;
    height: 50px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.video-caption {
    color: var(--text-white);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    width: 61%;
    margin: auto;
    text-align: center;
}

.video-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.video-dots .dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.video-dots .dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--text-white);
}

/* ============================================
   APPOINTMENTS SECTION
   ============================================ */
.appointments-section {
    padding: 90px 0;
    background: var(--bg-white);
    border-radius: 70px;
    margin: 30px 0;
}

.section-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 40px;
}

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

.appointments-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.card-image img {
    width: 100%;
    border-radius: 20px;
}

.appointment-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: center;
}

.feature-item h3 {
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ============================================
   PROVEN SECTION
   ============================================ */

.proven-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.section-container {
    max-width: 1240px;
    margin: auto;
    padding: 0 24px;
}

.section-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 50px;
}

/* ===== TOP GRID ===== */
.design-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 30px;
    background-color: #ffff;
    border-radius: 36px;
    -webkit-border-radius: 36px;
    -moz-border-radius: 36px;
    -ms-border-radius: 36px;
    -o-border-radius: 36px;
}

/* LEFT IMAGE CARD */
/* .design-search-card {
  background: #fff;
  border-radius: 36px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
} */

.design-search-card img {
    width: 100%;
    max-width: 500px;
}

/* RIGHT TEXT CARD */
.design-feature-box {
    background: #fff;
    border-radius: 36px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.design-feature-box h3 {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.4;
}

.badge {
    font-size: 13px;
    font-weight: 600;
    color: #777;
    margin-bottom: 14px;
}

/* ===== BOTTOM GRID ===== */
.design-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.booking-card {
    background: #fff;
    border-radius: 36px;
    padding: 30px;
}

.booking-card img {
    width: 100%;
    border-radius: 18px;
}

.booking-card2nd img {
    width: 100%;
    border-radius: 18px;
}

.booking-card2ndp1 {
    background: #fff;
    border-radius: 36px;
    padding: 30px;
    padding-right: 0px !important;
}

.booking-card2ndp1 img {
    width: 100%;
    border-radius: 18px;
}

.booking-card1st img {
    width: 100%;
    /* margin-top: 183px; */
    /* border-radius: 18px; */
}

.booking-data {
    background-color: #fff;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    padding: 30px;
}

.booking-data h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #6c6f75;
}

.booking-data p {
    font-size: 36px;
    font-weight: 600;
    color: #181f1f;
    white-space: inherit;
}


@media (max-width: 991px) {
    .design-main-grid {
        grid-template-columns: 1fr;
        background-color: #ffff;
    }

    .design-bottom-grid {
        grid-template-columns: 1fr;
    }

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


/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 160px 0;
    background: var(--bg-white);
    border-radius: 70px;
    margin-top: 30px;
    /* padding-top: 160px; */
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    /* margin-top: 30px; */
}

.faq-left {
    margin-top: 110px;
}

.faq-item {
    /* border-bottom: 2px solid var(--border-color); */
    padding: 20px 0;
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    list-style: none;
    font-size: clamp(16px, 3vw, 20px);
    font-weight: 600;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--text-primary);
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding-top: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.testimonial-card-dark {
    background: var(--bg-dark);
    border-radius: 20px;
    padding: 30px 10px;
    color: var(--text-white);
}

.testimonial-card-dark img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
}

.testimonial-card-dark blockquote {
    font-size: clamp(16px, 3vw, 18px);
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.author-role {
    color: var(--text-secondary);
}

/* ============================================
   TESTIMONIALS CAROUSEL
   ============================================ */
/* ============================================
   TESTIMONIALS CAROUSEL
   ============================================ */

.testimonials-carousel {
    background: #f6f1e9;
    padding: 80px 0;
    border-radius: 70px;
    position: relative;
    overflow: visible;
}

.carousel-container {
    max-width: 1440px;
    margin: auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

/* DECORATIVE BACKGROUND IMAGES - FIXED POSITION */
.bg-left,
.bg-right {
    position: absolute;
    width: 132px;
    z-index: 1;
}

.bg-left {
    left: 155px;
    top: 112px;
}

.bg-right {
    right: 155px;
    top: 117px;
}

/* SLIDER WRAPPER */
.slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* CAROUSEL TRACK - SLIDING CONTAINER */
.carousel-track {
    display: flex;
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 40px 0;
    will-change: transform;
}

/* TESTIMONIAL SLIDE WRAPPER */
.testimonial-slide {
    min-width: 100%;
    flex-shrink: 0;
}

/* MAIN CARD */
.testimonial-card {
    background: #fff;
    border-radius: 40px;
    display: grid;
    grid-template-columns: 420px 1fr;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 1176px;
    margin: 0 auto;
}

/* LEFT IMAGE */
.testimonial-image {
    position: relative;
    height: 100%;
}

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

.image-labels {
    position: absolute;
    bottom: 70px;
    left: 40px;
}

.label {
    color: #fff;
    display: block;
    width: fit-content;
    margin-bottom: 6px;
    font-size: 24px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.label-sub {
    color: #fff;
    display: block;
    width: fit-content;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* RIGHT CONTENT */
.testimonial-content {
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-content1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 600;
    margin-bottom: 156px;
    color: #333;
}

/* STATS */
.stats {
    display: flex;
    gap: 50px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.stat-item h3 {
    font-size: 32px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

/* BUTTON */
.story-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #efebe3;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    width: fit-content;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    margin-top: 20px;
    justify-content: end;
}

.story-btn:hover {
    background: #e5dfd4;
    transform: translateX(5px);
}

.story-btn img {
    transition: transform 0.3s ease;
    width: 8px;
    height: 12px;
}

.story-btn:hover img {
    transform: translateX(3px);
}

/* PAGINATION DOTS */
.carousel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d4cec1;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.carousel-dots .dot:hover {
    transform: scale(1.3);
    background: #999;
}

.carousel-dots .dot.active {
    width: 40px;
    border-radius: 5px;
    background: #e8e4dc;
    animation: dotPulse 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Progress Bar Inside Active Dot */
.carousel-dots .dot.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #4a90e2 0%, #357abd 100%);
    border-radius: 5px;
    animation: progressBar 5s linear forwards;
}

@keyframes dotPulse {
    0% {
        transform: scale(0.8);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes progressBar {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

/* MOBILE */
@media (max-width: 1024px) {
    .testimonial-card {
        grid-template-columns: 320px 1fr;
    }

    .testimonial-content {
        padding: 30px 40px;
    }

    .bg-left {
        left: 50px;
    }

    .bg-right {
        right: 50px;
    }
}

@media (max-width: 768px) {
    .testimonials-carousel {
        padding: 60px 0;
        border-radius: 40px;
    }

    .carousel-container {
        padding: 0 15px;
    }

    .testimonial-card {
        height: auto;
        grid-template-columns: 1fr;
    }

    .testimonial-image {
        height: 280px;
    }

    .image-labels {
        left: 30px;
        bottom: 20px;
    }

    .testimonial-content {
        padding: 30px;
    }

    .stats {
        gap: 30px;
    }

    .stat-item h3 {
        font-size: 26px;
    }

    .bg-left,
    .bg-right {
        width: 80px;
    }

    .bg-left {
        left: 20px;
        top: 40px;
    }

    .bg-right {
        right: 20px;
        top: 40px;
    }
}

/* ============================================
   GUIDES SECTION
   ============================================ */
.guides-section {
    padding: 60px 0;
    background: #f8f8f8;
    padding-bottom: 150px;
    margin-bottom: -100px;
    /* bottom radius */
    border-radius: 0px 0px 70px 70px;
}

.guides-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.guides-header h2 {
    font-size: clamp(24px, 4vw, 45px);
    font-weight: 600;
    line-height: 1.2;
}

.btn-dark {
    background: #111;
    color: #fff;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}

.guides-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
}

.guide-large,
.guide-small {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.guide-large img,
.guide-small img {
    width: 90%;
    display: block;
    border-radius: 20px;
    height: -webkit-fill-available;
    object-fit: cover;
}

.guide-small .guide-link {
    font-size: 16px;
    /* slightly smaller for small image */
}

.guide-small .guide-play {
    width: 40px;
    /* smaller play button */
    height: 40px;
}

.guide-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.guide-info {
    display: flex;
    flex-direction: column;
}

.guide-link {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.guide-label {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    margin-top: 4px;
}

.guide-play {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    margin-right: auto;
    margin-left: auto;
}

/* ============================================
   BOOKING CTA
   ============================================ */
.booking-cta {
    padding: 40px 0;
    background: #181F1F;
    padding-bottom: 100px;
    margin-bottom: 0px;
}

.booking-cta-title {
    font-size: clamp(24px, 5vw, 40px);
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    color: var(--text-white);
    margin-bottom: 60px;
    margin-top: 190px;
}

.booking-banner {
    background: #343a3a;
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    max-width: 700px;
    margin: 0 auto;
}

.booking-banner {
    position: relative;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
    align-items: stretch;
}

.booking-image {
    width: 100%;
    /* border-radius: 16px; */
    object-fit: none;
}


/* .booking-image {
  width: 100%;
  height: auto;
  object-fit: cover;
} */

.booking-text {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* 👈 bottom */
    align-items: flex-start;
    /* 👈 right */
    text-align: left;
    margin-top: auto;
}

.booking-icon {
    position: absolute;
    top: 16px;
    right: 16px;

    width: 44px;
    height: 44px;
    border-radius: 50%;

    background: #181F1F;
    /* circle color */
    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.booking-icon img {
    width: 14px;
    height: 14px;
    object-fit: contain;
}


.booking-icon img {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.booking-text h3 {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.booking-text p {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    max-width: 360px;
}

@media (max-width: 768px) {
    .booking-banner {
        grid-template-columns: 1fr;
    }

    .booking-text {
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .booking-icon {
        right: 12px;
        top: 12px;
    }
}

.booking-text {
    padding: 30px 20px;
    /* text-align: center; */
    color: var(--text-white);
}

.booking-text h3 {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.booking-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* ============================================
   GROWTH CTA - MOBILE IMAGE FIX
   ============================================ */
.growth-cta {
    padding: 60px 0;
    background: var(--bg-dark);
    color: var(--text-white);
}

.growth-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto 30px;
    border-radius: 20px;
    object-fit: contain;
}

.growth-title {
    font-size: clamp(24px, 5vw, 40px);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
    padding: 60px 0;
    background: var(--bg-light);
}

.final-cta h2 {
    font-size: clamp(20px, 4vw, 36px);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* ============================================
   FOOTER - RESPONSIVE IMAGE FIX
   ============================================ */
.footer {
    background: var(--bg-white);
    border-radius: 70px 70px 0 0;
    padding: 60px 0 30px;
    margin-top: 40px;
}

.footer-container {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 100%;
}

.footer-brand img {
    height: 50px;
    width: auto;
    max-width: 100%;
    margin-bottom: 12px;
    object-fit: contain;
}

.footer-brand p {
    font-size: 15px;
    font-weight: 600;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.footer-col a {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.footer-col a:first-of-type {
    color: var(--text-primary);
}

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

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    align-items: center;
    text-align: center;
}

.footer-bottom p {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-secondary);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.footer-legal a {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-secondary);
}

.footer-new {
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-new img {
    width: auto;
    height: 10px;
    max-width: 100%;
    object-fit: contain;
}

/* ============================================
   TABLET (768px+)
   ============================================ */
@media (min-width: 768px) {
    .nav-container {
        padding: 0 40px;
    }

    .nav-menu {
        display: flex;
        gap: 28px;
    }

    .nav-actions {
        display: flex;
        gap: 16px;
    }

    .mobile-toggle {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        padding: 0 40px;
    }

    .section-container {
        padding: 0 40px;
    }

    .appointments-grid {
        grid-template-columns: 1fr 1fr;
    }

    .design-main-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .corner-img {
        width: 80px;
        height: 80px;
    }



    .branding-treatments-grid {
        grid-template-columns: 1fr 1fr;
    }

    .faq-container {
        grid-template-columns: 2fr 0.6fr;
    }

    .testimonial-large {
        grid-template-columns: 380px 1fr;
    }

    .testimonial-image img {
        height: 100%;
    }

    .guides-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .guides-grid {
        grid-template-columns: 2fr 1fr;
    }

    .booking-banner {
        grid-template-columns: 220px 1fr;
    }

    .growth-image {
        max-width: 600px;
    }

    .footer-top {
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .footer-legal {
        justify-content: flex-start;
    }

    .carousel-container {
        padding: 0 40px;
    }
}

/* ============================================
   DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
    .design-main-grid {
        grid-template-columns: 1fr 1fr;
        background-color: #ffff;
    }

    .corner-img {
        width: 100px;
        height: 100px;
    }

    .footer-top {
        grid-template-columns: 1fr 2fr auto;
    }

    .footer-links {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-cta {
        flex-direction: row;
    }
}

/* ============================================
   UTILITY
   ============================================ */
.text-center {
    text-align: center;
}

.d-flex {
    display: flex;
    gap: 10px;
}

/* ===== FOOTER UI ===== */
.footer-ui {
    background: #fff;
    border-radius: 60px 60px 0 0;
    padding: 60px 0 30px;
}

/* TOP ROW */
.footer-top-row {
    max-width: 1440px;
    margin: 0 auto 60px;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* BRAND */
.footer-brand img {
    height: 44px;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

/* CTA CARDS */
.footer-cta-cards {
    display: flex;
    gap: 16px;
}

.cta-card {
    position: relative;
    /* REQUIRED */
    min-width: 202px;
    height: 129px;
    padding: 18px 24px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;

    display: flex;
    align-items: flex-end;
    justify-content: flex-start;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    transition: transform .2s ease, box-shadow .2s ease;
}

.cta-icon {
    position: absolute;
    top: 16px;
    right: 16px;

    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #F3EEE6;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Arrow image control */
.cta-icon img {
    width: 10px;
    height: 10px;
    object-fit: contain;
    display: block;
}

.cta-card.dark .cta-icon img {
    filter: invert(1);
}

.cta-card:hover .cta-icon {
    transform: translate(2px, -2px);
    transition: transform .2s ease;
}


.cta-dot {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-text {
    z-index: 1;
}


.cta-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.cta-card.primary {
    background: linear-gradient(90deg, #01d0fc, #015bf8);
    color: #fff;
    height: 129px;
    border-radius: 14px;
}

.cta-card.dark {
    background: #000;
    color: #fff;
}

/* LINKS */
.footer-inner {
    max-width: 1440px;
    margin: auto;
    padding: 0 40px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 12px;
    text-transform: uppercase;
    color: #868686;
    margin-bottom: 14px;
}

.footer-col a {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #868686;
    margin-bottom: 10px;
}

.footer-col a:first-of-type {
    color: #000;
}

/* BOTTOM */
.footer-bottom-ui {
    border-top: 1px solid #ebebeb;
    margin-top: 50px;
    padding: 20px 270px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-ui p,
.footer-legal a {
    font-size: 11px;
    font-weight: 600;
    color: #868686;
}

.footer-legal {
    display: flex;
    gap: 16px;
}

/* MOBILE */
@media (max-width: 991px) {
    .footer-top-row {
        flex-direction: column;
        text-align: center;
    }

    .footer-cta-cards {
        flex-direction: column;
        width: 100%;
    }

    .cta-card {
        width: 100%;
    }

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

    .footer-bottom-ui {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

.booking-cta {
    padding: 40px 0;
    padding-bottom: 200px !important;
    margin-bottom: -160px !important;
    z-index: -1;
    position: relative;
}


.image-hero {
    position: relative;

}



.growth-cta {
    position: relative;
    /* background: #0f1e2e; */
    background-image: url('https://c.animaapp.com/mjo6rtjiKtEO8Q/img/rectangle-58.png');
    z-index: 1;

    padding: 100px 0 120px;
    overflow: hidden;
    /* 👈 YAHI MAIN FIX */
}

.image-hero {
    /*position: relative;
  */
    height: 600px;
    border-radius: 30px;
    /*margin: 40px 20px;*/
    background-image: url('https://c.animaapp.com/mjo6rtjiKtEO8Q/img/rectangle-58.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    left: 50%;
    bottom: -105px;
    transform: translateX(-50%);
    /*max-width: 1500px;
  width: 100%;
  */
    border-radius: 70px;
    z-index: -1;
    margin-right: 0 !important;
    -webkit-border-radius: 70px;
    -moz-border-radius: 70px;
    -ms-border-radius: 70px;
    -o-border-radius: 70px;
}

/* dark overlay for readability */
.image-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background: rgba(0,0,0,0.35); */
}

/* text container */
.image-hero-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 60px;
    padding-left: 300px;
    max-width: 1000px;
    color: #fff;
}

.image-hero-overlay h1 {
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* .growth-image {
    position: absolute;
    left: 50%;
    bottom: -140px;
    transform: translateX(-50%);
    max-width: 1500px;
    width: 100%;
    border-radius: 24px;
    z-index: 1;
} */

.text-dark {
    color: #000;
}

.growth-title {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #ffffff;
    z-index: 2;
}

.growth-cta .btn-white {
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
}

.footer-ui {
    padding-top: 160px;
    /* image space */
}

@media (max-width: 768px) {
    .growth-image {
        max-width: 85%;
        bottom: -90px;
    }

    .growth-cta {
        padding: 80px 0 140px;
    }
}

.proven-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.section-container {
    max-width: 1270px;
    margin: auto;
    padding: 0 24px;
}

.section-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 50px;
}

/* ===== TOP GRID ===== */
.design-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 30px;
    background-color: #ffff;
    border-radius: 36px;
    -webkit-border-radius: 36px;
    -moz-border-radius: 36px;
    -ms-border-radius: 36px;
    -o-border-radius: 36px;
}

/* LEFT IMAGE CARD */
.design-search-card {
    background: #fff;
    border-radius: 36px;
    /* padding: 20px; */
    display: flex;
    align-items: center;
    /* justify-content: center; */
    padding-left: unset;
}

/* VIDEO MOCKUP CONTAINER */
.video-mockup-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-mockup-container .main-mockup {
    width: 100%;
    display: block;
}

/* OVERLAY VIDEO */
.overlay-video {
    position: absolute;
    top: 52%;
    left: 54%;
    background-color: white;
    padding: 20px;
    transform: translate(-50%, -50%);
    width: 86%;
    height: auto;
    max-width: 100%;
    border-radius: 40px;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -webkit-transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    -ms-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
}

/* Show video when playing */
.overlay-video.playing {
    opacity: 1;
}

/* Hide video controls and icons */
.overlay-video::-webkit-media-controls {
    display: none !important;
}

.overlay-video::-webkit-media-controls-enclosure {
    display: none !important;
}

.overlay-video::-webkit-media-controls-panel {
    display: none !important;
}

/* RIGHT TEXT CARD */
.design-feature-box {
    background: #fff;
    border-radius: 36px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.design-feature-box h3 {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.4;
}

.badge {
    font-size: 13px;
    font-weight: 600;
    color: #777;
    margin-bottom: 14px;
}


/* ===== BOTTOM GRID ===== */
.design-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.booking-card {
    background: #fff;
    border-radius: 36px;
    padding: 30px;
}


@media (max-width: 991px) {
    .design-main-grid {
        grid-template-columns: 1fr;
        background-color: #ffff;
    }

    .design-bottom-grid {
        grid-template-columns: 1fr;
    }

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

    .overlay-video {
        width: 80%;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 24px;
    }

    .design-search-card {
        padding: 20px;
    }

    .overlay-video {
        width: 75%;
        border-radius: 8px;
    }
}

/* ===== BOTTOM GRID ===== */
.design-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

/* LEFT CARD */
.booking-cardp1 {
    border-radius: 32px;
    overflow: hidden;
}

.booking-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 440px;
}

.booking-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-text-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: anchor-center;
    padding: 60px;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0) 40%,
            rgba(0, 0, 0, 0.65) 100%);
}

.booking-text-overlay h3 {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.3;
    max-width: 90%;
}

/* RIGHT CARD */
.booking-card-ai {
    background: #ffffff;
    border-radius: 32px;
    padding: 40px;
    padding-right: 0;
    padding-bottom: 0;
}

/* INNER 2 COLUMN LAYOUT */
.ai-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    height: 100%;
    align-items: center;
}

/* LEFT TEXT */
.ai-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 20px;
}

.ai-badge {
    font-size: 15px;
    /* color: #8b8f94; */
    font-weight: 600;
    margin-bottom: 12px;
}

.ai-main {
    display: flex;
    gap: 16px;
}

.ai-icon {
    width: 44px;
    height: 44px;
    /* background: #f5f7fa; */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-main h3 {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    color: #121212;
    max-width: 320px;
}

/* RIGHT IMAGE */
.email-preview {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    margin-top: 58px;
}

.email-preview img {
    width: 240px;
    /* margin-bottom: 20px;
    margin-right: 20px; */
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* GRID */
.design-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

/* RIGHT CARD */
.booking-card2nd {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
}

.booking-card2nd img {
    width: 100%;
    display: block;
    border-radius: 32px;
}

/* TEXT OVER IMAGE — RIGHT BOTTOM */
.booking-card2nd .text-overlay {
    position: absolute;
    bottom: 58px;
    right: 313px;
    text-align: left;
    color: #fff;
}

.booking-card2nd .text-overlay .small-heading {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 4px 0;
}

.booking-card2nd .text-overlay .main-heading {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}


/* GRID */
.ratings-app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.ratings-card-left {
    position: relative;
    background: #ffffff;
    border-radius: 32px;
    padding: 40px;
    overflow: hidden;
}

.rating-float img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
}

.rating-float strong {
    font-size: 14px;
}

.mt-50 {
    margin-top: 50px;
}

.rating-float p {
    font-size: 12px;
    margin: 2px 0;
    color: #555;
}

.rating-float span {
    font-size: 13px;
    font-weight: 600;
}

/* POSITIONS — MATCH IMAGE */
.rating-one {
    top: 230px;
    left: 300px;
}

.rating-two {
    top: 328px;
    left: 20px;
}

.rating-three {
    top: 425px;
    left: 300px;
}

/* RIGHT CARD */
.ratings-card-right {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
}

/* IMAGE FULL WIDTH */
.ratings-card-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* TEXT OVER IMAGE */
.app-text {
    position: absolute;
    top: 32px;
    left: 32px;
    z-index: 2;
    color: #fff;
    max-width: 70%;
}

.app-text span {
    font-size: 13px;
    opacity: 0.85;
}

.app-text h4 {
    font-size: 22px;
    margin-top: 6px;
    line-height: 1.3;
}


@media (max-width: 991px) {
    .rating-float {
        position: static;
        width: 100%;
        margin-top: 16px;
    }
}

.ratings-badge {
    font-size: 13px;
    color: #7b7f85;
}

.ratings-title {
    font-size: 30px;
    font-weight: 700;
    margin: 16px 0 32px;
    line-height: 1.25;
    color: #121212;
}


.rating-float {
    position: absolute;
    display: grid;
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 14px;
    row-gap: 6px;
    background: #F1F1F3;
    padding: 18px 20px;
    border-radius: 12px;
    width: 285px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

/* LOGO */
.rating-float img {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

/* NAME + STARS */
.rating-content {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* DESCRIPTION — START FROM LOGO EDGE */
.rating-float p {
    grid-column: 1 / -1;
    /* 👈 FULL WIDTH */
    font-size: 13px;
    line-height: 1.35;
    color: #5f6368;
    margin: 6px 0 0;
}

.appointment-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: center;
}

/* Feature row */
.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

/* Icon box */
.feature-icon {
    width: 44px;
    height: 44px;
    background: #f3f3f3;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon img {
    width: 22px;
    height: 22px;
}

/* Text */
.feature-text h3 {
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 6px;
}

.feature-text p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}