
/* --- DESIGN SYSTEM SETUP & RESET --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #f3f5f1;       
    --teal-brand: #00bb9c;     /* Updated to vibrant template green accent */
    --teal-dark: #00594c;      /* Editorial deep dark green text */
    --dark-charcoal: #111212;  
    --text-muted: #757c77;     
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-headings: 'El Messiri', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--dark-charcoal);
    font-family: var(--font-body);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

.text-green {
    color: var(--teal-dark);
}

.primary-button {
    background-color: var(--teal-dark);
    color: white;
    padding: 16px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
    transition: background-color 0.25s ease;
    display: inline-block;
}

.primary-button:hover {
    background-color: #004037;
}

/* --- STICKY TOP NAVIGATION NAVBAR --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 80px;
    background-color: rgba(243, 245, 241, 0.85);
    backdrop-filter: blur(15px);
    z-index: 1000;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 24px;
}

.logo-icon {
    width: 24px;
    height: 24px;
    background-color: var(--dark-charcoal);
    clip-path: polygon(0% 0%, 100% 0%, 85% 85%, 50% 100%, 15% 85%);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark-charcoal);
    font-weight: 500;
    font-size: 15px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-btn {
    position: relative;
    background: none;
    border: 1px solid rgba(0,0,0,0.1);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: #d97453;
    color: white;
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-nav-appointment {
    border: 1px solid rgba(0,0,0,0.3);
    color: var(--dark-charcoal);
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

/* --- FIXED SIDEBAR PANEL SOCIAL LINKS --- */
.fixed-socials {
    position: fixed;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.fixed-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--dark-charcoal);
    font-size: 13px;
}

/* --- SECTION 1: HERO CONTAINER CANVAS --- */
.hero-canvas {
    position: relative;
    width: 100%;
    padding-top: 180px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title-suite {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
}

.scroll-block {
    display: block;
    width: 100%;
    will-change: transform;
}

.title-line {
    font-family: var(--font-serif);
    font-size: 7.5vw;
    font-weight: 400;
    white-space: nowrap;
    line-height: 1.1;
}

.line-1 {
    color: var(--teal-dark);
    text-align: left;
    padding-left: 15%;
}

.line-2-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: -10px;
    padding-left: 5%;
}

.line-2 {
    color: var(--teal-dark);
}

.line-3 {
    color: var(--dark-charcoal);
    text-align: left;
    padding-left: 28%;
    margin-top: -10px;
}

/* Image Mask Setup */
.organic-fluid-img {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 5;
    animation: floatVibe 6s ease-in-out infinite alternate;
}

.img-left-panel {
    width: 290px;
    height: 290px;
    left: 5%;
    top: 380px;
    background-image: url('hero-1/banner-1.png');
}

.img-right-panel {
    width: 310px;
    height: 310px;
    right: 5%;
    top: 200px;
    background-image: url('hero-1/banner-2.png');
    animation-delay: -3s;
}

