/*
Theme Name: Dentist V3
Author: Your Name
Version: 1.0
*/

/* =========================
   Global Reset
========================= */

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

/* =========================
   Color System
========================= */

:root {
    --color-primary: #0f172a;      /* Dark Navy */
    --color-accent: #c6a86b;       /* Soft Beige Gold */
    --color-light: #f8f6f2;        /* Warm Background */
    --color-text: #1e293b;         /* Deep Text */
    --color-border: #e5e7eb;
}

/* =========================
   Base Typography
========================= */

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: #ffffff;
}
main p{
    font-size:18px;
    line-height:1.8;
}

/* =========================
   Layout System
========================= */

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

.site-main {
    padding: 0;
}

/* =========================
   Global Section System
========================= */

.section {
    padding: 120px 0;
}

.section--light {
    background: #f3f4f6;
}

.section--beige {
    background: var(--color-light);
}


/* =========================
   Global Heading Scale
========================= */

h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.15;
}

h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.25;
}

h3 {
    font-size: 20px;
    font-weight: 600;
}

/* =========================
   Section Label Utility
========================= */

.section-label {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 18px;
    display: inline-block;
}

/* =========================
   Header Layout
========================= */

.site-header {
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border);
    background-color: #ffffff;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Navigation */

.primary-nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* =========================
   Header CTA Button
   Gold Default → Navy Hover
========================= */

.header-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 22px;
    border-radius: 8px;

    border: 1px solid var(--color-accent);
    background: var(--color-accent);
    color: #0f172a;

    font-weight: 600;
    letter-spacing: 0.3px;
    text-decoration: none;

    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.header-cta .btn-primary:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
}

/* Active Menu Indicator */

.primary-nav ul li {
    position: relative;
}

.primary-nav ul li a {
    position: relative;
    padding-bottom: 6px;
}

/* Hover underline */
.primary-nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.primary-nav ul li a:hover::after {
    width: 100%;
}

/* Active page underline */
.primary-nav ul li.current-menu-item a::after,
.primary-nav ul li.current_page_item a::after,
.primary-nav ul li.current_page_parent a::after {
    width: 100%;
}

/* =========================
   Navigation
========================= */

.primary-nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
}

.primary-nav a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
}

/* =========================
   Button System
========================= */

.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--color-primary);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
}

/* =========================
   Hamburger Button
========================= */

.menu-toggle{
display:none;
background:none;
border:none;
font-size:24px;
cursor:pointer;
color:#0f172a;
}


/* =========================
   Tablet (iPad)
========================= */

@media (max-width:1024px){

.site-header .container{
flex-wrap:wrap;
gap:16px;
}

.primary-nav ul{
gap:20px;
}

.header-cta .btn-primary{
padding:8px 18px;
font-size:14px;
}

}


/* =========================
   Mobile
========================= */

@media (max-width:768px){

.site-header{
padding:14px 0;
}

.site-header .container{
display:flex;
align-items:center;
justify-content:space-between;
flex-wrap:wrap;
}

/* Logo size */
.logo img{
max-height:50px;
}

/* Show hamburger */
.menu-toggle{
display:block;
margin-left:auto;
}

/* Hide CTA button */
.header-cta{
display:none;
}

/* Mobile menu hidden by default */
.primary-nav{
display:none;
width:100%;
}

.primary-nav.active{
display:block;
}

.primary-nav ul{
flex-direction:column;
align-items:flex-start;
gap:14px;
margin-top:10px;
}

}

/* =====================================
   Structured Treatment Cards
===================================== */

.treatments-section{
    padding:120px 0;
    background:#ffffff;
}

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


/* Card */

.treatment-card{
    background:#ffffff;
    border:1px solid #d1d5db;
    border-radius:18px;
    padding:45px 40px;
    box-shadow:0 12px 35px rgba(15,23,42,0.04);
}
.treatment-card:hover{
    border-color:#d1d5db;
}

.treatments-section{
    padding:120px 0;
    background:#ffffff;;
}

/* Title */

.treatment-card .treatment-title{
    font-size:22px;
    font-weight:600;
    margin-bottom:28px;
}

/* Info rows */

.treatment-info{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin-bottom:30px;
}

.treatment-card .info-row{
    background:#f8fafc;
    border-radius:10px;
    padding:14px 18px;
    margin-bottom:14px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.info-label{
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:1px;
    color:#64748b;
    min-width:90px;
}

.info-value{
    font-size:14px;
    color:var(--color-primary);
    text-align:right;
}

/* Highlight Purpose */

.info-row.highlight{
    background:#eef3f4;
    flex-direction:column;
    align-items:flex-start;
}

.info-row.highlight .info-value{
    text-align:left;
    margin-top:6px;
}


/* Button */

.treatment-btn{
    display:inline-block;
    margin-top:auto;
    font-size:14px;
    font-weight:600;
    color:var(--color-accent);
    text-decoration:none;
    letter-spacing:0.5px;
}

.treatment-btn:hover{
    opacity:0.8;
}


/* =====================================
   Responsive
===================================== */

@media (max-width:1024px){

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

}

@media (max-width:768px){

    .treatments-section{
        padding:70px 0;
    }

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

}
/* =========================
   Single Treatment Layout
========================= */

.treatment-hero {
    padding: 100px 0 140px;
    background: #ffffff;
}

.treatment-title {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 700;
    color: var(--color-primary);
    margin: 12px 0 20px;
}

.treatment-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent);
}

.treatment-hero-desc {
    font-size: 18px;
    line-height: 1.7;
    color: #475569;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    align-items: stretch;
    gap: 80px;
}

