
/* ======================================================
   ROOT COLORS
====================================================== */
:root{
    --primary:#d4c39b;
    --primary-active:#a99c7c;
    --light:#f2ede1;
    --light2:#e9e1cd;
    --secondary:#cbb26a;
    --secondary-dark:#a28e54;
    --white:#ffffff;
    --bg:#70706c;
    --body-text:#707071;
    --primary-text:#d4c39b;
    --secondary-text:#c2b5a5;
}

::-webkit-scrollbar{
    width:5px;
    height:5px;
    display:none;
}

/*-- Track --*/
::-webkit-scrollbar-track{
    box-shadow:inset 0 0 5px var(--primary-active); 
    border-radius:150px;
}

/*-- Handle --*/
::-webkit-scrollbar-thumb{
    background:var(--primary);
    border-radius:150px;
}

/*-- Handle On Hover --*/
::-webkit-scrollbar-thumb:hover{
    background-color:var(--primary-active);
}

/*--- customize bootstrap css ---*/
::-moz-selection{
    background-color:var(--primary) !important;
}

::selection{
    background-color:var(--primary) !important;
}

/* ======================================================
   FONTS
====================================================== */
@font-face{
    font-family:"Isabel-Black";
    src:url("../fonts/Skinic-Fonts/Isabel-Black.ttf") format("truetype"); /* Header Font */
}

@font-face{
    font-family:"Isabel-Thin-Italic";
    src:url("../fonts/Skinic-Fonts/Isabel-Thin-Italic.ttf") format("truetype"); /* Primary Subheader Font */
}

@font-face{
    font-family:"BenguiatStd-Book";
    src:url("../fonts/Skinic-Fonts/BenguiatStd-Book.ttf") format("truetype"); /* Secondary Subheader Font */
}

@font-face{
    font-family:"FuturaLT-Light";
    src:url("../fonts/Skinic-Fonts/FuturaLT-Light.ttf") format("truetype"); /* Body Font */
}

/* ======================================================
   GLOBAL
====================================================== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'BenguiatStd-Book';
    background:var(--white);
    color:var(--body-text);
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

.section{
    background:var(--white);
    padding:100px 0;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title h2{
    font-size:52px;
    color:var(--body-text);
    margin-bottom:10px;
}

.section-title p{
    color:var(--body-text);
    font-family:'FuturaLT-Light';
}

.invalid-feedback{
    display:none;
    width:100%;
    margin-top:-0.75rem;
    margin-bottom:1.25rem;
    font-size:80%;
    color:#f1556c;
}

/* ======================================================
   DATE PICKER
====================================================== */
/* Main Datepicker */
.datepicker{
    font-size:14px;
    padding:8px;
    border:1px solid #f8f9fa;
    border-radius:5px;
    background:var(--white);
    box-shadow:0 10px 30px rgba(0, 0, 0, .12);
    z-index:99999 !important;
    max-width:200px;
}

/* Header */
.datepicker .datepicker-days .table-condensed thead tr:nth-child(1) th{
    border:none;
    background:var(--white);
    color:#6c6c6c;
    font-size:14px;
    font-weight:normal;
    padding:12px 0;
}

/* Month title */
.datepicker .datepicker-switch{
    font-size:14px;
    font-weight:normal;
    color:#666;
}

/* Prev / Next */
.datepicker .prev,
.datepicker .next{
    color:#999;
    font-size:14px;
    font-weight:normal;
}

.datepicker .prev:hover,
.datepicker .next:hover{
    background:transparent;
}

/* Week names */
.datepicker table tr th.dow{
    color:#777;
    font-size:14px;
    font-weight:normal;
    padding:10px 0;
}

/* Cells */
.datepicker table tr td,
.datepicker table tr th{
    width:32px;
    height:32px;
    border-radius:4px;
    border:none;
    text-align:center;
    transition:.2s;
}

/* Normal day */
.datepicker table tr td.day{
    color:#70706c;
}

/* Hover */
.datepicker table tr td.day:hover{
    background:#e9ecef;
    color:#70706c;
}

/* Selected day */
.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active.active{
    background:#d4c39b !important;
    color:var(--white) !important;
}

/* Today */
.datepicker table tr td.today,
.datepicker table tr td.today:hover{
    background:#ececec;
    color:#444;
}

/* Disabled */
.datepicker table tr td.disabled{
    background:transparent;
    color:#999;
}

.datepicker table tr td.disabled:hover{
    background:#e9ecef;
}

/* Old / New month */
.datepicker table tr td.old,
.datepicker table tr td.new{
    color:#cfcfcf;
}

/* Focus */
.datepicker table tr td:focus{
    outline:none;
}

/* Triangle */
.datepicker-dropdown:before,
.datepicker-dropdown:after{
    display:none;
}

.datepicker table tr td.highlighted{
    background:#f2ede1;
    border-radius:0;
}

/* ======================================================
   SELECT 2
====================================================== */

/* Container */
.select2-container{
    width:100% !important;
}

.select2-container--default .select2-results>.select2-results__options {
    max-height:270px;
    overflow-y:auto;
}