.stamped-badge {
    width: 110px;
    height: 110px;
    border: 1px dashed var(--teal-dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slowSpin 20s linear infinite;
    position: relative;
}
.stamped-badge-svg {
    width: 100%;
    height: 100%;
    animation: slowSpin 18s linear infinite;
}
.stamped-badge-text {
    fill: var(--teal-dark);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}
.stamped-badge-star {
    position: absolute;
    font-size: 22px;
    line-height: 1;
}

.hero-editorial-footer {
    max-width: 1200px;
    width: 100%;
    margin-top: 60px;
    padding: 0 10% 20px 28%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 20;
}

.editorial-desc {
    max-width: 480px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* --- SECTION 2: INFINITE LOGO BRAND SCROLLER --- */
.infinite-marquee-section {
    width: 100%;
    overflow: hidden;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 50px 0;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 80px;
}

.marquee-container {
    display: flex;
    width: calc(280px * 12); 
    animation: runMarquee 25s linear infinite;
}

.marquee-brand {
    width: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 600;
    color: rgba(24, 25, 25, 0.4);
    letter-spacing: -0.5px;
}

/* --- SECTION 3: SERVICES CONTROLS SLIDER --- */
/* --- SECTION 3: SERVICES CONTROLS SLIDER --- */
.section.service {
width: 100%;
text-align: center;
padding: 60px 0;
}

.section-tittle-wrapper {
max-width: 650px;
margin: 0 auto 50px auto;
}

.section-tittle {
font-family: var(--font-headings, sans-serif);
font-size: 46px;
font-weight: 700;
line-height: 1.2;
margin-bottom: 16px;
}

.section-details {
font-size: 15px;
color: var(--text-muted, #666);
line-height: 1.6;
}

.slider-viewport {
width: 100%;
overflow: hidden;
margin-bottom: 30px;
}

.service-slider-wrapper {
display: flex;
width: 200%; 
transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
will-change: transform;
}

.slide-group {
display: flex;
gap: 24px;
width: 50%;
padding: 10px;
}

.single-service-wrapper {
flex: 1;
height: 380px;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
border-radius: 90px; 
position: relative;
overflow: hidden;
display: flex;
align-items: stretch;
box-shadow: 0 10px 35px rgba(0,0,0,0.03);
transition: transform 0.4s ease;
}

.single-service-wrapper:hover {
transform: translateY(-5px);
}

.single-service-content-wrap {
width: 65%;
background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.98) 75%, rgba(255,255,255,0) 100%);
padding: 50px 40px 50px 50px;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
text-align: left;
z-index: 2;
}

.service-icon-wrap {
margin-bottom: 20px;
width: 44px;
height: 44px;
}

.service-icon {
width: 100%;
height: auto;
}

.service-name {
font-family: var(--font-headings, sans-serif);
font-size: 24px;
font-weight: 700;
color: var(--dark-charcoal, #222);
margin-bottom: 12px;
}

.single-service-content-wrap .service-details {
font-size: 14px;
color: var(--text-muted, #666);
line-height: 1.6;
margin-bottom: 24px;
}

.service-btn {
display: inline-flex;
align-items: center;
gap: 8px;
text-decoration: none;
color: var(--teal-dark, #0b7a75);
font-weight: 700;
font-size: 14px;
transition: gap 0.2s ease;
}

.service-btn:hover { gap: 14px; }

/* --- Slider Navigation (Arrows & Dots) --- */
.service-slide-nav-wrapper {
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
margin-top: 10px;
}

.service-slide-nav {
display: flex;
gap: 12px;
align-items: center;
}

.service-slider-dot {
width: 12px;
height: 12px;
border-radius: 50%;
background-color: #ccc;
cursor: pointer;
transition: background-color 0.3s ease;
}

.service-slider-dot.active {
background-color: var(--teal-dark, #0b7a75);
}

.slide-arrow {
background-color: var(--teal-dark, #0b7a75); 
color: #ffffff;
border: none;
width: 45px;
height: 45px;
border-radius: 50%;
font-size: 18px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: background-color 0.3s ease, transform 0.2s ease;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.slide-arrow:hover {
background-color: #085955;
transform: scale(1.05);
}

.slide-arrow:active {
transform: scale(0.95);
}

/* --- SECTION 4: HEALTH DATA TICKER COUNTERS --- */
.section.healthy-smile {
    width: 100%;
    padding: 80px 0;
}

.healthy-smile-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.healthy-counter-up-wrap {
    flex: 1;
    max-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.single-happy-counter-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.happy-info-counter-up {
    display: flex;
    align-items: baseline;
    font-size: 56px;
    font-weight: 700;
    color: var(--dark-charcoal);
    line-height: 1;
    height: 56px;
    overflow: hidden;
}

.counter-strip {
    display: flex;
    flex-direction: column;
    transition: transform 2.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.counter-number {
    height: 56px;
    display: flex;
    align-items: center;
}

.info-single-num-text { font-size: 56px; font-weight: 400; margin-left: 2px;}
.healty-counter-info-text { font-size: 14px; color: var(--text-muted); margin-top: 8px; font-weight: 500;}

.healthy-smile-img-wrap {
    flex: 1.2;
    position: relative;
    max-width: 480px;
}

.healthy-smile-img {
    width: 100%;
    height: auto;
    filter: none;
    border-radius: 54% 46% 54% 46% / 47% 53% 47% 53%;
    animation: imageFloat 6s ease-in-out infinite alternate;
}

.dental-circle-wrapper.healthy-smile {
    position: absolute;
    top: 0px;
    right: 15px;
    width: 100px;
    height: 100px;
}

.healthy-smile-content-wrap {
    flex: 1.5;
    max-width: 480px;
    text-align: left;
}

.healthy-smile-details { font-size: 15px; color: var(--text-muted); line-height: 1.6; margin-bottom: 30px;}

/* --- SECTION 5: WHY CHOOSE LIST LAYOUTS --- */
.section.why-choose {
    width: 100%;
    padding: 80px 0;
}

.section-tittle.wcu {
    font-size: 46px;
    margin-bottom: 60px;
    padding-left: 310px;
}

.wcu-main-layout { display: flex; width: 100%; }
.wcu-left-brand-pane { width: 310px; }

.dental-circle-wrapper.wcu-placement {
    position: sticky;
    top: 200px;
    width: 110px;
    height: 110px;
    margin-left: 60px;
}

.wcu-content-list { flex: 1; display: flex; flex-direction: column; }

.single-choose-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    cursor: pointer;
}
.single-choose-wrapper:first-child { border-top: 1px solid rgba(0, 0, 0, 0.08); }

.chose-us-title-group { display: flex; align-items: center; gap: 25px; position: relative; }
.wcu-icon-wrap { width: 32px; height: 32px; }
.wcu-icon-wrap img { width: 100%; height: auto; }

.wcu-name {
    font-family: var(--font-headings);
    font-size: 26px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.wcu-hover-img-wrap {
    position: absolute;
    left: calc(100% + 20px);
    top: 50%;
    transform: translateY(-50%) scale(0.8);
    width: 110px;
    height: 110px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.wcu-hover-img-wrap img { width: 100%; height: 100%; object-fit: cover; filter: none; border-radius: 35px; }

.chose-us-details-wrap { max-width: 420px; width: 100%; text-align: left; padding-left: 20px; }
.chose-us-content-details { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.single-choose-wrapper:hover .wcu-name { color: var(--teal-dark); }
.single-choose-wrapper:hover .wcu-hover-img-wrap { opacity: 1; transform: translateY(-50%) scale(1); }

/* --- SECTION 6: MEET OUR SPECIALISTS (FULL 5 CARDS TRANSITIONS) --- */
.section.specialists { 
width: 100%; 
padding: 80px 0; 
}
.section-tittle-wrapper.left-flex { 
display: flex; 
justify-content: space-between; 
align-items: flex-end; 
margin-bottom: 60px; 
}
.section-tittle-heading-wrapper.specialist { 
max-width: 580px; 
text-align: left; 
}

/* Specialists Interactive Carousel */
.specialist-viewport {
width: 100%;
overflow: hidden;
margin-bottom: 30px;
}

.specialist-slider-track { 
display: flex; 
width: 250%; /* Large width container to safely navigate 5 columns */
transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); 
will-change: transform;
}

.specialist-slide-group {
display: flex;
gap: 24px;
width: 40%; /* Exactly segments active visible workspace views */
padding: 10px;
}

.single-specialist-wrapper {
flex: 1;
background-color: #ffffff;
border-radius: 90px; 
overflow: hidden;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
box-shadow: 0 10px 35px rgba(0,0,0,0.04);
transition: transform 0.4s ease;
}
.single-specialist-wrapper:hover { transform: translateY(-8px); }

.specialist-img-container { width: 100%; height: 320px; position: relative; }

/* REMOVED grayscale so the doctors show in color! */
.single-specialist-img { width: 100%; height: 100%; object-fit: cover; }

.specialist-img-container::after {
content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 40%;
background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); z-index: 2;
}

.single-specialist-details-wrapper { padding: 10px 30px 45px 30px; width: 100%; display: flex; flex-direction: column; align-items: center; background-color: #ffffff; position: relative; z-index: 5; margin-top: -30px; }
.specialist-name { font-family: var(--font-headings, sans-serif); font-size: 24px; font-weight: 700; margin-bottom: 6px; }
.specialist-designation { font-size: 14px; color: var(--text-muted, #666); font-weight: 500; margin-bottom: 16px; }

.specialist-details { font-size: 14px; color: var(--text-muted, #666); line-height: 1.5; max-width: 240px; margin-bottom: 24px; }
.specialist-more-btn-wrap a { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: var(--teal-dark, #0b7a75); font-weight: 700; font-size: 14px; }

/* Specialist Slider Dots */
.spec-slider-dot {
width: 12px;
height: 12px;
border-radius: 50%;
background-color: #ccc;
cursor: pointer;
transition: background-color 0.3s ease;
}
.spec-slider-dot.active {
background-color: var(--teal-dark, #0b7a75);
}




/* --- BRAND DESIGN CORE SYSTEM --- */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

:root {
--bg-color: #f3f5f1;       
--teal-brand: #00594c;     
--dark-charcoal: #111212;  
--text-muted: #757c77;     
--font-headings: 'El Messiri', sans-serif;
--font-body: 'DM Sans', sans-serif;
}

body {
background-color: var(--bg-color);
font-family: var(--font-body);
color: var(--dark-charcoal);
}

.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

/* --- UNIFORM PREMIUM SECTION GAP GENERATOR --- */
.section {
padding: 140px 0; /* Clean, intentional spacing separating section modules cleanly */
position: relative;
width: 100%;
}

.text-green {
color: var(--teal-brand);
}

/* --- TYPOGRAPHY CORE HEADINGS --- */
.section-tittle {
font-family: var(--font-headings);
font-size: 46px;
font-weight: 700;
line-height: 1.2;
color: var(--dark-charcoal);
}

.section-details {
font-size: 15px;
color: var(--text-muted);
line-height: 1.6;
}

.primary-button {
background-color: var(--teal-brand);
color: white;
padding: 16px 36px;
border-radius: 30px;
text-decoration: none;
font-weight: 500;
font-size: 14px;
white-space: nowrap;
transition: background-color 0.25s ease;
display: inline-block;
}

.primary-button:hover {
background-color: #004037;
}

/* =======================================================
MODULE 1: COMFORTABLE TREATMENT STYLES
======================================================= */
.comfortable-treatment-header {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 60px;
width: 100%;
}

.comfortable-treatment-header .title-block {
max-width: 580px;
text-align: left;
}

.right-header-meta {
display: flex;
align-items: center;
gap: 40px;
max-width: 500px;
}

.comfortable-treatment-heading-details {
font-size: 14px;
color: var(--text-muted);
line-height: 1.6;
text-align: left;
}

.dental-circle-wrapper {
width: 90px;
height: 90px;
flex-shrink: 0;
}

.dental-circle {
width: 100%;
height: auto;
animation: continuousSpin 25s linear infinite;
}

.cta-button {
background-color: var(--teal-brand);
color: white;
padding: 16px 32px;
border-radius: 30px;
text-decoration: none;
font-weight: 500;
font-size: 14px;
white-space: nowrap;
display: inline-block;
margin-top: 15px;
transition: background-color 0.25s ease;
}

.cta-button:hover { background-color: #004037; }

.comfortable-treatment-tabs-wrapper {
display: flex;
align-items: stretch;
gap: 50px;
width: 100%;
}

.comfortable-treatment-tabs-content {
flex: 1;
max-width: 460px;
height: 520px;
position: relative;
}

.comfortable-treatment-img-wrap {
width: 100%;
height: 100%;
border-radius: 90px; 
overflow: hidden;
background-color: #e3e6e1;
position: absolute;
top: 0;
left: 0;
opacity: 0;
pointer-events: none;
transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
box-shadow: 0 10px 35px rgba(0,0,0,0.02);
}

.comfortable-treatment-img-wrap.active {
opacity: 1;
pointer-events: auto;
}

.comfortable-treatment-img {
width: 100%;
height: 100%;
object-fit: cover;
filter: none;
display: block;
}

.comfortable-treatment-tabs-menu {
flex: 1.3;
display: flex;
flex-direction: column;
gap: 16px;
justify-content: center;
}

.comfortable-treatment-single-tab-link {
width: 100%;
padding: 30px 40px;
border-radius: 35px; 
text-decoration: none;
color: var(--dark-charcoal);
display: flex;
align-items: flex-start;
gap: 25px;
cursor: pointer;
background-color: transparent;
border: 1px solid transparent;
transition: all 0.3s ease;
}

.comfortable-treatment-single-tab-link.active {
background-color: #ffffff;
box-shadow: 0 15px 45px rgba(0, 0, 0, 0.03);
border: 1px solid rgba(255, 255, 255, 1);
}

.treatment-tab-link-icon {
width: 44px;
height: 44px;
border: 1px solid rgba(0,0,0,0.06);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
background-color: #ffffff;
flex-shrink: 0;
font-size: 20px;
color: var(--teal-brand);
}

.comfortable-treatment-single-tab-link.active .treatment-tab-link-icon {
background-color: var(--bg-color);
}

.treatment-tab-link-content-wrap {
display: flex;
flex-direction: column;
text-align: left;
}

.comfort-treatment-name {
font-family: var(--font-body);
font-size: 20px;
font-weight: 700;
color: var(--dark-charcoal);
margin-bottom: 8px;
line-height: 1.3;
}

/* =======================================================
MODULE 2: PATIENTS FEEDBACK STYLES
======================================================= */
.section-tittle-wrapper.feedback {
text-align: center;
max-width: 650px;
margin: 0 auto 100px auto; 
}

.feedback-slider-wrapper {
display: flex;
justify-content: center;
width: 100%;
position: relative;
}

.feedback-slider-content-wrapper {
background-color: #ffffff;
max-width: 760px;
width: 100%;
border-radius: 90px; 
padding: 80px 70px 50px 70px;
position: relative;
box-shadow: 0 10px 40px rgba(0,0,0,0.02);
text-align: center;
}

.feedback-client-wrap {
position: absolute;
top: 0;
left: 50%;
transform: translate(-50%, -50%); 
display: flex;
flex-direction: column;
align-items: center;
gap: 12px;
z-index: 10;
}

.feedback-img {
width: 90px;
height: 90px;
object-fit: cover;
filter: none;
border-radius: 54% 46% 54% 46% / 47% 53% 47% 53%; 
background-color: #e3e6e1;
box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.feedback-client-name-wrap {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
}

.feedback-client-name-line {
width: 14px;
height: 1px;
background-color: var(--text-muted);
}

.feedback-client-name {
font-size: 14px;
color: var(--text-muted);
font-weight: 500;
}

.feedback-details {
font-size: 18px;
color: var(--dark-charcoal);
line-height: 1.7;
margin-bottom: 35px;
}

.feedback-quote-icon {
display: inline-flex;
font-size: 54px;
font-family: var(--font-headings);
color: var(--teal-brand);
line-height: 1;
transform: rotate(180deg);
user-select: none;
}

/* =======================================================
MODULE 3: NEWS & ARTICLES STYLES
======================================================= */
.section-tittle-wrapper.left-flex {
display: flex;
justify-content: space-between;
align-items: flex-end;
margin-bottom: 60px;
width: 100%;
}

.section-tittle-heading-wrapper.specialist {
text-align: left;
max-width: 580px;
}

.article-grid-wrap {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
width: 100%;
}

.single-article-wrap {
background-color: transparent;
display: flex;
flex-direction: column;
width: 100%;
cursor: pointer;
}

.single-article-img-wrap {
width: 100%;
height: 340px;
border-radius: 65px; 
overflow: hidden;
position: relative;
background-color: #e3e6e1;
margin-bottom: 24px;
}

.single-article-img {
width: 100%;
height: 100%;
object-fit: cover;
filter: none;
display: block;
transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.single-article-wrap:hover .single-article-img {
transform: scale(1.05);
}

.single-article-details-wrap {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
padding: 0 10px;
}

.article-publish-date {
font-size: 12px;
color: var(--text-muted);
background-color: #ffffff;
padding: 6px 16px;
border-radius: 20px;
font-weight: 500;
margin-bottom: 14px;
box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.article-name {
font-family: var(--font-body);
font-size: 16px;
font-weight: 700;
color: var(--dark-charcoal);
line-height: 1.5;
margin-bottom: 16px;
max-width: 240px;
transition: color 0.25s ease;
}

.single-article-wrap:hover .article-name { color: var(--teal-brand); }

.article-more-btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 6px;
text-decoration: none;
color: var(--teal-brand);
font-weight: 700;
font-size: 14px;
transition: gap 0.2s ease;
}

.single-article-wrap:hover .article-more-btn { gap: 12px; }

@keyframes continuousSpin { 100% { transform: rotate(360deg); } }



/* --- BRAND DESIGN CORE SYSTEM --- */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

:root {
--bg-color: #f3f5f1;       
--teal-brand: #00594c;     
--dark-charcoal: #111212;  
--text-muted: #757c77;     
--font-headings: 'El Messiri', sans-serif;
--font-body: 'DM Sans', sans-serif;
}

body {
background-color: var(--bg-color);
font-family: var(--font-body);
color: var(--dark-charcoal);
}

.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.text-green {
color: var(--teal-brand);
}

.primary-button {
background-color: var(--teal-brand);
color: white;
padding: 16px 36px;
border-radius: 30px;
text-decoration: none;
font-weight: 500;
font-size: 14px;
white-space: nowrap;
transition: background-color 0.25s ease;
display: inline-block;
border: none;
cursor: pointer;
}

.primary-button:hover {
background-color: #004037;
}

/* =======================================================
MODULE 1: CTA TEAM PORTRAIT BANNER
======================================================= */
.section.cta {
padding: 70px 0 40px 0;
text-align: center;
position: relative;
width: 100%;
overflow: hidden;
}

.section-tittle-wrapper.cta {
max-width: 650px;
margin: 0 auto;
position: relative;
z-index: 10;
}


.section-tittle.cta {
font-family: var(--font-headings);
font-size: 46px;
font-weight: 700;
line-height: 1.2;
margin-bottom: 16px;
}

.section-details.cta {
font-size: 15px;
color: var(--text-muted);
line-height: 1.6;
margin-bottom: 30px;
}

/* Team Image Wrapper fading into layout background */
.cta-img-wrap {
width: 100%;
max-width: 1100px;
margin: 0 auto;
position: relative;
height: 380px;
display: flex;
align-items: flex-end;
justify-content: center;
}

.cta-img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: top center;
filter: none;
display: block;
}

/* Pure CSS overlay gradient smoothing portraits into bottom layout */
.cta-linear {
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 45%;
background: linear-gradient(180deg, rgba(243, 245, 241, 0) 0%, rgba(243, 245, 241, 1) 100%);
z-index: 5;
}

/* =======================================================
MODULE 2: SITE WIDE MAIN FOOTER
======================================================= */
.footer {
background-color: var(--bg-color);
padding: 80px 0 40px 0;
border-top: 1px solid rgba(0, 0, 0, 0.05);
width: 100%;
}

.footer-top {
width: 100%;
margin-bottom: 60px;
}

.footer-flex-wrap {
display: grid;
grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
gap: 50px;
align-items: flex-start;
}

/* Column 1 Content: Branding and Newsletter */
.footer-details-wrap {
display: flex;
flex-direction: column;
align-items: flex-start;
}

.footer-logo-wrap {
display: flex;
align-items: center;
gap: 8px;
font-size: 22px;
font-weight: 700;
text-decoration: none;
color: var(--dark-charcoal);
margin-bottom: 16px;
}

.footer-logo-icon {
width: 22px;
height: 22px;
background-color: var(--dark-charcoal);
clip-path: polygon(0% 0%, 100% 0%, 85% 85%, 50% 100%, 15% 85%);
}

.footer-details {
font-size: 14px;
color: var(--text-muted);
line-height: 1.6;
margin-bottom: 30px;
text-align: left;
}

.footer-subscribe-form-wrapper {
width: 100%;
}

.subscribe-form-tittle {
font-size: 16px;
font-weight: 700;
color: var(--dark-charcoal);
margin-bottom: 14px;
text-align: left;
}

/* Inline capsule shape form handler mapping */
.subs-input-wrapper {
display: flex;
align-items: center;
background-color: rgba(255, 255, 255, 0.6);
border: 1px solid rgba(0,0,0,0.06);
padding: 6px;
border-radius: 30px;
width: 100%;
max-width: 360px;
}

.footer-subscribe-input {
flex: 1;
background: none;
border: none;
outline: none;
padding: 0 16px;
font-size: 14px;
font-family: var(--font-body);
color: var(--dark-charcoal);
}

.footer-subscribe-input::placeholder {
color: #a0a6a1;
}

/* Columns 2 & 3 Content: Navigation Links Track */
.single-footer-links-wrap {
display: flex;
flex-direction: column;
align-items: flex-start;
}

.single-footer-links-tittle {
font-size: 18px;
font-weight: 700;
color: var(--dark-charcoal);
margin-bottom: 24px;
}

.single-footer-links-wrapper {
display: flex;
flex-direction: column;
gap: 12px;
align-items: flex-start;
}

.single-footer-link {
text-decoration: none;
color: var(--text-muted);
font-size: 15px;
transition: color 0.2s ease, transform 0.2s ease;
}

.single-footer-link:hover {
color: var(--teal-brand);
transform: translateX(4px);
}

/* Column 4 Content: Communication coordinates */
.footer-contact-wrap {
display: flex;
flex-direction: column;
align-items: flex-start;
}

.contact-flex-wrap {
display: flex;
flex-direction: column;
gap: 16px;
align-items: flex-start;
}

.footer-single-contact {
display: flex;
align-items: center;
gap: 10px;
color: var(--dark-charcoal);
font-weight: 500;
font-size: 15px;
}

.footer-contact-info-text {
font-size: 15px;
color: var(--text-muted);
}

/* Base Metadata layout row */
.footer-bottom {
border-top: 1px solid rgba(0, 0, 0, 0.05);
padding-top: 30px;
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
}

.footer-copyright {
font-size: 14px;
color: var(--text-muted);
}

.copyright-link {
text-decoration: none;
color: var(--dark-charcoal);
font-weight: 500;
}

.copyright-link:hover {
color: var(--teal-brand);
}

/* Circular social icon anchors */
.footer-bottom-social-link-wrapper {
display: flex;
gap: 10px;
}

.footer-single-social-link-wrap {
width: 32px;
height: 32px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.5);
border: 1px solid rgba(0,0,0,0.05);
display: flex;
justify-content: center;
align-items: center;
text-decoration: none;
color: var(--text-muted);
font-size: 12px;
transition: all 0.25s ease;
}

.footer-single-social-link-wrap:hover {
background-color: var(--teal-brand);
color: #ffffff;
border-color: var(--teal-brand);
}




/* --- DESIGN BRAND SYSTEM SETUP & RESET --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #f3f5f1;       /* Main light textured layout background */
    --bg-banner: #f9f4ee;     /* Warm pink accent tint for the upper breadcrumb layer */
    --teal-brand: #00594c;     /* Dark editorial template green */
    --dark-charcoal: #111212;  /* Headers text default color */
    --text-muted: #757c77;     /* Descriptive paragraphs */
    --font-headings: 'El Messiri', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

body {
    background-color: var(--bg-color);
    font-family: var(--font-body);
    color: var(--dark-charcoal);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-green {
    color: var(--teal-brand);
}

/* =======================================================
   MODULE 1: UPPER BREADCRUMB HEADER BANNER
   ======================================================= */
.inner-banner {
    width: 100%;
    padding: 100px 0;
    background-color: var(--bg-banner);
    /* Simulates the crisp tooth vector tile texture repeat seamlessly using CSS grids mask */
    background-image: radial-gradient(rgba(0,0,0,0.012) 1.5px, transparent 0);
    background-size: 32px 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
    text-align: center;
}

.inner-banner-tittle {
    font-family: var(--font-headings);
    font-size: 52px;
    font-weight: 700;
    color: var(--dark-charcoal);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.breadcrumb-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
}

.breadcrumb-single-link {
    text-decoration: none;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.breadcrumb-single-link:hover, 
.breadcrumb-single-link.w--current {
    color: var(--teal-brand);
}

.breadcrumb-link-divider {
    color: #b8beb9;
    user-select: none;
}

/* =======================================================
   MODULE 2: ABOUT EDITORIAL HEADER CONTENT
   ======================================================= */
.section.after-banner {
    padding: 120px 0 60px 0; /* Keeps layout spacing balanced at base levels */
    width: 100%;
}

.section-tittle-wrapper.about-us-2 {
    max-width: 860px;
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-tittle-tag {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--teal-brand);
    font-weight: 700;
    margin-bottom: 20px;
}

.section-tittle.about-us {
    font-family: var(--font-headings);
    font-size: 46px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--dark-charcoal);
    margin-bottom: 24px;
    letter-spacing: -0.3px;
}

.section-details.about-us-2 {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 780px;
    margin-bottom: 35px;
}

/* Exact layout button style token matching blueprint templates */
.primary-button {
    background-color: var(--teal-brand);
    color: white;
    padding: 16px 38px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: inline-block;
    transition: background-color 0.25s ease, transform 0.2s ease;
    box-shadow: 0 10px 25px rgba(0, 89, 76, 0.1);
}

.primary-button:hover {
    background-color: #004037;
    transform: translateY(-2px);
}


/* =======================================================
   MODULE 2: TWIN IMAGES SIDE-BY-SIDE WITH OVERLAPS
   ======================================================= */
   .about-hero-images-grid {
    display: flex;
    gap: 40px;
    width: 100%;
    padding-bottom: 60px;
}

.about-img-frame-wrapper {
    flex: 1;
    height: 460px;
    position: relative;
}

.about-hero-portrait-asset {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
    border-radius: 45px; /* Symmetrical smooth rounding container */
    display: block;
    position: relative;
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

/* Orange underlay custom accent tracks perfectly matching screenshots */
.orange-accent-underlay-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 45px;
    z-index: 1;
    pointer-events: none;
}

/* Left Card: Underlay offsets left and bottom borders */
.about-img-frame-wrapper.left-side .orange-accent-underlay-shape {
    border-left: 20px solid var(--orange-offset);
    border-bottom: 20px solid var(--orange-offset);
    bottom: -15px;
    left: -15px;
}

/* Right Card: Underlay offsets top and right borders */
.about-img-frame-wrapper.right-side .orange-accent-underlay-shape {
    border-top: 20px solid var(--orange-offset);
    border-right: 20px solid var(--orange-offset);
    top: -15px;
    right: -15px;
}



/* --- CORE BASE LAYOUT CONFIG --- */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

:root {
--bg-color: #f3f5f1;       
--teal-brand: #00594c;     
--dark-charcoal: #111212;  
--text-muted: #757c77;     
--font-headings: 'El Messiri', sans-serif;
--font-body: 'DM Sans', sans-serif;
}

body {
background-color: var(--bg-color);
font-family: var(--font-body);
color: var(--dark-charcoal);
}

/* --- UNIFORM GAP SPACE FOR HOME SECTIONS --- */
.section.core-values {
padding: 140px 0;
width: 100%;
position: relative;
text-align: center;
}

.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

/* --- HEADER BLOCK LAYOUT --- */
.section-tittle-wrapper.core-values {
text-align: center;
max-width: 650px;
margin: 0 auto 65px auto;
}

.section-tittle-tag {
font-size: 13px;
text-transform: uppercase;
letter-spacing: 2px;
color: var(--teal-brand);
font-weight: 700;
margin-bottom: 16px;
}

.section-tittle {
font-family: var(--font-headings);
font-size: 46px;
font-weight: 700;
line-height: 1.25;
color: var(--dark-charcoal);
}

.text-green {
color: var(--teal-brand);
}

/* --- 4-COLUMN CARDS GRID SYSTEM --- */
.core-values-grid-wrapper {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
width: 100%;
}

.single-value-wrap {
background-color: #ffffff;
border-radius: 45px; /* Symmetrical capsule rounding profile matching screenshots */
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
/* Smooth Webflow style animation easing physics curves */
transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
cursor: pointer;
}

/* Hover animation target: lifts container card and darkens ambient depth drop-shadows */
.single-value-wrap:hover {
transform: translateY(-12px);
box-shadow: 0 20px 45px rgba(0, 59, 76, 0.05);
}

.single-value-content-wrap {
padding: 55px 35px;
display: flex;
flex-direction: column;
align-items: flex-start;
position: relative;
height: 100%;
}

/* --- INTERACTIVE ANIMATED ICON WRAPPER --- */
.single-value-icon-wrap {
width: 44px;
height: 44px;
margin-bottom: 24px;
position: relative;
}

.single-value-icon, 
.single-value-hover-icon {
width: 100%;
height: auto;
position: absolute;
top: 0;
left: 0;
transition: opacity 0.35s cubic-bezier(0.25, 1, 0.5, 1), transform 0.35s ease;
}

.single-value-hover-icon {
opacity: 0;
}

/* Hover interaction: toggles visibility profiles seamlessly over stacked elements */
.single-value-wrap:hover .single-value-icon {
opacity: 0;
}

.single-value-wrap:hover .single-value-hover-icon {
opacity: 1;
}

/* --- TYPOGRAPHY DETAILS --- */
.core-value-name {
font-family: var(--font-body);
font-size: 22px;
font-weight: 700;
color: var(--dark-charcoal);
margin-bottom: 14px;
}

.core-value-details {
font-size: 14px;
color: var(--text-muted);
line-height: 1.65;
text-align: left;
}

/* --- ANIMATED BASE LINE DECORATION --- */
.value-bottom-border {
position: absolute;
bottom: 0;
left: 35px;
width: 0px; /* Starts completely collapsed at center */
height: 2px;
background-color: var(--teal-brand);
transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover interaction: stretches lines outwards to clear card anchor widths */
.single-value-wrap:hover .value-bottom-border {
width: 45px;
}



/* --- SECTION 6: MEET OUR SPECIALISTS (FULL 5 CARDS TRANSITIONS) --- */
.section.specialists { 
    width: 100%; 
    padding: 80px 0; 
}
.section-tittle-wrapper.left-flex { 
    display: flex; 
    justify-content: space-between; 
    align-items: flex-end; 
    margin-bottom: 60px; 
}
.section-tittle-heading-wrapper { 
    max-width: 580px; 
    text-align: left; 
}

/* Specialists Interactive Carousel Mask Window Window */
.specialist-viewport {
    width: 100%;
    overflow: hidden;
    margin-bottom: 40px;
}

.specialist-slider-track { 
    display: flex; 
    width: 250%; /* Large width container to safely navigate 5 columns */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); 
    will-change: transform;
}

.specialist-slide-group {
    display: flex;
    gap: 24px;
    width: 40%; /* Exactly segments active visible workspace views */
    padding: 10px;
}

.single-specialist-wrapper {
    flex: 1;
    background-color: #ffffff;
    border-radius: 90px; 
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0,0,0,0.02);
    transition: transform 0.4s ease;
}
.single-specialist-wrapper:hover { transform: translateY(-8px); }

.specialist-img-container { width: 100%; height: 320px; position: relative; }
.single-specialist-img { width: 100%; height: 100%; object-fit: cover; filter: none; }
.specialist-img-container::after {
    content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 40%;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); z-index: 2;
}

.single-specialist-details-wrapper { padding: 10px 30px 45px 30px; width: 100%; display: flex; flex-direction: column; align-items: center; background-color: #ffffff; position: relative; z-index: 5; margin-top: -30px; }
.specialist-name { font-family: var(--font-headings); font-size: 24px; font-weight: 700; margin-bottom: 6px; }
.specialist-designation { font-size: 14px; color: var(--text-muted); font-weight: 500; margin-bottom: 16px; }

.specialist-social-wrap { display: flex; gap: 10px; margin-bottom: 20px; }
.specialist-single-link { width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(0, 0, 0, 0.08); display: flex; justify-content: center; align-items: center; text-decoration: none; color: #8c928e; font-size: 12px; }
.specialist-single-link:hover { background-color: var(--teal-dark); color: #ffffff; }
.specialist-details { font-size: 14px; color: var(--text-muted); line-height: 1.5; max-width: 240px; margin-bottom: 24px; }
.specialist-more-btn-wrap a { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: var(--teal-dark); font-weight: 700; font-size: 14px; }

/* --- GLOBAL KEYFRAME APPARATUS --- */
@keyframes floatVibe { 0% { transform: translateY(0px); } 100% { transform: translateY(-12px); } }
@keyframes imageFloat { 0% { transform: translateY(0px); } 100% { transform: translateY(-12px); } }
@keyframes slowSpin { 100% { transform: rotate(360deg); } }
@keyframes runMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-280px * 6)); } }





/* =======================================================
MODULE 2: SITE WIDE MAIN FOOTER
======================================================= */
.footer {
background-color: var(--bg-color);
padding: 80px 0 40px 0;
border-top: 1px solid rgba(0, 0, 0, 0.05);
width: 100%;
}

.footer-top {
width: 100%;
margin-bottom: 60px;
}

.footer-flex-wrap {
display: grid;
grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
gap: 50px;
align-items: flex-start;
}

/* Column 1 Content: Branding and Newsletter */
.footer-details-wrap {
display: flex;
flex-direction: column;
align-items: flex-start;
}

.footer-logo-wrap {
display: flex;
align-items: center;
gap: 8px;
font-size: 22px;
font-weight: 700;
text-decoration: none;
color: var(--dark-charcoal);
margin-bottom: 16px;
}

.footer-logo-icon {
width: 22px;
height: 22px;
background-color: var(--dark-charcoal);
clip-path: polygon(0% 0%, 100% 0%, 85% 85%, 50% 100%, 15% 85%);
}

.footer-details {
font-size: 14px;
color: var(--text-muted);
line-height: 1.6;
margin-bottom: 30px;
text-align: left;
}

.footer-subscribe-form-wrapper {
width: 100%;
}

.subscribe-form-tittle {
font-size: 16px;
font-weight: 700;
color: var(--dark-charcoal);
margin-bottom: 14px;
text-align: left;
}

/* Inline capsule shape form handler mapping */
.subs-input-wrapper {
display: flex;
align-items: center;
background-color: rgba(255, 255, 255, 0.6);
border: 1px solid rgba(0,0,0,0.06);
padding: 6px;
border-radius: 30px;
width: 100%;
max-width: 360px;
}

.footer-subscribe-input {
flex: 1;
background: none;
border: none;
outline: none;
padding: 0 16px;
font-size: 14px;
font-family: var(--font-body);
color: var(--dark-charcoal);
}

.footer-subscribe-input::placeholder {
color: #a0a6a1;
}

/* Columns 2 & 3 Content: Navigation Links Track */
.single-footer-links-wrap {
display: flex;
flex-direction: column;
align-items: flex-start;
}

.single-footer-links-tittle {
font-size: 18px;
font-weight: 700;
color: var(--dark-charcoal);
margin-bottom: 24px;
}

.single-footer-links-wrapper {
display: flex;
flex-direction: column;
gap: 12px;
align-items: flex-start;
}

.single-footer-link {
text-decoration: none;
color: var(--text-muted);
font-size: 15px;
transition: color 0.2s ease, transform 0.2s ease;
}

.single-footer-link:hover {
color: var(--teal-brand);
transform: translateX(4px);
}

/* Column 4 Content: Communication coordinates */
.footer-contact-wrap {
display: flex;
flex-direction: column;
align-items: flex-start;
}

.contact-flex-wrap {
display: flex;
flex-direction: column;
gap: 16px;
align-items: flex-start;
}

.footer-single-contact {
display: flex;
align-items: center;
gap: 10px;
color: var(--dark-charcoal);
font-weight: 500;
font-size: 15px;
}

.footer-contact-info-text {
font-size: 15px;
color: var(--text-muted);
}

/* Base Metadata layout row */
.footer-bottom {
border-top: 1px solid rgba(0, 0, 0, 0.05);
padding-top: 30px;
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
}

.footer-copyright {
font-size: 14px;
color: var(--text-muted);
}

.copyright-link {
text-decoration: none;
color: var(--dark-charcoal);
font-weight: 500;
}

.copyright-link:hover {
color: var(--teal-brand);
}

/* Circular social icon anchors */
.footer-bottom-social-link-wrapper {
display: flex;
gap: 10px;
}

.footer-single-social-link-wrap {
width: 32px;
height: 32px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.5);
border: 1px solid rgba(0,0,0,0.05);
display: flex;
justify-content: center;
align-items: center;
text-decoration: none;
color: var(--text-muted);
font-size: 12px;
transition: all 0.25s ease;
}

.footer-single-social-link-wrap:hover {
background-color: var(--teal-brand);
color: #ffffff;
border-color: var(--teal-brand);
}
/* --- DESIGN SYSTEM SETUP & RESET --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #f3f5f1;       
    --teal-brand: #00bb9c;     /* Updated to vibrant template green accent */
    --teal-dark: #00594c;      /* Editorial deep dark green text */
    --dark-charcoal: #111212;  
    --text-muted: #757c77;     
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-headings: 'El Messiri', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--dark-charcoal);
    font-family: var(--font-body);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

.text-green {
    color: var(--teal-dark);
}

.primary-button {
    background-color: var(--teal-dark);
    color: white;
    padding: 16px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
    transition: background-color 0.25s ease;
    display: inline-block;
}

.primary-button:hover {
    background-color: #004037;
}

/* --- STICKY TOP NAVIGATION NAVBAR --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 80px;
    background-color: rgba(243, 245, 241, 0.85);
    backdrop-filter: blur(15px);
    z-index: 1000;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 24px;
}

.logo-icon {
    width: 24px;
    height: 24px;
    background-color: var(--dark-charcoal);
    clip-path: polygon(0% 0%, 100% 0%, 85% 85%, 50% 100%, 15% 85%);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark-charcoal);
    font-weight: 500;
    font-size: 15px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-btn {
    position: relative;
    background: none;
    border: 1px solid rgba(0,0,0,0.1);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: #d97453;
    color: white;
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-nav-appointment {
    border: 1px solid rgba(0,0,0,0.3);
    color: var(--dark-charcoal);
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

/* --- FIXED SIDEBAR PANEL SOCIAL LINKS --- */
.fixed-socials {
    position: fixed;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.fixed-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--dark-charcoal);
    font-size: 13px;
}





  /* --- SECTION 3: SERVICES CONTROLS SLIDER --- */
  .section.service {
    width: 100%;
    text-align: center;
    padding: 60px 0;
}

.section-tittle-wrapper {
    max-width: 650px;
    margin: 0 auto 50px auto;
}

.section-tittle {
    font-family: var(--font-headings);
    font-size: 46px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-details {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.slider-viewport {
    width: 100%;
    overflow: hidden;
    margin-bottom: 40px;
}

.service-slider-wrapper {
    display: flex;
    width: 200%; 
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.slide-group {
    display: flex;
    gap: 24px;
    width: 50%;
    padding: 10px;
}

.single-service-wrapper {
    flex: 1;
    height: 380px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 90px; 
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    box-shadow: 0 10px 35px rgba(0,0,0,0.03);
    transition: transform 0.4s ease;
}
.single-service-wrapper:hover {
    transform: translateY(-5px);
}

.single-service-content-wrap {
    width: 65%;
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.98) 75%, rgba(255,255,255,0) 100%);
    padding: 50px 40px 50px 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    z-index: 2;
}

.service-icon-wrap {
    margin-bottom: 20px;
    width: 44px;
    height: 44px;
}

.service-icon {
    width: 100%;
    height: auto;
}

.service-name {
    font-family: var(--font-headings);
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-charcoal);
    margin-bottom: 12px;
}

.single-service-content-wrap .service-details {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--teal-dark);
    font-weight: 700;
    font-size: 14px;
    transition: gap 0.2s ease;
}

.service-btn:hover { gap: 14px; }

.service-slide-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}




 /* Team Image Wrapper fading into layout background */
.cta-img-wrap {
width: 100%;
max-width: 1100px;
margin: 0 auto;
position: relative;
height: 380px;
display: flex;
align-items: flex-end;
justify-content: center;
}

.cta-img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: top center;
filter: none;
display: block;
}

/* Pure CSS overlay gradient smoothing portraits into bottom layout */
.cta-linear {
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 45%;
background: linear-gradient(180deg, rgba(243, 245, 241, 0) 0%, rgba(243, 245, 241, 1) 100%);
z-index: 5;
}








/* --- DESIGN BRAND SYSTEM SETUP & RESET --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #f3f5f1;       /* Main light textured layout background */
    --bg-banner: #f9f4ee;     /* Warm pink accent tint for the upper breadcrumb layer */
    --teal-brand: #00594c;     /* Dark editorial template green */
    --dark-charcoal: #111212;  /* Headers text default color */
    --text-muted: #757c77;     /* Descriptive paragraphs */
    --font-headings: 'El Messiri', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

body {
    background-color: var(--bg-color);
    font-family: var(--font-body);
    color: var(--dark-charcoal);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-green {
    color: var(--teal-brand);
}

/* =======================================================
   MODULE 1: UPPER BREADCRUMB HEADER BANNER
   ======================================================= */
.inner-banner {
    width: 100%;
    padding: 100px 0;
    background-color: var(--bg-banner);
    /* Simulates the crisp tooth vector tile texture repeat seamlessly using CSS grids mask */
    background-image: radial-gradient(rgba(0,0,0,0.012) 1.5px, transparent 0);
    background-size: 32px 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
    text-align: center;
}

.inner-banner-tittle {
    font-family: var(--font-headings);
    font-size: 52px;
    font-weight: 700;
    color: var(--dark-charcoal);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.breadcrumb-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
}

.breadcrumb-single-link {
    text-decoration: none;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.breadcrumb-single-link:hover, 
.breadcrumb-single-link.w--current {
    color: var(--teal-brand);
}

.breadcrumb-link-divider {
    color: #b8beb9;
    user-select: none;
}

/* =======================================================
   MODULE 2: ABOUT EDITORIAL HEADER CONTENT
   ======================================================= */
.section.after-banner {
    padding: 120px 0 60px 0; /* Keeps layout spacing balanced at base levels */
    width: 100%;
}

.section-tittle-wrapper.about-us-2 {
    max-width: 860px;
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-tittle-tag {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--teal-brand);
    font-weight: 700;
    margin-bottom: 20px;
}

.section-tittle.about-us {
    font-family: var(--font-headings);
    font-size: 46px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--dark-charcoal);
    margin-bottom: 24px;
    letter-spacing: -0.3px;
}

.section-details.about-us-2 {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 780px;
    margin-bottom: 35px;
}

/* Exact layout button style token matching blueprint templates */
.primary-button {
    background-color: var(--teal-brand);
    color: white;
    padding: 16px 38px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: inline-block;
    transition: background-color 0.25s ease, transform 0.2s ease;
    box-shadow: 0 10px 25px rgba(0, 89, 76, 0.1);
}

.primary-button:hover {
    background-color: #004037;
    transform: translateY(-2px);
}


/* =======================================================
   MODULE 2: TWIN IMAGES SIDE-BY-SIDE WITH OVERLAPS
   ======================================================= */
   .about-hero-images-grid {
    display: flex;
    gap: 40px;
    width: 100%;
    padding-bottom: 60px;
}

.about-img-frame-wrapper {
    flex: 1;
    height: 460px;
    position: relative;
}

.about-hero-portrait-asset {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
    border-radius: 45px; /* Symmetrical smooth rounding container */
    display: block;
    position: relative;
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

/* Orange underlay custom accent tracks perfectly matching screenshots */
.orange-accent-underlay-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 45px;
    z-index: 1;
    pointer-events: none;
}

/* Left Card: Underlay offsets left and bottom borders */
.about-img-frame-wrapper.left-side .orange-accent-underlay-shape {
    border-left: 20px solid var(--orange-offset);
    border-bottom: 20px solid var(--orange-offset);
    bottom: -15px;
    left: -15px;
}

/* Right Card: Underlay offsets top and right borders */
.about-img-frame-wrapper.right-side .orange-accent-underlay-shape {
    border-top: 20px solid var(--orange-offset);
    border-right: 20px solid var(--orange-offset);
    top: -15px;
    right: -15px;
}



/* --- CORE BASE LAYOUT CONFIG --- */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

:root {
--bg-color: #f3f5f1;       
--teal-brand: #00594c;     
--dark-charcoal: #111212;  
--text-muted: #757c77;     
--font-headings: 'El Messiri', sans-serif;
--font-body: 'DM Sans', sans-serif;
}

body {
background-color: var(--bg-color);
font-family: var(--font-body);
color: var(--dark-charcoal);
}

/* --- UNIFORM GAP SPACE FOR HOME SECTIONS --- */
.section.core-values {
padding: 140px 0;
width: 100%;
position: relative;
text-align: center;
}

.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

/* --- HEADER BLOCK LAYOUT --- */
.section-tittle-wrapper.core-values {
text-align: center;
max-width: 650px;
margin: 0 auto 65px auto;
}

.section-tittle-tag {
font-size: 13px;
text-transform: uppercase;
letter-spacing: 2px;
color: var(--teal-brand);
font-weight: 700;
margin-bottom: 16px;
}

.section-tittle {
font-family: var(--font-headings);
font-size: 46px;
font-weight: 700;
line-height: 1.25;
color: var(--dark-charcoal);
}

.text-green {
color: var(--teal-brand);
}

/* --- 4-COLUMN CARDS GRID SYSTEM --- */
.core-values-grid-wrapper {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
width: 100%;
}

.single-value-wrap {
background-color: #ffffff;
border-radius: 45px; /* Symmetrical capsule rounding profile matching screenshots */
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
/* Smooth Webflow style animation easing physics curves */
transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
cursor: pointer;
}

/* Hover animation target: lifts container card and darkens ambient depth drop-shadows */
.single-value-wrap:hover {
transform: translateY(-12px);
box-shadow: 0 20px 45px rgba(0, 59, 76, 0.05);
}

.single-value-content-wrap {
padding: 55px 35px;
display: flex;
flex-direction: column;
align-items: flex-start;
position: relative;
height: 100%;
}

/* --- INTERACTIVE ANIMATED ICON WRAPPER --- */
.single-value-icon-wrap {
width: 44px;
height: 44px;
margin-bottom: 24px;
position: relative;
}

.single-value-icon, 
.single-value-hover-icon {
width: 100%;
height: auto;
position: absolute;
top: 0;
left: 0;
transition: opacity 0.35s cubic-bezier(0.25, 1, 0.5, 1), transform 0.35s ease;
}

.single-value-hover-icon {
opacity: 0;
}

/* Hover interaction: toggles visibility profiles seamlessly over stacked elements */
.single-value-wrap:hover .single-value-icon {
opacity: 0;
}

.single-value-wrap:hover .single-value-hover-icon {
opacity: 1;
}

/* --- TYPOGRAPHY DETAILS --- */
.core-value-name {
font-family: var(--font-body);
font-size: 22px;
font-weight: 700;
color: var(--dark-charcoal);
margin-bottom: 14px;
}

.core-value-details {
font-size: 14px;
color: var(--text-muted);
line-height: 1.65;
text-align: left;
}

/* --- ANIMATED BASE LINE DECORATION --- */
.value-bottom-border {
position: absolute;
bottom: 0;
left: 35px;
width: 0px; /* Starts completely collapsed at center */
height: 2px;
background-color: var(--teal-brand);
transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover interaction: stretches lines outwards to clear card anchor widths */
.single-value-wrap:hover .value-bottom-border {
width: 45px;
}



/* --- SECTION 6: MEET OUR SPECIALISTS (FULL 5 CARDS TRANSITIONS) --- */
.section.specialists { 
    width: 100%; 
    padding: 80px 0; 
}
.section-tittle-wrapper.left-flex { 
    display: flex; 
    justify-content: space-between; 
    align-items: flex-end; 
    margin-bottom: 60px; 
}
.section-tittle-heading-wrapper { 
    max-width: 580px; 
    text-align: left; 
}

/* Specialists Interactive Carousel Mask Window Window */
.specialist-viewport {
    width: 100%;
    overflow: hidden;
    margin-bottom: 40px;
}

.specialist-slider-track { 
    display: flex; 
    width: 250%; /* Large width container to safely navigate 5 columns */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); 
    will-change: transform;
}

.specialist-slide-group {
    display: flex;
    gap: 24px;
    width: 40%; /* Exactly segments active visible workspace views */
    padding: 10px;
}

.single-specialist-wrapper {
    flex: 1;
    background-color: #ffffff;
    border-radius: 90px; 
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0,0,0,0.02);
    transition: transform 0.4s ease;
}
.single-specialist-wrapper:hover { transform: translateY(-8px); }

.specialist-img-container { width: 100%; height: 320px; position: relative; }
.single-specialist-img { width: 100%; height: 100%; object-fit: cover; filter: none; }
.specialist-img-container::after {
    content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 40%;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); z-index: 2;
}

.single-specialist-details-wrapper { padding: 10px 30px 45px 30px; width: 100%; display: flex; flex-direction: column; align-items: center; background-color: #ffffff; position: relative; z-index: 5; margin-top: -30px; }
.specialist-name { font-family: var(--font-headings); font-size: 24px; font-weight: 700; margin-bottom: 6px; }
.specialist-designation { font-size: 14px; color: var(--text-muted); font-weight: 500; margin-bottom: 16px; }

.specialist-social-wrap { display: flex; gap: 10px; margin-bottom: 20px; }
.specialist-single-link { width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(0, 0, 0, 0.08); display: flex; justify-content: center; align-items: center; text-decoration: none; color: #8c928e; font-size: 12px; }
.specialist-single-link:hover { background-color: var(--teal-dark); color: #ffffff; }
.specialist-details { font-size: 14px; color: var(--text-muted); line-height: 1.5; max-width: 240px; margin-bottom: 24px; }
.specialist-more-btn-wrap a { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: var(--teal-dark); font-weight: 700; font-size: 14px; }

/* --- GLOBAL KEYFRAME APPARATUS --- */
@keyframes floatVibe { 0% { transform: translateY(0px); } 100% { transform: translateY(-12px); } }
@keyframes imageFloat { 0% { transform: translateY(0px); } 100% { transform: translateY(-12px); } }
@keyframes slowSpin { 100% { transform: rotate(360deg); } }
@keyframes runMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-280px * 6)); } }





/* =======================================================
MODULE 2: SITE WIDE MAIN FOOTER
======================================================= */
.footer {
background-color: var(--bg-color);
padding: 80px 0 40px 0;
border-top: 1px solid rgba(0, 0, 0, 0.05);
width: 100%;
}

.footer-top {
width: 100%;
margin-bottom: 60px;
}

.footer-flex-wrap {
display: grid;
grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
gap: 50px;
align-items: flex-start;
}

/* Column 1 Content: Branding and Newsletter */
.footer-details-wrap {
display: flex;
flex-direction: column;
align-items: flex-start;
}

.footer-logo-wrap {
display: flex;
align-items: center;
gap: 8px;
font-size: 22px;
font-weight: 700;
text-decoration: none;
color: var(--dark-charcoal);
margin-bottom: 16px;
}

.footer-logo-icon {
width: 22px;
height: 22px;
background-color: var(--dark-charcoal);
clip-path: polygon(0% 0%, 100% 0%, 85% 85%, 50% 100%, 15% 85%);
}

.footer-details {
font-size: 14px;
color: var(--text-muted);
line-height: 1.6;
margin-bottom: 30px;
text-align: left;
}

.footer-subscribe-form-wrapper {
width: 100%;
}

.subscribe-form-tittle {
font-size: 16px;
font-weight: 700;
color: var(--dark-charcoal);
margin-bottom: 14px;
text-align: left;
}

/* Inline capsule shape form handler mapping */
.subs-input-wrapper {
display: flex;
align-items: center;
background-color: rgba(255, 255, 255, 0.6);
border: 1px solid rgba(0,0,0,0.06);
padding: 6px;
border-radius: 30px;
width: 100%;
max-width: 360px;
}

.footer-subscribe-input {
flex: 1;
background: none;
border: none;
outline: none;
padding: 0 16px;
font-size: 14px;
font-family: var(--font-body);
color: var(--dark-charcoal);
}

.footer-subscribe-input::placeholder {
color: #a0a6a1;
}

/* Columns 2 & 3 Content: Navigation Links Track */
.single-footer-links-wrap {
display: flex;
flex-direction: column;
align-items: flex-start;
}

.single-footer-links-tittle {
font-size: 18px;
font-weight: 700;
color: var(--dark-charcoal);
margin-bottom: 24px;
}

.single-footer-links-wrapper {
display: flex;
flex-direction: column;
gap: 12px;
align-items: flex-start;
}

.single-footer-link {
text-decoration: none;
color: var(--text-muted);
font-size: 15px;
transition: color 0.2s ease, transform 0.2s ease;
}

.single-footer-link:hover {
color: var(--teal-brand);
transform: translateX(4px);
}

/* Column 4 Content: Communication coordinates */
.footer-contact-wrap {
display: flex;
flex-direction: column;
align-items: flex-start;
}

.contact-flex-wrap {
display: flex;
flex-direction: column;
gap: 16px;
align-items: flex-start;
}

.footer-single-contact {
display: flex;
align-items: center;
gap: 10px;
color: var(--dark-charcoal);
font-weight: 500;
font-size: 15px;
}

.footer-contact-info-text {
font-size: 15px;
color: var(--text-muted);
}

/* Base Metadata layout row */
.footer-bottom {
border-top: 1px solid rgba(0, 0, 0, 0.05);
padding-top: 30px;
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
}

.footer-copyright {
font-size: 14px;
color: var(--text-muted);
}

.copyright-link {
text-decoration: none;
color: var(--dark-charcoal);
font-weight: 500;
}

.copyright-link:hover {
color: var(--teal-brand);
}

/* Circular social icon anchors */
.footer-bottom-social-link-wrapper {
display: flex;
gap: 10px;
}

.footer-single-social-link-wrap {
width: 32px;
height: 32px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.5);
border: 1px solid rgba(0,0,0,0.05);
display: flex;
justify-content: center;
align-items: center;
text-decoration: none;
color: var(--text-muted);
font-size: 12px;
transition: all 0.25s ease;
}

.footer-single-social-link-wrap:hover {
background-color: var(--teal-brand);
color: #ffffff;
border-color: var(--teal-brand);
}
/* --- DESIGN SYSTEM SETUP & RESET --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #f3f5f1;       
    --teal-brand: #00bb9c;     /* Updated to vibrant template green accent */
    --teal-dark: #00594c;      /* Editorial deep dark green text */
    --dark-charcoal: #111212;  
    --text-muted: #757c77;     
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-headings: 'El Messiri', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--dark-charcoal);
    font-family: var(--font-body);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

.text-green {
    color: var(--teal-dark);
}

.primary-button {
    background-color: var(--teal-dark);
    color: white;
    padding: 16px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
    transition: background-color 0.25s ease;
    display: inline-block;
}

.primary-button:hover {
    background-color: #004037;
}

/* --- STICKY TOP NAVIGATION NAVBAR --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 80px;
    background-color: rgba(243, 245, 241, 0.85);
    backdrop-filter: blur(15px);
    z-index: 1000;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 24px;
}

.logo-icon {
    width: 24px;
    height: 24px;
    background-color: var(--dark-charcoal);
    clip-path: polygon(0% 0%, 100% 0%, 85% 85%, 50% 100%, 15% 85%);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark-charcoal);
    font-weight: 500;
    font-size: 15px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-btn {
    position: relative;
    background: none;
    border: 1px solid rgba(0,0,0,0.1);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: #d97453;
    color: white;
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-nav-appointment {
    border: 1px solid rgba(0,0,0,0.3);
    color: var(--dark-charcoal);
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

/* --- FIXED SIDEBAR PANEL SOCIAL LINKS --- */
.fixed-socials {
    position: fixed;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.fixed-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--dark-charcoal);
    font-size: 13px;
}

@media (max-width: 991px) {
/* Completely remove the invisible placeholder cards on mobile so they take up 0 space */
.single-specialist-wrapper[style*="opacity: 0"] {
display: none !important;
height: 0 !important;
margin: 0 !important;
padding: 0 !important;
}
}









/* --- BRAND SYSTEM RESET & GLOBAL VARIABLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #f3f5f1;       
    --bg-banner: #f9f5f0;     
    --teal-brand: #00594c;     /* Sourced background color and .text-green rule */
    --dark-charcoal: #111212;  
    --text-muted: #6e7570;     
    --gold-accent: #b8860b;    /* Sourced exact dark gold menu highlight */
    --font-headings: 'El Messiri', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

body {
    background-color: var(--bg-color);
    font-family: var(--font-body);
    color: var(--dark-charcoal);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =======================================================
   MODULE 1: BREADCRUMB PAGE BANNER
   ======================================================= */
.inner-banner {
    width: 100%;
    padding: 110px 0;
    background-color: var(--bg-banner);
    background-image: radial-gradient(rgba(0,0,0,0.012) 1.5px, transparent 0);
    background-size: 32px 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
}

.inner-banner-tittle {
    font-family: var(--font-headings);
    font-size: 52px;
    font-weight: 700;
    color: var(--dark-charcoal);
    margin-bottom: 12px;
}

.breadcrumb-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.breadcrumb-single-link {
    text-decoration: none;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.breadcrumb-single-link:hover, 
.breadcrumb-single-link.w--current {
    color: var(--teal-brand);
}

.breadcrumb-link-divider {
    color: #b0b6b1;
}

/* =======================================================
   MODULE 2: SERVICE DETAILS GRID ASYMMETRY
   ======================================================= */
.section.service-details {
    padding: 120px 0;
    width: 100%;
}

.service-details-grid-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr; /* Precise sidebar vs content block track split ratio */
    gap: 60px;
    align-items: flex-start;
}

/* --- LEFT COLUMN: STICKY TEAL NAVIGATION ACCORDION --- */
.service-details-grid-left {
    position: sticky;
    top: 40px;
}

.service-details-collection-wrap {
    background-color: var(--teal-brand);
    border-radius: 40px; /* Stadium capsule corner shape map */
    padding: 45px 35px;
    width: 100%;
    box-shadow: 0 15px 40px rgba(0, 89, 76, 0.06);
}

.service-collection-tittle {
    font-family: var(--font-headings);
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: left;
}

.single-service-links-flex-wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
    list-style: none;
}

.single-service-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    width: 100%;
    padding: 12px 0;
    transition: transform 0.25s ease;
}

.single-service-link:hover {
    transform: translateX(4px);
}

.single-service-icon-wrap {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* White vector lines mask overlay filtering */
.single-service-icon {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.75;
}

.singe-service-name-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 14px;
}

.single-service-name {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.25s ease;
}

/* Active highlight status hooks for current menu element */
.single-service-link.w--current .single-service-name {
    color: #e6b800; /* Exact template deep gold text color matching screenshot */
    font-weight: 700;
}

.single-service-link.w--current .single-service-icon {
    filter: none; /* Keeps native gold icon profile state if configured */
    opacity: 1;
}

.single-service-hover-arrow {
    width: 14px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.single-service-link:hover .single-service-hover-arrow {
    opacity: 0.8;
}

/* --- RIGHT COLUMN: MANAGED TEXT EDITORIAL PANELS --- */
.service-details-grid-right {
    width: 100%;
}

.single-service-details-wrapper {
    width: 100%;
    text-align: left;
}

.single-service-details-tittle {
    font-family: var(--font-headings);
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-charcoal);
    margin-bottom: 24px;
}

.single-service-details-tittle-two {
    font-family: var(--font-headings);
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-charcoal);
    margin-top: 50px;
    margin-bottom: 20px;
}

.single-service-details-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
}

.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }

/* Media frame capsule window track */
.single-service-details-img-wrap {
    width: 100%;
    height: 440px;
    border-radius: 45px; /* Symmetrical capsule rounding profile match */
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.015);
}

