/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Unna:wght@400;700&display=swap');

/* Custom Font */
@font-face {
    font-family: 'Rukila';
    src: url('../fonts/Rukila-Regular.woff2') format('woff2'),
        url('../fonts/Rukila-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-heading: 'Unna', serif;
    --font-body: 'Rukila', serif;
}

:root {

    /* Brand Colors */
    --primary-gold: #B08F58;
    --primary-gold-dark: #AA6D2B;
    --primary-beige: #9B8C74;
    --secondary-beige: #C7BBA2;
    --secondary-light: #E7E0CF;
    --charcoal: #352E25;

    /* Backgrounds */
    --bg-light: #E7E0CF;
    --bg-lighter: #F8F6F1;
    --bg-dark: #352E25;
    --bg-darker: #2B241D;

    /* Text */
    --text-dark: #352E25;
    --text-medium: #9B8C74;
    --text-light: #C7BBA2;
    --text-white: #FFFFFF;

    /* Accent */
    --accent: #AA6D2B;

    /* Layout */
    --container-width: 1280px;

    /* Typography */
    --font-heading: 'Unna', serif;
    --font-body: 'Rukila', sans-serif;
}

@font-face {
    font-family: 'Rukila';
    src: url('assets/fonts/Rukila-Regular.woff2') format('woff2'),
        url('assets/fonts/Rukila-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-heading: 'Unna', serif;
    --font-body: 'Rukila', sans-serif;
}

body {
    font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

* {
    box-sizing: border-box;
}



p {
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container {
    /*max-width: var(--container-width);*/
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

img {
    max-width: 100%;
    display: block;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-gold-dark);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-label .line {
    width: 40px;
    height: 1px;
    background-color: var(--primary-gold);
}

.section-label.justify-center {
    justify-content: center;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 48px;
    margin-bottom: 24px;
}

.section-desc {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.bg-dark {
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.bg-dark .section-title {
    color: var(--text-white);
}

.bg-dark .section-desc {
    color: rgba(255, 255, 255, 0.6);
}

/* ================= HEADER ================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
    padding: 12px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, .05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;

    max-width: 1400px;

}

.logo img {
    height: 219px;
    width: auto;
    /*margin-left: -40px;*/
}

/* ================= NAV ================= */

.main-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.main-nav>a,
.nav-link {
    text-decoration: none;
    color: #000000;
    font-size: 15px;
    font-weight: 500;
}

.main-nav>a:hover,
.nav-link:hover {
    color: #c59d5f;
}

/* ================= BUTTON ================= */

.btn-primary {
    background: #c59d5f;
    color: #fff;
    padding: 12px 24px;
    border-radius: 40px;
    text-decoration: none;
    border: none;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #444;
    text-decoration: none;
}

.phone-link img {
    width: 18px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* ================= MEGA MENU ================= */

.mega-dropdown {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mega-menu {
    position: absolute;
    top: 230%;
    left: 50%;
    transform: translateX(-30%);
    width: 900px;
    background: #fff;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, .12);
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

.mega-left {
    width: 320px;
    background: #fafafa;
    border-right: 1px solid #ececec;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 30px;
    text-decoration: none;
    color: #555;
    font-size: 14px;
    border-bottom: 1px solid #ececec;
}

.service-item.active,
.service-item:hover {
    color: #c59d5f;
    border-left: 4px solid #c59d5f;
    background: #fff;
}

.mega-right {
    flex: 1;
    padding: 35px 45px;
}

.service-panel {
    display: none !important;
}

.service-panel.active {
    display: block !important;
}

.service-panel h5 {
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 25px;
    color: #222;
}

.service-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 60px;
}

.service-panel li {
    position: relative;
    padding-left: 18px;
}

.service-panel li:before {
    content: '';
    width: 8px;
    height: 8px;
    border: 2px solid #d98989;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

.service-panel a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
}

.service-panel a:hover {
    color: #c59d5f;
}

/* ================= MOBILE ================= */

@media(max-width:991px) {

    .menu-toggle {
        display: block;
        margin-left: -40px;
    }

    .phone-link {
        display: none;
    }

    .main-nav {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);

        background: #fff;

        flex-direction: column;
        align-items: flex-start;

        overflow-y: auto;

        padding: 20px;
        transition: .3s;
    }

    .main-nav.active {
        left: 0;
    }

    .mega-dropdown {
        width: 100%;
    }

    .mega-menu {
        position: static;
        transform: none;

        width: 100%;
        box-shadow: none;

        display: none;

        opacity: 1;
        visibility: visible;

        flex-direction: column;
    }

    .mega-dropdown.active .mega-menu {
        display: flex;
    }

    .mega-left {
        width: 100%;
        border-right: none;
    }

    .mega-right {
        padding: 20px;
    }

    .service-panel ul {
        grid-template-columns: 1fr;
    }

    .logo img {
        height: 80px;
        margin-left: 0px;
    }

    .btn-primary {
        padding: 10px 18px;
    }
}

/* Prevent content overlap */
body {
    padding-top: 80px;
}


/* ===== Hero Section ===== */

.hero-section {
    padding: 70px 0 40px;
    background: linear-gradient(135deg, #faf7f4 0%, #f7f2ec 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 64px;
}

/* Content */
.hero-content {
    flex: 1;
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(212, 169, 97, 0.3);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 14px;
    color: #b8924a;
    margin-bottom: 24px;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background-color: #b8924a;
    border-radius: 50%;
}

/* Title */
.hero-title {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #111;
}

/* Subtitle */
.hero-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    max-width: 450px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* Features */
.hero-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-item .icon-wrapper {
    width: 32px;
    height: 32px;
    background: rgba(184, 146, 74, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item span {
    font-size: 14px;
    color: #555;
}

/* Image */
.hero-image-wrapper {
    flex: 1;
    position: relative;
}

.hero-image-inner {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    height: 500px;
}

.hero-img {
    width: 100%;
    display: block;
}

/* Overlay */
.hero-img-overlay {
    position: absolute;
    inset: 0;
    /*background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);*/
}

/* Badge */
.satisfaction-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: #fff;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 12px;
    align-items: center;
}

.satisfaction-badge .stars {
    color: #f5b301;
}

.satisfaction-badge strong {
    font-size: 14px;
}

.satisfaction-badge span {
    font-size: 12px;
    /*color: #777;*/
}

/* Years Badge */
.years-badge {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 70px;
    height: 70px;
    background: #b8924a;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.years-badge strong {
    font-size: 18px;
}

.years-badge span {
    font-size: 11px;
}

/* ========================= */
/* 📱 Tablet */
/* ========================= */

@media (max-width: 992px) {

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
        flex-wrap: nowrap;
    }

    .feature-item span {
        font-size: 12px;
        color: #555;
    }

    .satisfaction-badge {
        left: 10px;
        bottom: 10px;
    }
}

/* ========================= */
/* 📱 Mobile */
/* ========================= */

@media (max-width: 576px) {

    .hero-image-inner {
        height: auto;
    }
    
    .stars {
    display: flex;
    gap: 4px;
    margin-bottom: 10px !important;
}

    .hero-section {
        padding: 40px 0 60px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 14px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center !important;
        display: block;
    }

    .years-badge {
        width: 60px;
        height: 60px;
        top: -15px;
    }

    .satisfaction-badge {
        flex-direction: column;
        text-align: left;
        padding: 12px;
        gap: 0px;
                align-items: flex-start;
    }


    div#where {
        grid-template-columns: 1fr;
    }

    div#our_journey {
        grid-template-columns: 1fr !important;
        margin-top: -150px;
    }

    .cta-strip__inner {
        grid-template-columns: 1fr !important;
    }

    .cta-strip__actions {
        justify-content: left !important;
    }

    .footer-logo {
        width: 160px !important;

    }

    .before-after-grid {
        grid-template-columns: 1fr !important;
    }

    .contact-grid {
        grid-template-columns: 1fr !important;
    }

    .form-row {
        grid-template-columns: 1fr !important;
    }

}

/* ===== Features Banner ===== */

.features-banner {
    background: linear-gradient(90deg, #2a1f14 0%, #3d2e1a 50%, #2a1f14 100%);
    padding: 40px 0;
    color: white;
}

/* Grid Layout */
.features-banner-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 5 items in one row */
    gap: 20px;
    align-items: center;
}

/* Item */
.banner-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Icon */
.icon-box {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(212, 169, 97, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-box img {
    width: 18px;
}

/* Text */
.text-box strong {
    font-size: 14px;
    font-weight: 500;
}

.text-box span {
    font-size: 12px;
    color: #a8906a;
}

/* ========================= */
/* 📱 Tablet */
/* ========================= */
@media (max-width: 992px) {
    .features-banner-inner {
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
    }

    .banner-item {
        flex-direction: column;
    }
}

/* ========================= */
/* 📱 Mobile */
/* ========================= */
@media (max-width: 576px) {
    .features-banner-inner {
        /*grid-template-columns: 1fr;*/
    }
}


/* ===== Our Story ===== */

.our-story-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.story-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Content */
.story-content {
    flex: 1;
    max-width: 552px;
}

.story-desc {
    font-size: 16px;
    color: #000;
    margin-bottom: 28px;
    line-height: 1.7;
}

/* List */
.story-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.story-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--text-medium);
}

.list-icon {
    margin-top: 3px;
    flex-shrink: 0;
}

/* Image */
.story-image-wrapper {
    flex: 1;
    position: relative;
}

.story-image-inner {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(100, 70, 30, 0.15);
    position: relative;
    height: 500px;
}

.story-image-inner::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: rgba(212, 169, 97, 0.08);
    border-radius: 20px;
    z-index: -1;
}

.story-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Badge */
.floating-badge {
    position: absolute;
    top: 30px;
    right: -25px;
    background: rgba(255, 255, 255, 0.95);
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.floating-badge strong {
    font-size: 20px;
    color: var(--primary-gold-dark);
}

.floating-badge span {
    font-size: 13px;
    color: var(--text-light);
}

.link-with-arrow {
    background: #a67c3d;
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    /* clean subtle radius */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover effect */
.link-with-arrow:hover {
    background: #8c652f;
    transform: translateY(-2px);
}

/* ========================= */
/* 📱 Tablet */
/* ========================= */
@media (max-width: 992px) {

    .story-container {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .story-content {
        max-width: 100%;
    }

    .story-list {
        align-items: center;
    }

    .story-list li {
        justify-content: center;
        text-align: left;
    }

    .floating-badge {
        right: 20px;
        top: 20px;
    }
}

/* ========================= */
/* 📱 Mobile */
/* ========================= */
@media (max-width: 576px) {

    .our-story-section {
        padding: 40px 0;
    }

    .story-container {
        gap: 40px;
    }

    .story-desc {
        font-size: 14px;
        text-align: justify;
        margin-bottom: 15px;
    }

    .story-list li {
        font-size: 14px;
    }

    .story-image-inner {
        border-radius: 20px;
        height: auto;
    }

    .story-image-inner::before {
        display: none;
    }

    .floating-badge {
        position: static;
        /* important fix */
        margin-top: 15px;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .floating-badge strong {
        font-size: 18px;
    }
}


/* CSS for section section:Specialists */
.specialists-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.section-header {
    margin-bottom: 40px;
}

.specialists-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.specialist-card {
    background: #fff;
    border-radius: 28px;
    border: 1px solid #e8d9c5;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(100, 70, 30, 0.07);
    transition: transform 0.3s ease;
}

.specialist-card:hover {
    transform: translateY(-10px);
}

.card-img-wrapper {
    position: relative;
    height: 288px;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(42, 31, 20, 0.6) 0%, transparent 50%);
}

.card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(184, 146, 74, 0.69);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 100px;
}

.card-rating {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.card-hover-action {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
}

.specialist-card:hover .card-hover-action {
    opacity: 1;
}

.btn-view-profile {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
    color: #fff;
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 14px;
}

.card-info {
    padding: 20px;
    padding-bottom: 0px;
}

.card-info h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.card-info .role {
    font-size: 14px;
    color: var(--primary-gold-dark);
    margin-bottom: 12px;
}

.card-info .quals {
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 20px;
    min-height: 40px;
}

.stats-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #f0e8dc;
}

.stat-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-col strong {
    font-size: 14px;
    color: var(--primary-gold-dark);
}

.stat-col span {
    font-size: 12px;
    color: #a08060;
}

.stats-row .divider {
    width: 1px;
    height: 24px;
    background-color: #e8d9c5;
}

.profile-link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: var(--primary-gold-dark);
    font-weight: 500;
}

.specialists-banner {
    background: linear-gradient(90deg, #f7f2ec 0%, #faf7f4 100%);
    border: 1px solid #e0c9a8;
    border-radius: 28px;
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.avatars {
    display: flex;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -12px;
    object-fit: cover;
}

.avatar:first-child {
    margin-left: 0;
}

.banner-text strong {
    display: block;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.banner-text p {
    font-size: 14px;
    color: var(--text-light);
}

@media (max-width: 1200px) {
    .specialists-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .specialists-grid {
        grid-template-columns: 1fr;
    }

    .specialists-banner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .banner-content {
        flex-direction: column;
    }
}


/* CSS for section section:Treatments */
.treatments-section {
    padding: 50px 0;
    background-color: var(--bg-lighter);
    padding-bottom: 40px;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.treatment-card {
    background: #fff;
    border-radius: 28px;
    border: 1px solid #e8d9c5;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(100, 70, 30, 0.08);
    display: flex;
    flex-direction: column;
}

.treatment-card .card-img {
    position: relative;
    height: 224px;
}

.treatment-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.treatment-card .card-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(42, 31, 20, 0.6) 0%, transparent 50%);
}

.treatment-card .card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 100px;
}

.card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.icon-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.icon-wrap {
    width: 32px;
    height: 32px;
    background: rgba(184, 146, 74, 0.09);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-title h3 {
    font-size: 20px;
    color: var(--text-dark);
}

.card-content .subtitle {
    font-size: 14px;
    color: var(--primary-gold-dark);
    margin-bottom: 16px;
}

.card-content .desc {
    font-size: 14px;
    color: #000;
    margin-bottom: 24px;
    flex: 1;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.tags span {
    font-size: 12px;
    color: var(--primary-gold-dark);
    background: rgba(184, 146, 74, 0.03);
    border: 1px solid rgba(184, 146, 74, 0.25);
    padding: 4px 10px;
    border-radius: 100px;
}

.explore-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--primary-gold-dark);
    font-weight: 500;
}

.btn-outline {
    background: #a67c3d;
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: var(--text-white);
}

@media (max-width: 1200px) {
    .treatments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .treatments-grid {
        grid-template-columns: 1fr;
    }
}

/*=========================================================
                BEFORE / AFTER RESULTS SECTION
=========================================================*/

.results-section {
    padding: 80px 0;
    background: #f7f3ee;
}

.section-tag {
    display: inline-block;
    padding: 8px 18px;
    background: #f2e7d4;
    color: #b88945;
    border-radius: 50px;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 18px;
}

.section-title {
    font-size: 48px;
    /*font-weight:700;*/
    color: #222;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-title span {
    color: #c89d58;
}

.section-desc {
    max-width: 650px;
    margin: auto;
    color: #666;
    font-size: 17px;
    line-height: 30px;
    /*margin-bottom:60px;*/
}

/*===========================*/

.results-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/*=========================================================
                    LEFT SIDE
=========================================================*/

.slider-container {
    flex: 1;
}

.slider-images {

    position: relative;

    width: 100%;

    height: 560px;

    overflow: hidden;

    border-radius: 24px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);

    cursor: ew-resize;

    background: #eee;

    user-select: none;

    touch-action: none;

}

/* Images */

.img-after,
.img-before {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

}

/* Before Reveal */

.img-before-wrapper {

    position: absolute;

    left: 0;

    top: 0;

    width: 50%;

    height: 100%;

    overflow: hidden;

    z-index: 5;

}

/* Divider */

.slider-handle {

    position: absolute;

    left: 50%;

    top: 0;

    width: 3px;

    height: 100%;

    background: #fff;

    transform: translateX(-50%);

    z-index: 20;

}

/* Handle */

.handle-circle {

    position: absolute;

    top: 75%;

    left: 50%;

    transform: translate(-50%, -50%);

    width: 58px;

    height: 58px;

    border-radius: 50%;

    background: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .25);

    transition: .3s;

}

.slider-images:hover .handle-circle {

    transform: translate(-50%, -50%) scale(1.08);

}

.handle-circle img {

    width: 20px;

}

/* Labels */

.label-before,
.label-after {

    position: absolute;

    bottom: 20px;

    padding: 9px 18px;

    border-radius: 50px;

    color: #fff;

    font-size: 13px;

    font-weight: 600;

    z-index: 30;

}

.label-before {

    left: 20px;

    background: #444;

}

.label-after {

    right: 20px;

    background: #c89d58;

}

/*=========================================================
                    BUTTON
=========================================================*/

.results-btn-wrap {

    text-align: center;

    margin-top: 35px;

}

.results-btn {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 15px 35px;

    border-radius: 60px;

    background: #c89d58;

    color: #fff;

    text-decoration: none;

    font-weight: 600;

    transition: .3s;

}

.results-btn:hover {

    background: #b68740;

    color: #fff;

    transform: translateY(-3px);

}

/*=========================================================
                    SIDEBAR
=========================================================*/

.results-sidebar {

    width: 360px;

}

.case-title {

    color: #c89d58;

    font-size: 13px;

    letter-spacing: 3px;

    font-weight: 600;

    margin-bottom: 20px;

}

.case-item {

    display: flex;

    justify-content: space-between;

    align-items: center;

    background: #fff;

    border-radius: 18px;

    padding: 22px;

    margin-bottom: 15px;

    cursor: pointer;

    transition: .3s;

    border: 1px solid transparent;

}

.case-item:hover {

    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);

}

.case-item.active {

    border-color: #c89d58;

    background: #fcf8f2;

}

.case-item h4 {

    font-size: 18px;

    margin-bottom: 6px;

    color: #222;

}

.case-item span {

    color: #777;

    font-size: 13px;

}

.track-record {

    margin-top: 30px;

    background: #252525;

    color: #fff;

    padding: 30px;

    border-radius: 22px;

}

.track-record h5 {

    color: #c89d58;

    font-size: 22px;

    margin-bottom: 20px;

}

.stat-box {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 15px 0;

    border-bottom: 1px solid rgba(255, 255, 255, .08);

}

.stat-box:last-child {

    border: none;

}

.stat-box span {

    color: #ddd;

}

.stat-box strong {

    color: #c89d58;

    font-size: 24px;

}

/*=========================================================
                RESPONSIVE
=========================================================*/

@media(max-width:1200px) {

    .results-sidebar {

        width: 320px;

    }

    .slider-images {

        height: 500px;

    }

}

@media(max-width:991px) {

    .results-content {

        flex-direction: column;

    }

    .results-sidebar {

        width: 100%;

    }

    .slider-images {

        height: 430px;

    }

}

@media(max-width:767px) {

    .results-section {

        padding: 50px 0;

    }

    .section-title {

        font-size: 32px;

    }

    .section-desc {

        font-size: 15px;

        line-height: 26px;

        margin-bottom: 35px;

    }

    .slider-images {

        height: 280px;

        border-radius: 18px;

    }

    .handle-circle {

        width: 46px;

        height: 46px;

    }

    .handle-circle img {

        width: 16px;

    }

    .label-before,
    .label-after {

        font-size: 11px;

        padding: 6px 14px;

    }

    .results-btn {

        width: 100%;

        justify-content: center;

    }

    .case-item {

        padding: 18px;

    }

    .case-item h4 {

        font-size: 16px;

    }

    .track-record {

        padding: 22px;

    }

}

.testimonials-section {
    padding: 112px 0;
    background-color: #1a1a1a;
    color: #fff;
}

.testimonial-slider {
    max-width: 896px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 56px;
    backdrop-filter: blur(4px);
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

/* Slider fix */
.slides {
    position: relative;
}

.testimonial-card {
    display: none;
}

.testimonial-card.active {
    display: block;
}

.client-thumb {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px;
    border-radius: 16px;
}

/* Text */
.quote {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.client-info {
    display: flex;
    gap: 16px;
    align-items: center;
}

.client-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
}

/* Controls */
.slider-controls {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    width: 32px;
    background: gold;
    border-radius: 20px;
}

.arrows {
    display: flex;
    gap: 12px;
}

.arrow-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.arrow-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Bottom */
.other-clients {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
    max-width: 896px;
    margin-left: auto;
    margin-right: auto;
}


.client-thumb {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px;
    border-radius: 16px;
}

/* Responsive */
@media(max-width:768px) {
    .testimonial-slider {
        padding: 30px 20px;
    }

    .quote {
        font-size: 18px;
    }

    .other-clients {
        grid-template-columns: repeat(2, 1fr);
    }
}

.space-section {
    padding: 50px 0;
    background-color: var(--bg-dark);
    color: #fff;
}

.space-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
}

.space-controls {
    display: flex;
    gap: 12px;
}

/* 🔥 Slider Wrapper */
.space-grid-wrapper {
    overflow: hidden;
}

/* 🔥 Slider */
.space-grid {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

/* Card */
.space-item {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    height: 320px;
    min-width: calc(25% - 18px);
    flex-shrink: 0;
}

.space-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.space-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0.1),
            transparent);
}

.space-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 100px;
}

.space-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

.space-info h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 5px;
}

