@charset "UTF-8";

/* =========================================================
   1. ROOT VARIABLES
========================================================= */
:root {
    --primary: #ee9021;
    --primary-hover: #d97d14;
    --dark: #333333;
    --light: #fafafc;
    --white: #ffffff;

    --bg-main: #f3f3f1;
    --bg-soft: #f9f9f9;
    --bg-hero: #efefec;
    --bg-awards-start: #e8e5dc;
    --bg-awards-end: #f4f1ea;

    --text-muted: #666666;
    --text-soft: #808080;
    --border-light: #e9e9e9;
    --border-soft: #ecebe6;
    --border-warm: #f0ece7;

    --font-body: Montserrat, sans-serif;
    --font-heading: Butler, serif;

    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-pill: 999px;

    --shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 10px 35px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 16px 45px rgba(0, 0, 0, 0.1);

    --transition: 0.3s ease;
}

/* =========================================================
   2. GLOBAL / RESET
========================================================= */
body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--white);
    color: var(--dark);
}

img {
    max-width: 100%;
    display: block;
}

a {
    transition: var(--transition);
}

section {
    position: relative;
}

.text-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.15;
}

.text-body {
    font-family: var(--font-body);
    color: var(--dark);
    line-height: 1.6;
}

/* =========================================================
   3. COMMON TITLES / BUTTONS
========================================================= */
.section-title,
.additional-services-title,
.gallery-main-title,
.find-us-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.15;
    font-family: var(--font-heading);
}

.book-btn,
.why-book-btn,
.service-card-btn,
.book-btn2,
.tab-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    transition: var(--transition);
    font-family: var(--font-body);
}

.book-btn:hover,
.why-book-btn:hover,
.service-card-btn:hover,
.book-btn2:hover,
.tab-book-btn:hover {
    background: var(--primary-hover);
    color: var(--light);
}

/* =========================================================
   4. NAVBAR
========================================================= */
.custom-navbar {
    background-color: #f3f3f3;
    border-top: 1px solid #e5d9d9;
    padding: 14px 0;
}

.navbar-brand img {
    height: 82px;
    width: auto;
}

.custom-navbar .navbar-nav {
    gap: 46px;
}

.custom-navbar .nav-link {
    color: var(--dark);
    font-size: 18px;
    font-weight: 700;
    padding: 0;
    white-space: nowrap;
    font-family: var(--font-body);
}

.custom-navbar .nav-link:hover {
    color: var(--primary);
}

.navbar-toggler {
    border: none;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* =========================================================
   5. HERO BANNER
========================================================= */
.hero-banner {
    position: relative;
    min-height: 790px;
    display: flex;
    align-items: center;
    background: var(--bg-hero);
    overflow: hidden;
    border-top: 1px solid #f4dede;
}

.hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../assets/images/website-banner.jpg") no-repeat right center;
    background-size: cover;
    z-index: 1;
}

.hero-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(250, 250, 252, 0.78) 0%,
        rgba(250, 250, 252, 0.55) 28%,
        rgba(250, 250, 252, 0.18) 52%,
        rgba(250, 250, 252, 0.03) 72%,
        rgba(250, 250, 252, 0) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 690px;
    padding: 34px 34px 30px;
    margin: 40px 0 40px 40px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 28px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-content::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.28) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    pointer-events: none;
}

.hero-content > * {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(238, 144, 33, 0.10);
    color: var(--primary);
    border: 1px solid rgba(238, 144, 33, 0.20);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 45px;
    line-height: 1.08;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
    letter-spacing: -1px;
    font-family: var(--font-heading);
}

.book-btn {
    min-width: 220px;
    height: 64px;
    padding: 0 30px;
    border-radius: 40px;
    background: var(--primary);
    color: var(--light);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 26px;
    box-shadow: 0 10px 25px rgba(238, 144, 33, 0.28);
}

.hero-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.hero-list li {
    position: relative;
    padding-left: 34px;
    font-size: 17px;
    line-height: 1.55;
    color: var(--dark);
    font-weight: 500;
    margin-bottom: 16px;
    font-family: var(--font-body);
}