.single-service-details-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
    display: block;
}

/* --- CUSTOM UNSTYLED DATA REPEAT MATRICES LIST --- */
.single-service-details-list-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
    list-style: none;
}

.single-service-details-list-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

/* Solid customized circle marker */
.single-service-details-list-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #008066; /* Precise matching teal/green bullet node color */
    flex-shrink: 0;
    margin-top: 7px;
}

.single-service-details-list-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}
/* --- DESIGN SYSTEM SETUP & RESET --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #f3f5f1;       
    --teal-brand: #00bb9c;     /* Updated to vibrant template green accent */
    --teal-dark: #00594c;      /* Editorial deep dark green text */
    --dark-charcoal: #111212;  
    --text-muted: #757c77;     
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-headings: 'El Messiri', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--dark-charcoal);
    font-family: var(--font-body);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

.text-green {
    color: var(--teal-dark);
}

.primary-button {
    background-color: var(--teal-dark);
    color: white;
    padding: 16px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
    transition: background-color 0.25s ease;
    display: inline-block;
}

.primary-button:hover {
    background-color: #004037;
}

/* --- STICKY TOP NAVIGATION NAVBAR --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 80px;
    background-color: rgba(243, 245, 241, 0.85);
    backdrop-filter: blur(15px);
    z-index: 1000;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 24px;
}

.logo-icon {
    width: 24px;
    height: 24px;
    background-color: var(--dark-charcoal);
    clip-path: polygon(0% 0%, 100% 0%, 85% 85%, 50% 100%, 15% 85%);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark-charcoal);
    font-weight: 500;
    font-size: 15px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-btn {
    position: relative;
    background: none;
    border: 1px solid rgba(0,0,0,0.1);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: #d97453;
    color: white;
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-nav-appointment {
    border: 1px solid rgba(0,0,0,0.3);
    color: var(--dark-charcoal);
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

/* --- FIXED SIDEBAR PANEL SOCIAL LINKS --- */
.fixed-socials {
    position: fixed;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.fixed-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--dark-charcoal);
    font-size: 13px;
}




 /* =======================================================
MODULE 2: SITE WIDE MAIN FOOTER
======================================================= */
.footer {
background-color: var(--bg-color);
padding: 80px 0 40px 0;
border-top: 1px solid rgba(0, 0, 0, 0.05);
width: 100%;
}