.space-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Arrows */
.arrow-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
    .space-item {
        min-width: calc(50% - 12px);
    }
}

@media (max-width: 576px) {
    .space-item {
        min-width: 100%;
    }
}


/* CSS for section section:Booking */
.booking-section {
    padding: 50px 0;
    background-color: var(--bg-lighter);
    color: #fff;
}

.booking-container {
    max-width: 800px;
}

.booking-header {
    margin-bottom: 30px;
}

.booking-form-wrapper {
    background: rgb(255 255 255);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 56px 40px;
    backdrop-filter: blur(4px);
    padding-bottom: 20px;
}

.form-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgb(0 0 0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(0 0 0);
    font-size: 14px;
}

.step.active .step-circle {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.step span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.step.active span {
    color: var(--primary-gold);
}

.step-line {
    flex: 1;
    height: 1px;
    background: rgb(0 0 0);
    margin: 0 16px;
    margin-bottom: 20px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    color: rgb(0 0 0);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper input {
    width: 100%;
    background: #ffffff;
    border: 1px solid rgb(0 0 0);
    padding: 12px 16px;
    border-radius: 8px;
    color: #000000;
    font-size: 16px;
    font-family: var(--font-body);
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.input-wrapper img {
    position: absolute;
    right: 16px;
}

.form-actions {
    margin-top: 16px;
    display: flex;
    justify-content: center;
}

.confidential-note {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.2);
    margin-top: 32px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

#prevBtn {
    display: none;
    margin-right: 10px;
}

select {
    width: 100%;
    background: transparent;
    border: 1px solid rgb(0 0 0);
    padding: 12px 16px;
    border-radius: 8px;
    color: #000000;
    font-size: 16px;
    appearance: none;
}

button#prevBtn {
    border: 1px solid #aa6d2b;
}

button#prevBtn:hover {
    border: 1px solid #aa6d2b;
    color: #000;
}


textarea {
    width: 100%;
    background: #fff;
    border: 1px solid #222;
    padding: 12px 16px;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-family: var(--font-body);
    resize: none;
}

textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.form-group {
    position: relative;
}

.form-group select {
    background-image: url("/assets/images/arrow-down.svg");
    /* apna icon */
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
}

/* DATE FIX */
input[type="date"] {
    width: 100%;
    background: #fff;
    border: 1px solid #222;
    padding: 12px 16px;
    border-radius: 8px;
    color: #000;
    font-size: 16px;
    color-scheme: light;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: none;
    opacity: 1;
}

/* focus */
select:focus,
input:focus {
    outline: none;
    border-color: var(--primary-gold);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-form-wrapper {
        padding: 32px 20px;
    }
}


/* CTA SECTION */
.cta-section {
    padding: 80px 0 112px;
    background-color: var(--bg-dark);
    color: #fff;
}

/* CONTAINER */
.cta-container {
    display: flex;
    align-items: center;
    /* vertical center fix */
    justify-content: space-between;
    gap: 80px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 72px 64px;
}

/* LEFT CONTENT */
.cta-content {
    flex: 1;
    max-width: 580px;
}

.cta-content .section-title {
    margin-bottom: 20px;
}

.cta-content .section-desc {
    margin-bottom: 32px;
    line-height: 1.7;
}

/* BUTTONS */
.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* RIGHT SIDE */
.cta-info {
    flex: 1;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 64px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

/* ICON */
.info-item .icon {
    min-width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(212, 169, 97, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* TEXT */
.info-item strong {
    display: block;
    font-size: 16px;
    color: #fff;
    margin-bottom: 4px;
}

.info-item span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

.cta-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 52px;
    padding: 0 22px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: #b8924a;
    color: #fff;
    border: none;
}

.btn::hover {
    background-color: var(--bg-dark) !important;
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    background: transparent;
}

.btn img {
    width: 16px;
    height: 16px;
}

.btn-outline-light img {
    margin-right: 6px;
}

@media (max-width: 992px) {
    .cta-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 48px;
        padding: 48px 32px;
    }

    .cta-info {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-left: 0;
        padding-top: 40px;
        width: 100%;
        max-width: 100%;
    }

    .cta-content {
        max-width: 100%;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .cta-container {
        padding: 32px 20px;
        border-radius: 24px;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .info-item {
        align-items: center;
    }

    .info-item .icon {
        width: 40px;
        height: 40px;
    }
}


/* SECTION */
.faq-section {
    padding: 50px 0;
    background-color: var(--bg-light);
}

.faq-container {
    max-width: 800px;
}

/* LIST */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ITEM */
.faq-item {
    background: #fff;
    border: 1px solid #e8d9c5;
    border-radius: 16px;
    padding: 24px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(212, 169, 97, 0.4);
}

.faq-item.active {
    border-color: rgba(212, 169, 97, 0.6);
    box-shadow: 0 6px 20px rgba(184, 146, 74, 0.1);
}

/* QUESTION */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 500;
}

/* ICON */
.faq-icon {
    font-size: 22px;
    color: var(--primary-gold-dark);
    transition: transform 0.3s ease;
}

/* ROTATE ICON */
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* ANSWER ANIMATION */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
}

/* ACTIVE */
.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e8d9c5;
}

/* TEXT */
.faq-answer p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .faq-section {
        padding: 72px 0;
    }

    .faq-item {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 16px;
    }
}