/* Searchbar */
.select2-container--default .select2-search--dropdown .select2-search__field{
    border:1px solid #eee;
    background-color:var(--white);
    color:#707071;
    outline:0;
    margin:5px;
    width:stretch;
}

/* Selection */
.select2-container--default .select2-selection--single{
    height:52px;
    border:1px solid #eee;
    padding:10px 8px;
    display:flex;
    align-items:center;
}

/* Selected text */
.select2-container--default .select2-selection__rendered{
    line-height:30px !important;
    color:var(--body-text) !important;
    font-size:14px;
}

/* Arrow */
.select2-container--default .select2-selection__arrow{
    height:34px;
    width:34px;
    right:34px;
}

/* Dropdown */
.select2-dropdown{
    border-radius:10px;
    overflow:hidden;
    border:1px solid #eee;
}

/* Group label */
.select2-results__group{
    background:var(--white);
    color:var(--body-text);
    font-size:14px !important;
    font-weight:normal;
}

/* Normal option */
.select2-results__option{
    padding:10px 15px;
    font-size:14px !important;
}

/* Hover */
.select2-results__option--highlighted,
.select2-results__option--highlighted:hover{
    background:var(--primary) !important;
    color:var(--white) !important;
}

/* Selected item */
.select2-results__option--selected{
    background:#f8f9fa !important;
    color:#16181b !important;
}

.select2-container .select2-selection--single .select2-selection__arrow{
    height:50px;
    width:34px;
    right:3px;
}

.select2-container .select2-selection--single .select2-selection__arrow b{
    border-color:#86889a transparent transparent transparent;
    border-width:6px 6px 0 6px;
}

.select2-container--open .select2-selection--single .select2-selection__arrow b{
    border-color:transparent transparent #86889a transparent !important;
    border-width:0 6px 6px 6px !important;
}

/* ======================================================
   ANIMATIONS
====================================================== */
.animate{
    transform:translateY(30px);
    transition:.8s ease;
}

.animate.show{
    transform:none;
}

/* ======================================================
   SKINIC BRAND
====================================================== */
.skinic-header{
    font-family:'Isabel-Black';
    font-size:45px;
    color:var(--secondary);
    position:absolute;
    margin-top:-35px;
    margin-left:5px;
}

.skinic-s{
    font-size:32px;
}

.skinic-text{
    font-family:'FuturaLT-Light';
    font-size:8px;
    color:var(--body-text);
    letter-spacing:1px;
    position:absolute;
    margin-top:12px;
    margin-left:10px;
}