.hero-content {
    max-width: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.hero-content {
    max-width: 520px;
}

.hero-media {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 5 / 4;
    border-radius: 16px;
    overflow: hidden;
    /* remove justify-self */
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-inner {
    padding: 0 0px;
}
.treatment-subtitle {
    margin-bottom: 16px;
}

.back-to-treatments {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;

    padding: 10px 18px;
    border-radius: 50px;

    background: #f6efe2; /* light cream */
    color: var(--color-primary);

    text-decoration: none;

    margin-bottom: 40px;

    transition: all 0.3s ease;
}

.back-to-treatments:hover {
    background: var(--color-accent);
    color: #ffffff;
}

/* Overview 2 Column */

.treatment-overview {
   padding: 100px 0 60px 0;
}

.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.overview-title {
    font-size: 32px;
    margin-bottom: 20px;
}

.overview-content {
    line-height: 1.8;
}

/* =========================
   Ultra Clean Overview
========================= */

.overview-text {
    font-size: 18px;
    line-height: 1.9;
    color: #475569;
}

.overview-text p {
    margin-bottom: 28px;
}

/* Strong opening paragraph */

.overview-text p:first-of-type {
    font-size: 26px;
    line-height: 1.6;
    font-weight: 500;
    color: var(--color-primary);
}

/* =========================
   Authority Overview Layout
========================= */

.overview-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Big Statement */

.overview-lead {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 500;
    color: var(--color-primary);
    max-width: 800px;
}

/* Supporting Explanation */

.overview-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    font-size: 18px;
    line-height: 1.9;
    color: #475569;
}

.overview-body p {
    margin: 0;
}

/* =========================
   Refined Structured Overview
========================= */

.overview-left {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* Sections Layout */

.overview-sections {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Each Section Block */

.overview-block {
    max-width: 700px;
}

.overview-block h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--color-primary);
}

.overview-block p {
    font-size: 18px;
    line-height: 1.9;
    color: #5b6472;
    margin: 0;
}

/* =========================
   Premium Key Benefits
========================= */

.treatment-benefits {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--color-border);
    box-shadow: 0 20px 60px rgba(0,0,0,0.04);
}

.benefits-title {
    font-size: 24px;
    margin-bottom: 35px;
    color: var(--color-primary);
    position: relative;
}

.benefits-title::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: var(--color-accent);
    margin-top: 12px;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.benefit-dot {
    width: 12px;
    height: 12px;
    background: var(--color-accent);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.benefit-item p {
    margin: 0;
    line-height: 1.8;
    color: #475569;
    font-size: 16px;
}

/* =========================
   Tools
========================= */

.treatment-tools {
    padding: 60px 0 120px 0;
}

.treatment-tools .section-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 60px;
    color: var(--color-primary);
}

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

/* Card */

.tool-card {
    padding: 44px;
    border-radius: 28px;

    background: #ffffff;
    border: 1px solid var(--color-border);

    display: flex;
    flex-direction: column;
    gap: 24px;

    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.tool-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.06);
}

/* Icon Container */

.tool-icon {
    width: auto;
    height: auto;

    display: flex;
    align-items: center;

    margin-bottom: 6px;
}

/* Icon */

.tool-icon img,
.tool-icon svg {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Heading */

.tool-card h4 {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    color: var(--color-primary);
}

/* Description */

.tool-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #5b6472;
    margin: 0;
}
/* =========================
   Premium Process Card
========================= */

.treatment-process {
    padding: 140px 0;
    background: var(--color-light);
}

.process-wrapper {
    background: #ffffff;
    padding: 80px 80px 10px 80px;
    border-radius: 28px;
    border: 1px solid var(--color-border);
    box-shadow: 0 25px 80px rgba(0,0,0,0.05);

    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 100px;
    align-items: start;
}

/* Left Side */

.process-left .section-title {
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 24px;
}

.process-intro {
    color: #64748b;
    line-height: 1.8;
    font-size: 16px;
}

/* Timeline */

.process-grid {
    position: relative;
}

.process-grid::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 22px;
    bottom: 58px;
    width: 2px;
    background: #e2e8f0;
}

/* Individual Step */

.process-step {
    position: relative;
    padding-left: 70px;
    margin-bottom: 80px;
}

.process-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.process-step p {
    color: #475569;
    line-height: 1.8;
}

/* =========================
   Testimonials
========================= */

.treatment-testimonials {
    padding: 100px 0;
    background: #f8f6f2;
}

.treatment-testimonials .section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--color-primary);
}

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

.testimonial-card {
    padding: 40px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid var(--color-border);
}

.testimonial-quote {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 25px;
}

.testimonial-name {
    display: block;
    font-weight: 600;
    color: var(--color-primary);
}

.testimonial-role {
    font-size: 14px;
    color: #94a3b8;
}

.treatment-testimonials .section-title {
    position: relative;
    display: inline-block;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 50px;
}

.treatment-testimonials .section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: var(--color-accent);
    margin-top: 12px;
}

/* =========================
   Premium FAQ Section
========================= */

.treatment-faq {
    background: var(--color-light);
    padding: 85px 0 120px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 100px;
    align-items: start;
}

.faq-left .section-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.faq-intro {
    color: #64748b;
    font-size: 16px;
    line-height: 1.8;
}

/* Accordion Styling */

.faq-list {
    border-top: 1px solid var(--color-border);
}

.faq-item {
    position: relative;
    border-bottom: 1px solid var(--color-border);
    padding: 24px 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    color: var(--color-primary);
    cursor: pointer;
    padding-right: 40px;
    position: relative;
}

/* Plus Icon */

.faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 24px;
    transition: 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: "−";
}

/* Answer */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    margin-top: 14px;
    font-size: 15px;        /* smaller */
    line-height: 1.7;
    color: #5b6472;         /* slightly softer */
}

/* Animated Bottom Line */

.faq-item {
    position: relative;
    border-bottom: 1px solid var(--color-border);
    padding: 24px 0;
    overflow: hidden;
}

.faq-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 2px;
    width: 0%;
    background: var(--color-accent);
    transition: width 0.4s ease;
}

.faq-item:hover::after {
    width: 100%;
}

/* =========================
   Editorial Luxury CTA
========================= */