/*==============================
TRUE ARTIS FOOTER
==============================*/

.site-footer {
    background: #0d0906;
    color: #fff;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr .8fr .95fr 1.2fr;
    gap: 45px;
    padding-bottom: 50px;
}

/* BRAND */

.footer-brand {
    max-width: 320px;
}

.footer-brand img {
    width: 245px;
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,.55);
    margin: 0;
}

.footer-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 22px 0 20px;
    color: #c79a45;
}

.footer-divider:before,
.footer-divider:after {
    content: "";
    width: 75px;
    height: 1px;
    background: rgba(199,154,69,.6);
}

.footer-divider span {
    font-size: 17px;
}

/* SOCIAL */

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(199,154,69,.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: .3s;
}

.social-links a:hover {
    background: #c79a45;
    border-color: #c79a45;
    color: #fff;
    transform: translateY(-3px);
}

/* COLUMNS */

.footer-column h4 {
    color: #c79a45;
    font-size: 20px;
    font-weight: 600;
    margin: 2px 0 10px;
}

.footer-title-line {
    width: 50px;
    height: 3px;
    background: #c79a45;
    margin-bottom: 25px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 14px;
}

.footer-column li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.62);
    font-size: 15px;
    text-decoration: none;
    transition: .3s;
}

.footer-column li a i {
    color: #c79a45;
    font-size: 15px;
}

.footer-column li a:hover {
    color: #c79a45;
    padding-left: 4px;
}

/* CONTACT */

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: rgba(199,154,69,.08);
    border: 1px solid rgba(199,154,69,.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c79a45;
    font-size: 17px;
}

.contact-item > div:last-child {
    padding-top: 10px;
}

.contact-item a,
.contact-item p {
    display: block;
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    text-decoration: none;
    margin: 0;
}

.contact-item a:hover {
    color: #c79a45;
}

.contact-item strong {
    display: block;
    color: #fff;
    font-size: 14px;
    margin-bottom: 3px;
}

.contact-item small {
    display: block;
    color: rgba(255,255,255,.38);
    font-size: 11px;
    margin-top: 2px;
}

/* BOTTOM */

.footer-bottom {
    border-top: 1px solid rgba(199,154,69,.18);
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,.38);
    font-size: 13px;
}

.legal-links {
    display: flex;
    gap: 25px;
}

.legal-links a {
    color: rgba(255,255,255,.38);
    font-size: 13px;
    text-decoration: none;
}

.legal-links a:hover {
    color: #c79a45;
}

/* TOP BUTTON */

.footer-top-btn {
    position: absolute;
    right: 25px;
    bottom: 25px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid #c79a45;
    background: #c79a45;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: .3s;
}

.footer-top-btn:hover {
    background: #0d0906;
    color: #c79a45;
}

/*==============================
TABLET
==============================*/

@media(max-width:1100px) {

    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: 35px;
    }

    .footer-brand {
        grid-row: span 2;
    }

    .footer-contact {
        grid-column: 2 / 4;
    }
}

/*==============================
MOBILE
==============================*/

@media(max-width:767px) {

    .site-footer {
        padding: 45px 0 0;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 25px;
        padding-bottom: 35px;
    }

    /* LOGO CENTER */

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
    }

    .footer-brand img {
        width: 190px;
        margin: 0 auto 14px;
    }

    .footer-brand p {
        font-size: 13px;
        line-height: 1.6;
    }

    .footer-divider {
        justify-content: center;
        margin: 18px 0;
    }

    .footer-divider:before,
    .footer-divider:after {
        width: 55px;
    }

    .social-links {
        justify-content: center;
    }

    .social-links a {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    /* QUICK + SERVICES */

    .footer-column {
        width: 100%;
    }

    .footer-column h4 {
        font-size: 17px;
    }

    .footer-title-line {
        width: 40px;
        height: 2px;
        margin-bottom: 18px;
    }

    .footer-column li {
        margin-bottom: 11px;
    }

    .footer-column li a {
        font-size: 13px;
        gap: 7px;
    }

    /* CONTACT FULL ROW */

    .footer-contact {
        grid-column: 1 / -1;
    }

    .contact-item {
        gap: 12px;
        margin-bottom: 15px;
    }

    .contact-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 15px;
    }

    .contact-item a,
    .contact-item p {
        font-size: 13px;
        line-height: 1.5;
    }

    .contact-item strong {
        font-size: 13px;
    }

    /* BOTTOM */

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 18px 0 70px;
        gap: 12px;
    }

    .footer-bottom p {
        font-size: 11px;
    }

    .legal-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .legal-links a {
        font-size: 11px;
    }

    .footer-top-btn {
        width: 45px;
        height: 45px;
        right: 15px;
        bottom: 15px;
        font-size: 15px;
    }
}

/*==============================
SMALL MOBILE
==============================*/

@media(max-width:400px) {

    .footer-grid {
        gap: 28px 18px;
    }

    .footer-brand img {
        width: 175px;
    }

    .footer-column h4 {
        font-size: 16px;
    }

    .footer-column li a {
        font-size: 12px;
    }

    .contact-item a,
    .contact-item p {
        font-size: 12px;
    }
}

.contact-group ul {
    gap: 18px;
}

.contact-group li {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-group li > span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,.45);
    margin: 0;
}

.contact-group li > span i {
    color: var(--primary-gold);
    width: 15px;
    text-align: center;
}

.contact-group li a,
.contact-group li p {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,.65);
    margin: 0;
    text-decoration: none;
}

.contact-group li a i,
.contact-group li p i {
    color: var(--primary-gold);
    width: 16px;
    min-width: 16px;
    margin-top: 4px;
    text-align: center;
}

.contact-group li a:hover {
    color: var(--primary-gold);
}

:root {
    --ivory: #faf6f0;
    --ivory-2: #f3ede2;
    --rose: #ead6c6;
    --rose-soft: #f5e6d8;
    --charcoal: #1a1814;
    --charcoal-2: #2a2620;
    --muted: #6b6259;
    --line: #e4dccf;
    --gold: #b8965a;
    --gold-deep: #8a6e3c;
    --gold-soft: #d4b787;
    --white: #ffffff;

    --radius-sm: 8px;
    --radius: 18px;
    --radius-lg: 28px;

    --shadow-1: 0 1px 2px rgba(26, 24, 20, .04), 0 8px 24px rgba(26, 24, 20, .06);
    --shadow-2: 0 4px 12px rgba(26, 24, 20, .08), 0 24px 60px rgba(26, 24, 20, .10);

    --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
    --sans: 'Manrope', system-ui, -apple-system, sans-serif;
}


/* =============================================================
   PAGE HERO  
   ============================================================= */

.page-hero {
    position: relative;
    /*padding: clamp(80px, 11vw, 150px) 0 clamp(60px, 8vw, 110px);*/

    padding: 60px 0px;

    background:
        radial-gradient(circle at 85% 20%, var(--rose-soft) 0%, transparent 45%),
        radial-gradient(circle at 10% 85%, var(--ivory-2) 0%, transparent 50%),
        var(--ivory);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(184, 150, 90, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184, 150, 90, .06) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    pointer-events: none;
}

.page-hero__inner {
    position: relative;
    max-width: 1100px;
}

.page-hero__title {
    font-size: 50px;
    font-weight: 300;
}

.page-hero__title em {
    font-weight: 400;
}

.page-hero__lead {
    font-size: 1.15rem;
    max-width: 640px;
    color: var(--charcoal-2);
    margin-top: 1.5rem;
}

.page-hero__crumbs {
    display: inline-flex;
    gap: .5rem;
    align-items: center;
    font-size: .8rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.page-hero__crumbs a:hover {
    color: var(--gold-deep);
}

.page-hero__crumbs span {
    color: var(--gold);
}

/* decorative floating tag */
.page-hero__pill {
    position: absolute;
    right: 5%;
    top: 40%;
    display: none;
    padding: 1.2rem 1.6rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-2);
    border: 1px solid var(--line);
    text-align: center;
}

.page-hero__pill strong {
    display: block;
    font-family: var(--serif);
    font-size: 2.2rem;
    color: var(--gold-deep);
}

.page-hero__pill span {
    font-size: .75rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--muted);
}

@media (min-width: 980px) {
    .page-hero__pill {
        display: block;
    }
}


/* =============================================================
   ABOUT PAGE
   ============================================================= */

section.section.section--ivory {
    padding: 70px 0px;
}

.story {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
}

.story__img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: linear-gradient(160deg, var(--rose) 0%, var(--rose-soft) 50%, var(--ivory-2) 100%);
    box-shadow: var(--shadow-2);
}

.story__img::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(184, 150, 90, .25), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, .4), transparent 50%);
}

.story__img-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(26, 24, 20, .85);
    backdrop-filter: blur(10px);
    color: var(--ivory);
    padding: 1.2rem 1.4rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.story__img-badge strong {
    font-family: var(--serif);
    font-size: 2.2rem;
    color: var(--gold-soft);
    display: block;
    line-height: 1;
}

.story__img-badge span {
    font-size: .8rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    opacity: .85;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--sans);
    font-size: .72rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold-deep);
    font-weight: 600;
    padding: .35rem 0;
}

.eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: #b8965a;
}

.story__title {
    font-size: 50px;
    font-weight: 300;
}

.story__title em {
    font-weight: 400;
}

.story__text p {
    font-size: 1.02rem;
    color: var(--charcoal-2);
    margin-bottom: 1.1rem;
}

.story__text strong {
    color: var(--charcoal);
    font-weight: 600;
}

.btn--gold {
    background: var(--charcoal);
    color: var(--ivory);
}

.btn--gold:hover {
    background: var(--gold-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-2);
    color: #fff;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .95rem 1.6rem;
    font-family: var(--sans);
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .04em;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    transition: all .25s ease;
}

/* Values grid */
section.section.values {
    padding: 40px 0px;
}

.values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.value {
    padding: 2rem 1.6rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.value:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-2);
    border-color: var(--gold-soft);
}

.value__num {
    font-family: var(--serif);
    font-size: 2rem;
    color: var(--gold-deep);
    display: block;
    margin-bottom: .5rem;
}

.value h3 {
    font-size: 1.2rem;
    margin-bottom: .4rem;
}

.value p {
    font-size: .92rem;
    margin: 0;
}

/* Timeline / Journey */

section.section.section--cream {
    padding: 40px 0px;
    background: var(--ivory-2);
}

.timeline {
    position: relative;
    margin-top: 3rem;
    padding-left: 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: var(--line);
}

.timeline__item {
    position: relative;
    padding-left: 48px;
    padding-bottom: 2.4rem;
}

.timeline__item::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--ivory);
    border: 2px solid var(--gold);
}

.timeline__year {
    font-family: var(--serif);
    font-size: 1.4rem;
    color: var(--gold-deep);
    display: block;
}

.timeline__title {
    font-size: 1.1rem;
    margin: .2rem 0 .4rem;
}

.timeline__item p {
    margin: 0;
}


/* Stat band */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0;
    border-top: 1px solid rgba(250, 246, 240, .12);
    border-bottom: 1px solid rgba(250, 246, 240, .12);
    background:
        linear-gradient(rgba(26, 24, 20, .6), rgba(26, 24, 20, .6)),
        radial-gradient(circle at 20% 30%, var(--gold-deep) 0%, transparent 60%);
    background-color: var(--charcoal);
}

.stats__item {
    padding: 3.4rem 1.5rem;
    text-align: center;
    border-right: 1px solid rgba(250, 246, 240, .08);
    color: var(--ivory);
}

.stats__item:last-child {
    border-right: 0;
}

.stats__num {
    display: block;
    font-family: var(--serif);
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--gold-soft);
    line-height: 1;
}

.stats__label {
    font-size: .78rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    margin-top: .8rem;
    opacity: .8;
}


/* Team preview */
section.section.team {
    padding: 40px 0px;
}

.team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.team__card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--ivory-2);
    aspect-ratio: 3/4;
}

.team__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(26, 24, 20, .85) 100%);
    z-index: 1;
}

.team__card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--rose-soft), var(--rose), var(--ivory-2));
}

.team__card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(6px);
    padding: .35rem .7rem;
    border-radius: 999px;
    font-size: .7rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold-deep);
    font-weight: 600;
}

.team__card-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 1.4rem;
    color: var(--ivory);
}

.team__card-info h3 {
    color: var(--ivory);
    font-size: 1.3rem;
    margin-bottom: .15rem;
}

.team__card-info span {
    font-size: .82rem;
    opacity: .85;
    letter-spacing: .04em;
}


/* =============================================================
   SERVICES PAGE
   ============================================================= */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.svc-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.svc-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2);
    border-color: var(--gold-soft);
}

.svc-card__media {
    height: 220px;
    background: linear-gradient(135deg, var(--rose-soft), var(--rose));
    position: relative;
    overflow: hidden;
}

.svc-card__media::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, .45), transparent 55%),
        radial-gradient(circle at 75% 70%, rgba(184, 150, 90, .3), transparent 55%);
}

.svc-card__tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(26, 24, 20, .85);
    color: var(--gold-soft);
    padding: .35rem .8rem;
    border-radius: 999px;
    font-size: .68rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 600;
}

.svc-card__icon {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--white);
    display: grid;
    place-items: center;
    font-family: var(--serif);
    font-size: 1.6rem;
    color: var(--gold-deep);
    box-shadow: var(--shadow-1);
}