/* ======================================================
   HEADER
====================================================== */
header{
    width:100%;
    background:var(--white);
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 10px rgba(0,0,0,.05);
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.nav-wrapper{
    display:flex;
    align-items:center;
    gap:40px;
}

/* ======================================================
   NAVIGATION
====================================================== */
.nav-links{
    display:flex;
    align-items:center;
    gap:30px;
}

/* MENU LINKS */
.nav-links a{
    position:relative;
    color:var(--body-text);
    font-size:18px;
    transition:.3s;
    padding:0 18px 8px;
}

/* LINE UNDER EACH LINK */
.nav-links a::after{
    content:'';
    position:absolute;
    left:18px;
    bottom:0;
    width:0%;
    height:2px;
    background:var(--primary-active);
    transition:.3s;
}

.nav-links a:hover::after{
    width:calc(100% - 36px);
}

.nav-links a:hover{
    color:var(--primary-active);
}

/* VERTICAL LINE BETWEEN MENU LINKS */
.nav-links a:not(:last-child)::before{
    content:'';
    position:absolute;
    right:-15px;
    top:50%;
    transform:translateY(-50%);
    width:2px;
    height:20px;
    background:rgba(162,142,84,.15);
}

.book-btn{
    background:var(--primary);
    color:var(--white);
    padding:14px 30px;
    border-radius:50px;
    transition:.3s;
}

.book-btn:hover{
    background:var(--primary-active);
    transform:translateY(-5px);
}

/* MOBILE MENU */
.menu-toggle{
    display:none;
    font-size:30px;
    cursor:pointer;
    color:var(--secondary);
}

/* ======================================================
   HERO
====================================================== */
.hero{
    min-height:95vh;
    background:
    linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
    url('../images/skinic clinic/Skinic Lobby 3.jpg?version=09122026034313');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
}

.hero-grid{
    padding:110px 0;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

.hero-content{
    max-width:650px;
    color:var(--white);
}

.hero-sub{
    color:var(--primary);
    letter-spacing:4px;
    margin-bottom:15px;
}

.hero h1{
    font-size:72px;
    line-height:1.1;
    margin-bottom:20px;
}

.hero p{
    margin-bottom:35px;
    font-size:14px;
    font-family:'FuturaLT-Light';
}

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

/* LEFT CONTEXT */
.hero-context h1{
    font-size:60px;
    line-height:1.05;
    color:var(--white);
    margin:20px 0;
}

.hero-context h1 span{
    color:var(--primary);
}

.hero-context p{
    max-width:420px;
    font-size:17px;
    color:var(--white);
    margin-bottom:35px;
}

.btn-primary{
    background:var(--primary);
    color:var(--white);
    padding:14px 30px;
    border-radius:50px;
    transition:.3s;
}

.btn-primary:hover{
    background:var(--primary-active);
    transform:translateY(-2px);
}

.btn-secondary{
    background:var(--white);
    color:var(--body-text);
    padding:14px 30px;
    border-radius:50px;
    transition:.3s;
}

.btn-secondary:hover{
    background:var(--light2);
    transform:translateY(-2px);
}

.outline-btn{
    border:1px solid var(--primary);
    color:var(--primary);
    padding:14px 30px;
    border-radius:50px;
    transition:.3s;
}

.outline-btn:hover{
    border:1px solid var(--primary-active);
    background:var(--primary-active);
    color:var(--white);
    transform:translateY(-2px);
}

/* ======================================================
   HERO SECTION
====================================================== */
.hero-section{
    padding:110px 0;
    text-align:center;
    background:
    linear-gradient(rgba(242,237,225,.90), rgba(242,237,225,.90)),
    url('../images/skinic clinic/Skinic Lobby 3.jpg?version=09122026034313');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.hero-section h1{
    font-size:70px;
    color:var(--body-text);
    margin-bottom:12px;
}

.hero-section p{
    font-size:20px;
    color:var(--body-text);
    font-family:'FuturaLT-Light';
}

/* ======================================================
   INTRO TEXT
====================================================== */
.intro-text{
    text-align:center;
    max-width:950px;
    margin:auto;
}

.intro-text p{
    font-size:20px;
    font-family:'FuturaLT-Light';
    margin-bottom:20px;
    line-height:1.8;
}

/* ======================================================
   SERVICES
====================================================== */
.services-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.services-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.service-item{
    background:var(--light);
    padding:22px;
    border-radius:20px;
    display:flex;
    align-items:center;
    gap:15px;
    transition:.3s;
}

.service-item i{
    width:50px;
    height:50px;
    border-radius:50%;
    background:var(--light2);
    color:var(--secondary-dark);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:18px;
}

.services-image{
    position:relative;
    width:100%;
    height:720px;
    border-radius:40px;
    overflow:hidden;
}

.services-image img{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0;
    transition:opacity 1.8s ease-in-out;
}

.services-image img.active{
    opacity:1;
}

/* ======================================================
   SERVICES 2.0
====================================================== */
.services-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.service-card{
    background:var(--white);
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-image{
    background:var(--primary);
    border-radius:20px;
    overflow:hidden;
    height:720px;
}

.service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.service-card:hover img{
    transform:scale(1.08);
}

.service-content{
    padding:35px 30px;
    text-align:center;
}

.service-content h3{
    color:var(--body-text);
    margin-bottom:15px;
    font-size:34px;
}

.service-content p{
    color:var(--body-text);
    font-size:20px;
    font-family:'FuturaLT-Light';
    line-height:1.7;
}

/* ======================================================
   SERVICE CATEGORY
====================================================== */
.category-section{
    background:var(--bg);
    padding:80px 0 50px;
}

.category-section .section-title h2{
    color:var(--white);
}

.category-carousel-wrapper{
    position:relative;
    display:flex;
    align-items:center;
    width:100%;
}

.category-carousel{
    overflow:hidden;
    width:100%;
}

.category-grid{
    display:flex;
    gap:25px;
    transition:transform .5s ease;
    will-change:transform;
}

/* CATEGORY CARD */
.category-card{
    min-width:calc(25% - 19px);
    flex:0 0 calc(25% - 19px);
    border-radius:18px;
    overflow:hidden;
    position:relative;
    text-decoration:none;
}

.category-card img{
    width:100%;
    height:320px;
    object-fit:cover;
    display:block;
}

.category-content{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:20px;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.75),
        rgba(0,0,0,0)
    );
}

.category-content h3{
    color:var(--white);
    margin:0;
    font-size:20px;
}

/* ARROWS */
.category-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:48px;
    height:48px;
    border:none;
    border-radius:50%;
    background:var(--white);
    color:var(--body-text);
    cursor:pointer;
    z-index:10;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
    transition:.3s;
}

.category-arrow:hover{
    background:var(--primary);
    color:var(--white);
}

.category-arrow.left{
    left:-20px;
}

.category-arrow.right{
    right:-20px;
}

/* ======================================================
   DETAILS
====================================================== */
.details-wrapper{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:60px;
    align-items:center;
}

.details-content h2{
    font-size:52px;
    margin-bottom:25px;
    color:var(--body-text);
}

.details-content p{
    font-size:20px;
    line-height:1.9;
    margin-bottom:25px;
    font-family:'FuturaLT-Light';
}

.details-content h3{
    font-size:28px;
    margin-bottom:15px;
    color:var(--secondary-dark);
}

.details-content ul{
    padding-left:20px;
    margin-bottom:40px;
}

.details-content li{
    margin-bottom:10px;
    font-size:20px;
}

.primary-btn{
    display:inline-block;
    background:var(--primary);
    color:var(--white);
    padding:16px 35px;
    border-radius:50px;
    transition:.3s;
}

.primary-btn:hover{
    background:var(--primary-active);
}

.details-image{
    height:600px;
    border-radius:25px;
    overflow:hidden;
}

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

/* ======================================================
   BENEFITS CAROUSEL
====================================================== */
.benefits-section{
    background:radial-gradient(var(--primary), var(--light));
}

.benefits-carousel{
    width:100%;
    margin-top:-40px;
    overflow:hidden;
}

.benefits-track{
    display:flex;
    gap:25px;
    transition:transform .5s ease;
    padding:35px 35px;
}

.benefit-card{
    min-width:calc(33.333% - 17px);
    background:var(--white);
    padding:35px 28px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.benefit-card h3{
    margin-bottom:20px;
    font-size:28px;
    color:var(--secondary-dark);
}

.benefit-card ul{
    padding-left:20px;
}

.benefit-card li{
    margin-bottom:12px;
    line-height:1.7;
    font-size:20px;
    font-family:'FuturaLT-Light';
}

/* ======================================================
   FAQ
====================================================== */
.faq{
    background:var(--white);
}

.faq-wrapper{
    max-width:1000px;
    margin:auto;
}

.faq-title{
    font-size:52px;
    margin-bottom:40px;
}

.faq-sub{
    padding:20px;
    text-transform:uppercase;
    color:var(--secondary-dark);
    font-size:32px;
}

.faq-item{
    border:1px solid var(--secondary-dark);
    border-radius:14px;
    margin-bottom:20px;
    overflow:hidden;
}

.faq-question{
    padding:22px 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    background:var(--light);
}

.faq-question i {
    transition:transform 0.3s ease;
}

.faq-question h3{
    font-size:22px;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:.4s;
    background:var(--white);
}

.faq-answer p{
    padding:25px;
    line-height:1.8;
    font-size:20px;
    font-family:'FuturaLT-Light';
}

.faq-item.active .faq-question i {
    transform:rotate(180deg);
}

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

/* ======================================================
   OUR STORY
====================================================== */
.story-wrapper{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:60px;
    align-items:center;
}

.story-content h2{
    font-size:52px;
    margin-bottom:25px;
    color:var(--body-text);
}

.story-content p{
    font-size:20px;
    line-height:1.9;
    margin-bottom:25px;
    font-family:'FuturaLT-Light';
}

/* ======================================================
   CAROUSEL
====================================================== */
.story-carousel{
    position:relative;
    height:520px;
}

.carousel-card{
    position:absolute;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    transition:.7s ease;
}

.carousel-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.card-back{
    width:280px;
    height:360px;
    top:20px;
    left:20px;
    z-index:1;
}

.card-front{
    width:320px;
    height:400px;
    right:0;
    bottom:0;
    z-index:2;
}

/* ======================================================
   MISSION VISION
====================================================== */
.mission-section{
    background:radial-gradient(var(--primary), var(--light));
}

.mission-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
}

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

.mission-card h3{
    font-size:28px;
    margin-bottom:15px;
    color:var(--body-text);
}

.mission-card p{
    font-size:20px;
    line-height:1.9;
    margin-bottom:25px;
    font-family:'FuturaLT-Light';
}

/* ======================================================
   DOCTOR
====================================================== */
.doctor-section{
    padding:110px 0;
    text-align:center;
    background:
    linear-gradient(rgba(242,237,225,.90), rgba(242,237,225,.90)),
    url('../images/docjacq/Doc Jacq.jpg?version=09122026034313');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.doctor-wrapper{
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:50px;
    align-items:center;
}

.doctor-image{
    background:var(--primary);
    border-radius:20px;
    overflow:hidden;
    height:720px;
}

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

.doctor-content h2{
    font-size:52px;
    margin-bottom:10px;
    color:var(--body-text);
}

.doctor-content h3{
    font-size:28px;
    margin-bottom:25px;
    color:var(--secondary-dark);
}

.doctor-content p{
    font-size:20px;
    line-height:1.9;
    margin-bottom:25px;
    font-family:'FuturaLT-Light';
}

/* ======================================================
   VALUES
====================================================== */
.values-section{
    background:radial-gradient(var(--primary), var(--light));
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.value-card{
    position:relative;
    display:flex;
    background:var(--white);
    border-radius:18px;
    padding:35px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    transition:.4s;
    overflow:hidden;
}

.value-card:hover{
    transform:translateY(-10px);
}

.value-card h2{
    font-size:28px;
    margin-bottom:5px;
    color:var(--body-text);
}

.value-card h3{
    font-size:20px;
    margin-bottom:25px;
    color:var(--secondary-dark);
}

.value-card p{
    font-size:20px;
    line-height:1.9;
    margin-bottom:25px;
    font-family:'FuturaLT-Light';
}

.header-label h2{
    font-size:14px;
    margin-bottom:20px;
    color:var(--body-text);
    padding:20px;
    background:var(--light);
    border-radius:50px;
    letter-spacing:2px;
    text-transform:uppercase;
}

/* SIDE BAR LABEL */
.side-label {
    width:55px;
    border-radius:50px;
    background:var(--light);
    display:flex;
    align-items:center;
    justify-content:center;
    letter-spacing:2px;
    writing-mode:sideways-lr;
    text-orientation:mixed;
    text-transform:uppercase;
}

/* CONTENT AREA */
.card-content {
    padding:25px;
    flex:1;
    align-self:center;
    text-align:center;
}

/* ======================================================
FILTERS
====================================================== */
.gallery-filter{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:14px;
    margin-bottom:50px;
}

.filter-btn{
    padding:12px 22px;
    border-radius:8px;
    background:var(--white);
    color:var(--body-text);
    cursor:pointer;
    transition:.3s;
    font-family:inherit;
    font-size:12px;
    border:1px solid var(--body-text);
}

.filter-btn.active,
.filter-btn:hover{
    background:var(--body-text);
    color:var(--white);
    transform:translateY(-5px);
}

/* ======================================================
   GALLERY
====================================================== */
.gallery-section{
    background:var(--bg);
}

.gallery-section .section-title h2,
.gallery-section .section-title p{
    color:var(--white);
}

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

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    height:320px;
    cursor:pointer;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

/* HOVER EFFECT */
.gallery-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.75);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:var(--white);
    opacity:0;
    transition:.5s;
    padding:20px;
}

.gallery-item:hover img{
    transform:scale(1.1);
}

.gallery-item:hover .gallery-overlay{
    opacity:1;
}

.gallery-overlay h3{
    color:var(--primary);
    margin-bottom:10px;
    font-size:24px;
}

/* ======================================================
   ABOUT
====================================================== */
.about{
    background:var(--white);
}

.about-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-image{
    position:relative;
}

.about-image img{
    border-radius:24px;
    height:620px;
    object-fit:cover;
}

.experience-box{
    position:absolute;
    bottom:30px;
    right:-20px;
    background:var(--primary);
    padding:30px;
    border-radius:20px;
    color:var(--white);
    width:220px;
    text-align:center;
    box-shadow:0 15px 30px rgba(0,0,0,.12);
}

.about-content h2{
    font-size:52px;
    color:var(--body-text);
    margin-bottom:25px;
}

.about-content p{
    line-height:1.9;
    margin-bottom:20px;
    font-family:'FuturaLT-Light';
}

.about-features{
    margin-top:30px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.feature-item{
    background:var(--light);
    padding:22px;
    border-radius:16px;
    display:flex;
    gap:15px;
    align-items:flex-start;
}

.feature-item i{
    color:var(--secondary-dark);
    font-size:24px;
    margin-top:3px;
}

.feature-item p{
    color:var(--body-text);
    font-family:'FuturaLT-Light';
}

/* ======================================================
   TESTIMONIALS CAROUSEL
====================================================== */
.testimonial-section{
    position:relative;
    overflow:hidden;
    background:radial-gradient(var(--primary), var(--light));
    padding:100px 0;
}

/* PHONE STYLE CONTAINER */
.testimonial-slider{
    position:relative;
    max-width:430px;
    margin:auto;
    padding:75px 15px;
    border-radius:48px;
    background:var(--light);

    /* PHONE FRAME EFFECT */
    border:10px solid var(--bg);
    box-shadow:
        0 25px 50px rgba(0,0,0,0.18),
        inset 0 0 0 2px rgba(255,255,255,0.08);

    overflow:hidden;
}

/* PHONE TOP NOTCH */
.testimonial-slider::before{
    content:"";
    position:absolute;
    top:14px;
    left:50%;
    transform:translateX(-50%);
    width:140px;
    height:26px;
    background:var(--bg);
    border-radius:20px;
    z-index:10;
}

/* SUBTLE PREMIUM BACKGROUND INSIDE PHONE */
.testimonial-slider::after{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at top left,
            rgba(255,255,255,0.45),
            transparent 35%),
        radial-gradient(circle at bottom right,
            rgba(0,0,0,0.04),
            transparent 30%),
        linear-gradient(
            135deg,
            rgba(255,255,255,0.18),
            rgba(255,255,255,0)
        );
    pointer-events:none;
}

/* TESTIMONIAL CARD */
.testimonial-card{
    position:relative;
    z-index:2;
    display:none;
    flex-direction:column;
    justify-content:center;
    text-align:center;
}

.testimonial-card.active{
    display:flex;
}

.title-line{
    width:90px;
    height:4px;
    background:var(--secondary-dark);
    border-radius:20px;
    margin:22px auto 0;
}

/* QUOTE TEXT */
.quote{
    font-size:20px;
    font-family:'FuturaLT-Light';
    margin-top:25px;
    margin-bottom:25px;
}

/* QUOTE ICONS */
.quote-top{
    color:var(--secondary-dark);
    font-size:100px;
    position:absolute;
    top:-85px;
}

/* AVATAR */
.client-avatar{
    width:65px;
    height:65px;
    border-radius:50%;
    background:var(--primary);
    margin:40px auto 0;
    display:flex;
    justify-content:center;
    align-items:center;
    color:var(--white);
}

/* ======================================================
   VIDEO TESTIMONIALS
====================================================== */
.video-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

/* REELS STYLE */
.reel-card{
    aspect-ratio:9/16;
    position:relative;
    border-radius:28px;
    overflow:hidden;
    background:var(--body-text);
    cursor:pointer;
}

.reel-video{
    width:100%;
    height:100%;
    object-fit:cover;
}

.reel-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,.1));
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.play-btn{
    width:90px;
    height:90px;
    border-radius:50%;
    background:rgba(255,255,255,.2);
    backdrop-filter:blur(5px);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--white);
    font-size:32px;
    transition:.3s;
}