.footer-top {
width: 100%;
margin-bottom: 60px;
}

.footer-flex-wrap {
display: grid;
grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
gap: 50px;
align-items: flex-start;
}

/* Column 1 Content: Branding and Newsletter */
.footer-details-wrap {
display: flex;
flex-direction: column;
align-items: flex-start;
}

.footer-logo-wrap {
display: flex;
align-items: center;
gap: 8px;
font-size: 22px;
font-weight: 700;
text-decoration: none;
color: var(--dark-charcoal);
margin-bottom: 16px;
}

.footer-logo-icon {
width: 22px;
height: 22px;
background-color: var(--dark-charcoal);
clip-path: polygon(0% 0%, 100% 0%, 85% 85%, 50% 100%, 15% 85%);
}

.footer-details {
font-size: 14px;
color: var(--text-muted);
line-height: 1.6;
margin-bottom: 30px;
text-align: left;
}

.footer-subscribe-form-wrapper {
width: 100%;
}

.subscribe-form-tittle {
font-size: 16px;
font-weight: 700;
color: var(--dark-charcoal);
margin-bottom: 14px;
text-align: left;
}

/* Inline capsule shape form handler mapping */
.subs-input-wrapper {
display: flex;
align-items: center;
background-color: rgba(255, 255, 255, 0.6);
border: 1px solid rgba(0,0,0,0.06);
padding: 6px;
border-radius: 30px;
width: 100%;
max-width: 360px;
}