.svc-card__body {
    padding: 1.8rem;
}

.svc-card__sub {
    font-size: .72rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold-deep);
    font-weight: 600;
    display: block;
    margin-bottom: .5rem;
}

.svc-card__title {
    font-size: 1.45rem;
    margin-bottom: .5rem;
}

.svc-card__body p {
    font-size: .94rem;
    margin-bottom: 1.2rem;
}

.svc-card__pills {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-bottom: 1.4rem;
}

.svc-card__pills span {
    font-size: .74rem;
    padding: .3rem .7rem;
    background: var(--ivory-2);
    border-radius: 999px;
    color: var(--charcoal-2);
}

.svc-card__link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    font-weight: 600;
    color: var(--charcoal);
    padding-bottom: .25rem;
    border-bottom: 1px solid var(--gold);
    transition: gap .25s ease, color .25s ease;
}

.svc-card__link:hover {
    gap: .9rem;
    color: var(--gold-deep);
}

/* Detailed service rows */
.svc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
    padding: clamp(60px, 8vw, 110px) 0;
    border-bottom: 1px solid var(--line);
}

.svc-row:nth-child(even) .svc-row__media {
    order: 2;
}

.svc-row:last-child {
    border-bottom: 0;
}

.svc-row__media {
    border-radius: var(--radius-lg);
    aspect-ratio: 5/4;
    background: linear-gradient(160deg, var(--rose-soft) 0%, var(--rose) 100%);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-2);
}

.svc-row__media::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 25% 30%, rgba(255, 255, 255, .45), transparent 50%),
        radial-gradient(circle at 80% 75%, rgba(184, 150, 90, .35), transparent 55%);
}

.svc-row__media span {
    position: absolute;
    left: 24px;
    bottom: 24px;
    background: rgba(255, 255, 255, .9);
    color: var(--gold-deep);
    font-size: .72rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 600;
    padding: .5rem .9rem;
    border-radius: 999px;
}

.svc-row__title {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 300;
}

.svc-row__title em {
    font-weight: 400;
}

.svc-row__list {
    margin: 1.6rem 0;
    display: grid;
    gap: .8rem;
}

.svc-row__list li {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
    font-size: .96rem;
    color: var(--charcoal-2);
}

.svc-row__list li::before {
    content: '';
    flex: none;
    margin-top: .55rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

/* Process / Approach steps */
.process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
    margin-top: 3rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
}

.process__step {
    padding: 2.2rem 1.8rem;
    border-right: 1px solid var(--line);
    transition: background .25s ease;
}

.process__step:last-child {
    border-right: 0;
}

.process__step:hover {
    background: var(--ivory);
}

.process__num {
    font-family: var(--serif);
    font-size: 2.6rem;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 1rem;
}

.process__step h3 {
    font-size: 1.15rem;
    margin-bottom: .4rem;
}

.process__step p {
    font-size: .9rem;
    margin: 0;
}

/* =============================================================
   CTA STRIP
   ============================================================= */
.cta-strip {
    background-color: var(--bg-dark);
    color: var(--ivory);
    padding: clamp(70px, 9vw, 120px) 0;
    padding: 50px 0px;
}

.cta-strip__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.cta-strip__title {
    color: var(--ivory);
    font-size: clamp(1.8rem, 3.6vw, 3rem);
    font-weight: 300;
}

.cta-strip__title em {
    color: var(--gold-soft);
}

.cta-strip__text p {
    color: rgba(250, 246, 240, .75);
    max-width: 520px;
    font-size: 15px;
}

.cta-strip__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    justify-content: flex-end;
}

.cta-strip .btn--gold {
    background: var(--gold);
    color: var(--charcoal);
}

.cta-strip .btn--gold:hover {
    background: var(--gold-soft);
}

.cta-strip .btn--ghost {
    border-color: rgba(250, 246, 240, .25);
    color: var(--ivory);
}

.cta-strip .btn--ghost:hover {
    border-color: var(--gold);
}

div#jr {
    margin-top: 150px;
}




/* =============================================================
   CONTACT PAGE
   ============================================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}

.contact-form {
    padding: clamp(30px, 4vw, 50px);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-1);
}

.contact-form h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 300;
    margin-bottom: .4rem;
}

.contact-form>p {
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field--full {
    grid-column: 1 / -1;
}

.form-field label {
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold-deep);
    font-weight: 600;
    margin-bottom: .5rem;
}

.form-field input,
.form-field select,
.form-field textarea {
    font-family: var(--sans);
    font-size: 1rem;
    padding: .9rem 1rem;
    border: 1px solid var(--line);
    background: var(--ivory);
    border-radius: var(--radius-sm);
    color: var(--charcoal);
    transition: border-color .2s ease, background .2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
}

.form-field textarea {
    resize: vertical;
    min-height: 130px;
}

.form-consent {
    display: flex;
    gap: .7rem;
    align-items: flex-start;
    font-size: .85rem;
    color: var(--muted);
    margin: 1rem 0 1.5rem;
}

.form-consent input {
    margin-top: 4px;
}

.form-success {
    padding: 1rem 1.2rem;
    background: rgba(184, 150, 90, .12);
    border: 1px solid var(--gold-soft);
    border-radius: var(--radius-sm);
    color: var(--gold-deep);
    font-size: .92rem;
    margin-bottom: 1.5rem;
}

.form-error {
    padding: 1rem 1.2rem;
    background: #fff3f3;
    border: 1px solid #f3c8c8;
    border-radius: var(--radius-sm);
    color: #a23a3a;
    font-size: .92rem;
    margin-bottom: 1.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.info-card {
    padding: 1.6rem 1.4rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    transition: transform .25s ease, border-color .25s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    border-color: var(--gold-soft);
}

.info-card__icon {
    flex: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--ivory-2);
    display: grid;
    place-items: center;
    color: var(--gold-deep);
    font-family: var(--serif);
    font-size: 1.3rem;
}

.info-card strong {
    display: block;
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: .15rem;
}

.info-card p {
    margin: 0;
    font-size: .92rem;
}

.info-card a {
    color: var(--charcoal-2);
}

.info-card a:hover {
    color: var(--gold-deep);
}

/* Locations */
.locations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.location {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}

.location:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-2);
}

.location__media {
    height: 180px;
    background: linear-gradient(160deg, var(--rose-soft) 0%, var(--rose) 100%);
    position: relative;
}

.location__media::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, .4), transparent 55%),
        radial-gradient(circle at 75% 70%, rgba(184, 150, 90, .3), transparent 55%);
}

.location__media span {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: rgba(255, 255, 255, .92);
    padding: .35rem .8rem;
    border-radius: 999px;
    font-size: .7rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gold-deep);
}

.location__body {
    padding: 1.6rem;
}

.location h3 {
    font-size: 1.3rem;
    margin-bottom: .3rem;
}

.location__addr {
    font-size: .92rem;
    color: var(--muted);
    margin-bottom: 1rem;
}

.location__contact {
    font-size: .85rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: .3rem;
}

.location__contact a:hover {
    color: var(--gold-deep);
}


.service-hero {
    position: relative;
    padding: clamp(80px, 11vw, 140px) 0 0;
    background:
        radial-gradient(circle at 85% 20%, var(--rose-soft) 0%, transparent 45%),
        radial-gradient(circle at 10% 85%, var(--ivory-2) 0%, transparent 50%),
        var(--ivory);
    overflow: hidden;
}

.service-hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: end;
    padding-bottom: clamp(60px, 8vw, 100px);
}

.service-hero__title {
    font-size: clamp(2.4rem, 5.5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.05;
}

.service-hero__title em {
    font-weight: 400;
}

.service-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

.service-hero__meta-item span {
    font-size: .7rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold-deep);
    font-weight: 600;
    display: block;
}

.service-hero__meta-item strong {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--charcoal);
    display: block;
    margin-top: .2rem;
}

.service-hero__media {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(160deg, var(--rose) 0%, var(--rose-soft) 50%, var(--ivory-2) 100%);
    box-shadow: var(--shadow-2);
}

.service-hero__media::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .4), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(184, 150, 90, .3), transparent 55%);
}

.service-hero__media span {
    position: absolute;
    top: 24px;
    left: 24px;
    background: rgba(255, 255, 255, .92);
    padding: .5rem 1rem;
    border-radius: 999px;
    font-size: .72rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gold-deep);
}


/* Overview two-col */
.overview {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: start;
}

.overview__side {
    position: sticky;
    top: 100px;
}

.overview__side h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.overview__side p {
    margin: 0;
    font-size: .95rem;
}

.overview__main p {
    font-size: 1.02rem;
    color: var(--charcoal-2);
    margin-bottom: 1.2rem;
}

.section {
    padding: clamp(64px, 9vw, 130px) 0;
}


/* Benefits list */
.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.benefit {
    padding: 1.8rem 1.6rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    position: relative;
    transition: transform .3s ease, box-shadow .3s ease;
}

.benefit:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-1);
}

.benefit__num {
    font-family: var(--serif);
    font-size: 1.4rem;
    color: var(--gold);
    display: block;
    margin-bottom: .8rem;
}

.benefit h3 {
    font-size: 1.1rem;
    margin-bottom: .3rem;
}

.benefit p {
    font-size: .9rem;
    margin: 0;
}



/* Phases */
.phases {
    margin-top: 3rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    overflow: hidden;
}

.phase {
    display: grid;
    grid-template-columns: 100px 1fr 220px;
    gap: 2rem;
    padding: 2rem;
    align-items: center;
    border-bottom: 1px solid var(--line);
}

.phase:last-child {
    border-bottom: 0;
}

.phase__num {
    font-family: var(--serif);
    font-size: 3.2rem;
    color: var(--gold-soft);
    line-height: 1;
}

.phase__body h3 {
    font-size: 1.2rem;
    margin-bottom: .3rem;
}

.phase__body p {
    margin: 0;
}

.phase__time {
    text-align: right;
    font-size: .85rem;
    color: var(--gold-deep);
    letter-spacing: .15em;
    text-transform: uppercase;
}

@media (max-width: 720px) {
    .phase {
        grid-template-columns: 1fr;
        gap: .6rem;
    }

    .phase__num {
        font-size: 2.4rem;
    }

    .phase__time {
        text-align: left;
    }

    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-sidebar {
        position: static;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-hero__grid,
    .overview {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}



.service-banner {
    position: relative;
    padding: 50px 0 50px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(90deg,
            rgba(13, 9, 6, .88) 0%,
            rgba(13, 9, 6, .75) 40%,
            rgba(13, 9, 6, .35) 70%,
            rgba(13, 9, 6, .15) 100%);
}

.service-banner-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.service-breadcrumb {
    margin-bottom: 25px;
    font-size: 15px;
    font-weight: 500;
}

.service-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.service-breadcrumb span {
    color: var(--primary-gold);
    margin: 0 10px;
}

.service-banner h1 {
    font-family: var(--serif);
    font-size: 35px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 35px;
    font-weight: 600;
}

.banner-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.banner-btn-primary {
    background: var(--primary-gold);
    color: #fff;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

.banner-btn-primary:hover {
    background: var(--primary-gold-dark);
    color: #fff;
}

.banner-btn-outline {
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

.banner-btn-outline:hover {
    background: #fff;
    color: var(--text-dark);
}

/* Tablet */

@media(max-width:991px) {

    .service-banner {
        padding: 150px 0 100px;
    }

    .service-banner h1 {
        font-size: 48px;
    }
}

/* Mobile */

@media(max-width:767px) {

    .service-banner {
        padding: 120px 0 80px;
    }

    .service-banner h1 {
        font-size: 34px;
    }

    .banner-buttons {
        flex-direction: column;
    }

    .banner-btn-primary,
    .banner-btn-outline {
        width: 100%;
        text-align: center;
    }

    .service-breadcrumb {
        font-size: 13px;
    }
}

.hair-transplant-about {
    position: relative;
    overflow: hidden;
    padding: 100px 0;

    background:
        radial-gradient(circle at 85% 20%,
            var(--bg-lighter) 0%,
            transparent 45%),
        radial-gradient(circle at 10% 85%,
            #f2ebe3 0%,
            transparent 50%),
        var(--bg-light);
}

.hair-about-wrapper {
    display: flex;
    align-items: center;
    gap: 70px;
}

.hair-about-image {
    flex: 0 0 45%;
    position: relative;
}

.hair-about-image img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 35px;
    display: block;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, .08);
}

.hair-about-content {
    flex: 0 0 55%;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: var(--primary-gold-dark);
    margin-bottom: 18px;
}

.section-tag::before {
    content: "";
    width: 35px;
    height: 2px;
    background: var(--primary-gold);
}

.hair-about-content h2 {
    font-family: var(--serif);
    color: var(--text-dark);
    font-size: 35px;
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: 500;
}

.hair-about-content p {
    color: var(--text-medium);
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 18px;
}

.hair-about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 15px;
    padding: 15px 34px;

    background: var(--primary-gold);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;

    font-weight: 600;
    transition: .3s;
}

.hair-about-btn:hover {
    background: var(--primary-gold-dark);
    color: #fff;
    transform: translateY(-3px);
}

/* Tablet */

@media(max-width:991px) {

    .hair-about-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .hair-about-image,
    .hair-about-content {
        flex: 100%;
        width: 100%;
    }

    .hair-about-image img {
        height: 500px;
    }

    .hair-about-content h2 {
        font-size: 40px;
    }
}

/* Mobile */

@media(max-width:767px) {

    .hair-transplant-about {
        padding: 40px 0;
    }

    .hair-about-content h2 {
        font-size: 30px;
    }

    .hair-about-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .hair-about-image img {
        height: 320px;
        border-radius: 20px;
    }

    .hair-about-btn {
        width: 100%;
    }
}

.hair-area-section {
    padding: 100px 0;
    background:
        radial-gradient(circle at 85% 20%,
            var(--bg-lighter) 0%,
            transparent 45%),
        radial-gradient(circle at 10% 85%,
            #f1ece6 0%,
            transparent 50%),
        var(--bg-light);
}

.hair-area-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 60px;
}