.treatment-cta {
    padding: 70px 0 130px 0; /* reduced from 180 */
    background: var(--color-light);
}

.cta-inner {
    text-align: center;
    max-width: 760px;   /* slightly tighter */
    margin: 0 auto;
}

.cta-heading {
    font-size: 40px;   /* reduced from 56 */
    line-height: 1.2;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 36px;
}

/* Minimal Luxury Link */

.cta-link {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 40px; /* adds bottom space */
}

.cta-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.4s ease;
}

.cta-link:hover::after {
    width: 100%;
}

.cta-arrow {
    transition: transform 0.3s ease;
}

.cta-link:hover .cta-arrow {
    transform: translateX(6px);
}

.cta-inner {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;

    background: #ffffff;
    padding: 80px 60px;
    border-radius: 28px;
    border: 1px solid var(--color-border);
}

/* =========================
   Single Treatment – Mobile
========================= */

@media (max-width: 992px) {

    /* HERO */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-media {
        max-width: 100%;
        order: -1; /* image above text */
    }

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

    .treatment-hero-desc {
        font-size: 16px;
    }

    .treatment-hero {
        padding: 60px 0 80px;
    }

    /* OVERVIEW */
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .overview-left {
        gap: 40px;
    }

    .overview-sections {
        gap: 30px;
    }

    .overview-block h3 {
        font-size: 20px;
    }

    .overview-block p {
        font-size: 16px;
    }

    .treatment-overview {
        padding: 60px 0;
    }

    /* BENEFITS */
    .treatment-benefits {
        padding: 30px;
    }

    /* TOOLS */
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tool-card {
        padding: 30px;
    }

    .treatment-tools {
        padding: 60px 0;
    }

    /* PROCESS */
    .process-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 40px 30px;
    }

    .process-left .section-title {
        font-size: 30px;
    }

    .process-step {
        margin-bottom: 50px;
    }

    .treatment-process {
        padding: 80px 0;
    }

    /* TESTIMONIALS */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .treatment-testimonials {
        padding: 60px 0;
    }

    /* FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-left .section-title {
        font-size: 28px;
    }

    .treatment-faq {
        padding: 60px 0 80px;
    }

    /* CTA */
    .treatment-cta {
        padding: 60px 0 80px;
    }

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

/* =========================
   BOLD MODERN DENTAL FOOTER
========================= */

.site-footer {
    background: #0c1620; /* deep navy */
    padding: 100px 0 50px;
    margin-top: 0;
    color: #d9e0e8;
}

/* Grid */

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 80px;
    margin-bottom: 80px;
}

/* Logo */

.footer-logo img {
    max-height: 48px;
    opacity: 0.9;
}

/* Description */

.footer-description {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.9;
    color: #aeb7c2;
    max-width: 360px;
}

/* Headings */

.footer-heading {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
}

.footer-heading::after {
    content: "";
    display: block;
    width: 32px;
    height: 2px;
    background: #c6a75e; /* gold accent */
    margin-top: 10px;
}

/* Menus */

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 14px;
}

.footer-menu a {
    text-decoration: none;
    font-size: 15px;
    color: #b7c1cd;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #ffffff;
}

/* Contact */

.footer-contact p {
    font-size: 15px;
    line-height: 1.9;
    color: #b7c1cd;
    margin-bottom: 12px;
}

.footer-contact a {
    text-decoration: none;
    color: #b7c1cd;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #ffffff;
}

/* Social */

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 22px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(198,167,94,0.12);
    border-radius: 50%;
    color: #c6a75e;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-social a svg {
    width: 16px;
    height: 16px;
}

.footer-social a:hover {
    background: #c6a75e;
    color: #16202b;
}

/* Bottom */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 40px;
    margin-top: 60px;
    font-size: 14px;
    color: #9aa6b2;
}

/* =========================
   Footer Responsive Fix
========================= */

@media (max-width: 992px){

    .footer-grid{
        display: grid;
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-col{
        width: 100%;
    }

    .footer-heading{
        margin-bottom: 15px;
    }

    .footer-menu{
        padding-left: 0;
    }

    .footer-menu li{
        margin-bottom: 8px;
    }

    .footer-social{
        margin-top: 20px;
    }

    .footer-bottom{
        text-align: center;
        margin-top: 40px;
    }

}

@media (max-width: 768px){

    .site-footer{
        padding: 70px 0 40px;
    }

    .footer-description{
        max-width: 100%;
        font-size: 15px;
        line-height: 1.6;
    }

    .footer-contact p{
        margin-bottom: 12px;
    }

}

/* =========================
   Homepage Hero
========================= */

.home-hero {
    padding: 70px 0;
    background: linear-gradient(
        to bottom,
        #f9f7f3 0%,
        #ffffff 60%
    );
}

/* Layout */

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr; /* more space to image */
    align-items: start;
    gap: 90px;
}

.hero-media {
    margin-top: 65px;
}

/* Label */

.hero-label {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 24px;
    display: inline-block;
}

/* Title */

.hero-title {
    font-size: 56px;
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: -0.6px;
    color: var(--color-primary);
    margin-bottom: 30px;
}

/* Subtext */

.hero-subtext {
    font-size: 19px;
    line-height: 1.75;
    color: #475569;
    max-width: 560px;
    margin-bottom: 44px;
}

/* =========================
   Hero Actions
========================= */

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px; /* Reduced for tighter premium grouping */
}


/* =========================
   Primary Button
========================= */

.hero-actions .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 30px;
    border-radius: 8px;

    border: none;
    background: var(--color-accent);
    color: #0f172a;

    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;

    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.hero-actions .btn-primary:hover {
    background: var(--color-primary);
    color: #ffffff;
    transform: translateY(-1px);
}

/* =========================
   Hero Image
========================= */

.hero-media {
    margin-top: 65px;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}
.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================
   Mobile Hero
========================= */