.reel-card:hover .play-btn{
    transform:scale(1.1);
}

.reel-info{
    position:absolute;
    bottom:30px;
    left:25px;
    color:var(--white);
    z-index:3;
}

.reel-info h3{
    font-size:24px;
    margin-bottom:10px;
}

.reel-info p{
    font-family:'FuturaLT-Light';
}

/* ======================================================
   REVIEWS
====================================================== */
.review-content h2{
    font-size:52px;
    margin-bottom:10px;
}

.rating{
    margin-bottom:50px;
    font-size:26px;
    color:var(--secondary-dark);
}

.rating span{
    color:var(--body-text);
    font-size:24px;
    margin-right:10px;
}

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

.review-card{
    border-radius:16px;
    padding:40px;
    background:var(--white);
    transition:.3s;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.review-card:hover{
    transform:translateY(-10px);
}

.review-card p{
    line-height:1.8;
    font-family:'FuturaLT-Light';
    margin-bottom:35px;
}

/* ======================================================
   CONTACTS
====================================================== */
.contact-list{
    margin-top:20px;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:20px;
    font-size:15px;
}

.contact-item .info{
    color:var(--white);
}

.contact-item i{
    height:45px;
    width:45px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--light2);
    color:var(--secondary-dark);
    font-size:18px;
}