.hair-area-heading .section-tag {
    display: inline-block;
    color: var(--primary-gold-dark);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.hair-area-heading h2 {
    font-family: var(--serif);
    font-size: 32px;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 500;
}

.hair-area-heading h2 span {
    font-style: italic;
    color: var(--primary-gold-dark);
}

.hair-area-heading p {
    max-width: 750px;
    margin: auto;
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.9;
}

.hair-area-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #e4dbcf;
    border-radius: 20px;
    overflow: hidden;
}

.hair-area-card {
    background: #fff;
    padding: 35px 35px;
    border-right: 1px solid #e4dbcf;
    transition: .4s ease;
    position: relative;
}

.hair-area-card:last-child {
    border-right: none;
}

.hair-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f5f0ea;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: .4s;
}

.hair-icon i {
    color: var(--primary-gold);
    font-size: 19px;
}

.hair-area-card h3 {
    font-family: var(--serif);
    font-size: 20px;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 18px;
    transition: .4s;
}

.hair-area-card p {
    color: var(--text-medium);
    font-size: 14px;
    line-height: 1.9;
    margin: 0;
    transition: .4s;
}

/* Hover Effect */

.hair-area-card:hover {
    background: linear-gradient(135deg,
            var(--primary-gold),
            var(--primary-gold-dark));
}

.hair-area-card:hover h3,
.hair-area-card:hover p {
    color: #fff;
}

.hair-area-card:hover .hair-icon {
    background: rgba(255, 255, 255, .18);
}

.hair-area-card:hover .hair-icon i {
    color: #fff;
}

/* Tablet */

@media(max-width:991px) {

    .hair-area-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hair-area-card {
        border-right: none;
        border-bottom: 1px solid #e4dbcf;
    }

    .hair-area-heading h2 {
        font-size: 42px;
    }
}

/* Mobile */

@media(max-width:767px) {

    .hair-area-section {
        padding: 40px 0;
    }

    .hair-area-grid {
        grid-template-columns: 1fr;
    }

    .hair-area-heading h2 {
        font-size: 32px;
    }

    .hair-area-heading p {
        font-size: 15px;
    }

    .hair-area-card {
        padding: 35px 25px;
    }

    .hair-area-card h3 {
        font-size: 28px;
    }
}

.candidate-section {
    padding: 100px 0;
    background: #fff;
}

.candidate-wrapper {
    display: flex;
    align-items: center;
    gap: 0px;
}

.candidate-content {
    flex: 0 0 55%;
}

.candidate-image {
    flex: 0 0 45%;
}

.candidate-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 30px;
    display: block;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.candidate-tag {
    display: inline-block;
    color: var(--primary-gold-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.candidate-content h2 {
    font-family: var(--serif);
    font-size: 35px;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 500;
}

.candidate-content h2 span {
    color: var(--primary-gold-dark);
    font-style: italic;
}

.candidate-intro {
    margin-bottom: 20px;
    font-weight: 500;
}

.candidate-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
}

.candidate-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 10px;
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 14px;
}

.candidate-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary-gold);
    color: #fff;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.candidate-content p {
    color: var(--text-medium);
    font-size: 14px;
    line-height: 1.9;
}

.candidate-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 15px 35px;
    background: var(--primary-gold);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

.candidate-btn:hover {
    background: var(--primary-gold-dark);
    color: #fff;
}

/* Tablet */

@media(max-width:991px) {

    .candidate-wrapper {
        flex-direction: column-reverse;
    }

    .candidate-content,
    .candidate-image {
        flex: 100%;
        width: 100%;
    }

    .candidate-image img {
        height: 500px;
    }

    .candidate-content h2 {
        font-size: 40px;
    }
}

/* Mobile */

@media(max-width:767px) {

    .candidate-section {
        padding: 40px 0;
    }

    .candidate-content h2 {
        font-size: 30px;
    }

    .candidate-image img {
        height: 450px;
        border-radius: 20px;
    }

    .candidate-content p,
    .candidate-list li {
        font-size: 15px;
    }

    .candidate-btn {
        width: 100%;
        text-align: center;
    }
}

.hair-benefits-section {
    background: linear-gradient(135deg,
            #120f0c 0%,
            #1a1510 50%,
            #0d0906 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hair-benefits-section::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(212, 169, 97, .04);
}

.benefits-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 60px;
}

.benefits-tag {
    display: block;
    color: var(--primary-gold);
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 18px;
}

.benefits-heading h2 {
    font-family: var(--serif);
    font-size: 35px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 17px;
    font-weight: 500;
}

.benefits-heading h2 span {
    font-style: italic;
    color: var(--primary-gold);
}

.benefits-heading p {
    color: rgba(255, 255, 255, .75);
    font-size: 16px;
    line-height: 1.8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.benefit-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(212, 169, 97, .15);
    border-radius: 18px;
    padding: 35px;
    transition: .4s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-gold);
    background: rgba(212, 169, 97, .08);
}

.benefit-number {
    display: block;
    font-family: var(--serif);
    font-size: 42px;
    color: rgba(212, 169, 97, .35);
    margin-bottom: 20px;
    line-height: 1;
}

.benefit-card h3 {
    color: #fff;
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.3;
}

.benefit-card p {
    color: rgba(255, 255, 255, .70);
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

/* Tablet */

@media(max-width:991px) {

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-heading h2 {
        font-size: 42px;
    }
}

/* Mobile */

@media(max-width:767px) {

    .hair-benefits-section {
        padding: 40px 0;
    }
    
    .hair-process-section {
    padding: 40px 0;
}

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefits-heading h2 {
        font-size: 32px;
    }

    .benefit-card {
        padding: 25px;
    }

    .benefit-card h3 {
        font-size: 24px;
    }
}

.hair-process-section {
    padding: 100px 0;
    background:
        radial-gradient(circle at 90% 10%, #f6efe7 0%, transparent 40%),
        var(--bg-light);
}

.hair-process-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hair-process-image {
    flex: 0 0 45%;
}

.hair-process-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 30px;
    display: block;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.hair-process-content {
    flex: 0 0 55%;
}

.process-tag {
    display: inline-block;
    color: var(--primary-gold-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.hair-process-content h2 {
    font-family: var(--serif);
    font-size: 35px;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 500;
}

.hair-process-content h2 span {
    color: var(--primary-gold-dark);
    font-style: italic;
}

.hair-process-content p {
    color: var(--text-medium);
    font-size: 13px;
    line-height: 1.9;
}

.process-steps {
    margin: 30px 0;
}

.process-step {
    display: flex;
    gap: 18px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #ece2d7;
}

.process-step span {
    min-width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--primary-gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.process-step p {
    margin: 0;
}

.process-note {
    background: #fff;
    padding: 20px;
    border-radius: 18px;
    border: 1px solid #ece2d7;
    margin-bottom: 25px;
}

.process-btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--primary-gold);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

.process-btn:hover {
    background: var(--primary-gold-dark);
    color: #fff;
}

/* Tablet */

@media(max-width:991px) {

    .hair-process-wrapper {
        flex-direction: column;
    }

    .hair-process-image,
    .hair-process-content {
        flex: 100%;
        width: 100%;
    }

    .hair-process-image img {
        height: 500px;
    }

    .hair-process-content h2 {
        font-size: 40px;
    }
}

/* Mobile */

@media(max-width:767px) {

    .hair-process-section {
        padding: 70px 0;
    }

    .hair-process-content h2 {
        font-size: 30px;
    }

    .hair-process-image img {
        height: 320px;
        border-radius: 20px;
    }

    .process-step {
        align-items: flex-start;
    }

    .process-btn {
        width: 100%;
        text-align: center;
    }
}

.hair-process-timeline {
    padding: 0px 0;
    background: var(--bg-light);
}

.process-header {
    max-width: 850px;
    margin-bottom: 20px;
}

.process-label {
    display: block;
    color: var(--primary-gold);
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 15px;
}

.process-header h2 {
    font-family: var(--serif);
    font-size: 35px;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 500;
}

.process-header h2 span {
    font-style: italic;
    color: var(--primary-gold-dark);
}

.process-header p {
    max-width: 700px;
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.9;
}

.process-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid #ddd3c7;
}


.process-number {
    font-family: var(--serif);
    font-size: 40px;
    line-height: 1;
    color: #dbc79b;
}

.process-content h3 {
    font-family: var(--serif);
    color: var(--text-dark);
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 15px;
}

.process-content p {
    color: var(--text-medium);
    font-size: 16px;
    line-height: 1.9;
    max-width: 900px;
    margin: 0;
}

.process-item:hover .process-number {
    color: var(--primary-gold);
    transition: .3s;
}

.process-item:hover h3 {
    color: var(--primary-gold-dark);
    transition: .3s;
}

/* Tablet */

@media(max-width:991px) {

    .process-header h2 {
        font-size: 42px;
    }

    .process-item {
        grid-template-columns: 80px 1fr;
    }

    .process-number {
        font-size: 46px;
    }

    .process-content h3 {
        font-size: 30px;
    }
}

/* Mobile */

@media(max-width:767px) {

    .hair-process-timeline {
        padding: 70px 0;
    }

    .process-header h2 {
        font-size: 32px;
    }

    .process-item {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 25px 0;
    }

    .process-number {
        font-size: 38px;
    }

    .process-content h3 {
        font-size: 24px;
    }

    .process-content p,
    .process-header p {
        font-size: 15px;
    }
}

.recovery-section {
    padding: 100px 0;
    background:
        radial-gradient(circle at 90% 20%, #f4ede5 0%, transparent 40%),
        radial-gradient(circle at 10% 90%, #faf6f1 0%, transparent 40%),
        var(--bg-light);
}

.recovery-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

.recovery-content {
    flex: 0 0 55%;
}

.recovery-image {
    flex: 0 0 45%;
}

.recovery-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 30px;
    display: block;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.recovery-tag {
    display: inline-block;
    color: var(--primary-gold-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.recovery-content h2 {
    font-family: var(--serif);
    font-size: 30px;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 500;
}

.recovery-content h2 span {
    color: var(--primary-gold-dark);
    font-style: italic;
}

.recovery-content p {
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 16px;
}

.recovery-content h4 {
    color: var(--text-dark);
    font-size: 20px;
    margin: 25px 0 15px;
    font-family: var(--serif);
}

.recovery-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.recovery-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    color: var(--text-medium);
    line-height: 1.8;
}

.recovery-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary-gold);
    color: #fff;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.recovery-note {
    background: #fff;
    border-left: 4px solid var(--primary-gold);
    padding: 20px 25px;
    border-radius: 15px;
    margin: 25px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.recovery-note strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 18px;
}

.recovery-note p {
    margin: 0;
}

.recovery-btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--primary-gold);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

.recovery-btn:hover {
    background: var(--primary-gold-dark);
    color: #fff;
}

/* Tablet */

@media(max-width:991px) {

    .recovery-wrapper {
        flex-direction: column-reverse;
    }

    .recovery-content,
    .recovery-image {
        width: 100%;
        flex: 100%;
    }

    .recovery-image img {
        height: 500px;
    }

    .recovery-content h2 {
        font-size: 40px;
    }
}

/* Mobile */

@media(max-width:767px) {

    .recovery-section {
        padding: 0px 0;
    }

    .recovery-content h2 {
        font-size: 30px;
    }

    .recovery-image img {
        height: 450px;
        border-radius: 20px;
    }

    .recovery-btn {
        width: 100%;
        text-align: center;
    }
}

.hair-cost-section {
    padding: 40px 0;
    background:
        radial-gradient(circle at 90% 10%, #f5ede4 0%, transparent 35%),
        radial-gradient(circle at 10% 90%, #f9f4ee 0%, transparent 35%),
        var(--bg-light);
}

.cost-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.cost-left {
    flex: 0 0 60%;
}

.cost-right {
    flex: 0 0 40%;
}

.cost-tag {
    display: inline-block;
    color: var(--primary-gold-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.cost-left h2 {
    font-family: var(--serif);
    font-size: 35px;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 500;
}

.cost-left h2 span {
    display: block;
    color: var(--primary-gold-dark);
    font-style: italic;
}

.cost-left p {
    color: var(--text-medium);
    line-height: 1.9;
    font-size: 15px;
}

.cost-price-box {
    margin: 15px 0;
    padding: 30px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
    color: #fff;
}

.cost-price-box span {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.cost-price-box h3 {
    margin: 0;
    font-size: 25px;
    line-height: 1;
    font-weight: 700;
}

.cost-price-box small {
    display: block;
    margin-top: 10px;
    font-size: 22px;
    font-weight: 500;
}

.cost-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 15px 35px;
    border-radius: 50px;
    background: var(--primary-gold);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.cost-btn:hover {
    background: var(--primary-gold-dark);
    color: #fff;
}

.cost-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
    border: 1px solid #ece3d8;
}

.cost-card h4 {
    font-family: var(--serif);
    font-size: 25px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.cost-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cost-card li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 15px;
    color: var(--text-medium);
    line-height: 1.7;
}

.cost-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-gold);
    color: #fff;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media(max-width:991px) {

    .cost-wrapper {
        flex-direction: column;
    }

    .cost-left,
    .cost-right {
        flex: 100%;
        width: 100%;
    }

    .cost-left h2 {
        font-size: 40px;
    }

    .cost-price-box h3 {
        font-size: 46px;
    }
}

@media(max-width:767px) {

    .hair-cost-section {
        padding: 40px 0 !important;
    }
    
    .whyx-section {
    padding: 40px 0;
    background: #fdf8ee;
}

    .cost-left h2 {
        font-size: 30px;
    }

    .cost-price-box {
        padding: 20px;
    }

    .cost-price-box h3 {
        font-size: 36px;
    }

    .cost-price-box small {
        font-size: 18px;
    }

    .cost-card {
        padding: 25px;
    }
    
    .page-hero__title {
    font-size: 45px !important;
    font-weight: 300;
}

.page-hero__lead {
    margin-top: 0px !important;
}

.story__title {
    font-size: 35px !important;
    font-weight: 300;
}

.story__text p {
    /* font-size: 1.02rem; */
    color: var(--charcoal-2);
    margin-bottom: 1.1rem !important;
    text-align: justify !important;
}
    
    
}

.whyx-section {
    padding: 100px 0;
    background:
        radial-gradient(circle at 90% 10%, #f6efe7 0%, transparent 40%),
        var(--bg-light);
}

.whyx-wrapper {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 60px;
    align-items: start;
}

.whyx-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary-gold-dark);
    margin-bottom: 15px;
}

.whyx-content h2 {
    font-family: var(--serif);
    font-size: 30px;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.whyx-content h2 span {
    display: block;
    color: var(--primary-gold-dark);
    font-style: italic;
}

.whyx-content p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 15px;
}

.whyx-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.whyx-item {
    display: flex;
    align-items: center;
    gap: 14px;

    /*background:#fff;*/
    /*border:1px solid #e7ddcf;*/
    border-radius: 14px;

    padding: 0px 22px;

    transition: .3s ease;
}

/*.whyx-item:hover{*/
/*border-color:var(--primary-gold);*/
/*    transform:translateX(6px);*/
/*box-shadow:0 8px 25px rgba(0,0,0,.05);*/
/*}*/

.whyx-item i {
    color: var(--primary-gold);
    font-size: 18px;
    min-width: 20px;
}

.whyx-item span {
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
}

.whyx-note {
    margin-top: 25px;
    background: #fff;
    border-left: 4px solid var(--primary-gold);
    padding: 20px;
    border-radius: 12px;
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 15px;
}

/* FORM */

.whyx-form-box {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #eadfce;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
    position: sticky;
    top: 100px;
}

.whyx-form-box h3 {
    font-family: var(--serif);
    font-size: 21px;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.whyx-form-box p {
    color: var(--text-medium);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 15px;
}

.whyx-form input,
.whyx-form select,
.whyx-form textarea {
    width: 100%;
    border: 1px solid #e5dccf;
    border-radius: 14px;
    background: #fff;
    padding: 16px 18px;
    font-size: 15px;
    color: var(--text-dark);
    transition: .3s;
}

.whyx-form input,
.whyx-form select {
    height: 58px;
}

.whyx-form textarea {
    resize: none;
    min-height: 120px;
}

.whyx-form input:focus,
.whyx-form select:focus,
.whyx-form textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 4px rgba(212, 169, 97, .12);
}

.whyx-btn {
    border: none;
    background: var(--primary-gold);
    color: #fff;
    padding: 15px 34px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.whyx-btn:hover {
    background: var(--primary-gold-dark);
}

@media(max-width:991px) {

    .whyx-wrapper {
        grid-template-columns: 1fr;
    }

    .whyx-form-box {
        position: static;
    }

    .whyx-content h2 {
        font-size: 32px;
    }
}

@media(max-width:767px) {

    .whyx-section {
        padding: 70px 0;
    }

    .whyx-content h2 {
        font-size: 28px;
    }

    .whyx-item {
        padding: 15px;
        align-items: flex-start;
    }

    .whyx-item span {
        font-size: 14px;
    }

    .whyx-form-box {
        padding: 25px;
    }

    .whyx-form-box h3 {
        font-size: 26px;
    }

    .whyx-btn {
        width: 100%;
    }
}


.whyx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg,
            var(--primary-gold),
            var(--primary-gold-dark));

    color: #fff;
    border: none;

    padding: 16px 38px;
    border-radius: 50px;

    font-size: 15px;
    font-weight: 600;

    cursor: pointer;
    transition: .3s;

    box-shadow: 0 12px 30px rgba(212, 169, 97, .30);
}

.whyx-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(212, 169, 97, .40);
}


.results-btn-wrap {
    text-align: center;
    margin-top: 25px;
}

.results-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 34px;

    background: #C59D5F;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;

    border-radius: 50px;

    transition: .35s ease;
    box-shadow: 0 10px 25px rgba(197, 157, 95, .25);
}

.results-btn i {
    transition: .35s;
}

.results-btn:hover {
    background: #b38745;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(197, 157, 95, .35);
}

.results-btn:hover i {
    transform: translateX(6px);
}



/*==============================
Service Category Grid
==============================*/

.location-grid {
    padding: 80px 0;
    background: #fff;
}

.location-grid .row {
    row-gap: 28px;
}

.location-card {
    background: #fff;
    border: 1px solid #e9e2d7;
    border-radius: 18px;
    padding: 30px 26px;
    height: 100%;
    min-height: 160px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    text-decoration: none;
    transition: .35s ease;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .04);
}