.footer-subscribe-input {
flex: 1;
background: none;
border: none;
outline: none;
padding: 0 16px;
font-size: 14px;
font-family: var(--font-body);
color: var(--dark-charcoal);
}

.footer-subscribe-input::placeholder {
color: #a0a6a1;
}

/* Columns 2 & 3 Content: Navigation Links Track */
.single-footer-links-wrap {
display: flex;
flex-direction: column;
align-items: flex-start;
}

.single-footer-links-tittle {
font-size: 18px;
font-weight: 700;
color: var(--dark-charcoal);
margin-bottom: 24px;
}

.single-footer-links-wrapper {
display: flex;
flex-direction: column;
gap: 12px;
align-items: flex-start;
}

.single-footer-link {
text-decoration: none;
color: var(--text-muted);
font-size: 15px;
transition: color 0.2s ease, transform 0.2s ease;
}

.single-footer-link:hover {
color: var(--teal-brand);
transform: translateX(4px);
}

/* Column 4 Content: Communication coordinates */
.footer-contact-wrap {
display: flex;
flex-direction: column;
align-items: flex-start;
}

.contact-flex-wrap {
display: flex;
flex-direction: column;
gap: 16px;
align-items: flex-start;
}

.footer-single-contact {
display: flex;
align-items: center;
gap: 10px;
color: var(--dark-charcoal);
font-weight: 500;
font-size: 15px;
}

.footer-contact-info-text {
font-size: 15px;
color: var(--text-muted);
}

/* Base Metadata layout row */
.footer-bottom {
border-top: 1px solid rgba(0, 0, 0, 0.05);
padding-top: 30px;
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
}

.footer-copyright {
font-size: 14px;
color: var(--text-muted);
}

.copyright-link {
text-decoration: none;
color: var(--dark-charcoal);
font-weight: 500;
}

.copyright-link:hover {
color: var(--teal-brand);
}

/* Circular social icon anchors */
.footer-bottom-social-link-wrapper {
display: flex;
gap: 10px;
}

.footer-single-social-link-wrap {
width: 32px;
height: 32px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.5);
border: 1px solid rgba(0,0,0,0.05);
display: flex;
justify-content: center;
align-items: center;
text-decoration: none;
color: var(--text-muted);
font-size: 12px;
transition: all 0.25s ease;
}

.footer-single-social-link-wrap:hover {
background-color: var(--teal-brand);
color: #ffffff;
border-color: var(--teal-brand);
}







/* --- DESIGN BRAND SYSTEM SETUP & RESET --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #f3f5f1;       
    --bg-banner: #f9f5f0;     
    --teal-brand: #00594c;     
    --dark-charcoal: #111212;  
    --text-muted: #757c77;     
    --orange-offset: #e07a5f;  /* Sourced orange outline overlay color */
    --font-headings: 'El Messiri', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

body {
    background-color: var(--bg-color);
    font-family: var(--font-body);
    color: var(--dark-charcoal);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-green {
    color: var(--teal-brand);
}

/* =======================================================
   MODULE 1: BREADCRUMB HEADER BANNER
   ======================================================= */
.inner-banner {
    width: 100%;
    padding: 100px 0;
    background-color: var(--bg-banner);
    background-image: radial-gradient(rgba(0,0,0,0.012) 1.5px, transparent 0);
    background-size: 32px 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
    text-align: center;
}

.inner-banner-tittle {
    font-family: var(--font-headings);
    font-size: 52px;
    font-weight: 700;
    color: var(--dark-charcoal);
    margin-bottom: 12px;
}

.breadcrumb-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.breadcrumb-single-link {
    text-decoration: none;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.breadcrumb-single-link:hover, 
.breadcrumb-single-link.w--current {
    color: var(--teal-brand);
}

.breadcrumb-link-divider {
    color: #b0b6b1;
}

/* =======================================================
   MODULE 2: CONTACT GRID CORE FORM STRUCTURE
   ======================================================= */
.section.contact-main {
    padding: 140px 0;
    width: 100%;
}

.contact-content-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* Precise asymmetry balance matching screenshots */
    gap: 50px;
    align-items: stretch;
    width: 100%;
}

/* Left Side Card Container Block */
.contact-form-wrapper {
    background-color: #ffffff;
    border-radius: 65px; /* Smooth rounded pill card structure */
    padding: 60px 55px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.015);
    display: flex;
    flex-direction: column;
}

.form-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.single-fields-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 20px;
}

.single-fields-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-charcoal);
    margin-bottom: 10px;
}

.single-fields-label-star {
    color: var(--orange-offset);
    margin-left: 2px;
}

/* Base input field resets matching design metrics */
.single-field, .message-field {
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 12px 4px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--dark-charcoal);
    outline: none;
    transition: border-color 0.3s ease;
}

.single-field::placeholder, .message-field::placeholder {
    color: #b0b6b1;
}

.single-field:focus, .message-field:focus {
    border-bottom-color: var(--teal-brand);
}

.message-field {
    min-height: 100px;
    resize: vertical;
}

/* Sourced blueprint button token styling rules */
.primary-button {
    background-color: var(--teal-brand);
    color: white;
    padding: 16px 36px;
    border-radius: 14px; /* Crisp square-rounded styling token specific to this form element */
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: background-color 0.25s ease;
    display: inline-block;
    margin-top: 10px;
}

.primary-button:hover {
    background-color: #004037;
}

/* --- RIGHT SIDE IMAGE BLOCK CAPUSLE OVERLAPS --- */
.contact-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 520px;
}

.contact-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
    border-radius: 65px; /* Symmetrical capsule rounding container window */
    position: relative;
    z-index: 5;
    display: block;
}

/* Bottom offset peachy background outline overlay indicator */
.contact-img-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    border-right: 20px solid var(--orange-offset);
    border-bottom: 20px solid var(--orange-offset);
    border-radius: 65px;
    bottom: -16px;
    right: -16px;
    z-index: 1;
    pointer-events: none;
}
/* --- STICKY TOP NAVIGATION NAVBAR --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 80px;
    background-color: rgba(243, 245, 241, 0.85);
    backdrop-filter: blur(15px);
    z-index: 1000;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 24px;
}

.logo-icon {
    width: 24px;
    height: 24px;
    background-color: var(--dark-charcoal);
    clip-path: polygon(0% 0%, 100% 0%, 85% 85%, 50% 100%, 15% 85%);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark-charcoal);
    font-weight: 500;
    font-size: 15px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-btn {
    position: relative;
    background: none;
    border: 1px solid rgba(0,0,0,0.1);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: #d97453;
    color: white;
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-nav-appointment {
    border: 1px solid rgba(0,0,0,0.3);
    color: var(--dark-charcoal);
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

/* --- FIXED SIDEBAR PANEL SOCIAL LINKS --- */
.fixed-socials {
    position: fixed;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.fixed-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--dark-charcoal);
    font-size: 13px;
}




 /* =======================================================
MODULE 2: SITE WIDE MAIN FOOTER
======================================================= */
.footer {
background-color: var(--bg-color);
padding: 80px 0 40px 0;
border-top: 1px solid rgba(0, 0, 0, 0.05);
width: 100%;
}

.footer-top {
width: 100%;
margin-bottom: 60px;
}

.footer-flex-wrap {
display: grid;
grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
gap: 50px;
align-items: flex-start;
}

/* Column 1 Content: Branding and Newsletter */
.footer-details-wrap {
display: flex;
flex-direction: column;
align-items: flex-start;
}

.footer-logo-wrap {
display: flex;
align-items: center;
gap: 8px;
font-size: 22px;
font-weight: 700;
text-decoration: none;
color: var(--dark-charcoal);
margin-bottom: 16px;
}

.footer-logo-icon {
width: 22px;
height: 22px;
background-color: var(--dark-charcoal);
clip-path: polygon(0% 0%, 100% 0%, 85% 85%, 50% 100%, 15% 85%);
}

.footer-details {
font-size: 14px;
color: var(--text-muted);
line-height: 1.6;
margin-bottom: 30px;
text-align: left;
}

.footer-subscribe-form-wrapper {
width: 100%;
}

.subscribe-form-tittle {
font-size: 16px;
font-weight: 700;
color: var(--dark-charcoal);
margin-bottom: 14px;
text-align: left;
}

/* Inline capsule shape form handler mapping */
.subs-input-wrapper {
display: flex;
align-items: center;
background-color: rgba(255, 255, 255, 0.6);
border: 1px solid rgba(0,0,0,0.06);
padding: 6px;
border-radius: 30px;
width: 100%;
max-width: 360px;
}

.footer-subscribe-input {
flex: 1;
background: none;
border: none;
outline: none;
padding: 0 16px;
font-size: 14px;
font-family: var(--font-body);
color: var(--dark-charcoal);
}

.footer-subscribe-input::placeholder {
color: #a0a6a1;
}

/* Columns 2 & 3 Content: Navigation Links Track */
.single-footer-links-wrap {
display: flex;
flex-direction: column;
align-items: flex-start;
}

.single-footer-links-tittle {
font-size: 18px;
font-weight: 700;
color: var(--dark-charcoal);
margin-bottom: 24px;
}

.single-footer-links-wrapper {
display: flex;
flex-direction: column;
gap: 12px;
align-items: flex-start;
}

.single-footer-link {
text-decoration: none;
color: var(--text-muted);
font-size: 15px;
transition: color 0.2s ease, transform 0.2s ease;
}

.single-footer-link:hover {
color: var(--teal-brand);
transform: translateX(4px);
}