@media (max-width:768px){

.hero-grid{
grid-template-columns:1fr;
gap:40px;
}

/* ADD THESE */
.hero-content{
order:1;
}

.hero-media{
order:2;
}

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

.hero-subtext{
font-size:16px;
line-height:1.6;
}

.hero-actions{
flex-direction:column;
align-items:flex-start;
gap:16px;
}

.hero-media{
margin-top:0;
}

}
/* =========================
   Approach Section
========================= */

.approach-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px auto;
}

.approach-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.approach-card {
    padding: 50px 40px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #eee9e2;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.approach-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.approach-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
}

.approach-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.section--warm {
    background: #f6f3ee;
}

.approach-icon{
    width:42px;
    margin-bottom:22px;
    display:flex;
    align-items:center;
}

.approach-icon img{
    width:100%;
    height:auto;
    filter: brightness(0) saturate(100%) invert(73%) sepia(24%) saturate(471%) hue-rotate(6deg) brightness(92%) contrast(88%);
    opacity:0.9;
}

/* =========================
   Approach Section — Mobile
========================= */

@media (max-width:768px){

.approach-header{
margin-bottom:40px;
}

.approach-header h2{
font-size:30px;
line-height:1.3;
}

.approach-cards{
grid-template-columns:1fr;
gap:24px;
}

.approach-card{
padding:36px 28px;
}

}

/* =========================
   Editorial Treatments
========================= */

.treatments-editorial-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 80px;
    align-items: start;
}

.section--spaced {
    padding-top: 180px;
}

.treatments-editorial-right {
    margin-top: 23px;
}

/* Link */

.treatments-link {
    display: inline-block;
    margin-top: 30px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    position: relative;
}

.treatments-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.treatments-link:hover::after {
    width: 100%;
}

.treatments-link .arrow {
    display: inline-block;
    margin-left: 6px;
    transition: transform 0.4s ease;
}

.treatments-link:hover .arrow {
    transform: translateX(6px);
}

/* Right Rows */

.treatment-row {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 35px 0;
    border-bottom: 1px solid #e7e2d9;
    transition: transform 0.3s ease;
}

.treatment-row:last-child {
    border-bottom: none;
}

.treatment-row:hover {
    transform: translateX(6px);
}

.treatment-number {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-accent);
    min-width: 40px;
}

.treatment-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.treatment-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280;
}

.section--light {
    background: #ffffff;
}


/* =========================
   Treatments — Mobile
========================= */

@media (max-width:768px){

.treatments-editorial-grid{
grid-template-columns:1fr;
gap:40px;
}

.section--spaced{
padding-top:100px;
}

.treatments-editorial-right{
margin-top:0;
}

.treatments-editorial-left h2{
font-size:30px;
line-height:1.3;
}

.treatment-row{
gap:20px;
padding:24px 0;
}

.treatment-content h3{
font-size:20px;
}

.treatment-content p{
font-size:14px;
line-height:1.6;
}

}

/* =========================
   Clinical Luxury Frame
========================= */

.clinical-luxury-frame{
    padding-top:90px;
    padding-bottom:120px;
    position:relative;
}

/* Layout */

.clinical-frame-wrapper{
    position:relative;
    display:flex;
    align-items:center;
    min-height:600px;
}

/* Doctor Image */

.clinical-frame-image{
    width:55%;
}

.clinical-frame-image img{
    width:100%;
    height:600px;
    object-fit:cover;
    border-radius:32px;
    box-shadow:0 50px 100px rgba(0,0,0,0.08);
}

/* Floating Panel */

.clinical-frame-panel{
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    width:50%;
    background:#ffffff;
    padding:70px 65px;
    border-radius:28px;
    box-shadow:
        0 40px 80px rgba(15,23,42,0.12),
        0 8px 24px rgba(15,23,42,0.06);
}

/* Headline */

.clinical-frame-panel h2{
    margin-bottom:28px;
}

/* Intro Text */

.clinical-frame-intro{
    font-size:18px;
    line-height:1.75;
    color:#6b7280;
    margin-bottom:45px;
}

/* Credentials Row */

.clinical-frame-accent-row{
    display:flex;
    align-items:stretch;
    gap:16px;
    margin-bottom:35px;
}

/* Gold Accent Line */

.clinical-frame-accent{
    width:3px;
    background:var(--color-accent);
}

/* Credentials List */

.clinical-frame-credentials{
    list-style:none;
    padding:0;
    margin:0;
}

.clinical-frame-credentials li{
    font-size:15px;
    color:#374151;
    margin-bottom:12px;
}

/* Doctor Signature */

.clinical-frame-signature{
    margin-bottom:25px;
}

.clinical-frame-signature strong{
    display:block;
    font-size:19px;
    margin-bottom:6px;
    color:var(--color-primary);
}

.clinical-frame-signature span{
    font-size:14px;
    color:#6b7280;
}

/* Doctor Image — Mobile placement */

.mobile-only{
display:none;
}

@media (max-width:768px){

/* Hide desktop image */
.clinical-frame-wrapper > .clinical-frame-image{
display:none;
}

/* Show mobile image */
.mobile-only{
display:block;
margin:24px 0;
}

.mobile-only img{
width:100%;
height:auto;
border-radius:24px;
}

}

/* =========================
   Clinical Frame — Mobile
========================= */

@media (max-width:768px){

.clinical-frame-wrapper{
flex-direction:column;
min-height:auto;
}

.clinical-frame-panel{
position:relative;
top:auto;
right:auto;
transform:none;
width:100%;
padding:40px 28px;
margin-bottom:20px;
display:flex;
flex-direction:column;
}

.clinical-frame-panel h2{
font-size:30px;
line-height:1.3;
}

.clinical-frame-intro{
font-size:16px;
line-height:1.6;
}

/* doctor image inside panel */

.mobile-only{
display:block;
width:100%;
margin:20px 0;
flex-basis:100%;
}

.mobile-only img{
width:100%;
max-width:340px;
border-radius:20px;
margin:0 auto;
display:block;
}

/* keep accent row layout for gold line */

.clinical-frame-accent-row{
display:flex;
align-items:flex-start;
flex-wrap:wrap;
}

}