.location-card:hover {
    transform: translateY(-8px);
    border-color: #b9832f;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .10);
}

.location-card h3 {
    font-size: 22px;
    line-height: 1.35;
    font-family: 'Playfair Display', serif;
    color: #1b1b1b;
    font-weight: 500;
    margin: 0 0 35px;
}

.location-card span {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #b9832f;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;

    transition: .3s;
}

.location-card span i {
    transition: .3s;
}

.location-card:hover span {
    gap: 14px;
}

.location-card:hover span i {
    transform: translateX(4px);
}


/*========== Large Tablet ==========*/

@media(max-width:1199px) {

    .location-card h3 {
        font-size: 27px;
    }

}


/*========== Tablet ==========*/

@media(max-width:991px) {

    .location-grid {
        padding: 60px 0;
    }

    .location-card {
        min-height: 210px;
    }

    .location-card h3 {
        font-size: 24px;
    }

}


/*========== Mobile ==========*/

@media(max-width:767px) {

    .location-card {
        min-height: auto;
        padding: 22px;
    }

    .location-card h3 {
        font-size: 22px;
        margin-bottom: 22px;
    }

    .location-card span {
        font-size: 14px;
    }

}




/* ================= Mdal Form ================= */

.consultation-modal .modal-dialog {
    max-width: 500px;
}

.consultation-modal .modal-content {
    border-radius: 26px;
    padding: 35px 32px;
    border: none;
    background: #ffffff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.modal-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #222;
}

.modal-subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
}

/* FORCE ONE COLUMN LAYOUT */
.modal-form-fix .row {
    display: block !important;
}

.modal-form-fix [class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
}

.modal-form-fix input,
.modal-form-fix select,
.modal-form-fix textarea {
    width: 100% !important;
    height: 50px;
    border-radius: 14px;
    border: 1px solid #e5e5e5;
    padding: 12px 16px;
    font-size: 14px;
    margin-bottom: 16px !important;
    background: #f8f9fb;
    transition: all 0.2s ease;
}

.modal-form-fix input:focus,
.modal-form-fix select:focus {
    border-color: #3d6de0;
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(61, 109, 224, 0.1);
}

.modal-form-fix select {
    height: 52px;
}

/* Modal backdrop */
.modal-backdrop {
    z-index: 20000 !important;
}

/* Modal */
.consultation-modal {
    z-index: 20001 !important;
}

.consultation-modal .modal-dialog {
    z-index: 20002 !important;
}


/*==========================
WHY CHOOSE SECTION
==========================*/

.whyx-section {
    padding: 80px 0;
    background: #fdf8ee;
}

.whyx-wrapper {
    display: grid;
    grid-template-columns: 1.4fr .8fr;
    gap: 60px;
    align-items: start;
}

.whyx-tag {
    display: inline-block;
    padding: 8px 18px;
    background: #bb8232;
    color: #fff;
    border-radius: 30px;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.whyx-content h2 {
    font-size: 46px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 30px;
    color: #1d1d1d;
}

.whyx-content p {
    color: #555;
    line-height: 1.9;
    font-size: 17px;
}

.whyx-content ul {
    padding-left: 0;
    margin-top: 30px;
}

.whyx-content ul li {
    list-style: none;
    position: relative;
    padding-left: 45px;
    margin-bottom: 20px;
    font-size: 18px;
}

.whyx-content ul li:before {
    content: "✓";
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #d9ab4e;
    color: #fff;
    position: absolute;
    left: 0;
    top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}


/*==========================
FORM
==========================*/

.whyx-form-box {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
    position: sticky;
    top: 120px;
}

.whyx-form-box h3 {
    font-size: 25px;
    color: #2d2d2d;
    line-height: 1.3;
    margin-bottom: 30px;
}

.whyx-form-box form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.whyx-form-box input,
.whyx-form-box select,
.whyx-form-box textarea {

    width: 100%;
    height: 58px;

    border: 1px solid #e6e6e6;

    border-radius: 14px;

    padding: 0 18px;

    font-size: 16px;

    outline: none;

    transition: .3s;

    background: #fff;

}

.whyx-form-box textarea {

    height: 120px;
    padding: 15px 18px;
    resize: none;

}

.whyx-form-box input:focus,
.whyx-form-box select:focus,
.whyx-form-box textarea:focus {

    border-color: #bb8232;
    box-shadow: 0 0 0 3px rgba(187, 130, 50, .15);

}

.whyx-form-box button,
.whyx-form-box input[type=submit] {

    width: 100%;
    height: 60px;

    border: none;

    border-radius: 14px;

    background: #bb8232;

    color: #fff;

    font-size: 18px;

    font-weight: 600;

    cursor: pointer;

    transition: .3s;

}

.whyx-form-box button:hover,
.whyx-form-box input[type=submit]:hover {

    background: #9d6d24;

}


/*==========================
Responsive
==========================*/

@media(max-width:991px) {

    .whyx-wrapper {

        grid-template-columns: 1fr;
        gap: 40px;

    }

    .whyx-form-box {

        position: relative;
        top: 0;

    }

    .whyx-content h2 {

        font-size: 34px;

    }

    .whyx-form-box h3 {

        font-size: 28px;

    }

}

.modal-form-fix button,
.modal-form-fix input[type="submit"] {
    width: 100%;
    border: none;
    height: 52px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    background: var(--accent);
    color: #fff;
    margin-top: 5px;
    transition: all 0.3s ease;
}

.modal-form-fix button:hover,
.modal-form-fix input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(61, 109, 224, 0.3);
    background: #8c652f;
}

.modal-close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: transparent;
    font-size: 20px;
    font-weight: 600;
}

@media (max-width: 576px) {
    .consultation-modal .modal-content {
        padding: 25px 20px;
    }

    a#mobile-book {
        display: block !important;
        color: #fff;
    }

    a#desktop-book {
        display: none !important;
    }
}

a#mobile-book {
    display: none;
}


/* Floating Buttons */

.floating-call,
.floating-whatsapp {
    position: fixed;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 25px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .25);
    z-index: 99999;
    animation: floatPulse 2s infinite;
    transition: .3s;
}

.floating-call {
    left: 20px;
    bottom: 100px;
    background: #aa6d2b;
}

.floating-call:hover {
    background: #0b5ed7;
    color: #fff;
    transform: scale(1.08);
}

.floating-whatsapp {
    right: 20px;
    bottom: 100px;
    background: #25D366;
}

.floating-whatsapp:hover {
    background: #1ebc5b;
    color: #fff;
    transform: scale(1.08);
}

@keyframes floatPulse {

    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .45);
    }

    70% {
        transform: scale(1.08);
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }

}

@media(max-width:768px) {

    .floating-call,
    .floating-whatsapp {
        width: 56px;
        height: 56px;
        font-size: 24px;
        bottom: 18px;
    }

    .floating-call {
        left: 15px;
    }

    .floating-whatsapp {
        right: 15px;
    }

}

/*==============================
WHY CHOOSE TRUE ARTIS
===============================*/

.why-artis-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, #faf6ef 100%);
    overflow: hidden;
}

.why-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-bottom: 12px;
}

.why-heading span {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 5px;
    color: #222;
    text-transform: uppercase;
}

.why-line {
    width: 140px;
    height: 2px;
    background: #c79a45;
}

.why-title {
    font-size: 50px;
    line-height: 1;
    text-align: center;
    margin: 0;
    font-family: var(--font-heading);
    color: #1f1f1f;
}

.why-title span {
    color: #c79a45;
}

.why-subtitle {
    text-align: center;
    margin: 12px auto 45px;
    font-size: 14px;
    color: #444;
    max-width: 900px;
}