.contact-item strong{
    display:block;
    color:var(--white);
    font-weight:700;
}

/* ======================================================
   CONTACTS FORM
====================================================== */
.contact-box{
    background:var(--white);
    border-radius:12px;
    padding:35px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.contact-box h2{
    text-align:center;
    font-size:35px;
    color:var(--body-text);
    margin-bottom:10px;
}

.contact-box .subtitle{
    text-align:center;
    font-size:14px;
    margin-bottom:25px
}

/* ======================================================
    TRUST SECTION
====================================================== */
.trust-section{
    margin-top:-50px;
    position:relative;
    z-index:10;
}

.trust-wrapper{
    background:var(--white);
    border-radius:12px;
    padding:35px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.trust-card{
    text-align:center;
    border-right:1px solid var(--light);
    padding:10px 20px;
}

.trust-card:last-child{
    border-right:none;
}

.trust-card i{
    font-size:35px;
    color:var(--secondary-dark);
    margin-bottom:15px;
}

.trust-card h3{
    font-size:16px;
    color:var(--body-text);
    margin-bottom:8px;
}

.trust-card p{
    font-size:14px;
}

/* ======================================================
    CONCERNS
====================================================== */
.concern-grid{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.concern-card{
    padding:12px 22px;
    border-radius:8px;
    background:var(--white);
    color:var(--body-text);
    cursor:pointer;
    transition:.3s;
    font-family:inherit;
    font-size:12px;
    border:1px solid var(--body-text);
}

.concern-card:hover{
    background:var(--body-text);
    color:var(--white);
    transform:translateY(-5px);
}

/* ======================================================
    CONSULTATION
====================================================== */
.consult-section{
    background:radial-gradient(var(--primary), var(--light));
}

.consult-wrapper{
    border-radius:15px;
    overflow:hidden;
    display:grid;
    grid-template-columns:1fr 1.5fr 1.5fr;
    align-items:center;
}

.consult-image img{
    border-radius:10px;
    height:330px;
    object-fit:cover;
}

.consult-content{
    padding:35px;
}

.consult-content h2{
    font-size:40px;
    color:var(--body-text);
    line-height:1.1;
}

.consult-content h3{
    color:var(--secondary-dark);
    margin:15px 0;
}

.consult-content ul{
    list-style:none;
    margin-bottom:25px;
}

.consult-content li{
    margin:10px 0;
    font-size:14px;
}

.consult-content li i{
    color:var(--secondary-dark);
    margin-right:10px;
}

.consult-btn{
    background:var(--primary);
    color:var(--white);
    padding:14px 30px;
    border-radius:5px;
}

.consult-btn:hover{
    background:var(--primary-active);
}

/* ======================================================
    HOW IT WORKS
====================================================== */
.workflow{
    padding:30px;
    background:var(--white);
    border-radius:10px;
}

.workflow h3{
    font-size:20px;
    text-align:center;
    margin-bottom:25px;
}

.workflow-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

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

.workflow-item i{
    height:50px;
    width:50px;
    border-radius:50%;
    background:var(--light2);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto auto 15px;
    color:var(--secondary-dark);
}

.workflow-item strong{
    display:block;
    font-size:14px;
}

.workflow-item p{
    font-size:14px;
}

/* ======================================================
    CLINIC SECTION
====================================================== */
.clinic-grid{
    display:grid;
    grid-template-columns:1.3fr 1fr .8fr;
    gap:30px;
    align-items:center;
}

.clinic-map iframe{
    width:100%;
    height:330px;
    border:0;
    border-radius:10px;
}

.clinic-info h2{
    font-size:40px;
    color:var(--body-text);
}

.clinic-info h3{
    font-size:20px;
    margin:25px 0;
    color:var(--secondary-dark);
}

.clinic-info p{
    font-size:14px;
    margin-bottom:30px;
}

.map-btn{
    background:var(--primary);
    color:var(--white);
    padding:14px 30px;
    border-radius:5px;
}

.map-btn:hover{
    background:var(--primary-active);
}

.social-icons{
    display:flex;
    gap:12px;
}

.social-icons a{
    height:35px;
    width:35px;
    border-radius:50%;
    background:var(--light2);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--secondary-dark);
}

.clinic-photo img{
    border-radius:10px;
    height:330px;
    object-fit:cover;
}

/* ======================================================
   BOOKING
====================================================== */
.booking-wrapper{
    padding:25px 35px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* Step */
.step{
    display:flex;
    align-items:center;
    gap:20px;
    flex:1;
}

.booking-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:var(--light2);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    color:var(--secondary-dark);
}

.booking-content h3{
    font-size:16px;
    margin:0 0 12px;
}

.booking-content p{
    margin:0;
    font-size:14px;
    line-height:1.7;
    color:var(--body-text);
}

/* Arrow */
.arrow{
    font-size:32px;
    color:var(--secondary-dark);
    padding:0 50px;
}

.booking-list{
    margin-top:20px;
}

.booking-item{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:20px;
    font-size:15px;
}

.booking-item .info{
    color:var(--white);
}

.booking-item i{
    height:45px;
    width:45px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--light2);
    color:var(--secondary-dark);
    font-size:18px;
}

.booking-item strong{
    display:block;
    color:var(--white);
    font-weight:700;
}

/* ======================================================
   BOOKING FORM
====================================================== */
.booking-box{
    background:var(--white);
    border-radius:12px;
    padding:35px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.booking-box h2{
    text-align:center;
    font-size:35px;
    color:var(--body-text);
    margin-bottom:10px;
}

.booking-box .subtitle{
    text-align:center;
    font-size:14px;
    margin-bottom:25px
}

/* ======================================================
   FORMS
====================================================== */
.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

input,
textarea,
select{
    color:var(--body-text);
    width:100%;
    padding:15px;
    border:1px solid #eee;
    border-radius:5px;
    font-family:inherit;
    font-size:14px;
    margin-bottom:15px;
    outline:none;
}

textarea{
    height:120px;
    resize:none;
}

.submit-btn{
    width:100%;
    background:var(--primary);
    color:var(--white);
    border:0;
    padding:15px;
    border-radius:5px;
    cursor:pointer;
    transition:.3s;
}

.submit-btn:hover{
    background:var(--primary-active);
}

.safe-note{
    text-align:center;
    margin-top:12px;
    color:var(--body-text);
}

/* ======================================================
   CAROUSEL DOTS
====================================================== */
.carousel-dots{
    display:flex;
    justify-content:center;
    gap:12px;
    margin-top:35px;
}

.dots{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:30px;
    position:relative;
    z-index:2;
}

.dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:var(--white);
    transition:0.3s;
}

.dot.active{
    width:28px;
    border-radius:20px;
    background:var(--secondary-dark);
}

/* ======================================================
   CTA UPPER FOOTER
====================================================== */
.cta{
    position:relative;
    overflow:hidden;
    color:var(--white);
}

.cta::before{
    content:'';
    position:absolute;
    inset:0;
    background:
    linear-gradient(rgba(0,0,0,.8), rgba(0,0,0,.8)),
    url('../images/skinic clinic/Skinic Consult.jpg?version=09122026034313');
    background-size:cover;
    background-position:center;
    opacity:.75;
}

.cta-wrapper{
    position:relative;
    z-index:2;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
}

.cta h2{
    font-size:62px;
    color:var(--white);
    margin-bottom:15px;
}

.cta p{
    font-size:20px;
    font-family:'FuturaLT-Light';
}

.cta-action{
    text-align:center;
    align-self:anchor-center;
    margin-top:50px;
}

.cta-btn{
    background:var(--primary);
    color:var(--white);
    padding:14px 30px;
    border-radius:5px;
}

.cta-btn:hover{
    background:var(--primary-active);
}

.cta-text{
    margin-top:20px;
    margin-bottom:10px;
}

.cta-social a{
    color:var(--white);
    font-size:24px;
    margin:10px;
}

/* ======================================================
   FOOTER
====================================================== */
.footer-main{
    background:var(--white);
    padding:50px 0 0;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.5fr repeat(4,1fr);
    gap:15px;
}

.footer-about p{
    font-size:14px;
}

.footer-text{
    margin-top:40px;
    font-family:'FuturaLT-Light';
}

.footer-social{
    display:flex;
    gap:10px;
    margin-top:20px;
}

.footer-social a{
    height:35px;
    width:35px;
    border-radius:50%;
    background:var(--light2);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--secondary-dark);
}