/* Column 4 Content: Communication coordinates */
.footer-contact-wrap {
display: flex;
flex-direction: column;
align-items: flex-start;
}

.contact-flex-wrap {
display: flex;
flex-direction: column;
gap: 16px;
align-items: flex-start;
}

.footer-single-contact {
display: flex;
align-items: center;
gap: 10px;
color: var(--dark-charcoal);
font-weight: 500;
font-size: 15px;
}

.footer-contact-info-text {
font-size: 15px;
color: var(--text-muted);
}

/* Base Metadata layout row */
.footer-bottom {
border-top: 1px solid rgba(0, 0, 0, 0.05);
padding-top: 30px;
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
}

.footer-copyright {
font-size: 14px;
color: var(--text-muted);
}

.copyright-link {
text-decoration: none;
color: var(--dark-charcoal);
font-weight: 500;
}

.copyright-link:hover {
color: var(--teal-brand);
}

/* Circular social icon anchors */
.footer-bottom-social-link-wrapper {
display: flex;
gap: 10px;
}

.footer-single-social-link-wrap {
width: 32px;
height: 32px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.5);
border: 1px solid rgba(0,0,0,0.05);
display: flex;
justify-content: center;
align-items: center;
text-decoration: none;
color: var(--text-muted);
font-size: 12px;
transition: all 0.25s ease;
}

.footer-single-social-link-wrap:hover {
background-color: var(--teal-brand);
color: #ffffff;
border-color: var(--teal-brand);
}







/* --- POPUP OVERLAY --- */
.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(17, 18, 18, 0.7);
    backdrop-filter: blur(5px);
    z-index: 100000;
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* Hidden by default */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* --- POPUP CONTENT BOX --- */
.booking-modal-content {
    background-color: #ffffff;
    width: 90%;
    max-width: 450px;
    border-radius: 40px;
    padding: 40px 35px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    
    /* Pop-in animation */
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- ACTIVE STATE (Fires when JS opens it) --- */
.booking-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.booking-modal-overlay.active .booking-modal-content {
    transform: scale(1) translateY(0);
}

/* --- CLOSE BUTTON --- */
.close-modal-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    font-size: 32px;
    color: #757c77;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}
.close-modal-btn:hover { color: #111212; }

/* --- MODAL TEXT --- */
.modal-header { text-align: center; margin-bottom: 25px; }
.modal-tittle {
    font-family: 'El Messiri', sans-serif;
    font-size: 28px;
    color: #00594c;
    margin-bottom: 8px;
}
.modal-subtitle { font-size: 14px; color: #757c77; line-height: 1.5; margin: 0; }

/* --- FORM FIELDS --- */
.modal-form { display: flex; flex-direction: column; gap: 15px; }
.single-field {
    width: 100%;
    padding: 16px 20px;
    border-radius: 30px;
    border: 1px solid rgba(0,0,0,0.1);
    background-color: #f9f9f9;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #111212;
    outline: none;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}
.single-field:focus { border-color: #00594c; background-color: #ffffff; }
.select-field { appearance: none; cursor: pointer; }

/* --- SUBMIT BUTTON --- */
.modal-submit-btn {
    width: 100%;
    background-color: #00594c;
    color: white;
    padding: 18px;
    border-radius: 30px;
    border: none;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.2s ease;
}
.modal-submit-btn:hover { background-color: #004037; }

/* --- MOBILE TWEAKS --- */
@media (max-width: 991px) {
    .booking-modal-content { padding: 35px 25px; border-radius: 30px; }
    .modal-tittle { font-size: 26px; }
}
/* ============ Footer v2 (cream theme) ============ */
.footer-v2 {
  background: var(--bg-color);
  color: var(--teal-dark);
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}
.footer-v2-marquee {
  border-top: 1px solid rgba(0, 89, 76, .18);
  border-bottom: 1px solid rgba(0, 89, 76, .18);
  overflow: hidden;
  padding: 18px 0;
}
.footer-v2-marquee-track {
  display: inline-flex;
  gap: 36px;
  white-space: nowrap;
  animation: footerMarquee 28s linear infinite;
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.4vw, 30px);
  font-style: italic;
  color: var(--teal-dark);
}
.footer-v2-marquee-track span { display: inline-block; }
.footer-v2-marquee-track span:nth-child(even) { color: var(--teal-brand); }
@keyframes footerMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.footer-v2-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 32px 28px;
}
.footer-v2-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.footer-v2-eyebrow {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 16px;
}
.footer-v2-heading {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.05;
  margin: 0 0 28px;
  letter-spacing: -.02em;
  color: var(--teal-dark);
}
.footer-v2-heading em {
  font-style: italic;
  color: var(--teal-brand);
}
.footer-v2-form {
  display: flex;
  align-items: center;
  border-bottom: 1.5px solid rgba(0, 89, 76, .35);
  padding-bottom: 10px;
  max-width: 480px;
  transition: border-color .3s;
}
.footer-v2-form:focus-within { border-color: var(--teal-brand); }
.footer-v2-input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--teal-dark);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 8px 0;
  min-width: 0;
}
.footer-v2-input::placeholder { color: rgba(0, 89, 76, .45); }
.footer-v2-submit {
  background: transparent;
  border: 0;
  color: var(--teal-dark);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .04em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  white-space: nowrap;
  transition: color .3s, transform .3s;
}
.footer-v2-submit:hover { color: var(--teal-brand); transform: translateX(4px); }
.footer-v2-col-title {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 22px;
  font-weight: 600;
}
.footer-v2-col { display: flex; flex-direction: column; gap: 12px; }
.footer-v2-link {
  color: var(--teal-dark);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 16px;
  width: fit-content;
  position: relative;
  transition: color .3s, padding-left .3s;
}
.footer-v2-link::before {
  content: "→";
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: opacity .3s, left .3s;
  color: var(--teal-brand);
}
.footer-v2-link:hover { color: var(--teal-brand); padding-left: 4px; }
.footer-v2-link:hover::before { opacity: 1; left: -22px; }
.footer-v2-link-static { opacity: .65; }
.footer-v2-link-static:hover { color: var(--teal-dark); padding-left: 0; }
.footer-v2-link-static:hover::before { opacity: 0; }
.footer-v2-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.footer-v2-socials a {
  width: 40px; height: 40px;
  border: 1px solid rgba(0, 89, 76, .3);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  transition: all .3s;
}
.footer-v2-socials a:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--bg-color);
  transform: translateY(-2px);
}
.footer-v2-wordmark {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(64px, 17vw, 240px);
  line-height: .85;
  text-align: center;
  letter-spacing: -.04em;
  margin: 64px 0 20px;
  background: linear-gradient(180deg, rgba(0, 89, 76, .85) 0%, rgba(0, 89, 76, .08) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  user-select: none;
  word-break: break-word;
}
.footer-v2-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(0, 89, 76, .18);
  padding-top: 22px;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: .02em;
}
.footer-v2-bottom a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
}
.footer-v2-bottom a:hover { color: var(--teal-brand); }

@media (max-width: 900px) {
  .footer-v2 { margin-top: 56px; }
  .footer-v2-inner { padding: 48px 20px 24px; }
  .footer-v2-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-v2-marquee { padding: 14px 0; }
  .footer-v2-marquee-track { gap: 24px; }
  .footer-v2-heading { font-size: clamp(28px, 8vw, 40px); margin-bottom: 22px; }
  .footer-v2-wordmark { margin: 40px 0 18px; font-size: clamp(56px, 22vw, 140px); }
  .footer-v2-bottom { flex-direction: column; align-items: flex-start; gap: 10px; font-size: 12px; }
}
@media (max-width: 480px) {
  .footer-v2-form { flex-wrap: wrap; gap: 8px; }
  .footer-v2-input { flex: 1 1 100%; }
  .footer-v2-submit { padding-top: 4px; }
}

/* ==== Scroll reveal ==== */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1);
    will-change: opacity, transform;
}
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==== Editorial feedback grid ==== */
.feedback-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 28px;
    margin-top: 50px;
    align-items: stretch;
}
.feedback-card {
    position: relative;
    background: #fff;
    border-radius: 28px;
    padding: 40px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    box-shadow: 0 12px 40px -22px rgba(0, 89, 76, 0.35);
    border: 1px solid rgba(0, 89, 76, 0.08);
    transition: transform 0.5s cubic-bezier(.2,.7,.2,1), box-shadow 0.5s ease;
}
.feedback-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 60px -24px rgba(0, 89, 76, 0.45);
}
.feedback-card-feature {
    background: linear-gradient(160deg, var(--teal-dark) 0%, #007864 100%);
    color: #f3f5f1;
    transform: translateY(-18px);
}
.feedback-card-feature:hover { transform: translateY(-26px); }
.feedback-card .feedback-quote-icon {
    position: absolute;
    top: 18px;
    right: 28px;
    font-family: var(--font-serif);
    font-size: 90px;
    line-height: 1;
    color: var(--teal-brand);
    opacity: 0.35;
}
.feedback-card-feature .feedback-quote-icon { color: #fff; opacity: 0.4; }
.feedback-card-text {
    font-family: var(--font-serif);
    font-size: 19px;
    line-height: 1.55;
    flex: 1;
    font-style: italic;
}
.feedback-card-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 89, 76, 0.12);
}
.feedback-card-feature .feedback-card-meta { border-top-color: rgba(255,255,255,0.2); }
.feedback-card-meta img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.feedback-card-name {
    font-family: var(--font-headings);
    font-size: 17px;
    font-weight: 600;
}
.feedback-card-role {
    font-size: 12.5px;
    opacity: 0.75;
    margin-top: 2px;
    letter-spacing: 0.3px;
}
@media (max-width: 900px) {
    .feedback-grid { grid-template-columns: 1fr; }
    .feedback-card-feature { transform: none; }
    .feedback-card-feature:hover { transform: translateY(-8px); }
}

/* ==== Article card polish ==== */
.single-article-wrap {
    transition: transform 0.5s cubic-bezier(.2,.7,.2,1);
}
.single-article-wrap:hover { transform: translateY(-6px); }
.single-article-img-wrap { overflow: hidden; border-radius: 18px; }
.single-article-img {
    transition: transform 0.8s cubic-bezier(.2,.7,.2,1);
    width: 100%;
    display: block;
}
.single-article-wrap:hover .single-article-img { transform: scale(1.06); }

/* ===================================================== */
/* === LOGO IMAGE + MOBILE OVERLAP FIXES (final pass) === */
/* ===================================================== */

.logo-area {
    display: inline-flex !important;
    align-items: center;
    text-decoration: none;
    color: inherit;
    line-height: 0;
}
.logo-area span,
.logo-area .logo-icon { display: none !important; }
.logo-img {
    display: block;
    height: 72px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
}

/* Fixed side socials get out of the way on small screens */
@media (max-width: 991px) {
    .fixed-socials { display: none !important; }
    header { padding: 14px 20px !important; gap: 12px; }
    .logo-img { height: 36px; max-width: 140px; }
}


/* ===== Global mobile overflow guards ===== */
@media (max-width: 768px) {
    html, body { overflow-x: hidden; max-width: 100vw; }
    .container { padding: 0 20px !important; }

    /* Hero — stop horizontal parallax overflow on small screens */
    .hero-canvas { padding: 100px 20px 60px !important; min-height: auto !important; }
    .hero-title-suite { text-align: center; }
    .title-line { font-size: clamp(38px, 11vw, 64px) !important; line-height: 1.05 !important; }
    .line-2-row { flex-direction: column !important; gap: 12px !important; align-items: center !important; }
    .stamped-badge { width: 90px !important; height: 90px !important; }
    .organic-fluid-img { display: none !important; }
    .hero-editorial-footer {
        flex-direction: column !important;
        gap: 20px;
        padding: 0 !important;
        margin-top: 40px !important;
        text-align: center;
        align-items: center !important;
    }
    #scrollLineLeft, #scrollLineRight { transform: none !important; }

    /* Healthy / About flex stack */
    .healthy-smile-flex {
        flex-direction: column !important;
        gap: 40px !important;
    }
    .healthy-smile-img { width: 100% !important; max-width: 420px; height: auto; }
    .healthy-counter-up-wrap {
        flex-direction: row !important;
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px !important;
    }

    /* Why-choose */
    .wcu-main-layout {
        grid-template-columns: 1fr !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 24px;
    }
    .wcu-left-brand-pane { display: none !important; }
    .chose-us-title-group { flex-wrap: wrap; }
    .wcu-hover-img-wrap { display: none !important; }

    /* Comfortable treatment */
    .comfortable-treatment-header {
        flex-direction: column !important;
        gap: 24px;
        align-items: flex-start !important;
    }
    .right-header-meta { flex-direction: column !important; gap: 20px; align-items: flex-start !important; }
    .comfortable-treatment-tabs-wrapper {
        flex-direction: column !important;
        gap: 24px;
    }
    .comfortable-treatment-img-wrap img,
    .comfortable-treatment-img { width: 100% !important; height: auto !important; }

    /* Specialists slider — single column */
    .specialist-slide-group {
        grid-template-columns: 1fr !important;
        display: grid !important;
        gap: 24px;
    }

    /* Services slider */
    .slide-group {
        grid-template-columns: 1fr !important;
        display: grid !important;
        gap: 24px;
    }
    .single-service-wrapper { min-height: 380px; }

    /* Section spacing + titles */
    .section { padding: 60px 0 !important; }
    .section-tittle,
    .section-tittle.cta,
    .section-tittle.happy-smile,
    .section-tittle.wcu { font-size: clamp(28px, 8vw, 44px) !important; line-height: 1.15 !important; }
    .section-tittle-wrapper.left-flex,
    .section-tittle-wrapper {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 20px;
    }

    /* Articles grid */
    .article-grid-wrap {
        grid-template-columns: 1fr !important;
        display: grid !important;
        gap: 24px;
    }

    /* CTA section */
    .cta-img-wrap { margin-top: 32px; }
    .cta-img { width: 100% !important; height: auto !important; }

    /* Footer v2 */
    .footer-v2-grid {
        grid-template-columns: 1fr !important;
        display: grid !important;
        gap: 40px !important;
    }
    .footer-v2-heading { font-size: clamp(28px, 8vw, 42px) !important; line-height: 1.15 !important; }
    .footer-v2-wordmark { font-size: clamp(60px, 22vw, 140px) !important; }
    .footer-v2-form { flex-direction: column !important; gap: 12px; align-items: stretch !important; }
    .footer-v2-input, .footer-v2-submit { width: 100% !important; }
    .footer-v2-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .footer-v2-inner { padding: 40px 20px !important; }

    /* Marquees stay contained */
    .infinite-marquee-section, .footer-v2-marquee { overflow: hidden !important; }

    /* Inner page banners (about/contact/services/experts/treatment pages) */
    .page-banner, .inner-banner, .breadcrumb-area {
        padding: 100px 20px 50px !important;
        text-align: center;
    }
    .page-banner h1, .inner-banner h1 { font-size: clamp(34px, 9vw, 52px) !important; line-height: 1.1 !important; }

    /* Contact form grid */
    .contact-grid, .contact-flex {
        grid-template-columns: 1fr !important;
        display: grid !important;
        flex-direction: column !important;
        gap: 28px;
    }

    /* Generic two-col layouts */
    .two-col, .split-grid, .about-flex, .experts-grid {
        grid-template-columns: 1fr !important;
        display: grid !important;
        gap: 28px;
    }

    /* Booking modal sizing */
    .booking-modal-content {
        width: 92vw !important;
        max-width: 92vw !important;
        padding: 28px 20px !important;
        max-height: 88vh;
        overflow-y: auto;
    }
}