.hero-list li:last-child {
    margin-bottom: 0;
}

.hero-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(238, 144, 33, 0.14);
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-list li strong {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
}

/* =========================================================
   6. FLOATING CONTACT
========================================================= */
.floating-contact {
    position: fixed;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-contact a {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 22px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    transition: 0.3s ease;
}

.floating-contact a:hover {
    transform: scale(1.05);
    color: #fff;
}

.whatsapp-btn {
    background: #25d366;
    color: #fff;
}

.call-btn {
    background: var(--primary);
    color: var(--light);
}

.calendar-btn {
    background: var(--dark);
    color: var(--light);
}

/* =========================================================
   7. AWARDS + OFFERS TABLE
========================================================= */
.new-lp-awards-block {
    background: linear-gradient(180deg, var(--bg-awards-start) 0%, var(--bg-awards-end) 100%);
    padding: 60px 0;
}

.new-lp-awards-box-logos-slider .award-slide-item {
    background: #f5f5f5;
    border-radius: var(--radius-md);
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

.new-lp-awards-box-logos-slider .award-slide-item img {
    max-width: 100%;
    max-height: 160px;
    object-fit: contain;
}

.section-title {
    margin-bottom: 18px !important;
}

.iv-table-wrap {
    margin-top: 10px;
}

.iv-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
    border: 1px solid var(--primary);
}

.iv-table thead {
    background: var(--primary);
}

.iv-table thead th {
    color: var(--light);
    font-size: 16px;
    font-weight: 500;
    padding: 12px 16px;
    text-align: center;
    border: none;
    font-family: var(--font-body);
}

.iv-table thead th:first-child {
    width: 46%;
    text-align: left;
}

.iv-table thead th:nth-child(2),
.iv-table thead th:nth-child(3),
.iv-table thead th:last-child {
    width: 18%;
}

.iv-table tbody tr:nth-child(odd) {
    background: #f7f7f7;
}

.iv-table tbody tr:nth-child(even) {
    background: #fdf4ea;
}

.iv-table tbody td {
    padding: 12px 14px;
    vertical-align: middle;
    border: none;
    font-size: 16px;
    color: var(--dark);
    font-family: var(--font-body);
}

.iv-table tbody td:first-child {
    text-align: left;
}

.iv-table tbody td:nth-child(2),
.iv-table tbody td:nth-child(3),
.iv-table tbody td:nth-child(4) {
    text-align: center;
}

.service-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 3px;
}

.service-sub {
    font-size: 15px;
    color: #4f4f4f;
    line-height: 1.3;
    margin-top: 0;
}

.iv-table td.original {
    font-size: 17px;
    font-weight: 400;
    color: var(--text-soft);
    text-decoration: line-through;
    white-space: nowrap;
}

.iv-table td.offer {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.book-btn2 {
    min-width: 126px;
    height: 40px;
    padding: 0 18px;
    border-radius: var(--radius-pill);
    background: var(--primary);
    color: var(--light);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.note {
    font-size: 14px;
    color: var(--dark);
    margin-top: 10px;
}

/* =========================================================
   8. TREATMENT TABS
========================================================= */
.treatment-tabs-section {
    background: var(--bg-main);
    padding: 60px 0;
}

.treatment-tabs-wrap {
    align-items: flex-start;
}

.treatment-tab-list {
    padding-right: 0;
}

.tab-btn {
    width: 100%;
    text-align: left;
    background: var(--white);
    border: 1px solid var(--primary);
    color: var(--dark);
    font-size: 15px;
    font-weight: 700;
    padding: 10px 12px;
    line-height: 1.35;
    cursor: pointer;
    margin-bottom: 3px;
    min-height: 44px;
    font-family: var(--font-body);
    transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary);
    color: var(--light);
}

.treatment-tab-content-wrap {
    border: 1px solid var(--primary);
    background: var(--white);
    padding: 18px 16px 20px;
    min-height: 100%;
}

.tab-content-box {
    display: none;
}

.tab-content-box.active {
    display: block;
}

.tab-content-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.tab-content-box h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin: 12px 0 8px;
}