/* =========================
   Before & After Slider Section
========================= */

.before-after-section {
    padding: 140px 0;
    background: #f3f4f6;
}

/* Section Header */
.before-after-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c8a96a;
    margin-bottom: 15px;
}

.before-after-header h2 {
    margin-bottom: 20px;
}

.section-subheading {
    color: #6b7280;
    font-size: 17px;
    line-height: 1.7;
}

/* Grid Layout */
.before-after-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Card */
.before-after-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

/* Curve Image Corners */
.before-after-card .bafg-wrapper {
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    margin-bottom: 20px;
}

.before-after-card img {
    border-radius: 18px !important;
    object-fit: cover !important;
}

/* Typography */
.before-after-card h3 {
    margin-bottom: 8px;
}

.before-after-card p {
    font-size: 14px;
    color: #6b7280;
}

/* =========================
   Before & After — Mobile
========================= */

@media (max-width:1024px){

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

.before-after-section{
padding:110px 0;
}

}

@media (max-width:768px){

.before-after-grid{
grid-template-columns:1fr;
gap:24px;
}

.before-after-header{
margin:0 auto 50px;
}

.before-after-header h2{
font-size:30px;
line-height:1.3;
}

.section-subheading{
font-size:15px;
line-height:1.6;
}

.before-after-card{
padding:22px;
}

.before-after-card .bafg-wrapper{
aspect-ratio:4/3;
}

}

/* =========================
   Google Reviews Section
========================= */

.google-reviews-section {
    padding: 140px 0;
    background: #f9fafb;
    text-align: center;
}

/* Rating Block */

.google-rating-block {
    max-width: 600px;
    margin: 0 auto 40px; /* reduced */
}

.google-rating-score {
    font-size: 110px;
    font-weight: 700;
    line-height: 1;
    color: var(--color-primary);
    margin-bottom: 18px;
}

.google-rating-stars {
    font-size: 22px;
    letter-spacing: 6px;
    color: #d4af37;
    margin-bottom: 18px;
}

.google-rating-text {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 28px;
}

.google-review-link {
    font-size: 15px;
    color: var(--color-primary);
    text-decoration: none;
    position: relative;
}

.google-review-link::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: var(--color-primary);
    margin-top: 4px;
    transform: scaleX(0.6);
    transition: transform 0.3s ease;
}

.google-review-link:hover::after {
    transform: scaleX(1);
}

/* Divider */

.reviews-divider {
    width: 80px;
    height: 1px;
    background: #e5e7eb;
    margin: 0 auto 40px; /* reduced */
}

/* Review Grid */

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

/* Review Card */

.review-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    text-align: left;
    box-shadow:
        0 30px 60px rgba(15, 23, 42, 0.05),
        0 8px 24px rgba(15, 23, 42, 0.03);
    transition: transform 0.3s ease;
}

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

/* Review Header */

.review-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.review-top span {
    display: block;
    font-size: 14px;
    color: #6b7280;
    margin-top: 4px;
}

/* Stars */

.review-stars-small {
    font-size: 14px;
    letter-spacing: 3px;
    color: #d4af37;
    margin-bottom: 14px;
}

/* Review Text */

.review-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
}

/* Reviews CTA Button */

.reviews-cta{
margin-top:60px;
text-align:center;
}

.secondary-btn{
display:inline-block;
font-size:15px;
color:var(--color-primary);
text-decoration:none;
padding:14px 28px;
border:1px solid rgba(15,23,42,0.15);
border-radius:50px;
transition:all 0.3s ease;
}

.secondary-btn:hover{
background:var(--color-primary);
color:#ffffff;
border-color:var(--color-primary);
}

/* =========================
   Google Reviews — Responsive
========================= */

@media (max-width:1024px){

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

.google-reviews-section{
padding:110px 0;
}

}

@media (max-width:768px){

.reviews-grid{
grid-template-columns:1fr;
gap:24px;
}

.google-rating-score{
font-size:72px;
}

.google-rating-stars{
font-size:18px;
letter-spacing:4px;
}

.google-rating-text{
font-size:15px;
}

.review-card{
padding:26px;
}

.review-card p{
font-size:14px;
line-height:1.6;
}

}

/* =========================
   Premium Insights Section
========================= */

.insights-slider-section {
    padding: 160px 0;
    background: #f6f2eb;
}

/* LAYOUT */

.insights-inner {
    display: flex;
    align-items: flex-start;
    gap: 100px;
}

/* LEFT SIDE */

.insights-left {
    flex: 0 0 45%;
    position: relative;
    z-index: 2;
}

.insights-left h2 {
    font-size: 44px;
    line-height: 1.2;
    margin: 18px 0 24px;
}

.insights-left p {
    font-size: 18px;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 42px;
}

/* NAVIGATION BUTTONS */

.insights-nav {
    display: flex;
    gap: 18px;
}

.insights-nav button {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid #d4af37;
    background: transparent;
    color: #0f172a;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.insights-nav button:hover {
    background: #d4af37;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212,175,55,0.25);
}

/* RIGHT SIDE */

.insights-right {
    flex: 0 0 55%;
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
}

/* TRACK */

.insights-track {
    display: flex;
    gap: 40px;
    transition: transform 0.5s ease;

    padding-left: 20px;
}

/* CARDS */

.insight-card {
    min-width: 360px;
    background: #ffffff;
    padding: 42px;
    border-radius: 24px;

    border: 1px solid rgba(15,23,42,0.06);
    box-shadow: 0 8px 24px rgba(15,23,42,0.04);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insight-card h3 {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 18px;
}

.insight-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 26px;
}

/* READ MORE */