@media (max-width: 480px) {
    .logo-img { height: 32px; }
    .btn-nav-appointment, .primary-button, .cta-button {
        padding: 12px 22px !important;
        font-size: 13px !important;
    }
    .feedback-card { padding: 30px 22px 24px !important; }
    .feedback-card-text { font-size: 17px !important; }
}

/* ===== Count-up counters ===== */
.happy-info-counter-up { display: inline-flex; align-items: baseline; line-height: 1; }
.count-up { font-variant-numeric: tabular-nums; }

/* Mobile: stack the 3 counters one by one in a column */
@media (max-width: 768px) {
    .healthy-counter-up-wrap {
        display: flex !important;
        flex-direction: column !important;
        gap: 28px !important;
        align-items: center !important;
        text-align: center;
    }
    .single-happy-counter-wrap { width: 100%; }
}

/* ============== NEW NAV: DROPDOWN + MEGA MENU ============== */
header .primary-menu {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
    margin: 0;
    padding: 0;
}
header .primary-menu > li { position: relative; }
header .primary-menu > li > a {
    text-decoration: none;
    color: var(--dark-charcoal);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.02em;
    padding: 8px 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color .2s ease;
}
header .primary-menu > li > a:hover { color: var(--teal-dark); }
header .caret { font-size: 10px; opacity: .6; transition: transform .2s ease; }
header .has-dropdown:hover .caret { transform: rotate(180deg); }

header .dropdown {
    position: absolute;
    top: 100%; left: -16px;
    background: #fff;
    min-width: 240px;
    border-radius: 14px;
    padding: 14px 0;
    box-shadow: 0 24px 48px -16px rgba(0,0,0,0.18);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
    z-index: 1001;
}
header .dropdown li a {
    display: block;
    padding: 10px 22px;
    font-size: 14px;
    color: var(--dark-charcoal);
    text-decoration: none;
    transition: background .2s, color .2s;
}
header .dropdown li a:hover { background: var(--bg-color); color: var(--teal-dark); }

header .mega-menu {
    position: absolute;
    top: 100%; left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #fff;
    min-width: 760px;
    border-radius: 18px;
    padding: 28px 32px;
    box-shadow: 0 28px 60px -18px rgba(0,0,0,0.2);
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 28px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
    z-index: 1001;
}
header .mega-col { display: flex; flex-direction: column; gap: 6px; }
header .mega-title {
    font-family: var(--font-headings);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--teal-dark);
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
header .mega-col a {
    text-decoration: none;
    color: var(--dark-charcoal);
    font-size: 13.5px;
    padding: 6px 0;
    transition: color .2s, padding .2s;
}
header .mega-col a:hover { color: var(--teal-dark); padding-left: 6px; }

header .has-dropdown:hover .dropdown,
header .has-dropdown:hover .mega-menu {
    opacity: 1; visibility: visible;
    transform: translateY(0);
}
header .has-mega:hover .mega-menu { transform: translateX(-50%) translateY(0); }

/* ============== MOBILE NAV ============== */
@media (max-width: 1024px) {
    header { padding: 18px 24px !important; }
    .hamburger-btn { display: inline-flex !important; background: none; border: 1px solid rgba(0,0,0,0.15); width: 44px; height: 44px; border-radius: 50%; font-size: 20px; cursor: pointer; align-items: center; justify-content: center; }
    .nav-right .btn-nav-appointment { display: none; }
    #mainNav { position: fixed; top: 0; right: 0; height: 100vh; width: min(86vw, 380px); background: #fff; padding: 80px 28px 40px; overflow-y: auto; transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1); box-shadow: -20px 0 60px rgba(0,0,0,0.1); z-index: 999; }
    #mainNav.active { transform: translateX(0); }
    body.nav-open { overflow: hidden; }
    #mainNav .primary-menu { flex-direction: column; gap: 4px; align-items: stretch; }
    #mainNav .primary-menu > li { width: 100%; border-bottom: 1px solid rgba(0,0,0,0.06); }
    #mainNav .primary-menu > li > a { padding: 14px 4px; font-size: 16px; justify-content: space-between; width: 100%; }
    #mainNav .dropdown, #mainNav .mega-menu { position: static; transform: none; box-shadow: none; padding: 0 0 12px 12px; min-width: 0; opacity: 1; visibility: visible; display: none; background: transparent; border-radius: 0; }
    #mainNav .has-dropdown.open .dropdown, #mainNav .has-dropdown.open .mega-menu { display: block; }
    #mainNav .has-dropdown.open .mega-menu { display: grid; grid-template-columns: 1fr; gap: 14px; }
    #mainNav .dropdown li a, #mainNav .mega-col a { padding: 8px 6px; font-size: 14px; }
    #mainNav .has-dropdown.open .caret { transform: rotate(180deg); }
}

/* ============== INNER PAGE TEMPLATE STYLES ============== */
.page-editorial { max-width: 880px; margin: 0 auto; padding: 20px 0 40px; }
.page-eyebrow { font-family: var(--font-headings); text-transform: uppercase; letter-spacing: 0.18em; font-size: 12px; color: var(--teal-dark); margin-bottom: 18px; }
.page-lead { font-family: var(--font-headings); font-size: clamp(22px, 3vw, 32px); line-height: 1.35; color: var(--dark-charcoal); margin-bottom: 36px; font-weight: 500; }
.page-h3 { font-family: var(--font-headings); font-size: clamp(20px, 2.4vw, 26px); color: var(--teal-dark); margin: 40px 0 16px; font-weight: 600; }
.page-p { font-size: 16px; line-height: 1.75; color: var(--dark-charcoal); margin-bottom: 16px; opacity: 0.88; }
.page-list { padding-left: 22px; margin: 8px 0 24px; }
.page-list li { font-size: 15.5px; line-height: 1.8; margin-bottom: 6px; opacity: 0.85; }
.page-list li::marker { color: var(--teal-brand); }

.page-faq { border-bottom: 1px solid rgba(0,0,0,0.08); padding: 18px 0; }
.page-faq summary { font-weight: 600; cursor: pointer; font-size: 16px; list-style: none; position: relative; padding-right: 30px; }
.page-faq summary::after { content: '+'; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 22px; color: var(--teal-dark); transition: transform .2s; }
.page-faq[open] summary::after { content: '−'; }
.page-faq p { margin: 12px 0 4px; line-height: 1.7; opacity: 0.85; }