.tab-content-box p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--dark);
    margin-bottom: 10px;
}

.tab-content-box ul {
    padding-left: 18px;
    margin-bottom: 12px;
}

.tab-content-box ul li {
    font-size: 14px;
    line-height: 1.6;
    color: var(--dark);
    margin-bottom: 5px;
    font-weight: 500;
}

.book-now-wrap {
    text-align: center;
    margin-top: 18px;
}

.tab-book-btn {
    min-width: 150px;
    height: 40px;
    background: var(--primary);
    color: var(--light);
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    padding: 0 20px;
}

/* =========================================================
   9. WHY SKINLAB - PREMIUM REDESIGN
========================================================= */
/* =========================================================
   WHY CHOOSE SKINLAB - SAME TO SAME PREMIUM STYLE
========================================================= */
.why-skinlab-premium-section {
    position: relative;
    padding: 80px 0 90px;
    background:
        radial-gradient(circle at left bottom, rgba(238, 144, 33, 0.12) 0%, rgba(238, 144, 33, 0) 28%),
        radial-gradient(circle at right center, rgba(238, 144, 33, 0.09) 0%, rgba(238, 144, 33, 0) 26%),
        linear-gradient(180deg, #f4f1ef 0%, #f2efec 100%);
    overflow: hidden;
}

.why-skinlab-premium-section::before {
    content: "";
    position: absolute;
    left: -120px;
    bottom: -60px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(238, 144, 33, 0.15) 0%, rgba(238, 144, 33, 0.02) 45%, transparent 70%);
    filter: blur(18px);
    pointer-events: none;
}

.why-skinlab-premium-section::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -40px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(238, 144, 33, 0.10) 0%, rgba(238, 144, 33, 0.02) 45%, transparent 70%);
    filter: blur(18px);
    pointer-events: none;
}

.why-skinlab-premium-wrap {
    position: relative;
    z-index: 2;
}

.why-skinlab-heading {
    margin-bottom: 34px;
}

.why-skinlab-heading h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 54px;
    font-weight: 700;
    line-height: 1.05;
    color: #2b2523;
    text-transform: uppercase;
    letter-spacing: -0.8px;
}

.why-skinlab-layout {
    display: grid;
    grid-template-columns: 1.02fr 1.15fr;
    gap: 20px;
    align-items: start;
}

.why-skinlab-left-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.why-skinlab-right-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-skinlab-main-image-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.68) 100%);
    border: 1px solid rgba(233, 213, 194, 0.95);
    border-radius: 24px;
    padding: 12px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255,255,255,0.8);
    overflow: hidden;
}

.why-skinlab-main-image-card img {
    width: 100%;
    height: 405px;
    object-fit: cover;
    border-radius: 18px;
}

.why-skinlab-right-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 11px;
}

.why-premium-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-height: 164px;
    padding: 18px 18px 16px;
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.94) 0%, rgba(250,243,238,0.96) 65%, rgba(247,236,227,0.98) 100%);
    border: 1px solid #eedfce;
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255,255,255,0.95);
    overflow: hidden;
}

.why-premium-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.30) 0%, rgba(255,255,255,0.05) 55%, rgba(238,144,33,0.03) 100%);
    pointer-events: none;
}

.why-premium-card::after {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 3px;
    border-radius: 30px;
    background: linear-gradient(180deg, #f2a33a 0%, #e3891e 100%);
}

.why-premium-card:hover {
    transform: translateY(-3px);
    transition: 0.3s ease;
    box-shadow:
        0 16px 32px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255,255,255,0.95);
}

.why-card-icon,
.why-card-text {
    position: relative;
    z-index: 2;
}

.why-card-icon {
    width: 58px;
    min-width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b1721d;
    font-size: 32px;
    line-height: 1;
    background: transparent;
    margin-top: 2px;
}