.insight-read {
    font-size: 14px;
    font-weight: 500;
    color: #0f172a;
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
}

.insight-read::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60%;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.insight-read:hover::after {
    width: 100%;
}

/* =========================
   Premium Insights — Responsive
========================= */

@media (max-width:1024px){

.insights-inner{
flex-direction:column;
gap:60px;
}

.insights-left,
.insights-right{
flex:1 1 100%;
}

.insights-track{
margin-right:0;
padding-right:0;
}

}

@media (max-width:768px){

.insights-inner{
flex-direction:column;
gap:40px;
}

.insights-left h2{
font-size:30px;
line-height:1.3;
}

/* slider container */

.insights-right{
width:100%;
overflow:hidden;
}

/* slider track */

.insights-track{
gap:20px;
padding-left:0;
}

/* cards */

.insight-card{
min-width:100%;
width:100%;
box-sizing:border-box;
padding:24px;
}

.insight-card h3{
font-size:18px;
}

.insight-card p{
font-size:14px;
margin-bottom:18px;
}

}
/* =========================
   Dark Luxury Appointment Section
========================= */

.appointment-section {
    padding: 180px 0;
    background: #0f172a;  /* deep navy */
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle gold glow */

.appointment-section::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.12) 0%,
        rgba(212, 175, 55, 0.05) 40%,
        transparent 70%
    );
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.appointment-wrapper {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    z-index: 2;
}

/* Label */

.appointment-section .section-label {
    letter-spacing: 3px;
    font-size: 12px;
    color: var(--color-accent);
    margin-bottom: 20px;
}

/* Headline */

.appointment-wrapper h2 {
    font-size: 50px;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-bottom: 26px;
    color: #ffffff;
}

/* Subtext */

.appointment-subtext {
    font-size: 19px;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);

    max-width: none;      /* remove width restriction */
    white-space: nowrap;  /* force single line */

    margin: 0 auto 60px;
}

/* Buttons */

.appointment-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
}

/* Gold Primary Button */

.appointment-section .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 18px 40px;
    border-radius: 8px;

    border: 1px solid var(--color-accent);
    background: var(--color-accent);
    color: #0f172a;

    font-weight: 600;
    letter-spacing: 0.4px;
    text-decoration: none;

    box-shadow: 0 15px 40px rgba(212,175,55,0.25);
    transition: all 0.3s ease;
}

.appointment-section .btn-primary:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #0f172a;
    transform: translateY(-3px);
}

/* Secondary Button */

.appointment-section .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 18px 40px;
    border-radius: 8px;

    border: 1px solid rgba(255,255,255,0.3);
    color: #ffffff;
    background: transparent;

    font-weight: 500;
    text-decoration: none;

    transition: all 0.3s ease;
}

.appointment-section .btn-secondary:hover {
    border-color: #ffffff;
    background: rgba(255,255,255,0.08);
}

main,
.site,
.site-content {
    min-height: auto !important;
}

/* =========================
   Appointment Section — Mobile
========================= */

@media (max-width:768px){

.appointment-section{
padding:120px 0;
}

.appointment-wrapper h2{
font-size:32px;
line-height:1.3;
}

.appointment-subtext{
font-size:16px;
line-height:1.6;
white-space:normal; /* allow wrapping */
margin-bottom:40px;
}

.appointment-actions{
flex-direction:column;
gap:16px;
}

.appointment-section .btn-primary,
.appointment-section .btn-secondary{
width:100%;
max-width:320px;
padding:16px 24px;
}

}


/* =========================================================
   CONTACT – BOLD MODERN DENTAL
   --------------------------------------------------------- */

.contact-page {
    background: #f4f6f8;
}

/* Strap */

.contact-strap {
    background: #1e2a38;
    padding: 45px 0;
}

.contact-strap h1 {
    color: #ffffff;
    font-size: 36px;
    margin: 0;
}

/* Split Section */

.contact-bold {
    padding: 120px 0;
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: center;
}

/* Left */

.contact-left .micro-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c6a75e;
}

.contact-left h2 {
    font-size: 44px;
    line-height: 1.2;
    color: #1e2a38;
    margin: 20px 0 25px;
}

.detail-block span {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c6a75e;
    margin-bottom: 8px;
}

.detail-block p {
    margin: 0;
    font-size: 16px;
    color: #1e2a38;
}

.detail-block a {
    color: #1e2a38;
    text-decoration: none;
}

/* Right Form Panel */

.contact-right {
    background: #ffffff;
    padding: 70px;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}



/* LEFT PANEL UPGRADE */

.contact-left {
    padding-right: 40px;
}

.contact-left .lead-text {
    font-size: 18px;
    line-height: 1.8;
    color: #3e4a59;
    margin-bottom: 50px;
    max-width: 480px;
}

.contact-details {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.detail-block {
    margin-bottom: 40px;
}

.detail-block span {
    font-size: 11px;
    letter-spacing: 2px;
    color: #c6a75e;
}

.detail-block p {
    font-size: 17px;
    margin-top: 8px;
}

/* =========================================================
   LEFT PANEL – ICON STYLE
--------------------------------------------------------- */

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 36px;
}

.detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(198,167,94,0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c6a75e;
}

.detail-icon svg {
    width: 20px;
    height: 20px;
}

.detail-content span {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9f7624;
}

.detail-content p {
    margin-top: 6px;
    font-size: 16px;
    color: #1e2a38;
}

.detail-content a {
    color: #1e2a38;
    text-decoration: none;
}

.detail-content a:hover {
    color: #c6a75e;
}

/* =========================================================
   CONTACT MAP – CONTAINER VERSION
--------------------------------------------------------- */

.contact-map {
    margin-top: 14px;
    padding-bottom: 120px;
} 

.map-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.map-card iframe {
    width: 100%;
    display: block;
}

.map-heading {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9f7624;
    margin-bottom: 25px;
}

/* ===== Booking Form Inputs ===== */