.footer-column h3{
    font-size:16px;
    color:var(--body-text);
    margin-bottom:20px;
}

.footer-column a{
    display:block;
    font-size:14px;
    color:var(--body-text);
    margin-bottom:10px;
}

.footer-column p{
    font-size:14px;
    margin-bottom:12px;
}

.viber-btn{
    text-align:center;
    background:var(--primary);
    color:var(--white) !important;
    padding:14px 30px;
    border-radius:50px;
    transition:.3s;
}

.viber-btn:hover{
    background:var(--primary-active);
    transform:translateY(-2px);
}

.footer-bottom{
    margin-top:40px;
    border-top:1px solid var(--light);
    padding:20px 0;
}

.footer-bottom .container{
    display:flex;
    justify-content:space-between;
    font-size:14px;
}

.footer-bottom a{
    color:var(--body-text);
}



/* ======================================================
   RESPONSIVE
====================================================== */
@media(max-width:1100px){

    .services-wrapper,
    .about-wrapper,
    .about-features,
    .details-wrapper,
    .story-wrapper,
    .doctor-wrapper,
    .benefits-grid,
    .contact-grid,
    .form-grid,
    .hero-grid,
    .consult-wrapper,
    .clinic-grid{
        grid-template-columns:1fr;
    }

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

    .treatment-grid,
    .category-grid,
    .gallery-grid,
    .video-grid,
    .trust-wrapper,
    .workflow-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .hero h1,
    .hero-section h1{
        font-size:56px;
    }

    .details-image,
    .doctor-image{
        height:500px;
    }

    .benefit-card{
        min-width:calc(50% - 13px);
    }

    .category-card{
        min-width:calc(50% - 13px);
        flex:0 0 calc(50% - 13px);
    }

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

    .social-icons{
        justify-content:center;
    }

    .contact-map{
        min-height:420px;
    }

    .booking-wrapper{
        flex-direction:column;
        gap:25px;
    }

    .step{
        width:100%;
    }

    .arrow{
        transform:rotate(90deg);
    }

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

@media(max-width:768px){

    .menu-toggle{
        display:block;
    }

    .nav-wrapper{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:var(--white);
        flex-direction:column;
        align-items:flex-start;
        padding:20px;
        display:none;
    }

    .nav-wrapper.active{
        display:flex;
    }

    .nav-links{
        flex-direction:column;
        width:100%;
        align-items:flex-start;
        gap:0;
    }

    .nav-links a{
        width:100%;
        padding:18px 0;
        border-bottom:1px solid rgba(162,142,84,.15);
    }

    /* REMOVE DESKTOP VERTICAL LINES */
    .nav-links a:not(:last-child)::before{
        display:none;
    }

    /* MOBILE HOVER LINE */
    .nav-links a::after{
        left:0;
        bottom:-1px;
    }

    .nav-links a:hover::after{
        width:100%;
    }

    .hero h1,
    .hero-seection h1,{
        font-size:42px;
    }

    .hero-section, hero-grid{
        padding:90px 0;
    }

    .hero-section p{
        font-size:18px;
    }

    .section-title h2,
    .details-content h2,
    .faq-title,
    .story-content h2,
    .doctor-content h2,
    .cta h2{
        font-size:38px;
    }

    .doctor-content h3,
    .value-card h3{
        font-size:24px;
    }

    .treatment-grid,
    .category-grid,
    .gallery-grid,
    .services-grid,
    .services-list,
    .mission-grid,
    .values-grid,
    .footer-grid,
    .trust-wrapper,
    .workflow-grid{
        grid-template-columns:1fr;
    }

    .cta-wrapper{
        flex-direction:column;
        align-items:flex-start;
    }

    .details-image{
        height:420px;
    }

    .story-carousel{
        height:430px;
    }

    .card-front{
        width:250px;
        height:320px;
    }

    .card-back{
        width:220px;
        height:280px;
    }

    .benefit-card{
        min-width:100%;
    }

    .category-card{
        min-width:100%;
        flex:0 0 100%;
    }

    .category-arrow{
        width:40px;
        height:40px;
    }

    .category-arrow.left{
        left:10px;
    }

    .category-arrow.right{
        right:10px;
    }

    .trust-card{
        border-right:none;
        border-bottom:1px solid #eee;
        padding:20px;
    }

    .trust-card:last-child{
        border-bottom:none;
    }

    .consult-content{
        padding:75px 0;
    }
}

@media(max-width:480px){

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

    .hero-buttons{
        flex-direction:column;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        text-align:center;
    }

    .story-carousel{
        height:360px;
        max-width:420px;
    }

    .card-front{
        width:210px;
        height:270px;
    }

    .card-back{
        width:180px;
        height:230px;
    }
}