.why-card-text h3 {
    margin: 0 0 8px;
    font-size: 19px;
    line-height: 1.28;
    font-weight: 700;
    color: #3a2f2b;
    font-family: var(--font-body);
}

.why-card-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: #6a625d;
    font-family: var(--font-body);
}

.why-premium-card-horizontal {
    min-height: 128px;
    padding: 16px 18px;
    gap: 12px;
}

.why-premium-card-horizontal .why-card-icon {
    width: 54px;
    min-width: 54px;
    height: 54px;
    font-size: 29px;
}

.why-premium-card-horizontal .why-card-text h3 {
    font-size: 17px;
    line-height: 1.28;
    margin-bottom: 6px;
}

.why-premium-card-horizontal .why-card-text p {
    font-size: 13px;
    line-height: 1.5;
}

.why-skinlab-bottom-cta {
    margin-top: 30px;
}

.why-skinlab-premium-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 340px;
    height: 66px;
    padding: 0 42px;
    border-radius: 999px;
    text-decoration: none;
    background: linear-gradient(90deg, #e78b1c 0%, #f5b13d 100%);
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow:
        0 14px 28px rgba(231, 139, 28, 0.28),
        inset 0 2px 0 rgba(255,255,255,0.32);
    letter-spacing: 0.4px;
}