.booking-form .form-group {
    margin-bottom: 22px;
}

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e5dfd3;
    border-radius: 6px;
    background: #ffffff;
    font-size: 15px;
    transition: all 0.2s ease;
}

.booking-form input:focus,
.booking-form select:focus {
    outline: none;
    border-color: #1e2a38;
}

.booking-form button {
    width: 100%;
    padding: 16px;
    border-radius: 6px;
    border: none;
    background: #1e2a38;
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.booking-form button:hover {
    background: #c6a75e;
    color: #1e2a38;
}

/* =========================
   Contact — Mobile
========================= */

@media (max-width:768px){

.contact-bold{
padding:80px 0;
}

.contact-split{
grid-template-columns:1fr;
gap:50px;
}

.contact-left{
padding-right:0;
}

.contact-left h2{
font-size:30px;
line-height:1.3;
}

.contact-left .lead-text{
font-size:16px;
}

.contact-right{
padding:36px 28px;
}

.contact-strap{
padding:40px 0;
}

.contact-strap h1{
font-size:28px;
}

.detail-item{
gap:14px;
}

.contact-map{
padding-bottom:80px;
}

}

/* ============================= */
/* Floating Contact Buttons */
/* ============================= */

.floating-contact {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 9999;
}

/* Main Toggle Button */

.floating-main-btn {
    width: 58px;
    height: 58px;
    border-radius: 14px; /* Keep your rounded square style */
    border: none;
    background: #0b1c2d; /* Navy */
    color: #c8a96a; /* Gold */
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.20);
    transition: transform 0.25s ease;
}

.floating-main-btn:hover {
    transform: translateY(-3px);
}

/* Hidden Options Container */

.floating-options {
    display: none;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 14px;
}

.floating-options.active {
    display: flex;
}

/* Base Button Style */

.floating-btn {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.20);
    transition: transform 0.25s ease;
}

.floating-btn:hover {
    transform: translateY(-3px);
}

/* WhatsApp Button */

.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn i {
    font-size: 34px;
}

/* Call Button */

.call-btn {
    background: #c8a96a;
}

/* ============================= */
/* Floating WhatsApp Button */
/* ============================= */

.floating-contact {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
}

/* Base Button Style */

.floating-btn {
    width: 58px;
    height: 58px;
    border-radius: 14px; /* Rounded square */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.20);
    transition: transform 0.25s ease;
}

/* Hover */

.floating-btn:hover {
    transform: translateY(-3px);
}

/* WhatsApp Styling */

.whatsapp-btn {
    background: #25D366;
    color: #ffffff;
    font-size: 30px;
}

/* =========================
   Blog Layout
========================= */

.blog-section{
padding:120px 0;
background:#ffffff;
}

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

.blog-card{
background:#ffffff;
border-radius:22px;
overflow:hidden;
border:1px solid rgba(15,23,42,0.06);

box-shadow:
0 20px 50px rgba(15,23,42,0.08),
0 8px 24px rgba(15,23,42,0.06);

transition:transform .3s ease, box-shadow .3s ease;
}

.blog-image img{
width:100%;
height:220px;
object-fit:cover;
display:block;
}

.blog-content{
padding:28px;
}

.blog-date{
font-size:13px;
color:#9ca3af;
display:block;
margin-bottom:10px;
}

.blog-title{
font-size:22px;
line-height:1.35;
margin-bottom:14px;
}

.blog-title a{
text-decoration:none;
color:var(--color-primary);
}

.blog-excerpt{
font-size:15px;
line-height:1.7;
color:#6b7280;
margin-bottom:18px;
}

.blog-read{
font-size:14px;
font-weight:600;
color:var(--color-primary);
text-decoration:none;
position:relative;
display:inline-block;
padding-bottom:4px;
}

.blog-read::after{
content:"";
position:absolute;
left:0;
bottom:0;
width:60%;
height:2px;
background:var(--color-accent);
transition:width 0.3s ease;
}

.blog-read:hover::after{
width:100%;
}

/* =========================
   Blog — Responsive
========================= */

@media (max-width:1024px){

.blog-grid{
grid-template-columns:repeat(2,1fr);
gap:32px;
}

}

@media (max-width:768px){

.blog-grid{
grid-template-columns:1fr;
gap:28px;
}

.blog-content{
padding:24px;
}

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

.blog-image img{
height:200px;
}

}

/* =========================
   Single Blog
========================= */

.single-blog{
padding:100px 0;
background:#ffffff;
}

.single-article{
max-width:760px;
margin:0 auto;
}

.single-image{
max-width:700px;
margin:0 auto 30px;
}

.single-image img{
width:100%;
height:auto;
display:block;
border-radius:16px;
}

.single-content{
font-size:17px;
line-height:1.8;
color:#374151;
}

.single-content p{
margin-bottom:18px;
}

.single-content h2{
margin-top:40px;
margin-bottom:16px;
}

/* =========================
   Blog Meta
========================= */

.blog-meta{
margin-top:10px;
font-size:14px;
color:#9ca3af;

display:flex;
align-items:center;
gap:10px;
flex-wrap:nowrap;
}

.blog-date,
.blog-category{
white-space:nowrap;
}

.meta-separator{
opacity:0.6;
}

/* =========================
   Related Posts
========================= */

.related-posts{
padding:80px 0 120px;
background:#f8f9fb;
}

.related-posts h3{
text-align:center;
margin-bottom:40px;
}

.related-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
max-width:1000px;
margin:0 auto;
}

.related-card{
text-decoration:none;
color:var(--color-primary);
}

.related-card img{
width:100%;
border-radius:12px;
margin-bottom:12px;
}

.related-card h4{
font-size:16px;
line-height:1.4;
}

/* Responsive */

@media (max-width:768px){

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

.single-image img{
max-width:100%;
}

}



/* =========================
   About — Intro
========================= */

.about-intro{
padding:120px 0;
background:#ffffff;
}