.page-cta-strip { margin-top: 60px; padding: 36px; background: linear-gradient(135deg, var(--teal-dark), #007a66); border-radius: 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; color: #fff; }
.page-cta-title { font-family: var(--font-headings); font-size: 24px; margin-bottom: 6px; }
.page-cta-sub { opacity: 0.88; font-size: 14.5px; }
.page-cta-strip .primary-button { background: #fff; color: var(--teal-dark); }
.page-cta-strip .primary-button:hover { background: var(--bg-color); }

/* PRICE GRID */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; margin: 24px 0 32px; }
.price-card { background: #fff; border-radius: 18px; padding: 26px 22px; border: 1px solid rgba(0,0,0,0.06); transition: transform .25s, box-shadow .25s; }
.price-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(0,89,76,0.25); }
.price-card h4 { font-family: var(--font-headings); font-size: 17px; color: var(--dark-charcoal); margin-bottom: 10px; }
.price-tag { font-size: 20px; font-weight: 700; color: var(--teal-dark); margin-bottom: 6px; }
.price-card span { font-size: 13px; opacity: 0.65; }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; margin: 24px 0 40px; }
.gallery-card { background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 12px 30px -16px rgba(0,0,0,0.18); transition: transform .35s ease; }
.gallery-card:hover { transform: translateY(-6px); }
.gallery-img { height: 240px; background-size: cover; background-position: center; }
.gallery-card figcaption { padding: 18px 20px 22px; }
.gallery-card h4 { font-family: var(--font-headings); font-size: 17px; color: var(--teal-dark); margin-bottom: 6px; }
.gallery-card p { font-size: 13.5px; opacity: 0.72; line-height: 1.55; }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 22px; margin: 24px 0; }
.blog-card { background: #fff; border-radius: 18px; padding: 26px 24px; border: 1px solid rgba(0,0,0,0.06); transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column; gap: 10px; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(0,89,76,0.18); }
.blog-meta { font-size: 12px; opacity: 0.6; display: flex; gap: 8px; text-transform: uppercase; letter-spacing: 0.08em; }
.blog-card h3 { font-family: var(--font-headings); font-size: 19px; line-height: 1.35; color: var(--dark-charcoal); }
.blog-card p { font-size: 14px; line-height: 1.6; opacity: 0.78; flex: 1; }
.blog-link { color: var(--teal-dark); font-weight: 600; font-size: 14px; text-decoration: none; margin-top: 6px; }
.blog-link:hover { text-decoration: underline; }

@media (max-width: 768px) {
    .page-cta-strip { padding: 28px 22px; text-align: center; flex-direction: column; }
    .page-lead { font-size: 20px; }
}

/* Instagram Follow Section */
.insta-follow { padding: 90px 0; background: #faf8f5; }
.insta-head { display:flex; justify-content:space-between; align-items:flex-end; gap:24px; margin-bottom:40px; flex-wrap:wrap; }
.insta-eyebrow { font-size:14px; letter-spacing:.15em; text-transform:uppercase; color:#9b9b9b; margin-bottom:10px; }
.insta-grid { display:grid; grid-template-columns:repeat(6,1fr); gap:14px; }
.insta-tile { position:relative; aspect-ratio:1/1; overflow:hidden; border-radius:14px; display:block; }
.insta-tile img { width:100%; height:100%; object-fit:cover; transition:transform .6s ease; display:block; }
.insta-tile:hover img { transform:scale(1.08); }
.insta-overlay { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; background:rgba(13,77,55,.78); color:#fff; font-size:13px; font-weight:500; letter-spacing:.05em; opacity:0; transition:opacity .35s ease; text-align:center; padding:10px; }
.insta-tile:hover .insta-overlay { opacity:1; }
@media (max-width: 1024px) { .insta-grid { grid-template-columns:repeat(3,1fr); } }
@media (max-width: 600px)  { .insta-grid { grid-template-columns:repeat(2,1fr); gap:10px; } .insta-head { flex-direction:column; align-items:flex-start; } }

/* === Service slider fix for 8 slide-groups === */
#sliderTrack.service-slider-wrapper { width: 800% !important; }
#sliderTrack.service-slider-wrapper > .slide-group { width: 12.5% !important; flex: 0 0 12.5% !important; }
@media (max-width: 900px) {
  #sliderTrack.service-slider-wrapper > .slide-group {
    width: 12.5% !important;
    flex: 0 0 12.5% !important;
    display: flex !important;
    grid-template-columns: none !important;
    flex-direction: column !important;
    gap: 20px;
  }
  #sliderTrack.service-slider-wrapper > .slide-group > .single-service-wrapper { width: 100%; }
}

/* Transformations marquee section */
.transformations-section{padding:80px 0 60px;background:var(--bg-color);overflow:hidden;font-family:var(--font-body);}
.transformations-section .container{max-width:1200px;margin:0 auto;padding:0 24px;text-align:center;}
.transformations-title{font-family:var(--font-headings);font-size:clamp(30px,4.4vw,52px);font-weight:700;color:var(--dark-charcoal);line-height:1.15;margin:0 0 18px;letter-spacing:0;}
.transformations-sub{font-family:var(--font-body);font-size:clamp(15px,1.4vw,18px);color:var(--text-muted);max-width:640px;margin:0 auto 48px;line-height:1.6;}
.transformations-marquee{width:100%;overflow:hidden;mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);-webkit-mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);}
.transformations-track{display:flex;gap:24px;width:max-content;animation:transformations-scroll 45s linear infinite;}
.transformations-marquee:hover .transformations-track{animation-play-state:paused;}
.transformations-card{flex:0 0 auto;width:clamp(280px,28vw,380px);aspect-ratio:7/5;border-radius:14px;overflow:hidden;box-shadow:0 8px 24px rgba(0,0,0,0.08);background:#f5f5f5;}
.transformations-card img{width:100%;height:100%;object-fit:cover;display:block;}
@keyframes transformations-scroll{from{transform:translateX(0);}to{transform:translateX(calc(-50% - 12px));}}
@media (max-width:640px){.transformations-section{padding:56px 0 40px;}.transformations-card{width:78vw;}}

/* Instagram feed section (redesigned) */
.insta-follow{padding:60px 0 80px}
.insta-tagline{text-align:center;font-size:clamp(16px,1.6vw,20px);color:#222;margin:0 0 32px}
.insta-header-bar{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-bottom:28px;flex-wrap:wrap}
.insta-profile{display:inline-flex;align-items:center;gap:14px;text-decoration:none;color:#111}
.insta-avatar{width:56px;height:56px;border-radius:50%;overflow:hidden;display:inline-block;background:#0d2a3a;flex:none}
.insta-avatar img{width:100%;height:100%;object-fit:cover;display:block}
.insta-username{font-weight:600;font-size:18px;color:#111}
.insta-follow-btn{display:inline-flex;align-items:center;gap:10px;background:#eaf3f7;color:#0d2a3a;padding:12px 22px;border-radius:999px;text-decoration:none;font-weight:600;font-size:15px;transition:background .2s}
.insta-follow-btn:hover{background:#d8e8ef}
.insta-feed-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:18px}
.insta-card{display:block;border:1.5px solid #6fa8c4;border-radius:18px;padding:8px;background:#fff;overflow:hidden;aspect-ratio:9/16;transition:transform .25s,box-shadow .25s}
.insta-card img{width:100%;height:100%;object-fit:cover;border-radius:10px;display:block}
.insta-card:hover{transform:translateY(-3px);box-shadow:0 12px 28px rgba(13,42,58,.12)}
@media (max-width:1024px){.insta-feed-grid{grid-template-columns:repeat(3,1fr)}}
@media (max-width:640px){.insta-feed-grid{grid-template-columns:repeat(2,1fr);gap:12px}.insta-username{font-size:15px}.insta-avatar{width:44px;height:44px}.insta-follow-btn{padding:10px 16px;font-size:13px}}

/* ===== Specialists single row (4 cols) ===== */
.specialist-row-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    margin-top:32px;
}
.specialist-row-grid .single-specialist-wrapper{width:100%;}
@media (max-width:1024px){.specialist-row-grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:600px){.specialist-row-grid{grid-template-columns:1fr;}}

/* ===== About HairSense Section ===== */
.about-hs{padding:90px 0;background:var(--bg-color);font-family:var(--font-body);}
.about-hs-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}
.about-hs-images{
    position:relative;
    display:flex;
    align-items:flex-start;
    justify-content:center;
    min-height:520px;
}
.about-hs-img{
    border:6px solid #4a8eb5;
    border-radius:4px;
    box-shadow:0 18px 40px -20px rgba(13,42,58,.35);
    object-fit:cover;
    background:#fff;
}
.about-hs-img-1{
    width:55%;
    aspect-ratio:3/4;
    position:absolute;
    top:0;
    left:0;
    z-index:1;
}
.about-hs-img-2{
    width:55%;
    aspect-ratio:3/4;
    position:absolute;
    top:60px;
    right:0;
    z-index:2;
}
.about-hs-eyebrow{
    font-family:var(--font-body);
    color:#3a7fb0;
    font-weight:600;
    margin:0 0 12px;
    font-size:1rem;
    letter-spacing:.2px;
}
.about-hs-title{
    font-family:var(--font-headings);
    font-size:clamp(2rem,3.6vw,3rem);
    line-height:1.15;
    margin:0 0 18px;
    font-weight:700;
    color:#0d2a3a;
}
.about-hs-lead{
    font-family:var(--font-body);
    font-weight:700;
    color:#0d2a3a;
    margin:0 0 18px;
    font-size:1.05rem;
}
.about-hs-body{
    font-family:var(--font-body);
    color:#4a5a66;
    line-height:1.7;
    margin:0 0 14px;
    font-size:.98rem;
}
.about-hs-cta{
    display:inline-flex;
    align-items:center;
    gap:14px;
    margin-top:18px;
    padding:16px 28px;
    background:#0d2a3a;
    color:#fff;
    text-decoration:none;
    border-radius:4px;
    font-weight:600;
    transition:transform .2s ease, background .2s ease;
}
.about-hs-cta span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:28px;height:28px;
    border-radius:50%;
    border:1.5px solid #fff;
    font-size:.85rem;
}
.about-hs-cta:hover{background:#15425a;transform:translateY(-2px);}
@media (max-width:900px){
    .about-hs-grid{grid-template-columns:1fr;gap:40px;}
    .about-hs-images{min-height:420px;}
}
@media (max-width:500px){
    .about-hs-img-1,.about-hs-img-2{width:62%;}
    .about-hs-images{min-height:360px;}
}

/* ===== Associations strip ===== */
.assoc-strip{background:var(--bg-color);padding:60px 24px;font-family:var(--font-body);}
.assoc-strip-inner{max-width:1240px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:32px;flex-wrap:wrap}
.assoc-strip-inner img{height:58px;width:auto;object-fit:contain;filter:none;opacity:.9;transition:.3s}
.assoc-strip-inner img:hover{filter:none;opacity:1}
@media (max-width:768px){.assoc-strip-inner{justify-content:center;gap:24px}.assoc-strip-inner img{height:42px}}

/* ===== Contact band ===== */
.contact-band{background:var(--bg-color);padding:40px 0 90px;font-family:var(--font-body);}
.contact-band-inner{max-width:1240px;margin:0 auto;display:grid;grid-template-columns:minmax(320px,520px) 1fr;gap:60px;align-items:stretch;padding:0 24px}
.contact-band-form-card{background:#0d2a3a;color:#fff;padding:48px 44px;border-radius:6px;box-shadow:0 18px 40px -20px rgba(13,42,58,.35);align-self:start}
.contact-band-title{font-family:var(--font-headings);font-size:clamp(1.7rem,2.8vw,2.1rem);font-weight:800;line-height:1.2;margin:0 0 28px;color:#fff;letter-spacing:-.01em}
.contact-band-form{display:flex;flex-direction:column;gap:16px}
.contact-band-form input,.contact-band-form textarea{width:100%;background:#fff;border:1px solid #dbe4ea;padding:14px 16px;font-size:15px;font-family:var(--font-body);color:#0d2a3a;border-radius:4px;outline:none;transition:border-color .2s}
.contact-band-form input:focus,.contact-band-form textarea:focus{border-color:#3a7fb0}
.contact-band-form textarea{resize:vertical;min-height:110px}
.contact-band-form input::placeholder,.contact-band-form textarea::placeholder{color:#8a98a3}
.contact-band-submit{align-self:flex-start;display:inline-flex;align-items:center;gap:12px;background:#15425a;color:#fff;border:1px solid rgba(255,255,255,.18);padding:14px 28px;font-size:15px;font-weight:700;cursor:pointer;border-radius:4px;transition:background .2s, transform .2s;font-family:var(--font-body);margin-top:6px}
.contact-band-submit:hover{background:#1d5470;transform:translateY(-2px)}
.contact-band-info{display:flex;flex-direction:column;justify-content:center;padding:8px 0}
.contact-band-eyebrow{color:#3a7fb0;font-weight:600;margin:0 0 12px;font-size:1rem;letter-spacing:.2px;font-family:var(--font-body);}
.contact-band-headline{font-family:var(--font-headings);font-size:clamp(2rem,3.6vw,3rem);font-weight:800;line-height:1.15;margin:0 0 18px;color:#0a0a0a;letter-spacing:-.02em}
.contact-band-lead{color:#4a5a66;font-size:1rem;line-height:1.7;margin:0 0 28px;max-width:620px;font-family:var(--font-body);}
.contact-band-trust{display:flex;align-items:center;gap:18px;margin-bottom:28px}
.contact-band-trust-icon{width:64px;height:64px;background:rgba(58,127,176,.12);border-radius:12px;display:grid;place-items:center;color:#3a7fb0;flex-shrink:0}
.contact-band-trust-title{font-family:var(--font-headings);font-size:1.35rem;font-weight:800;margin:0 0 4px;color:#0a0a0a;letter-spacing:-.01em}
.contact-band-trust-sub{color:#4a5a66;font-size:.95rem;margin:0;font-family:var(--font-body);}
.contact-band-call{display:inline-flex;align-items:center;gap:14px;background:#0d2a3a;color:#fff;padding:16px 28px;border-radius:4px;text-decoration:none;font-weight:700;font-size:1rem;width:fit-content;transition:background .2s, transform .2s;font-family:var(--font-body);}
.contact-band-call:hover{background:#15425a;transform:translateY(-2px)}
.contact-band-call-icon{width:36px;height:36px;background:rgba(255,255,255,.12);border-radius:50%;display:grid;place-items:center;color:#fff}
@media (max-width:900px){.contact-band-inner{grid-template-columns:1fr;gap:40px;padding:0 20px}.contact-band-form-card{padding:36px 28px}}

/* ===== Find Us Easily ===== */
.findus-band{background:var(--bg-color);padding:80px 24px 0;text-align:center;font-family:var(--font-body);}
.findus-title{font-family:var(--font-headings);font-size:clamp(30px,4.4vw,52px);font-weight:800;color:#0a0a0a;line-height:1.15;margin:0 0 18px;letter-spacing:-.02em}
.findus-sub{font-size:clamp(15px,1.4vw,18px);color:#555;max-width:640px;margin:0 auto 48px;line-height:1.6;font-family:var(--font-body);}
.findus-map{width:100%;height:480px;overflow:hidden}
.findus-map iframe{width:100%;height:100%;border:0;display:block}
@media (max-width:640px){.findus-map{height:340px}.findus-band{padding-top:56px}}


/* ===== Main footer ===== */
.site-footer{background:#0d2a3a;color:rgba(255,255,255,.78);padding:80px 24px 0;font-family:var(--font-body);}
.site-footer-inner{max-width:1240px;margin:0 auto}
.site-footer-top{margin-bottom:56px}
.site-footer-logo{height:68px;width:auto;display:block;margin-bottom:6px;filter:brightness(0) invert(1)}
.site-footer-tag{color:#7ab8d6;font-size:15px;font-weight:600;margin:0 0 22px;letter-spacing:.02em}
.site-footer-about{color:rgba(255,255,255,.78);font-size:15px;line-height:1.7;max-width:880px;margin:0 0 28px}
.site-footer-book{display:inline-flex;align-items:center;gap:14px;padding:16px 28px;background:#15425a;color:#fff;text-decoration:none;border-radius:4px;font-weight:600;font-size:1rem;border:1px solid rgba(255,255,255,.15);transition:background .2s, transform .2s}
.site-footer-book:hover{background:#1d5470;transform:translateY(-2px)}
.site-footer-book svg{width:20px;height:20px}
.site-footer-cols{display:grid;grid-template-columns:1.1fr 1fr 1.1fr 1.1fr;gap:48px;padding-bottom:56px}
.site-footer-col h4{font-family:var(--font-headings);color:#fff;font-size:1.4rem;font-weight:800;margin:0 0 22px;letter-spacing:-.01em}
.site-footer-col ul{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:12px}
.site-footer-col ul a{color:rgba(255,255,255,.82);text-decoration:none;font-size:15px;display:flex;align-items:center;gap:10px;transition:color .2s}
.site-footer-col ul a span{color:#7ab8d6;font-size:18px;font-weight:700}
.site-footer-col ul a:hover{color:#7ab8d6}
.site-footer-loc-title{color:rgba(255,255,255,.85);font-size:15px;line-height:1.6;margin:0 0 18px}
.site-footer-contact{display:flex;align-items:center;gap:12px;color:rgba(255,255,255,.85);text-decoration:none;font-size:15px;margin-bottom:14px;transition:color .2s}
.site-footer-contact svg{color:#7ab8d6;flex-shrink:0}
.site-footer-contact:hover{color:#7ab8d6}
.site-footer-address{display:flex;gap:12px;color:rgba(255,255,255,.72);font-size:14px;line-height:1.65;margin:18px 0 0}
.site-footer-address svg{color:#7ab8d6;flex-shrink:0;margin-top:2px}
.site-footer-socials{display:flex;gap:14px;margin-top:22px}
.site-footer-socials a{color:#7ab8d6;transition:color .2s, transform .2s}
.site-footer-socials a:hover{color:#fff;transform:translateY(-2px)}
.site-footer-bottom{background:#3a7fb0;color:#fff;text-align:center;padding:18px 24px;font-size:14px;font-family:var(--font-body);margin-top:0}
.site-footer-bottom a{color:#fff;text-decoration:underline}
@media (max-width:1024px){.site-footer-cols{grid-template-columns:1fr 1fr;gap:40px}}
@media (max-width:600px){.site-footer-cols{grid-template-columns:1fr;gap:36px}.site-footer{padding-top:56px}}


/* =========================================================
   SERVICES V2 — compact, modern card grid (replaces big slider on home)
   ========================================================= */
.section.services-v2{padding:90px 24px;background:#fff;font-family:var(--font-body)}
.services-v2-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
    margin-top:48px;
}
.svc-card{
    position:relative;
    display:flex;
    flex-direction:column;
    gap:12px;
    padding:32px 26px 70px;
    background:#fff;
    border:1px solid #e5ecf1;
    border-radius:14px;
    text-decoration:none;
    color:inherit;
    transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    overflow:hidden;
    min-height:240px;
}
.svc-card::before{
    content:"";
    position:absolute;left:0;top:0;height:3px;width:0;
    background:linear-gradient(90deg,#3a7fb0,#0d2a3a);
    transition:width .4s ease;
}
.svc-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px -22px rgba(13,42,58,.35);
    border-color:#cfdde6;
}
.svc-card:hover::before{width:100%}
.svc-icon{
    width:48px;height:48px;display:flex;align-items:center;justify-content:center;
    border-radius:12px;background:#eef5fa;
}
.svc-icon img{width:26px;height:26px;display:block}
.svc-card h3{
    font-family:var(--font-headings,var(--font-body));
    font-size:18px;font-weight:700;color:#0d2a3a;margin:4px 0 0;letter-spacing:-.01em;
}
.svc-card p{font-size:14px;line-height:1.6;color:#566773;margin:0}
.svc-arrow{
    position:absolute;left:26px;bottom:24px;
    width:36px;height:36px;border-radius:50%;
    background:#0d2a3a;color:#fff;display:flex;align-items:center;justify-content:center;
    font-size:16px;transition:background .3s ease, transform .3s ease;
}
.svc-card:hover .svc-arrow{background:#3a7fb0;transform:translateX(4px)}
.services-v2-cta-row{display:flex;justify-content:center;margin-top:44px}
@media (max-width:1100px){.services-v2-grid{grid-template-columns:repeat(3,1fr)}}
@media (max-width:820px){.services-v2-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:520px){.services-v2-grid{grid-template-columns:1fr}}

/* =========================================================
   SPECIALISTS REDESIGN — fix head crop + modern card
   ========================================================= */
.section.specialists{padding:90px 24px;background:#f6f9fb}
.section.specialists .specialist-row-grid{
    grid-template-columns:repeat(4,1fr)!important;
    gap:26px!important;
}
@media (max-width:1100px){.section.specialists .specialist-row-grid{grid-template-columns:repeat(2,1fr)!important}}
@media (max-width:600px){.section.specialists .specialist-row-grid{grid-template-columns:1fr!important}}

.section.specialists .single-specialist-wrapper{
    background:#fff!important;
    border-radius:16px!important;
    overflow:hidden!important;
    box-shadow:0 10px 30px -18px rgba(13,42,58,.25)!important;
    transition:transform .35s ease, box-shadow .35s ease!important;
    display:flex!important;flex-direction:column!important;
    border:1px solid #e8eef2;
}
.section.specialists .single-specialist-wrapper:hover{
    transform:translateY(-6px)!important;
    box-shadow:0 22px 45px -22px rgba(13,42,58,.4)!important;
}
.section.specialists .specialist-img-container{
    width:100%!important;
    height:340px!important;
    position:relative!important;
    background:#e8eef2;
    overflow:hidden;
}
.section.specialists .single-specialist-img{
    width:100%!important;height:100%!important;
    object-fit:cover!important;
    object-position:center 15%!important;   /* shift down so the head is fully visible */
    display:block;
    transition:transform .6s ease;
}
.section.specialists .single-specialist-wrapper:hover .single-specialist-img{transform:scale(1.04)}
.section.specialists .specialist-img-container::after{display:none!important}
.section.specialists .single-specialist-details-wrapper{
    padding:24px 22px 28px!important;
    margin-top:0!important;
    align-items:flex-start!important;
    text-align:left!important;
    background:#fff!important;
    flex:1;
}
.section.specialists .specialist-name{
    font-size:19px!important;font-weight:700!important;
    color:#0d2a3a!important;margin:0 0 4px!important;
    font-family:var(--font-headings,var(--font-body))!important;
}
.section.specialists .specialist-designation{
    font-size:13px!important;color:#3a7fb0!important;
    font-weight:600!important;letter-spacing:.04em;text-transform:uppercase;
    margin-bottom:12px!important;
}
.section.specialists .specialist-details{
    font-size:14px!important;color:#566773!important;line-height:1.6!important;
    max-width:none!important;margin-bottom:18px!important;
}
.section.specialists .specialist-more-btn-wrap a{
    color:#0d2a3a!important;font-weight:700!important;font-size:13px!important;
    text-transform:uppercase;letter-spacing:.05em;gap:10px!important;
}
.section.specialists .specialist-more-btn-wrap a:hover{color:#3a7fb0!important}

/* =========================================================
   MOBILE RESPONSIVENESS — services-v2 + specialists
   ========================================================= */
@media (max-width:768px){
    .section.services-v2{padding:60px 18px}
    .services-v2-grid{gap:16px;margin-top:32px}
    .svc-card{padding:24px 20px 64px;min-height:0}
    .svc-card h3{font-size:17px}
    .svc-card p{font-size:13.5px}
    .svc-icon{width:42px;height:42px}
    .svc-icon img{width:22px;height:22px}
    .svc-arrow{width:32px;height:32px;left:20px;bottom:18px;font-size:14px}

    .section.specialists{padding:60px 18px}
    .section.specialists .specialist-img-container{height:300px!important}
    .section.specialists .single-specialist-details-wrapper{padding:20px 18px 24px!important}
    .section.specialists .specialist-name{font-size:18px!important}
    .section.specialists .section-tittle-wrapper.left-flex{flex-direction:column;align-items:flex-start;gap:18px}
}
@media (max-width:480px){
    .section.services-v2{padding:48px 14px}
    .section.specialists{padding:48px 14px}
    .section.specialists .specialist-img-container{height:340px!important}
    .svc-card{padding:22px 18px 60px}
}