.why-skinlab-premium-btn:hover {
    color: #fff;
    background: linear-gradient(90deg, #da7e10 0%, #ef9b21 100%);
    transform: translateY(-2px);
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1399.98px) {
    .why-skinlab-heading h2 {
        font-size: 48px;
    }

    .why-card-text h3 {
        font-size: 18px;
    }

    .why-skinlab-main-image-card img {
        height: 380px;
    }
}

@media (max-width: 1199.98px) {
    .why-skinlab-layout {
        grid-template-columns: 1fr;
    }

    .why-skinlab-left-grid {
        order: 2;
    }

    .why-skinlab-right-side {
        order: 1;
    }

    .why-skinlab-main-image-card img {
        height: 420px;
    }

    .why-skinlab-heading h2 {
        font-size: 42px;
    }
}

@media (max-width: 991.98px) {
    .why-skinlab-premium-section {
        padding: 60px 0 70px;
    }

    .why-skinlab-heading {
        margin-bottom: 26px;
    }

    .why-skinlab-heading h2 {
        font-size: 36px;
    }

    .why-skinlab-left-grid {
        gap: 14px;
    }

    .why-premium-card {
        min-height: 150px;
        padding: 16px;
        border-radius: 18px;
    }

    .why-card-icon {
        width: 52px;
        min-width: 52px;
        height: 52px;
        font-size: 28px;
    }

    .why-card-text h3 {
        font-size: 17px;
    }

    .why-card-text p {
        font-size: 13px;
    }

    .why-skinlab-main-image-card img {
        height: 360px;
    }

    .why-skinlab-premium-btn {
        min-width: 280px;
        height: 60px;
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
    .why-skinlab-heading h2 {
        font-size: 30px;
    }

    .why-skinlab-left-grid,
    .why-skinlab-right-mini-grid {
        grid-template-columns: 1fr;
    }

    .why-premium-card,
    .why-premium-card-horizontal {
        min-height: auto;
    }

    .why-skinlab-main-image-card {
        padding: 10px;
        border-radius: 18px;
    }

    .why-skinlab-main-image-card img {
        height: 270px;
        border-radius: 14px;
    }

    .why-card-text h3 {
        font-size: 16px;
    }

    .why-card-text p {
        font-size: 12.8px;
    }

    .why-skinlab-premium-btn {
        min-width: 100%;
        width: 100%;
        height: 54px;
        font-size: 18px;
    }
}

@media (max-width: 575.98px) {
    .why-skinlab-premium-section {
        padding: 50px 0 60px;
    }

    .why-skinlab-heading h2 {
        font-size: 26px;
    }

    .why-premium-card {
        padding: 15px 14px;
        gap: 12px;
    }

    .why-card-icon {
        width: 46px;
        min-width: 46px;
        height: 46px;
        font-size: 24px;
    }

    .why-card-text h3 {
        font-size: 15px;
    }

    .why-card-text p {
        font-size: 12.5px;
    }

    .why-skinlab-main-image-card img {
        height: 230px;
    }

    .why-skinlab-premium-btn {
        height: 50px;
        font-size: 16px;
    }
}

/* =========================================================
   10. GALLERY
========================================================= */
.lp-gallery-block {
    background: var(--bg-main);
    padding: 70px 0 55px;
}

.gallery-carousel .gallery-card {
    background: var(--white);
    overflow: hidden;
    width: 100%;
    border: 1px solid var(--border-light);
}

.gallery-carousel .gallery-card a {
    display: block;
    text-decoration: none;
}

.gallery-carousel .gallery-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.gallery-carousel .owl-item {
    display: flex;
}

.gallery-carousel .gallery-card {
    height: 100%;
}

.gallery-carousel .owl-nav {
    display: none !important;
}

.gallery-carousel .owl-dots {
    margin-top: 18px;
    text-align: center;
}

.gallery-carousel .owl-dots .owl-dot span {
    width: 9px;
    height: 9px;
    margin: 0 4px;
    background: #d2d2d2;
    border-radius: 50%;
    display: block;
    transition: var(--transition);
}

.gallery-carousel .owl-dots .owl-dot.active span {
    background: var(--primary);
    width: 16px;
    height: 16px;
    margin-top: -3px;
}

.our-gallery-section {
    background: var(--bg-main);
    padding: 65px 0 55px;
}

/* =========================================================
   11. ADDITIONAL SERVICES
========================================================= */
.additional-services-section {
    background: var(--bg-main);
    padding: 65px 0 70px;
}

.additional-services-title {
    margin-bottom: 48px;
}

.service-card-box {
    background: var(--bg-soft);
    border: 3px solid var(--primary);
    border-radius: var(--radius-xl);
    padding: 28px 26px 30px;
    min-height: 318px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.service-card-box h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 18px;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.service-card-box p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--dark);
    margin-bottom: 22px;
    font-family: var(--font-body);
}

.service-card-btn {
    min-width: 225px;
    height: 54px;
    padding: 0 26px;
    border-radius: var(--radius-pill);
    background: var(--primary);
    color: var(--light);
    font-size: 16px;
    font-weight: 700;
    margin: 0 auto;
}

/* =========================================================
   12. FIND US
========================================================= */
.find-us-section {
    background: var(--bg-main);
    padding: 65px 0 70px;
}

.find-us-title {
    margin-bottom: 48px;
}

.find-card {
    background: var(--bg-soft);
    border: 2px solid var(--primary);
    min-height: 415px;
    padding: 26px 28px;
}

.find-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 18px;
    line-height: 1.2;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.find-card p {
    font-size: 17px;
    line-height: 1.45;
    color: var(--dark);
    margin-bottom: 18px;
    font-family: var(--font-body);
}

.find-card a {
    color: var(--dark);
    text-decoration: underline;
}

.map-box {
    overflow: hidden;
    background: #ddd;
}

.map-box iframe {
    width: 100%;
    height: 414px;
    display: block;
}

/* =========================================================
   13. FOOTER
========================================================= */
.footer-section {
    background: var(--dark);
    padding: 20px 0;
}

.footer-text {
    color: var(--light);
    font-size: 15px;
    margin: 0;
    font-family: var(--font-body);
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-left: 10px;
    border-radius: 50%;
    background: #222;
    color: var(--primary);
    font-size: 18px;
}

.social-icons a:hover {
    background: var(--primary);
    color: var(--light);
}

/* =========================================================
   14. RESPONSIVE - LARGE
========================================================= */
@media (max-width: 1399.98px) {
    .hero-content {
        max-width: 650px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-list li {
        font-size: 16px;
    }

    .hero-list li strong {
        font-size: 17px;
    }

    .section-title,
    .additional-services-title,
    .gallery-main-title,
    .find-us-title {
        font-size: 38px;
    }

    .gallery-carousel .gallery-card img {
        height: 280px;
    }

    .service-card-box {
        min-height: 300px;
        padding: 24px 22px 26px;
    }

    .service-card-box h3 {
        font-size: 20px;
    }

    .service-card-box p {
        font-size: 15px;
    }

    .find-card h3 {
        font-size: 20px;
    }

    .find-card p {
        font-size: 16px;
    }

    .why-skin-head h2 {
        font-size: 46px;
    }

    .why-card-content h3 {
        font-size: 20px;
    }

    .why-skin-image-card img {
        min-height: 600px;
    }
}

/* =========================================================
   15. RESPONSIVE - TABLET
========================================================= */
@media (max-width: 1199px) {
    .hero-banner {
        min-height: 700px;
    }

    .hero-banner::before {
        background-position: 68% center;
    }

    .hero-content {
        max-width: 620px;
        padding: 28px 26px 24px;
        margin-left: 20px;
    }

    .hero-title {
        font-size: 38px;
    }

    .book-btn {
        min-width: 210px;
        height: 58px;
        font-size: 17px;
    }

    .hero-list li {
        font-size: 15px;
    }

    .floating-contact a {
        width: 68px;
        height: 68px;
        font-size: 28px;
    }

    .why-skin-section {
        padding: 80px 0;
    }

    .why-skin-head h2 {
        font-size: 42px;
    }

    .why-skin-card-grid {
        gap: 16px;
    }

    .why-point-card {
        padding: 20px 18px;
        min-height: 145px;
    }

    .why-card-icon {
        width: 54px;
        height: 54px;
        min-width: 54px;
        border-radius: 16px;
    }

    .why-card-icon i {
        font-size: 25px;
    }

    .why-card-content h3 {
        font-size: 18px;
    }

    .why-card-content p {
        font-size: 14px;
    }

    .why-skin-image-card img {
        min-height: 560px;
    }
}

@media (max-width: 991.98px) {
    .navbar-brand img {
        height: 64px;
    }

    .custom-navbar .navbar-nav {
        gap: 18px;
        padding-top: 20px;
    }

    .custom-navbar .nav-link {
        font-size: 17px;
    }

    .hero-banner {
        min-height: auto;
        padding: 0 0 40px;
        display: block;
    }

    .hero-banner::before {
        inset: 0 auto auto 0;
        width: 100%;
        height: 360px;
        background: url("../assets/images/website-banner-mbl.jpg") no-repeat center top;
        background-size: cover;
    }

    .hero-banner::after {
        display: none;
    }

    .hero-content {
        max-width: 100%;
        margin: 350px 12px 0;
        padding: 24px 18px 22px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.15;
        text-align: center;
        margin-bottom: 18px;
    }

    .hero-badge {
        margin-bottom: 14px;
    }

    .book-btn {
        min-width: 190px;
        height: 54px;
        font-size: 16px;
        display: flex;
        margin: 0 auto 20px;
    }

    .hero-list li {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 12px;
        padding-left: 30px;
    }

    .hero-list li strong {
        font-size: 16px;
    }

    .floating-contact {
        display: none;
    }

    .section-title,
    .additional-services-title,
    .gallery-main-title,
    .find-us-title {
        font-size: 32px;
    }

    .iv-table thead th {
        font-size: 15px;
        padding: 12px 10px;
    }

    .iv-table tbody td {
        padding: 12px 10px;
    }

    .service-title {
        font-size: 16px;
    }

    .service-sub {
        font-size: 14px;
    }

    .iv-table td.original,
    .iv-table td.offer {
        font-size: 16px;
    }

    .book-btn2 {
        min-width: 110px;
        height: 38px;
        font-size: 13px;
    }

    .tab-btn {
        font-size: 12px;
        padding: 9px 10px;
    }

    .why-skin-section,
    .lp-gallery-block,
    .additional-services-section,
    .find-us-section {
        padding-top: 55px;
        padding-bottom: 60px;
    }

    .why-skin-head {
        margin-bottom: 30px;
    }

    .why-skin-head h2 {
        font-size: 36px;
    }

    .why-skin-head p {
        font-size: 15px;
    }

    .why-skin-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .why-point-card {
        min-height: auto;
    }

    .why-bottom-bar {
        justify-content: center;
        align-items: center;
    }

    .why-trust-pill {
        border-radius: 22px;
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .why-book-btn {
        min-width: 210px;
        height: 56px;
        font-size: 15px;
    }

    .why-skin-right {
        margin-top: 6px;
    }

    .why-skin-image-card img {
        min-height: 420px;
    }

    .gallery-carousel .gallery-card img {
        height: 250px;
    }

    .service-card-box {
        min-height: 280px;
    }

    .service-card-btn {
        min-width: 200px;
        height: 50px;
        font-size: 15px;
    }

    .find-card {
        min-height: auto;
        padding: 22px;
    }

    .map-box iframe {
        height: 240px;
    }
}

/* =========================================================
   16. RESPONSIVE - MOBILE
========================================================= */
@media (max-width: 767.98px) {
    .floating-contact {
        position: fixed;
        left: 50%;
        right: auto;
        top: auto;
        bottom: 72px;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 10px;
        background: rgba(255, 255, 255, 0.96);
        padding: 8px 10px;
        border-radius: 999px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
        display: flex;
    }

    .floating-contact a {
        width: 46px;
        height: 46px;
        font-size: 18px;
        flex: 0 0 46px;
    }

    .footer-section {
        padding-bottom: 80px;
    }

    .iv-table,
    .iv-table thead,
    .iv-table tbody,
    .iv-table th,
    .iv-table td,
    .iv-table tr {
        display: block;
        width: 100%;
    }

    .iv-table {
        border: none;
    }

    .iv-table thead {
        display: none;
    }

    .iv-table tbody tr {
        background: #fff !important;
        border: 1px solid var(--primary);
        margin-bottom: 14px;
        padding: 14px;
    }

    .iv-table tbody td {
        text-align: left !important;
        padding: 8px 0;
    }

    .iv-table tbody td::before {
        content: attr(data-label);
        display: block;
        font-size: 12px;
        font-weight: 700;
        color: #777;
        margin-bottom: 4px;
        text-transform: uppercase;
    }

    .book-btn2 {
        min-width: 130px;
    }

    .service-title {
        font-size: 17px;
    }

    .service-sub {
        font-size: 14px;
    }

    .treatment-tabs-wrap {
        flex-direction: column;
    }

    .treatment-tab-list {
        display: none;
    }

    .treatment-tab-content-wrap {
        border: none;
        padding: 0;
    }

    .tab-content-box {
        display: block;
        border: 1px solid var(--primary);
        margin-bottom: 10px;
        padding: 12px;
    }

    .tab-content-box h3 {
        margin: 0;
        font-size: 16px;
        cursor: pointer;
        position: relative;
        padding-right: 25px;
    }

    .tab-content-box h3::after {
        content: "+";
        position: absolute;
        right: 0;
        top: 0;
        font-size: 18px;
        color: var(--primary);
    }

    .tab-content-box.active h3::after {
        content: "−";
    }

    .tab-content-box p,
    .tab-content-box ul,
    .tab-content-box h5,
    .book-now-wrap {
        display: none;
        margin-top: 10px;
    }

    .tab-content-box.active p,
    .tab-content-box.active ul,
    .tab-content-box.active h5,
    .tab-content-box.active .book-now-wrap {
        display: block;
    }

    .why-skin-section {
        padding: 55px 0;
    }

    .why-skin-head h2 {
        font-size: 30px;
    }

    .why-skin-head p {
        font-size: 14px;
        line-height: 1.6;
    }

    .why-skin-card-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .why-point-card {
        padding: 18px 16px;
        border-radius: 20px;
        gap: 14px;
    }

    .why-card-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 14px;
    }

    .why-card-icon i {
        font-size: 22px;
    }

    .why-card-content h3 {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .why-card-content p {
        font-size: 13px;
        line-height: 1.55;
    }

    .why-trust-pill {
        padding: 12px 14px;
        font-size: 13px;
        border-radius: 18px;
    }

    .why-book-btn {
        width: 100%;
        min-width: 100%;
        height: 52px;
        font-size: 15px;
        margin-top: 0;
    }

    .why-skin-image-card {
        border-radius: 24px;
        padding: 12px;
    }

    .why-skin-image-card img {
        min-height: 300px;
        border-radius: 18px;
    }

    .section-title,
    .additional-services-title,
    .gallery-main-title,
    .find-us-title {
        font-size: 28px;
    }

    .gallery-carousel .gallery-card img {
        height: 220px;
    }

    .gallery-carousel .owl-dots {
        margin-top: 16px;
    }

    .our-gallery-section {
        padding: 50px 0 40px;
    }

    .service-card-box {
        min-height: auto;
        border-radius: 22px;
        padding: 22px 18px 24px;
    }

    .service-card-box h3 {
        font-size: 18px;
    }

    .service-card-box p {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .service-card-btn {
        min-width: 180px;
        height: 46px;
        font-size: 14px;
    }

    .find-card {
        padding: 20px 18px;
    }

    .find-card h3 {
        font-size: 18px;
    }

    .find-card p {
        font-size: 15px;
    }

    .map-box iframe {
        height: 220px;
    }

    .social-icons {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .social-icons a {
        margin-left: 0;
    }
}

@media (max-width: 575.98px) {
    .hero-banner::before {
        height: 270px;
        background: url("../assets/images/website-banner-mbl.jpg") no-repeat center top;
        background-size: cover;
    }

    .hero-content {
        margin: 255px 10px 0;
        padding: 18px 14px 16px;
        border-radius: 18px;
    }

    .hero-title {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 7px 12px;
        margin-bottom: 12px;
    }

    .book-btn {
        min-width: 150px;
        height: 42px;
        font-size: 14px;
        border-radius: 30px;
        margin-bottom: 16px;
        padding: 0 18px;
    }

    .hero-list li {
        font-size: 13px;
        line-height: 1.45;
        margin-bottom: 10px;
        padding-left: 26px;
    }

    .hero-list li::before {
        width: 18px;
        height: 18px;
        font-size: 11px;
        top: 2px;
    }

    .hero-list li strong {
        font-size: 14px;
    }

    .why-skin-head h2 {
        font-size: 26px;
    }

    .why-point-card {
        padding: 16px 14px;
    }

    .why-card-content h3 {
        font-size: 16px;
    }

    .why-card-content p {
        font-size: 12.8px;
    }

    .why-skin-image-card img {
        min-height: 260px;
    }
}

/* Modal Styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed position */
  z-index: 1; /* Ensure modal is above other content */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Dark background overlay */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  transition: opacity 0.3s ease; /* Smooth transition */
  z-index: 999;
}
.btn.btn-primary {
    background: #ee9021;
    color: #fff;
    border: #ee9021;
}

.modal.show {
  display: flex; /* Show the modal */
}

.modal-content {
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  width: 100%;
  max-width: 450px; /* Set max width for the modal */
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2); /* Soft shadow */
  position: relative;
  transform: scale(1.05); /* Zoom effect */
  animation: modal-animation 0.5s ease-out; /* Smooth pop-in animation */
}

/* Modal Animation */
@keyframes modal-animation {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  color: #333;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px; /* Space between form elements */
}

input[type="text"],
input[type="email"] {
  width: 100%;
  padding: 12px;
  margin: 0;
  border-radius: 8px;
  border: 2px solid #ccc;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus {
  border-color: #5b9bd5; /* Blue color on focus */
  outline: none;
}

input::placeholder {
  font-size: 14px;
  color: #888;
}

button {
  width: 100%;
  padding: 15px;
  background-color: #3498db;
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

button:hover {
  background-color: #2980b9;
  transform: translateY(-2px);
}

button:active {
  background-color: #2471a3;
}

.modal-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 30px;
  color: #e74c3c;
  cursor: pointer;
}

.modal-close-btn:hover {
  color: #c0392b;
}