/* spacing between intro paragraphs */
.about-intro .contact-left p{
margin-bottom:24px;
}

.about-intro .contact-left p:last-child{
margin-bottom:0;
}

/* Right column cleanup */
.about-right{
padding:0;
display:flex;
align-items:stretch;
}

/* Image card styling (matches blog depth) */
.about-image-card{
border-radius:22px;
overflow:hidden;
border:1px solid rgba(15,23,42,0.06);
box-shadow:
0 20px 50px rgba(15,23,42,0.08),
0 8px 24px rgba(15,23,42,0.06);
height:100%;
display:flex;
}

.about-image-card img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

/* =========================
   About — Commitment
========================= */

.about-commitment{
padding:120px 0;
background:#ffffff;
}

/* =========================
   About — Commitment Cards
========================= */

.about-commitment .approach-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:32px;
}

.about-commitment .approach-card{
background:#ffffff;
padding:40px;
border-radius:20px;
border:1px solid rgba(15,23,42,0.06);

box-shadow:
0 15px 40px rgba(15,23,42,0.06),
0 6px 18px rgba(15,23,42,0.04);

transition:transform .3s ease, box-shadow .3s ease;
}

.about-commitment .approach-card:hover{
transform:translateY(-6px);
box-shadow:
0 20px 50px rgba(15,23,42,0.08),
0 8px 24px rgba(15,23,42,0.06);
}

/* About — Space Below Section Header */

.about-commitment .section-header{
margin-bottom:80px;
}

@media (max-width:1024px){

.about-commitment .approach-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media (max-width:768px){

.about-commitment .approach-grid{
grid-template-columns:1fr;
}

}

/* =========================
   About — Patient Journey (Structured Premium)
========================= */

.about-journey{
padding:160px 0;
background:#f8f6f2;
}

.about-journey .section-header{
margin-bottom:120px;
}

/* Grid Layout */

.journey-steps{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:80px;
align-items:start;
}

/* Individual Step */

.journey-step{
position:relative;
padding-top:60px;
}

/* Large Background Number */

.step-number{
position:absolute;
top:0;
left:0;
font-size:72px;
font-weight:700;
color:rgba(15,23,42,0.05);
line-height:1;
}

/* Heading */

.journey-step h3{
position:relative;
z-index:2;
margin-bottom:20px;
font-size:22px;
}

/* Paragraph */

.journey-step p{
position:relative;
z-index:2;
font-size:17px;
line-height:1.9;
color:#475569;
margin:0;
}

/* Responsive */

@media (max-width:1024px){

.journey-steps{
grid-template-columns:repeat(2,1fr);
gap:100px;
}

}

@media (max-width:768px){

.journey-steps{
grid-template-columns:1fr;
gap:80px;
}

}

/* =========================
   About — Technology Section
========================= */

.about-technology{
padding:160px 0;
background:#ffffff;
}

.about-technology .section-header{
max-width:820px;
margin:0 auto 100px auto;
text-align:center;
}

.tech-intro{
font-size:17px;
line-height:1.9;
color:#475569;
margin-top:20px;
}

/* Grid Layout */

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

/* Individual Item */

.tech-item h3{
font-size:22px;
margin-bottom:28px;
}

/* List Styling */

.tech-list{
list-style:none;
padding:0;
margin:0;
}

.tech-list li{
position:relative;
padding-left:28px;
margin-bottom:16px;
font-size:17px;
line-height:1.8;
color:#475569;
}

/* Premium Gold Tick */

.tech-list li::before{
content:"✓";
position:absolute;
left:0;
top:0;
color:var(--color-accent);
font-weight:600;
}

/* Section Headings */
.section-title{
    font-size: 40px;
    line-height: 1.25;
}
@media (max-width: 768px){

    .about-commitment .section-title{
        font-size: 30px;
    }

    .about-commitment{
        padding: 70px 0;
    }

}

@media (max-width: 768px){

    h2.section-title{
        font-size: 30px !important;
        line-height: 1.25;
    }

}
/* Responsive */

@media (max-width:1024px){

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

}

/* FINAL MOBILE HEADING FIX */
@media (max-width: 768px){
    h2.section-title{
        font-size: 30px !important;
        line-height: 1.25 !important;
    }
}

/* =========================
   About Page – Mobile Spacing Fix
========================= */

@media (max-width: 768px){

    .about-intro,
    .about-commitment,
    .about-journey,
    .about-technology{
        padding: 70px 0 !important;
    }

}

/* =========================
   Doctors Page
========================= */

.doctors-section {
    padding: 120px 0;
}

/* Section Header Center */
.section-header.center {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 80px auto;
}

/* Grid Layout */
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

/* Doctor Card */
.doctor-card {
    background: #ffffff;
    border: 1px solid var(--color-border);
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.doctor-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

/* Doctor Image */
.doctor-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #f8f8f8;
}

/* Content */
.doctor-content {
    margin-top: 30px;
}

.doctor-content h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.doctor-qualification {
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.doctor-specialization,
.doctor-experience {
    font-size: 16px;
    margin-bottom: 6px;
}

.doctor-bio {
    margin-top: 16px;
    margin-bottom: 24px;
}

/* Button */
.doctor-btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--color-primary);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.doctor-btn:hover {
    background: var(--color-accent);
    color: var(--color-primary);
}

/* =========================
   Responsive
========================= */

@media (max-width: 1024px) {
    .doctors-grid {
        gap: 40px;
    }

    .doctor-image img {
        height: 360px;
    }
}

@media (max-width: 768px) {

    .doctors-section {
        padding: 80px 0;
    }

    .doctors-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .doctor-card {
        padding: 30px;
    }

    .doctor-image img {
        height: 320px;
    }
}

.doctor-content p {
    margin-bottom: 10px;
}

.doctor-bio {
    margin-top: 18px;
    margin-bottom: 28px;
}

.doctor-btn {
    margin-top: 10px;
}