/* ============================================================
   responsive.css — Kalon MedSpa
   Device-specific media queries for all target screens

   DEVICE REFERENCE:
   iPhone SE           → 375 × 667
   iPhone 12 Pro       → 390 × 844
   Pixel 7             → 412 × 915
   iPhone 14 Pro Max   → 430 × 932
   Samsung Galaxy S8+  → 360 × 740
   iPad Mini           → 768 × 1024
   iPad Pro            → 1024 × 1366
   Surface Duo         → 540 × 720  (dual-screen)
   Galaxy Z Fold 5     → 344 × 882 (folded) / 882 × 1080 (unfolded)
   Nest Hub            → 1024 × 600
   Nest Hub Max        → 1280 × 800
   Asus Zenbook Fold   → 1920 × 1280 / 853 × 1280 (folded)
   Samsung S20 Ultra   → 412 × 915
   Surface Pro 7       → 912 × 1368
============================================================ */

/* ============================================================
   CRITICAL GLOBAL FIXES — overflow & slider
   ============================================================ */

/* Prevent any horizontal overflow on ALL screens */
html,
body {
    overflow-x: hidden !important;
    max-width: 100vw;
}

/* Every section must stay within viewport */
section,
.hero-section,
.brand-intro,
.hero-with-cta,
.treatments-section,
.featured-section,
.reviews-section,
.events-section-full,
.trust-section,
.before-after-section,
.testimonials-section,
.awards-section,
.locations-section,
.faq-section {
    overflow-x: hidden;
    max-width: 100%;
}



/* Mobile: collapse menu styles */
@media (max-width: 991.98px) {

    .navbar {
        min-height: 62px;
        padding: 6px 0 !important;
    }

    .navbar-brand .logo-circle {
        width: 44px;
        height: 44px;
    }

    /* Hamburger toggler styling */
    .navbar-toggler {
        border: 1.5px solid #e0e0e0;
        border-radius: 8px;
        padding: 5px 9px;
        box-shadow: none !important;
        outline: none !important;
    }

    .navbar-toggler:focus {
        box-shadow: none !important;
    }

    .navbar-toggler-icon {
        width: 20px;
        height: 20px;
    }

    /* Collapse menu panel */
    .navbar-collapse {
        background: #fff;
        border-radius: 0 0 16px 16px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
        padding: 14px 20px 20px;
        margin-top: 6px;
        border-top: 1px solid #f0f0f0;
    }

    /* Nav links in mobile */
    .navbar-nav {
        gap: 2px;
        margin-bottom: 14px !important;
    }

    .navbar-nav .nav-link {
        font-size: 15px !important;
        font-weight: 600 !important;
        padding: 10px 12px !important;
        border-radius: 8px;
        transition: background 0.2s;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:active {
        background: #fff3f3;
        color: #e579ad !important;
    }

    /* Buttons row in mobile collapse */
    .navbar .d-flex.gap-2 {
        flex-direction: column;
        width: 100%;
        gap: 10px !important;
    }

    .navbar .btn-signin {
        width: 100%;
        text-align: center;
        padding: 10px 16px;
        font-size: 14px;
        border-radius: 8px;
    }

    .navbar .btn-primary-custom.book-btn {
        width: 100%;
        justify-content: center;
        font-size: 15px;
        padding: 10px 20px;
    }
}


/* ============================================================
   GOOGLE REVIEW BUTTON — FIXED
   ============================================================ */

/* Fix the review button layout properly */
.review-btn {
    background-color: #e579ad;
    color: white;
    border: none;
    border-radius: 26px;
    padding: 6px 10px 6px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    height: 40px;
    min-width: 160px;
    max-width: 200px;
    white-space: nowrap;
}

.review-btn .google-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: #fff;
    padding: 2px;
}

/* Google rating card layout fix */
.google-rating-card {
    background: transparent;
    text-align: left;
    max-width: 280px;
    margin: 0;
    padding: 16px;
}

.google-rating-card .d-flex.align-items-cente {
    align-items: flex-start !important;
    gap: 14px !important;
}

.profile-image-wrapper {
    flex-shrink: 0;
    margin-bottom: 0;
}

.profile-image {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f0f0f0;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px !important;
}

.rating-number {
    font-size: 18px;
    font-weight: 700;
    margin: 0 !important;
    line-height: 1;
}

.large-stars .star {
    font-size: 16px;
    color: #FFA500;
    line-height: 1;
}

.review-count {
    font-size: 13px;
    font-weight: 600;
    margin: 0 !important;
    line-height: 1.3;
}

.powered-by {
    font-size: 13px;
    font-weight: 500;
    margin: 0 !important;
    line-height: 1.3;
}

/* Mobile: google card center align */
@media (max-width: 767.98px) {

    .google-rating-card {
        max-width: 100%;
        text-align: left;
        padding: 0 0 20px 0;
    }

    .review-btn {
        min-width: 150px;
        font-size: 12px;
        height: 36px;
        padding: 5px 8px 5px 14px;
    }

    .review-btn .google-icon {
        width: 24px;
        height: 24px;
    }
}