.artis-table-wrap {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
}

.artis-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.artis-table th,
.artis-table td {
    border: 1px solid #e8dcc8;
    padding: 18px;
    vertical-align: top;
}

.artis-table thead th {
    padding: 22px;
}

.head-dark {
    background: #1f1f1f;
    color: #fff;
    text-align: left;
    font-size: 22px;
    font-weight: 700;
}

.head-green {
    background: #C89D4A;
    color: #fff;
    text-align: left;
}

.head-logo,
.head-icon {
    display: flex;
    align-items: center;
    gap: 14px;
}

.head-logo i,
.head-icon i {
    font-size: 34px;
    color: #FAF8F4;
}

.head-logo h4,
.head-icon h4 {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
}

.head-icon h5 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.head-logo span {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    letter-spacing: 2px;
    color: #FAF8F4;
    text-transform: uppercase;
}

.feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 17px;
    font-weight: 700;
    color: #222;
    background: #fffdf9;
}

.feature i {
    font-size: 28px;
    color: #c79a45;
    min-width: 28px;
}

.true {
    background: #fbfdf8;
    border-left: 2px solid #C89D4A !important;
    border-right: 2px solid #C89D4A !important;
}

.status {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.3;
    font-size: 13px;
}

.status.success i {
    color: #C89D4A;
    font-size: 20px;
    margin-top: 2px;
}

.status.warning i {
    color: #d59b19;
    font-size: 20px;
    margin-top: 2px;
}

.artis-table tbody tr:nth-child(even) {
    background: #fdfbf8;
}

.artis-table tbody tr:hover td {
    background: #fffcf7;
    transition: .3s;
}

.artis-table tbody tr:hover .true {
    background: #f7fbf5;
}


/*==============================
BOTTOM FEATURES
===============================*/

.why-bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border: 1px solid #e9dfcf;
    border-top: none;
    border-radius: 20px 20px 20px 20px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .05);
        margin-top: 20px;
}

.why-box {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 30px;
    transition: .35s;
    border-right: 1px solid #ece3d5;
    background: #fff;
}

.why-box:last-child {
    border-right: none;
}

.why-box:hover {
    background: #faf6ef;
    transform: translateY(-4px);
}

.why-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f7efe2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-icon i {
    font-size: 20px;
    color: #c79a45;
}

.why-text h4 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 700;
    color: #222;
}

.why-text p {
    margin: 0;
    font-size: 13px;
    color: #777;
}

/*==============================
TABLE HOVER
===============================*/

.artis-table tbody tr {
    transition: .35s;
    background: #fdfbf8;

}

.artis-table tbody tr:hover {
    background: #fffdf8;
}

.artis-table tbody tr:hover td {
    background: #fffdf8;
}

.artis-table tbody tr:hover .true {
    background: #f5fbf6;
}

/*==============================
SCROLLBAR
===============================*/

.artis-table-wrap::-webkit-scrollbar {
    height: 7px;
}

.artis-table-wrap::-webkit-scrollbar-track {
    background: #ececec;
}

.artis-table-wrap::-webkit-scrollbar-thumb {
    background: #c79a45;
    border-radius: 20px;
}

/*==============================
TABLE BORDER
===============================*/

.artis-table td:first-child {
    font-weight: 700;
    color: #222;
}

.artis-table strong {
    color: #111;
}

/*==============================
TABLE SPACING
===============================*/

.artis-table td {
    font-size: 15px;
    line-height: 1.8;
}

.artis-table th {
    font-size: 17px;
}

/*==============================
RESPONSIVE
===============================*/

@media(max-width:1200px) {

    .artis-table {
        min-width: 1200px;
    }

    .artis-table-wrap {
        overflow-x: auto;
    }

}

@media(max-width:991px) {

    .why-artis-section {
        padding: 40px 0;
    }

    .why-title {
        font-size: 46px;
    }

    .why-subtitle {
        font-size: 16px;
    }

    .why-line {
        width: 70px;
    }

    .why-bottom {
        grid-template-columns: repeat(2, 1fr);
         margin-top: 20px!important;
    }

    .why-box {
        padding: 22px;
    }

}

@media(max-width:767px) {

    .why-heading {
        gap: 12px;
    }

    .why-heading span {
        font-size: 12px;
        letter-spacing: 3px;
    }

    .why-line {
        width: 40px;
    }

    .why-title {
        font-size: 34px;
    }

    .why-subtitle {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 30px;
    }

    .artis-table {
        min-width: 950px;
    }

    .artis-table th,
    .artis-table td {
        padding: 16px;
    }

    .feature {
        font-size: 15px;
    }

    .feature i {
        font-size: 22px;
    }

    .head-logo i,
    .head-icon i {
        font-size: 24px;
    }

    .head-logo h4,
    .head-icon h4,
    .head-icon h5 {
        font-size: 16px;
    }

    .why-bottom {
        grid-template-columns: 1fr;
        margin-top: 20px!important;
    }

    .why-box {
        border-right: none;
        border-bottom: 1px solid #ece3d5;
    }

    .why-box:last-child {
        border-bottom: none;
    }
    
        
    .satisfaction-badge span {
        text-align: left ;
    }
    
    .satisfaction-badge {
    text-align: left !important;
           
        }
        
    .satisfaction-badge strong {
        align-items: flex-start;
        text-align: start;
    }
    
    .satisfaction-badge span {
        text-align: left;
    }
    .review-sec {
    padding: 40px 0 !important;
    background: #f8f9fb;
}

.treatments-section {
    padding: 40px 0 !important;
}
section.section.values {
    padding: 40px 0px !important;
    padding-bottom: 0px !important;
}

section.section.section--ivory {
    padding: 40px 0px !important;
}

.before-after-section {
    padding: 40px 0 !important;
}

.stats__label {
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    /* margin-top: .8rem; */
    opacity: .8;
}

.cta-strip__actions {
    flex-wrap: nowrap;
   
}

.doctor-section {
    padding: 40px 0;
    background: #f8f7f4;
}

}




/*=========================================
MOBILE COMPARISON TABLE
=========================================*/

.mobile-artis-table{
    display:none;
}

/*=========================================
MOBILE
=========================================*/

@media(max-width:767px){

    /* Desktop table completely hide */
    .artis-table-wrap{
        display:none !important;
    }

    /* Mobile table show */
    .mobile-artis-table{
        display:block;
        width:100%;
        background:#fff;
        border:1px solid #e5dfd4;
        border-radius:16px;
        overflow:hidden;
        box-shadow:0 8px 30px rgba(0,0,0,.06);
    }

    /*---------------------------------
    TOP BRAND
    ---------------------------------*/

    .mobile-artis-head{
        background:#171717;
        padding:18px 16px 15px;
        color:#fff;
    }

    .mobile-artis-brand{
        display:flex;
        align-items:center;
        gap:10px;
    }

    .mobile-artis-brand > i{
        width:32px;
        height:32px;
        border-radius:50%;
        display:flex;
        align-items:center;
        justify-content:center;
        background:#c89d4a;
        color:#fff;
        font-size:16px;
        flex-shrink:0;
    }

    .mobile-artis-brand strong{
        display:block;
        font-family:var(--font-heading);
        font-size:17px;
        line-height:1.2;
        color:#fff;
    }

    .mobile-artis-brand span{
        display:block;
        margin-top:3px;
        font-size:10px;
        color:#c89d4a;
        letter-spacing:.3px;
    }

    .mobile-artis-head p{
        margin:10px 0 0;
        padding-top:9px;
        border-top:1px solid rgba(255,255,255,.12);
        text-align:center;
        font-size:11px;
        color:#777;
    }

    /*---------------------------------
    COLUMN LABELS
    ---------------------------------*/

    .mobile-artis-labels{
        display:grid;
        grid-template-columns:minmax(0,1fr) 48px 48px 48px;
        align-items:center;
        min-height:38px;
        padding:0 10px;
        border-bottom:1px solid #e8dfd2;
        background:#fff;
    }

    .mobile-artis-labels span{
        font-size:9px;
        font-weight:700;
        color:#999;
        text-transform:uppercase;
        text-align:center;
    }

    .mobile-artis-labels span:first-child{
        text-align:left;
    }

    .mobile-artis-labels span:nth-child(2){
        background:#c89d4a;
        color:#fff;
        padding:8px 3px;
        border-radius:7px;
    }

    /*---------------------------------
    ROW
    ---------------------------------*/

    .mobile-artis-row{
        display:grid;
        grid-template-columns:minmax(0,1fr) 48px 48px 48px;
        align-items:center;
        min-height:58px;
        padding:8px 10px;
        border-bottom:1px solid #e8dfd2;
        background:#fff;
    }

    .mobile-artis-row:last-of-type{
        border-bottom:none;
    }

    .mobile-artis-row strong{
        padding-right:8px;
        font-size:12px;
        line-height:1.35;
        font-weight:600;
        color:#222;
    }

    /*---------------------------------
    STATUS CIRCLE
    ---------------------------------*/

    .mobile-status{
        width:28px;
        height:28px;
        border-radius:50%;
        display:flex;
        align-items:center;
        justify-content:center;
        margin:auto;
        font-size:16px;
        font-weight:600;
    }

    .mobile-status.yes{
        color:#9b7b3c;
        border:2px solid #b99a5b;
        background:#fff;
    }

    .mobile-status.partial{
        color:#999;
        border:2px solid #bbb;
        background:#fff;
    }

    .mobile-status.no{
        color:#c7c7c7;
        border:2px solid #d6d6d6;
        background:#fff;
    }

    /*---------------------------------
    LEGEND
    ---------------------------------*/

    .mobile-artis-legend{
        display:flex;
        justify-content:center;
        align-items:center;
        flex-wrap:wrap;
        gap:15px;
        padding:13px 8px;
        background:#faf8f3;
        border-top:1px solid #e8dfd2;
    }

    .mobile-artis-legend span{
        display:flex;
        align-items:center;
        gap:5px;
        font-size:9px;
        color:#777;
    }

    .mobile-artis-legend b{
        width:19px;
        height:19px;
        border-radius:50%;
        display:flex;
        align-items:center;
        justify-content:center;
        font-size:11px;
        font-weight:600;
    }

    .mobile-artis-legend b.yes{
        color:#9b7b3c;
        border:1px solid #b99a5b;
    }

    .mobile-artis-legend b.partial{
        color:#999;
        border:1px solid #bbb;
    }

    .mobile-artis-legend b.no{
        color:#c7c7c7;
        border:1px solid #d6d6d6;
    }

    /*---------------------------------
    BOTTOM FEATURES
    ---------------------------------*/

    .why-bottom{
        margin-top:15px !important;
    }

}



.location-maps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 18px;
}

.map-card {
    border: 1px solid #e5dccf;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
}

.map-title {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    color: #17130f;
    font-size: 16px;
}

.map-title i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f4eee4;
    color: #b87825;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-card iframe {
    display: block;
    width: 100%;
    height: 160px;
    border: 0;
}

.map-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 16px;
    color: #8a6a3c;
    font-size: 13px;
    text-decoration: none;
    border-top: 1px solid #eee5d9;
}

.map-link:hover {
    color: #b87825;
}

.map-link i {
    font-size: 13px;
}


/* ================================
   LOCATION CARDS
================================ */

.location-click-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.location-click-card:hover {
    border-color: #b4772a;
}

.location-click-card.active {
    border-color: #b4772a;
    box-shadow: 0 8px 25px rgba(180, 119, 42, 0.12);
}


/* ================================
   LOCATION MAP SECTION
================================ */

.location-map-section {
    margin-top: 18px;
    width: 100%;
}


/* Tabs */

.location-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}