/* Small phones */
@media (max-width: 430px) {

    .google-rating-card {
        padding: 0 0 16px 0;
    }

    .review-btn {
        min-width: 140px;
        font-size: 11px;
        height: 34px;
        gap: 8px;
    }

    .profile-image {
        width: 50px;
        height: 50px;
    }

    .reviewer-name {
        font-size: 14px;
    }
}


/* ============================================================
   0. GLOBAL MOBILE BASE — applies to all phones ≤ 430px
   ============================================================ */
@media (max-width: 430px) {

    /* --- Navbar --- */
    .navbar {
        padding: 6px 0 !important;
        min-height: 56px !important;
    }

    .navbar-brand .logo-circle,
    .logo-circle {
        width: 38px !important;
        height: 38px !important;
    }

    /* Collapse menu full width on small phones */
    .navbar-collapse {
        padding: 12px 16px 16px !important;
        border-radius: 0 0 12px 12px !important;
    }

    .navbar-nav .nav-link {
        font-size: 15px !important;
        padding: 9px 10px !important;
    }

    .navbar .btn-primary-custom.book-btn {
        font-size: 13px !important;
        padding: 9px 16px !important;
    }

    .navbar .btn-signin {
        font-size: 13px !important;
    }

    /* --- Hero --- */
    .hero-section {
        height: auto;
        min-height: 420px;
        margin-top: 60px;
        padding-bottom: 30px;
        background-position: center top;
    }

    .mt-350px {
        margin-top: 200px;
    }

    .hero-title {
        font-size: 18px;
        line-height: 1.3;
        letter-spacing: -0.3px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    /* --- Brand Intro / Gallery --- */
    .brand-intro {
        padding: 2rem 0;
    }

    .gallery-card {
        height: 180px;
        border-radius: 12px;
    }

    .brand-intro h2 {
        font-size: 22px;
    }

    /* --- CTA Hero --- */
    .hero-with-cta {
        min-height: 380px;
    }

    .hero-with-cta .cta-card {
        margin-top: 260px;
        padding: 20px !important;
        border-radius: 16px !important;
        max-width: 100%;
        position: relative;
    }

    .hero-with-cta .cta-card h2 {
        font-size: 20px;
    }

    .hero-with-cta .cta-card p {
        font-size: 13px;
    }

    /* --- Buttons --- */
    .btn-primary-custom,
    .book-btn {
        font-size: 14px;
        padding: 8px 16px;
    }

    /* --- Treatments --- */
    .treatments-section {
        padding-top: 40px !important;
        margin-top: 0;
        border-radius: 24px;
    }

    .treatments-section h2 {
        font-size: 20px;
    }

    .treatment-card,
    .treatment-card.weight-loss,
    .treatment-card.sugaring,
    .last-left-right-card {
        height: 200px !important;
    }

    .mt--94px {
        margin-top: 0 !important;
    }

    .treatment-overlay h4 {
        font-size: 16px;
    }

    /* --- Featured Cards --- */
    .featured-section {
        padding: 30px 0;
        border-radius: 24px;
    }

    .featured-card .row {
        flex-direction: column;
    }

    .featured-card .col-7,
    .featured-card .col-5 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    .featured-card img {
        height: 160px;
        margin-left: 0;
        width: 100%;
        object-fit: cover;
    }

    .featured-card h5 {
        font-size: 15px;
    }

    /* --- Reviews --- */
    .reviews-section {
        padding: 24px 0;
    }

    .google-rating-card {
        max-width: 100%;
        padding: 16px;
        text-align: left;
    }

    .reviewer-name {
        font-size: 15px;
    }

    .review-count,
    .powered-by {
        font-size: 13px;
    }

    /* Mobile slider — tight padding so arrows don't overflow */
    .review-slider-container {
        padding: 16px 38px !important;
        overflow: hidden !important;
    }

    .slider-prev {
        left: 2px !important;
    }

    .slider-next {
        right: 2px !important;
    }

    .review-card {
        padding: 16px;
        min-height: 170px;
    }

    .review-text {
        font-size: 12px;
    }

    .slider-nav {
        width: 30px;
        height: 30px;
    }

    .slider-nav i {
        font-size: 13px;
    }

    /* --- Events --- */
    .events-section-full {
        background: #DCC5B4;
    }

    .events-container {
        flex-direction: column;
        min-height: auto;
    }

    .events-content {
        position: relative;
        width: 100%;
        padding: 32px 20px;
    }

    .events-heading {
        font-size: 26px;
    }

    .events-description {
        font-size: 13px;
    }

    .events-btn {
        width: 100%;
        justify-content: center;
        font-size: 14px;
    }

    .events-image-wrapper {
        position: relative;
        width: 100%;
        height: 240px;
    }

    /* --- Logo Marquee --- */
    .logo-track {
        gap: 36px;
        animation-duration: 12s;
    }

    .partner-logo {
        height: 28px;
    }

    /* --- Trust --- */
    .trust-section {
        border-radius: 30px;
        padding: 40px 0;
    }

    .trust-heading {
        font-size: 20px;
        letter-spacing: 0.3px;
    }

    .trust-heading br {
        display: none;
    }

    /* --- Before/After --- */
    .before-after-section {
        border-radius: 30px;
        padding: 20px 0;
    }

    .before-after-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

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

    .before-after-slider {
        height: 220px;
    }

    /* --- Testimonials --- */
    .testimonials-section {
        padding: 24px 0;
        border-radius: 30px;
    }

    .testimonials-heading {
        font-size: 20px;
        margin-bottom: 28px;
    }

    .testimonial-card {
        padding: 14px;
    }

    .testimonial-text {
        font-size: 12px;
    }

    .btn-see-all {
        width: 100%;
        justify-content: center;
        font-size: 13px;
    }

    /* --- Awards --- */
    .awards-section {
        padding: 2rem 0;
    }

    .awards-section h2 {
        font-size: 20px;
    }

    .awards-section .col-lg-6:last-child img {
        margin-top: 20px;
    }

    /* --- Footer --- */
    .site-footer {
        border-radius: 20px 20px 0 0;
    }

    .footer-top {
        padding: 24px 16px 16px;
        flex-direction: column;
        gap: 16px;
    }

    .footer-logo-img {
        width: 54px;
        height: 54px;
    }

    .footer-nav-cols {
        flex-wrap: wrap;
        gap: 12px 20px;
    }

    .footer-nav-head,
    .footer-nav-sub {
        font-size: 13px;
    }

    .footer-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-qr-img {
        width: 60px;
        height: 60px;
    }

    .footer-book-btn {
        font-size: 13px;
        padding: 9px 16px;
        width: 100%;
        justify-content: center;
    }

    .footer-divider {
        margin: 0 16px;
    }

    .footer-bottom {
        padding: 14px 16px 18px;
        flex-direction: column;
        gap: 12px;
    }

    .footer-copy {
        font-size: 11px;
        white-space: normal;
        text-align: left;
    }

    .footer-policy-links {
        flex-wrap: wrap;
        gap: 10px;
    }

    .footer-policy-links a {
        font-size: 11px;
    }

    .footer-made-badge span {
        font-size: 12px;
    }

    /* --- bg-light-pink border-radius mobile --- */
    .bg-light-pink {
        border-radius: 24px;
    }
}


/* ============================================================
   1. iPHONE SE  —  375 × 667
   ============================================================ */
@media only screen and (min-device-width: 375px) and (max-device-width: 375px) and (-webkit-min-device-pixel-ratio: 2) and (max-device-height: 667px) {

    .hero-section {
        height: auto;
        min-height: 380px;
        margin-top: 58px;
    }

    .mt-350px {
        margin-top: 190px;
    }

    .hero-title {
        font-size: 17px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .gallery-card {
        height: 160px;
    }

    .hero-with-cta {
        min-height: 350px;
    }

    .hero-with-cta .cta-card {
        margin-top: 240px;
        padding: 18px !important;
    }

    .hero-with-cta .cta-card h2 {
        font-size: 18px;
    }

    .before-after-slider {
        height: 200px;
    }

    .events-image-wrapper {
        height: 210px;
    }

    .trust-heading {
        font-size: 18px;
    }

    .testimonials-heading {
        font-size: 18px;
    }

    .footer-top {
        padding: 20px 14px 14px;
    }
}


/* ============================================================
   2. iPHONE 12 PRO  —  390 × 844
   ============================================================ */
@media only screen and (min-device-width: 390px) and (max-device-width: 390px) and (-webkit-min-device-pixel-ratio: 3) {

    .hero-section {
        min-height: 400px;
        margin-top: 60px;
    }

    .mt-350px {
        margin-top: 210px;
    }

    .hero-title {
        font-size: 19px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .gallery-card {
        height: 170px;
    }

    .hero-with-cta {
        min-height: 370px;
    }

    .hero-with-cta .cta-card {
        margin-top: 250px;
    }

    .events-image-wrapper {
        height: 230px;
    }

    .before-after-slider {
        height: 210px;
    }

    .treatment-card,
    .treatment-card.weight-loss,
    .treatment-card.sugaring,
    .last-left-right-card {
        height: 210px !important;
    }
}


/* ============================================================
   3. PIXEL 7  —  412 × 915
   ============================================================ */
@media only screen and (min-device-width: 412px) and (max-device-width: 412px) and (-webkit-min-device-pixel-ratio: 2.6) {

    .hero-section {
        min-height: 410px;
        margin-top: 62px;
    }

    .mt-350px {
        margin-top: 215px;
    }

    .hero-title {
        font-size: 20px;
    }

    .gallery-card {
        height: 175px;
    }

    .hero-with-cta {
        min-height: 380px;
    }

    .hero-with-cta .cta-card {
        margin-top: 255px;
    }

    .treatment-card,
    .treatment-card.weight-loss,
    .treatment-card.sugaring,
    .last-left-right-card {
        height: 215px !important;
    }

    .before-after-slider {
        height: 215px;
    }

    .events-image-wrapper {
        height: 240px;
    }
}


/* ============================================================
   4. iPHONE 14 PRO MAX  —  430 × 932
   ============================================================ */
@media only screen and (min-device-width: 430px) and (max-device-width: 430px) and (-webkit-min-device-pixel-ratio: 3) {

    .hero-section {
        min-height: 420px;
        margin-top: 64px;
    }

    .mt-350px {
        margin-top: 220px;
    }

    .hero-title {
        font-size: 21px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .gallery-card {
        height: 185px;
    }

    .hero-with-cta {
        min-height: 390px;
    }

    .hero-with-cta .cta-card {
        margin-top: 260px;
        padding: 22px !important;
    }

    .treatment-card,
    .treatment-card.weight-loss,
    .treatment-card.sugaring,
    .last-left-right-card {
        height: 220px !important;
    }

    .before-after-slider {
        height: 220px;
    }

    .events-image-wrapper {
        height: 250px;
    }

    .trust-heading {
        font-size: 22px;
    }
}


/* ============================================================
   5. SAMSUNG GALAXY S8+  —  360 × 740
   ============================================================ */
@media only screen and (min-device-width: 360px) and (max-device-width: 360px) and (-webkit-min-device-pixel-ratio: 4) {

    .hero-section {
        min-height: 370px;
        margin-top: 58px;
    }

    .mt-350px {
        margin-top: 195px;
    }

    .hero-title {
        font-size: 18px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .gallery-card {
        height: 165px;
    }

    .hero-with-cta {
        min-height: 360px;
    }

    .hero-with-cta .cta-card {
        margin-top: 245px;
        padding: 18px !important;
    }

    .treatment-card,
    .treatment-card.weight-loss,
    .treatment-card.sugaring,
    .last-left-right-card {
        height: 205px !important;
    }

    .before-after-slider {
        height: 205px;
    }

    .events-image-wrapper {
        height: 220px;
    }

    .trust-heading {
        font-size: 19px;
    }

    .testimonials-heading {
        font-size: 19px;
    }

    .btn-primary-custom,
    .book-btn {
        font-size: 13px;
        padding: 7px 14px;
    }
}


/* ============================================================
   6. iPAD MINI  —  768 × 1024
   ============================================================ */
@media only screen and (min-device-width: 768px) and (max-device-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {

    .hero-section {
        height: 520px;
        margin-top: 80px;
    }

    .mt-350px {
        margin-top: 280px;
    }

    /* Navbar — iPad Mini shows hamburger */
    .navbar {
        min-height: 68px !important;
        padding: 8px 0 !important;
    }

    .navbar-brand .logo-circle {
        width: 48px !important;
        height: 48px !important;
    }

    .navbar-collapse {
        padding: 16px 24px 22px !important;
    }

    .navbar-nav .nav-link {
        font-size: 15px !important;
        padding: 11px 14px !important;
    }

    .navbar .btn-primary-custom.book-btn,
    .navbar .btn-signin {
        font-size: 14px !important;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .gallery-card {
        height: 280px;
    }

    /* CTA hero */
    .hero-with-cta {
        min-height: 600px;
    }

    .hero-with-cta .cta-card {
        position: relative;
        margin-top: 360px;
        max-width: 100%;
    }

    /* Treatments */
    .treatments-section {
        padding-top: 60px !important;
        border-radius: 40px;
    }

    .treatment-card,
    .treatment-card.sugaring {
        height: 260px !important;
    }

    .treatment-card.weight-loss,
    .last-left-right-card {
        height: 320px !important;
    }

    .mt--94px {
        margin-top: -60px !important;
    }

    .treatment-overlay h4 {
        font-size: 22px;
    }

    /* Featured */
    .featured-card img {
        height: 160px;
        margin-left: 10px;
    }

    /* Before/After */
    .before-after-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .before-after-slider {
        height: 240px;
    }

    /* Events */
    .events-content {
        width: 55%;
        padding: 40px 28px 40px 40px;
    }

    .events-heading {
        font-size: 34px;
    }

    .events-description {
        font-size: 14px;
    }

    .events-image-wrapper {
        width: 72%;
    }

    /* Trust */
    .trust-section {
        border-radius: 40px;
        padding: 50px 0;
    }

    .trust-heading {
        font-size: 30px;
    }

    /* Reviews */
    .review-slider-container {
        padding: 20px 40px;
    }

    /* Testimonials */
    .testimonials-heading {
        font-size: 30px;
    }

    /* Footer */
    .footer-top {
        padding: 36px 32px 24px;
        flex-wrap: wrap;
        gap: 18px;
    }

    .footer-spacer {
        display: none;
    }

    .footer-actions {
        width: 100%;
        gap: 16px;
    }

    /* bg-light-pink */
    .bg-light-pink {
        border-radius: 36px;
    }
}


/* ============================================================
   7. iPAD PRO  —  1024 × 1366
   ============================================================ */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {

    .hero-section {
        height: 600px;
        margin-top: 90px;
    }

    .mt-350px {
        margin-top: 320px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .gallery-card {
        height: 360px;
    }

    .hero-with-cta {
        min-height: 750px;
    }

    .hero-with-cta .cta-card {
        margin-top: 280px;
        max-width: 560px;
    }

    .treatment-card {
        height: 300px !important;
    }

    .treatment-card.weight-loss,
    .last-left-right-card {
        height: 380px !important;
    }

    .treatment-card.sugaring {
        height: 270px !important;
    }

    .mt--94px {
        margin-top: -80px !important;
    }

    .before-after-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .before-after-slider {
        height: 260px;
    }

    .events-content {
        width: 42%;
    }

    .events-heading {
        font-size: 48px;
    }

    .trust-heading {
        font-size: 38px;
    }

    .testimonials-heading {
        font-size: 38px;
    }

    .featured-card img {
        height: 180px;
    }

    /* Footer */
    .footer-top {
        padding: 40px 50px 28px;
    }

    .footer-divider {
        margin: 0 50px;
    }

    .footer-bottom {
        padding: 16px 50px 22px;
    }
}


/* ============================================================
   8. SURFACE DUO  —  540 × 720
   ============================================================ */
@media only screen and (min-device-width: 540px) and (max-device-width: 540px) {

    .hero-section {
        height: auto;
        min-height: 450px;
        margin-top: 68px;
    }

    .mt-350px {
        margin-top: 240px;
    }

    .hero-title {
        font-size: 22px;
    }

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

    .gallery-card {
        height: 220px;
    }

    .hero-with-cta {
        min-height: 500px;
    }

    .hero-with-cta .cta-card {
        margin-top: 300px;
        max-width: 100%;
        padding: 24px !important;
    }

    .hero-with-cta .cta-card h2 {
        font-size: 22px;
    }

    .treatment-card,
    .treatment-card.sugaring {
        height: 230px !important;
    }

    .treatment-card.weight-loss,
    .last-left-right-card {
        height: 290px !important;
    }

    .mt--94px {
        margin-top: -50px !important;
    }

    .before-after-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .before-after-slider {
        height: 220px;
    }

    .events-container {
        flex-direction: column;
        min-height: auto;
    }

    .events-content {
        position: relative;
        width: 100%;
        padding: 40px 28px;
    }

    .events-heading {
        font-size: 30px;
    }

    .events-image-wrapper {
        position: relative;
        width: 100%;
        height: 280px;
    }

    .trust-heading {
        font-size: 24px;
    }

    .testimonials-heading {
        font-size: 24px;
    }

    .featured-card .row {
        flex-direction: row;
    }

    .featured-card img {
        height: 160px;
        margin-left: 10px;
    }

    .bg-light-pink {
        border-radius: 30px;
    }
}


/* ============================================================
   9. GALAXY Z FOLD 5 — FOLDED  —  344 × 882
   ============================================================ */
@media only screen and (min-device-width: 344px) and (max-device-width: 344px) {

    .hero-section {
        min-height: 360px;
        margin-top: 56px;
    }

    .mt-350px {
        margin-top: 185px;
    }

    .hero-title {
        font-size: 16px;
        line-height: 1.35;
    }

    .hero-subtitle {
        font-size: 12px;
    }

    .gallery-card {
        height: 155px;
    }

    .hero-with-cta {
        min-height: 340px;
    }

    .hero-with-cta .cta-card {
        margin-top: 230px;
        padding: 16px !important;
    }

    .hero-with-cta .cta-card h2 {
        font-size: 17px;
    }

    .hero-with-cta .cta-card p {
        font-size: 12px;
    }

    .treatment-card,
    .treatment-card.weight-loss,
    .treatment-card.sugaring,
    .last-left-right-card {
        height: 195px !important;
    }

    .mt--94px {
        margin-top: 0 !important;
    }

    .treatment-overlay h4 {
        font-size: 14px;
    }

    .before-after-slider {
        height: 195px;
    }

    .events-image-wrapper {
        height: 200px;
    }

    .events-heading {
        font-size: 24px;
    }

    .trust-heading {
        font-size: 17px;
    }

    .testimonials-heading {
        font-size: 17px;
    }

    .btn-primary-custom,
    .book-btn {
        font-size: 12px;
        padding: 6px 12px;
    }

    .footer-top {
        padding: 18px 12px 12px;
    }

    .footer-nav-head,
    .footer-nav-sub {
        font-size: 12px;
    }

    .footer-copy {
        font-size: 10px;
    }
}

/* Galaxy Z Fold 5 — UNFOLDED  —  882 × 1080 */
@media only screen and (min-device-width: 882px) and (max-device-width: 882px) {

    .hero-section {
        height: 520px;
        margin-top: 80px;
    }

    .mt-350px {
        margin-top: 280px;
    }

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

    .gallery-card {
        height: 290px;
    }

    .hero-with-cta {
        min-height: 620px;
    }

    .hero-with-cta .cta-card {
        margin-top: 370px;
        max-width: 100%;
    }

    .treatment-card {
        height: 270px !important;
    }

    .treatment-card.weight-loss,
    .last-left-right-card {
        height: 340px !important;
    }

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

    .before-after-slider {
        height: 245px;
    }

    .events-content {
        width: 50%;
    }

    .events-heading {
        font-size: 36px;
    }

    .trust-heading {
        font-size: 32px;
    }

    .testimonials-heading {
        font-size: 32px;
    }
}


/* ============================================================
   10. NEST HUB  —  1024 × 600  (landscape, no touch)
   ============================================================ */
@media only screen and (min-width: 1024px) and (max-width: 1024px) and (max-height: 600px) {

    .hero-section {
        height: 380px;
        margin-top: 0;
    }

    .mt-350px {
        margin-top: 180px;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    /* Reduced heights because screen is short */
    .gallery-card {
        height: 200px;
    }

    .hero-with-cta {
        min-height: 400px;
    }

    .hero-with-cta .cta-card {
        margin-top: 160px;
        max-width: 480px;
        padding: 24px !important;
    }

    .treatment-card {
        height: 200px !important;
    }

    .treatment-card.weight-loss,
    .last-left-right-card {
        height: 260px !important;
    }

    .treatment-card.sugaring {
        height: 190px !important;
    }

    .mt--94px {
        margin-top: -60px !important;
    }

    .before-after-slider {
        height: 180px;
    }

    /* Events — keep side by side but compress */
    .events-container {
        min-height: 400px;
    }

    .events-content {
        width: 42%;
        padding: 40px 32px 40px 50px;
    }

    .events-heading {
        font-size: 36px;
    }

    .events-description {
        font-size: 14px;
    }

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

    .trust-heading {
        font-size: 28px;
    }

    .testimonials-heading {
        font-size: 28px;
    }

    /* Footer compress */
    .footer-top {
        padding: 24px 40px 16px;
    }

    .footer-bottom {
        padding: 12px 40px 16px;
    }
}


/* ============================================================
   11. NEST HUB MAX  —  1280 × 800
   ============================================================ */
@media only screen and (min-width: 1280px) and (max-width: 1280px) and (max-height: 800px) {

    .hero-section {
        height: 500px;
        margin-top: 0;
    }

    .mt-350px {
        margin-top: 260px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .gallery-card {
        height: 280px;
    }

    .hero-with-cta {
        min-height: 550px;
    }

    .hero-with-cta .cta-card {
        margin-top: 220px;
        max-width: 560px;
    }

    .treatment-card {
        height: 270px !important;
    }

    .treatment-card.weight-loss,
    .last-left-right-card {
        height: 340px !important;
    }

    .treatment-card.sugaring {
        height: 240px !important;
    }

    .mt--94px {
        margin-top: -80px !important;
    }

    .before-after-slider {
        height: 240px;
    }

    .events-container {
        min-height: 480px;
    }

    .events-content {
        width: 42%;
        padding: 60px 50px 60px 70px;
    }

    .events-heading {
        font-size: 46px;
    }

    .trust-section {
        padding: 60px 0;
    }

    .trust-heading {
        font-size: 36px;
    }

    .testimonials-heading {
        font-size: 36px;
    }
}


/* ============================================================
   12. ASUS ZENBOOK FOLD — UNFOLDED  —  1920 × 1280
   ============================================================ */


/* Asus Zenbook Fold — FOLDED / HALF  —  853 × 1280 */
@media only screen and (min-width: 853px) and (max-width: 853px) {

    .hero-section {
        height: 560px;
        margin-top: 82px;
    }

    .mt-350px {
        margin-top: 300px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .gallery-card {
        height: 310px;
    }

    .hero-with-cta {
        min-height: 680px;
    }

    .hero-with-cta .cta-card {
        margin-top: 400px;
        max-width: 100%;
        padding: 30px !important;
    }

    .treatment-card {
        height: 280px !important;
    }

    .treatment-card.weight-loss,
    .last-left-right-card {
        height: 360px !important;
    }

    .treatment-card.sugaring {
        height: 255px !important;
    }

    .mt--94px {
        margin-top: -80px !important;
    }

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

    .before-after-slider {
        height: 250px;
    }

    .events-content {
        width: 50%;
        padding: 50px 32px 50px 50px;
    }

    .events-heading {
        font-size: 40px;
    }

    .trust-heading {
        font-size: 34px;
    }

    .testimonials-heading {
        font-size: 34px;
    }
}


/* ============================================================
   13. SAMSUNG S20 ULTRA  —  412 × 915
       (same viewport as Pixel 7, slightly denser DPR)
   ============================================================ */
@media only screen and (min-device-width: 412px) and (max-device-width: 412px) and (-webkit-min-device-pixel-ratio: 3.5) {

    /* Inherits global 430px mobile base, tiny tweaks */
    .hero-section {
        min-height: 415px;
        margin-top: 62px;
    }

    .mt-350px {
        margin-top: 218px;
    }

    .hero-title {
        font-size: 20px;
    }

    .gallery-card {
        height: 178px;
    }

    .treatment-card,
    .treatment-card.weight-loss,
    .treatment-card.sugaring,
    .last-left-right-card {
        height: 215px !important;
    }

    .before-after-slider {
        height: 215px;
    }

    .events-image-wrapper {
        height: 240px;
    }

    .trust-heading {
        font-size: 20px;
    }

    .testimonials-heading {
        font-size: 20px;
    }
}


/* ============================================================
   14. SURFACE PRO 7  —  912 × 1368
   ============================================================ */
@media only screen and (min-device-width: 912px) and (max-device-width: 912px) and (-webkit-min-device-pixel-ratio: 2) {

    .hero-section {
        height: 560px;
        margin-top: 84px;
    }

    /* Navbar — Surface Pro 7 shows hamburger at 912px */
    .navbar {
        min-height: 72px !important;
    }

    .navbar-brand .logo-circle {
        width: 50px !important;
        height: 50px !important;
    }

    .navbar-nav .nav-link {
        font-size: 15px !important;
        padding: 11px 14px !important;
    }

    .navbar-collapse {
        padding: 16px 28px 24px !important;
    }

    .mt-350px {
        margin-top: 300px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .gallery-card {
        height: 330px;
    }

    .hero-with-cta {
        min-height: 700px;
    }

    .hero-with-cta .cta-card {
        margin-top: 360px;
        max-width: 540px;
        padding: 36px !important;
    }

    .treatments-section {
        padding-top: 70px !important;
        border-radius: 50px;
    }

    .treatment-card {
        height: 290px !important;
    }

    .treatment-card.weight-loss,
    .last-left-right-card {
        height: 370px !important;
    }

    .treatment-card.sugaring {
        height: 265px !important;
    }

    .mt--94px {
        margin-top: -80px !important;
    }

    .treatment-overlay h4 {
        font-size: 26px;
    }

    /* Featured */
    .featured-card img {
        height: 180px;
        margin-left: 12px;
    }

    /* Before/After */
    .before-after-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .before-after-slider {
        height: 255px;
    }

    .before-after-title {
        font-size: 34px;
    }

    /* Events */
    .events-container {
        min-height: 600px;
    }

    .events-content {
        width: 44%;
        padding: 60px 40px 60px 60px;
    }

    .events-heading {
        font-size: 48px;
    }

    .events-description {
        font-size: 16px;
    }

    /* Trust */
    .trust-section {
        border-radius: 56px;
        padding: 70px 0;
    }

    .trust-heading {
        font-size: 36px;
    }

    /* Testimonials */
    .testimonials-section {
        border-radius: 50px;
    }

    .testimonials-heading {
        font-size: 36px;
    }

    /* Reviews */
    .review-slider-container {
        padding: 24px 48px;
    }

    /* Footer */
    .footer-top {
        padding: 40px 48px 26px;
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-spacer {
        display: none;
    }

    .footer-actions {
        width: 100%;
        gap: 18px;
    }

    .footer-divider {
        margin: 0 48px;
    }

    .footer-bottom {
        padding: 16px 48px 22px;
    }

    .bg-light-pink {
        border-radius: 40px;
    }
}


/* ============================================================
   15. GENERAL TABLET RANGE  —  540px – 767px
       (catches Surface Duo + any mid-size tablets not above)
   ============================================================ */
@media (min-width: 541px) and (max-width: 767px) {

    .hero-section {
        height: auto;
        min-height: 440px;
        margin-top: 70px;
    }

    .mt-350px {
        margin-top: 240px;
    }

    .hero-title {
        font-size: 22px;
    }

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

    .gallery-card {
        height: 220px;
    }

    .hero-with-cta {
        min-height: 500px;
    }

    .hero-with-cta .cta-card {
        position: relative;
        margin-top: 300px;
        max-width: 100%;
        padding: 26px !important;
    }

    .treatment-card,
    .treatment-card.sugaring {
        height: 230px !important;
    }

    .treatment-card.weight-loss,
    .last-left-right-card {
        height: 295px !important;
    }

    .mt--94px {
        margin-top: -50px !important;
    }

    .treatment-overlay h4 {
        font-size: 20px;
    }

    .before-after-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .before-after-slider {
        height: 220px;
    }

    .events-container {
        flex-direction: column;
        min-height: auto;
    }

    .events-content {
        position: relative;
        width: 100%;
        padding: 36px 24px;
    }

    .events-heading {
        font-size: 28px;
    }

    .events-image-wrapper {
        position: relative;
        width: 100%;
        height: 260px;
    }

    .trust-heading {
        font-size: 26px;
    }

    .testimonials-heading {
        font-size: 26px;
    }

    .featured-card img {
        height: 150px;
        margin-left: 8px;
    }

    .bg-light-pink {
        border-radius: 30px;
    }
}


/* ============================================================
   16. GENERAL LARGE DESKTOP  —  1400px+
       (catches Nest Hub Max wide and Zenbook in between)
   ============================================================ */
@media (min-width: 1400px) and (max-width: 1919px) {

    /* Navbar — full desktop, no hamburger */
    .navbar {
        min-height: 80px !important;
    }

    .navbar-brand .logo-circle {
        width: 60px !important;
        height: 60px !important;
    }

    .navbar-nav .nav-link {
        font-size: 16px !important;
        padding: 0.5rem 1rem !important;
    }

    .navbar .btn-primary-custom.book-btn {
        font-size: 16px !important;
        padding: 10px 22px !important;
    }

    .navbar .btn-signin {
        font-size: 15px !important;
    }

    .hero-section {
        height: 720px;
    }

    .mt-350px {
        margin-top: 380px;
    }

    .hero-title {
        font-size: 50px;
    }

    .hero-subtitle {
        font-size: 30px;
    }

    .gallery-card {
        height: 480px;
    }

    .hero-with-cta {
        min-height: 920px;
    }

    .hero-with-cta .cta-card {
        margin-top: 320px;
        max-width: 680px;
    }

    .treatment-card {
        height: 370px !important;
    }

    .treatment-card.weight-loss,
    .last-left-right-card {
        height: 480px !important;
    }

    .treatment-card.sugaring {
        height: 330px !important;
    }

    .mt--94px {
        margin-top: -120px !important;
    }

    .treatment-overlay h4 {
        font-size: 34px;
    }

    .before-after-slider {
        height: 310px;
    }

    .before-after-title {
        font-size: 46px;
    }

    .events-container {
        min-height: 800px;
    }

    .events-heading {
        font-size: 68px;
    }

    .events-description {
        font-size: 20px;
    }

    .trust-heading {
        font-size: 50px;
    }

    .testimonials-heading {
        font-size: 50px;
    }

    .featured-card img {
        height: 240px;
    }

    .footer-top {
        padding: 50px 80px 36px;
    }

    .footer-divider {
        margin: 0 80px;
    }

    .footer-bottom {
        padding: 18px 80px 26px;
    }
}


/* ============================================================
   17. LANDSCAPE PHONES  —  height ≤ 430px, width > 600px
       (iPhone landscape, Pixel landscape etc.)
   ============================================================ */
@media (max-height: 430px) and (min-width: 600px) and (orientation: landscape) {

    .hero-section {
        height: auto;
        min-height: 320px;
        margin-top: 56px;
    }

    .mt-350px {
        margin-top: 140px;
    }

    .hero-title {
        font-size: 20px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .hero-with-cta {
        min-height: 360px;
    }

    .hero-with-cta .cta-card {
        margin-top: 200px;
        padding: 18px !important;
        max-width: 50%;
    }

    .gallery-card {
        height: 160px;
    }

    .treatment-card,
    .treatment-card.weight-loss,
    .treatment-card.sugaring,
    .last-left-right-card {
        height: 190px !important;
    }

    .mt--94px {
        margin-top: 0 !important;
    }

    .events-container {
        flex-direction: row;
        min-height: 320px;
    }

    .events-content {
        position: absolute;
        width: 44%;
    }

    .events-image-wrapper {
        position: absolute;
        right: 0;
        width: 70%;
        height: 100%;
    }

    .before-after-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .before-after-slider {
        height: 180px;
    }

    .trust-heading {
        font-size: 22px;
    }

    .testimonials-heading {
        font-size: 22px;
    }
}


/* ============================================================
   18. ACCESSIBILITY — Reduced Motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {

    .logo-track,
    .treatment-card,
    .gallery-card,
    .featured-card,
    .review-card,
    .testimonial-card,
    .t-card,
    .book-btn {
        transition: none !important;
        animation: none !important;
    }
}

/* Always-visible buttons - desktop par normal size */
@media (min-width: 992px) {
    .navbar-always-btns {
        display: none !important;
        /* desktop par collapse ke andar wale show honge */
    }
}

/* Mobile: dropdown right-aligned, burger se flush */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: absolute !important;
        top: 100% !important;
        right: 0 !important;
        left: auto !important;
        /* width: 200px !important; */
        margin-top: 4px !important;
        padding: 10px 14px 14px !important;
        border-radius: 12px !important;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10) !important;
        background: #fff !important;
        border-top: none !important;
    }

    .navbar .container-xxl {
        position: relative;
    }

    .navbar-nav {
        gap: 0 !important;
        margin-bottom: 0 !important;
    }

    .navbar-nav .nav-link {
        font-size: 15px !important;
        padding: 7px 8px !important;
        font-weight: 600 !important;
    }

    /* Collapse ke andar buttons hide - bahar wale hain */
    .navbar-collapse .d-flex {
        display: none !important;
    }

    /* Always-visible buttons mobile par */
    .navbar-always-btns {
        display: flex !important;
    }
}

/* Small phones - buttons aur chhote */
@media (max-width: 430px) {
    .navbar-always-btns .btn-signin {
        font-size: 11px !important;
        padding: 4px 10px !important;
    }

    .navbar-always-btns .book-btn {
        font-size: 11px !important;
        padding: 4px 10px !important;
    }
}