.location-tab {
    flex: 1;
    border: 1px solid #e5dccf;
    background: #fff;
    color: #222;
    padding: 10px 15px;
    border-radius: 30px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.location-tab i {
    color: #b4772a;
    margin-right: 5px;
}

.location-tab:hover {
    border-color: #b4772a;
    color: #b4772a;
}

.location-tab.active {
    background: #b4772a;
    border-color: #b4772a;
    color: #fff;
}

.location-tab.active i {
    color: #fff;
}


/* ================================
   MAP
================================ */

.location-map-wrapper {
    width: 100%;
}

.location-map {
    display: none;
    width: 100%;
    overflow: hidden;
    border: 1px solid #e5dccf;
    border-radius: 15px;
    background: #fff;
}

.location-map.active {
    display: block;
}

.location-map iframe {
    display: block;
    width: 100%;
    height: 350px;
    border: 0;
}


/* ================================
   MOBILE
================================ */

@media (max-width: 767px) {

    .location-map-section {
        margin-top: 15px;
    }

    .location-tabs {
        gap: 8px;
    }

    .location-tab {
        padding: 9px 10px;
        font-size: 13px;
    }

    .location-map {
        border-radius: 12px;
    }

    .location-map iframe {
        height: 230px;
    }

}



  .privacy-page {
        background: #faf9f6;
        padding: 70px 0 90px;
    }

    .privacy-container {
        max-width: 1180px;
        margin: 0 auto;
        padding: 0 25px;
    }

    .privacy-card {
        background: #fff;
        border: 1px solid #e5ddd0;
        border-radius: 28px;
        padding: 65px 75px;
        box-shadow: 0 15px 45px rgba(35, 28, 20, 0.06);
    }

    .privacy-header {
        margin-bottom: 55px;
    }

    .privacy-label {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        color: #a86d26;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        margin-bottom: 15px;
    }

    .privacy-label::before {
        content: "";
        width: 35px;
        height: 1px;
        background: #b77a2b;
    }

    .privacy-title {
        margin: 0 0 15px;
        color: #171513;
        font-family: Georgia, "Times New Roman", serif;
        font-size: clamp(42px, 5vw, 62px);
        font-weight: 500;
        line-height: 1.05;
    }

    .privacy-title em {
        color: #a86d26;
        font-weight: 400;
    }

    .privacy-updated {
        color: #77716a;
        font-size: 15px;
        margin: 0;
    }

    .privacy-content {
        color: #3f3a35;
        font-size: 16px;
        line-height: 1.85;
    }

    .privacy-content h2 {
        color: #191715;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 27px;
        font-weight: 600;
        line-height: 1.3;
        margin: 48px 0 18px;
        padding-top: 5px;
    }

    .privacy-content h2:first-child {
        margin-top: 0;
    }

    .privacy-content p {
        margin: 0 0 22px;
    }

    .privacy-content ul {
        margin: 10px 0 25px;
        padding-left: 25px;
    }

    .privacy-content li {
        margin-bottom: 8px;
        padding-left: 5px;
    }

    .privacy-content li::marker {
        color: #b77a2b;
    }

    .privacy-content strong {
        color: #25211e;
        font-weight: 700;
    }

    .privacy-contact {
        margin-top: 30px;
        padding: 28px 30px;
        background: #faf7f1;
        border: 1px solid #e8dccb;
        border-radius: 18px;
    }

    .privacy-contact p {
        margin-bottom: 8px;
    }

    .privacy-contact a {
        color: #a86d26;
        text-decoration: none;
    }

    .privacy-contact a:hover {
        text-decoration: underline;
    }

    @media (max-width: 991px) {
        .privacy-page {
            padding: 50px 0 70px;
        }

        .privacy-card {
            padding: 45px 40px;
        }

        .privacy-header {
            margin-bottom: 40px;
        }
    }

    @media (max-width: 575px) {
        .privacy-container {
            padding: 0 15px;
        }

        .privacy-card {
            padding: 35px 22px;
            border-radius: 20px;
        }

        .privacy-title {
            font-size: 40px;
        }

        .privacy-content {
            font-size: 15px;
            line-height: 1.75;
        }

        .privacy-content h2 {
            font-size: 23px;
            margin-top: 38px;
        }

        .privacy-contact {
            padding: 22px;
        }
    }
    
    
    .terms-page {
        background: #faf9f6;
        padding: 70px 0 90px;
    }

    .terms-container {
        max-width: 1180px;
        margin: 0 auto;
        padding: 0 25px;
    }

    .terms-card {
        background: #fff;
        border: 1px solid #e5ddd0;
        border-radius: 28px;
        padding: 65px 75px;
        box-shadow: 0 15px 45px rgba(35, 28, 20, 0.06);
    }

    .terms-header {
        margin-bottom: 55px;
    }

    .terms-label {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        color: #a86d26;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        margin-bottom: 15px;
    }

    .terms-label::before {
        content: "";
        width: 35px;
        height: 1px;
        background: #b77a2b;
    }

    .terms-title {
        margin: 0 0 15px;
        color: #171513;
        font-family: Georgia, "Times New Roman", serif;
        font-size: clamp(42px, 5vw, 62px);
        font-weight: 500;
        line-height: 1.05;
    }

    .terms-title em {
        color: #a86d26;
        font-weight: 400;
    }

    .terms-updated {
        color: #77716a;
        font-size: 15px;
        margin: 0;
    }

    .terms-content {
        color: #3f3a35;
        font-size: 16px;
        line-height: 1.85;
    }

    .terms-content h2 {
        color: #191715;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 27px;
        font-weight: 600;
        line-height: 1.3;
        margin: 48px 0 18px;
        padding-top: 5px;
    }

    .terms-content h2:first-child {
        margin-top: 0;
    }

    .terms-content p {
        margin: 0 0 22px;
    }

    .terms-content ul {
        margin: 10px 0 25px;
        padding-left: 25px;
    }

    .terms-content li {
        margin-bottom: 8px;
        padding-left: 5px;
    }

    .terms-content li::marker {
        color: #b77a2b;
    }

    .terms-content strong {
        color: #25211e;
        font-weight: 700;
    }

    .terms-contact {
        margin-top: 30px;
        padding: 28px 30px;
        background: #faf7f1;
        border: 1px solid #e8dccb;
        border-radius: 18px;
    }

    .terms-contact p {
        margin-bottom: 8px;
    }

    .terms-contact a {
        color: #a86d26;
        text-decoration: none;
    }

    .terms-contact a:hover {
        text-decoration: underline;
    }

    @media (max-width: 991px) {
        .terms-page {
            padding: 50px 0 70px;
        }

        .terms-card {
            padding: 45px 40px;
        }

        .terms-header {
            margin-bottom: 40px;
        }
    }

    @media (max-width: 575px) {
        .terms-container {
            padding: 0 15px;
        }

        .terms-card {
            padding: 35px 22px;
            border-radius: 20px;
        }

        .terms-title {
            font-size: 40px;
        }

        .terms-content {
            font-size: 15px;
            line-height: 1.75;
        }

        .terms-content h2 {
            font-size: 23px;
            margin-top: 38px;
        }

        .terms-contact {
            padding: 22px;
        }
    }
    
    
    
    
    
/*====================================
MEDIA BANNER SECTION
====================================*/

.media-banner-section {
    position: relative;
    height: 350px;

    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.media-banner-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(90deg,
            rgba(11, 90, 143, 0.65) 0%,
            rgba(24, 79, 150, 0.55) 35%,
            rgba(33, 95, 168, 0.45) 70%,
            rgba(67, 197, 196, 0.35) 100%);

    z-index: 1;
}

.media-banner-content {
    position: relative;
    z-index: 2;

    text-align: center;
}

.media-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 5px 14px;

    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;

    margin-bottom: 25px;
}

.media-breadcrumb a {
    text-decoration: none;
    color: #fff;

    font-size: 15px;
    font-weight: 600;

    transition: 0.3s ease;
}

.media-breadcrumb a:hover {
    color: #43c5c4;
}

.media-breadcrumb span {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.media-banner-content h1 {
    color: #fff;

    font-size: 50px;
    font-weight: 800;
    line-height: 1.1;

    margin: 0;

    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.media-banner-content h1::after {
    content: "";

    display: block;

    width: 120px;
    height: 4px;

    margin: 18px auto 0;

    border-radius: 50px;

    background: linear-gradient(90deg,
            #ffffff,
            #43c5c4);
}

/*====================================
TABLET
====================================*/

@media (max-width: 991px) {

    .media-banner-section {
        height: 360px;
    }

    .media-banner-content h1 {
        font-size: 52px;
    }

    .media-breadcrumb {
        margin-bottom: 20px;
    }
}

/*====================================
MOBILE
====================================*/

@media (max-width: 767px) {

    .media-banner-section {
        height: 280px;
        padding: 20px;
    }

    .media-banner-content h1 {
        font-size: 34px;
    }

    .media-banner-content h1::after {
        width: 80px;
        margin-top: 12px;
    }

    .media-breadcrumb {
        padding: 8px 16px;
        gap: 8px;
        margin-bottom: 15px;
    }

    .media-breadcrumb a,
    .media-breadcrumb span {
        font-size: 13px;
    }
}

/*====================================
SMALL MOBILE
====================================*/

@media (max-width: 480px) {

    .media-banner-section {
        height: 240px;
    }

    .media-banner-content h1 {
        font-size: 28px;
    }

    .media-breadcrumb {
        padding: 7px 14px;
    }

    .media-breadcrumb a,
    .media-breadcrumb span {
        font-size: 12px;
    }
}


/* =========================
   BLOG PAGE SECTION
========================= */

.blog-page-section {
    padding: 80px 0;
    background: #f5f7fb;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 35px;
    align-items: start;
}

/* =========================
   BLOG GRID
========================= */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
    border: 1px solid #e8edf5;
    transition: .4s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(29, 79, 163, .18);
}

/* =========================
   IMAGE
========================= */

.blog-image {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.blog-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: #fff;
    display: block;
    transition: .5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.03);
}

/* =========================
   TAG
========================= */

.blog-tag {
    position: absolute;
    top: 18px;
    left: 18px;

    background: linear-gradient(90deg,
            #1d4fa3,
            #45c4c6);

    color: #fff;
    padding: 10px 18px;
    border-radius: 40px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;

    z-index: 2;
}


.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 22px;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #aa6d2b;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    transition: .3s ease;
}

.read-more:hover {
    color: #352e25;
}

.read-more i {
    font-size: 16px;
}

/* =========================
   SIDEBAR
========================= */

.category-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    border: 1px solid #e8edf5;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);

    position: sticky;
    top: 120px;
}

.category-card h3 {
    font-size: 30px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 25px;
}

.category-card ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.category-card li {
    border-bottom: 1px solid #edf2f7;
}

.category-card li:last-child {
    border-bottom: none;
}

.category-card a {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 18px 0;

    color: #475569;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;

    transition: .3s ease;
}

.category-card a:hover {
    color:#aa6d2b;
    padding-left: 10px;
}

.category-card a::after {
    content: "›";
    font-size: 24px;
    color: #aa6d2b;
    font-weight: 700;
}

/* =========================
   PAGINATION
========================= */

.blog-pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.blog-pagination a,
.blog-pagination span {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #fff;
    color: #1d4fa3;

    text-decoration: none;
    font-weight: 700;

    box-shadow: 0 4px 15px rgba(0, 0, 0, .08);

    transition: .3s;
}

.blog-pagination a:hover,
.blog-pagination .active {
    background: linear-gradient(90deg,
            #1d4fa3,
            #45c4c6);
    color: #fff;
}

/* =========================
   TABLET
========================= */

@media(max-width:1200px) {

    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-card {
        position: relative;
        top: 0;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px) {

    .blog-page-section {
        padding: 50px 0;
    }

    .blog-layout {
        gap: 25px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-image img {
        height: 220px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-content h3 {
        font-size: 22px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .read-more {
        font-size: 16px;
    }

    .category-card {
        padding: 25px;
    }

    .category-card h3 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .category-card a {
        font-size: 16px;
        padding: 14px 0;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px) {

    .blog-image img {
        height: 200px;
    }

    .blog-tag {
        font-size: 11px;
        padding: 8px 14px;
    }

    .blog-content h3 {
        font-size: 20px;
    }

    .category-card {
        border-radius: 18px;
    }

    .blog-card {
        border-radius: 18px;
    }
}




.blog-breadcrumb {
   background: var(--accent);
    padding: 18px 0;
}
.blog-breadcrumb {
    font-size: 14px;
    margin-bottom: 10px;
    color: #ddd;
}

.blog-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.blog-breadcrumb span {
    margin: 0 6px;
    color: #fff;
}

@media (max-width: 991px) {

    .blog-hero-sec {
        height: 220px;
    }

    .blog-hero-content h1 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {

    .blog-hero-sec {
        height: 180px;
    }

    .blog-hero-content h1 {
        font-size: 26px;
    }

    .blog-breadcrumb {
        font-size: 12px;
    }
}


.blog-detail-section {
    padding: 90px 0;
    background: #ffffff;
}

.blog-detail-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}


.blog-feature-image img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 35px;
}

.blog-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.blog-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 30px;
}

.blog-content p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 22px;
    color: #333;
}

.blog-content h2 {
    margin-top: 45px;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.blog-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.blog-category-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 35px;
    border: 1px solid #f0f0f0;
}

.blog-category-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.blog-category-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-category-card ul li {
    margin-bottom: 14px;
}

.blog-category-card ul li a {
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    background: #f5f7fb;
    text-decoration: none;
    color: #444;
    font-weight: 500;
    transition: 0.3s ease;
}

.blog-category-card ul li a:hover {
    background: var(--accent);
    color: #ffffff;
    transform: translateX(5px);
}

.blog-form-card {
    background: var(--accent);
    padding: 40px 35px;
    border-radius: 25px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.blog-form-card h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}

.blog-form-card form {
    width: 100%;
}

.blog-form-card form input,
.blog-form-card form textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 18px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
}

.blog-form-card form input::placeholder,
.blog-form-card form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.blog-form-card form textarea {
    min-height: 120px;
    resize: none;
}

.blog-form-card form button {
    width: 100%;
    padding: 15px;
    background: #ffffff;
    color: var(--accent-red);
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s ease;
}

/*.blog-form-card form button:hover {*/
/*    background: var(--teal-green);*/
/*    color: #fff;*/
/*}*/

.blog-form-card form select {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 18px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.blog-form-card form select {
    background-image: url("data:image/svg+xml,%3Csvg fill='white' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7l5 5 5-5H5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

.blog-form-card form select {
    color: #fff;
}

.blog-form-card form select option {
    color: #000;
    background: #fff;
}

a {
    text-decoration: none;
}

/* ===========================
   MOBILE RESPONSIVE
=========================== */

@media (max-width: 992px) {

    .blog-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-sidebar {
        position: relative;
        top: 0;
    }

    .blog-title {
        font-size: 30px;
    }

    .blog-feature-image img {
        border-radius: 15px;
    }

    .blog-category-card,
    .blog-form-card {
        padding: 25px;
    }
}



