/* ==============================================
   Dr. Dheeraj Shamsukha — Elegant Medical Theme
   ============================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary:       #1557a0;
    --primary-mid:   #1a6fc4;
    --primary-dark:  #0e3f72;
    --primary-light: #eaf2fb;
    --primary-glow:  rgba(21,87,160,0.12);
    --gold:          #b8963e;
    --gold-light:    #f5edda;
    --dark:          #0f1b2d;
    --dark-mid:      #1e2f47;
    --text:          #4a5568;
    --text-light:    #718096;
    --white:         #ffffff;
    --off-white:     #f8fafc;
    --border:        #e2eaf5;
    --shadow-sm:     0 2px 12px rgba(15,27,45,0.06);
    --shadow-md:     0 8px 30px rgba(15,27,45,0.10);
    --shadow-lg:     0 20px 60px rgba(15,27,45,0.14);
    --radius-sm:     6px;
    --radius-md:     12px;
    --radius-lg:     20px;
    --transition:    all 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: var(--dark);
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.01em;
}

a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; display: block; }

/* ─── SPINNER ───────────────────────────────── */
#spinner {
    position: fixed; inset:0;
    background: var(--white);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s;
}
#spinner.hide { opacity:0; pointer-events:none; }
.spinner-ring {
    width: 48px; height: 48px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── TOPBAR ─────────────────────────────────── */
.topbar {
    background: var(--dark);
    padding: 0;
}
.topbar-left {
    padding: 9px 0;
    font-size: 12.5px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.02em;
}
.topbar-left i { color: var(--gold); margin-right: 6px; }
.topbar-right {
    background: var(--primary);
    padding: 9px 32px;
    display: flex;
    align-items: center;
    gap: 22px;
    clip-path: polygon(18px 0%, 100% 0%, 100% 100%, 0% 100%);
}
.topbar-right a, .topbar-right span {
    color: rgba(255,255,255,0.9);
    font-size: 12.5px;
    display: flex;
    align-items: center;
    gap: 7px;
    letter-spacing: 0.01em;
}
.topbar-right a:hover { color: #fff; }
.topbar-right i { font-size: 11px; opacity: 0.8; }
.topbar-divider { width:1px; height:16px; background:rgba(255,255,255,0.25); }

/* ─── NAVBAR ─────────────────────────────────── */
.main-navbar {
    background: var(--white);
    box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
    padding: 0 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s;
}
.main-navbar.scrolled { box-shadow: var(--shadow-md); }
.main-navbar .navbar-brand img { height: 56px; }
.main-navbar .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--dark-mid) !important;
    padding: 26px 16px !important;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 12.5px;
    position: relative;
}
.main-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 16px; right: 16px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}
.main-navbar .nav-link:hover { color: var(--primary) !important; }
.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after { transform: scaleX(1); }
.main-navbar .nav-link.active { color: var(--primary) !important; }

.btn-appointment {
    background: var(--primary) !important;
    color: var(--white) !important;
    border-radius: var(--radius-sm) !important;
    padding: 10px 22px !important;
    font-size: 12.5px !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    border: none !important;
    transition: var(--transition) !important;
}
.btn-appointment:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(21,87,160,0.3) !important;
}
.btn-appointment::after { display:none !important; }

/* ─── HERO ───────────────────────────────────── */
.hero-section { position: relative; background: var(--dark); overflow: hidden; }

.hero-slide {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
}
.hero-slide::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(100deg,
        rgba(10,25,50,0.95) 0%,
        rgba(15,55,110,0.85) 45%,
        rgba(21,87,160,0.55) 70%,
        rgba(21,87,160,0.10) 100%);
    z-index: 1;
}
.hero-slide img.hero-bg {
    position: absolute; top:0; right:0;
    width: 60%; height: 100%;
    object-fit: cover;
    object-position: top center;
}
/* decorative accent */
.hero-slide::after {
    content: '';
    position: absolute;
    left: -80px; top: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(21,87,160,0.18) 0%, transparent 70%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 90px 0;
    max-width: 580px;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(184,150,62,0.15);
    border: 1px solid rgba(184,150,62,0.35);
    color: var(--gold);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.hero-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}
.hero-content h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: var(--white);
    font-size: 52px;
    line-height: 1.12;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.hero-content h1 em {
    font-style: italic;
    color: #7eb8f7;
}
.hero-content p {
    color: rgba(255,255,255,0.75);
    font-size: 15.5px;
    margin-bottom: 36px;
    line-height: 1.8;
    font-weight: 300;
}
.hero-divider {
    width: 50px; height: 2px;
    background: var(--gold);
    margin-bottom: 24px;
    border-radius: 2px;
}
.btn-hero-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--white);
    color: var(--primary) !important;
    padding: 14px 30px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-right: 14px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.btn-hero-primary:hover {
    background: var(--gold);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}
.btn-hero-outline {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1.5px solid rgba(255,255,255,0.5);
    color: rgba(255,255,255,0.9) !important;
    padding: 13px 30px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}
.btn-hero-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.12);
    color: var(--white) !important;
    transform: translateY(-2px);
}
.carousel-control-prev, .carousel-control-next {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    top:50%; transform:translateY(-50%);
    margin: 0 24px;
    opacity: 1;
    backdrop-filter: blur(6px);
    transition: var(--transition);
}
.carousel-control-prev:hover, .carousel-control-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}
.carousel-indicators { bottom: 24px; }
.carousel-indicators button {
    width:8px; height:8px; border-radius:50%; border:none;
    background:rgba(255,255,255,0.4); margin:0 4px;
    transition: var(--transition);
}
.carousel-indicators button.active {
    background:var(--white); width:28px; border-radius:4px;
}

/* ─── STATS BAR ──────────────────────────────── */
.stats-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 10;
}
.stat-item {
    padding: 32px 24px;
    text-align: center;
    border-right: 1px solid var(--border);
    position: relative;
    transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--primary-light); }
.stat-icon-wrap {
    width: 52px; height: 52px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    font-size: 20px;
    color: var(--primary);
    transition: var(--transition);
}
.stat-item:hover .stat-icon-wrap {
    background: var(--primary);
    color: var(--white);
    transform: rotate(-5deg) scale(1.05);
}
.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 4px;
}
.stat-label {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ─── SECTION TYPOGRAPHY ─────────────────────── */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}
.section-eyebrow::before {
    content: '';
    width: 24px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
}
.section-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.section-heading span { color: var(--primary); }
.section-rule {
    width: 44px; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    border-radius: 3px;
    margin-bottom: 20px;
}
.section-rule.center { margin-left:auto; margin-right:auto; }
.section-subtitle {
    font-size: 15.5px;
    color: var(--text-light);
    line-height: 1.75;
    font-weight: 300;
}

/* ─── ABOUT SECTION ─────────────────────────── */
.about-section { padding: 100px 0; background: var(--off-white); }
.about-img-frame {
    position: relative;
    padding-bottom: 30px;
    padding-right: 30px;
}
.about-img-frame::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border: 2px solid var(--primary);
    border-radius: var(--radius-md);
    z-index: 0;
    opacity: 0.3;
}
.about-img-frame img {
    position: relative; z-index: 1;
    border-radius: var(--radius-md);
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: top;
    box-shadow: var(--shadow-lg);
}
.about-badge {
    position: absolute;
    z-index: 2;
    bottom: 50px; right: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 22px 28px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 12px 40px rgba(21,87,160,0.35);
    border: 1px solid rgba(255,255,255,0.15);
}
.about-badge .years {
    font-family: 'Cormorant Garamond', serif;
    font-size: 46px;
    font-weight: 700;
    line-height: 1;
    color: var(--white);
}
.about-badge .years-sup {
    font-size: 20px;
    vertical-align: super;
    font-weight: 400;
}
.about-badge .years-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-top: 4px;
}
.about-text-col { padding-left: 40px; }
.about-body {
    font-size: 15.5px;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 16px;
}
.about-checklist {
    list-style: none;
    padding: 0; margin: 0 0 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}
.about-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
}
.about-checklist li::before {
    content: '';
    width: 18px; min-width:18px; height:18px;
    background: var(--primary-light);
    border-radius: 50%;
    border: 2px solid var(--primary);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%231557a0' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
}

/* ─── HOURS BANNER ───────────────────────────── */
.hours-banner { padding: 0; }
.hours-card {
    padding: 40px 36px;
    color: var(--white);
    height: 100%;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.hours-card.bg-primary-card {
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
}
.hours-card.bg-dark-card { background: var(--dark); }
.hours-card.bg-teal-card {
    background: linear-gradient(145deg, #0f766e, #065f56);
}
.hours-card-icon {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.12);
    border-radius: 10px;
    display: flex; align-items:center; justify-content:center;
    font-size: 18px;
    margin-bottom: 18px;
    color: rgba(255,255,255,0.9);
}
.hours-card h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}
.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 13.5px;
}
.hours-row:last-of-type { border-bottom: none; }
.hours-row span:first-child { color: rgba(255,255,255,0.7); }
.hours-row span:last-child { color: var(--white); font-weight: 500; }

/* ─── SERVICES SECTION ───────────────────────── */
.services-section { padding: 100px 0; background: var(--white); }
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--shadow-sm);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card-img {
    height: 210px;
    overflow: hidden;
    position: relative;
}
.service-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-img::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(15,27,45,0.15));
}
.service-card-body { padding: 24px 26px; }
.service-card-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--border);
    line-height: 1;
    margin-bottom: 10px;
    transition: color 0.3s;
}
.service-card:hover .service-card-num { color: var(--primary-light); }
.service-card h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}
.service-card p {
    font-size: 13.5px;
    color: var(--text-light);
    line-height: 1.75;
    margin: 0;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    font-weight: 600;
    font-size: 12.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 18px;
    transition: gap 0.25s;
}
.service-link:hover { gap: 12px; color: var(--primary-dark); }

/* ─── OTHER (HORIZONTAL) SERVICES ───────────── */
.other-services-section { padding: 100px 0; background: var(--off-white); }
.h-service-card {
    display: flex;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.h-service-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
    transform: translateY(-4px);
}
.h-service-card img {
    width: 140px; min-width:140px; height:140px;
    object-fit: cover;
}
.h-service-card-body { padding: 20px 22px; }
.h-service-card-body h5 { font-size:17px; margin-bottom:6px; }
.h-service-card-body p { font-size:13px; color:var(--text-light); margin:0; line-height:1.7; }

/* ─── GALLERY SECTION ────────────────────────── */
.gallery-section { padding:100px 0; background:var(--white); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 250px;
    cursor: pointer;
}
.gallery-item img {
    width:100%; height:100%;
    object-fit:cover;
    transition: transform 0.5s ease;
    display: block;
}
.gallery-item:hover img { transform:scale(1.08); }
.gallery-overlay {
    position: absolute; inset:0;
    background: linear-gradient(160deg, rgba(21,87,160,0.7), rgba(10,25,50,0.8));
    display: flex; align-items:center; justify-content:center;
    opacity:0;
    transition: opacity 0.35s;
}
.gallery-item:hover .gallery-overlay { opacity:1; }
.gallery-overlay i { color:var(--white); font-size:26px; }

/* ─── TESTIMONIALS ───────────────────────────── */
.testimonials-section {
    padding: 100px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.testimonials-section::before {
    content: '';
    position: absolute; top:-120px; left:-120px;
    width: 500px; height:500px; border-radius:50%;
    background: radial-gradient(circle, rgba(21,87,160,0.18) 0%, transparent 70%);
    pointer-events:none;
}
.testimonials-section::after {
    content: '';
    position: absolute; bottom:-80px; right:-80px;
    width: 350px; height:350px; border-radius:50%;
    background: radial-gradient(circle, rgba(184,150,62,0.1) 0%, transparent 70%);
    pointer-events:none;
}
.testimonial-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 44px 48px;
    position: relative;
    text-align: center;
    backdrop-filter: blur(6px);
    margin: 0 16px;
}
.testimonial-quote-icon {
    font-family: Georgia, serif;
    font-size: 80px;
    line-height: 0.6;
    color: var(--gold);
    opacity: 0.6;
    display: block;
    margin-bottom: 24px;
    font-weight: 700;
    user-select: none;
}
.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 20px;
}
.testimonial-stars i { color: var(--gold); font-size: 14px; }
.testimonial-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px;
    font-style: italic;
    color: rgba(255,255,255,0.88);
    line-height: 1.7;
    margin-bottom: 28px;
    font-weight: 400;
}
.testimonial-divider {
    width: 40px; height: 1px;
    background: var(--gold);
    opacity: 0.5;
    margin: 0 auto 20px;
}
.testimonial-author h5 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}
.testimonial-author span {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Owl Carousel Dots */
.owl-dots { margin-top: 32px !important; }
.owl-dots .owl-dot span {
    background: rgba(255,255,255,0.2) !important;
    width:8px; height:8px;
    transition: var(--transition);
}
.owl-dots .owl-dot.active span {
    background: var(--gold) !important;
    width: 28px;
    border-radius: 4px;
}

/* ─── CTA SECTION ─────────────────────────── */
.cta-section { padding: 80px 0; }
.cta-inner {
    background: linear-gradient(120deg, var(--primary-dark) 0%, var(--primary) 100%);
    border-radius: var(--radius-lg);
    padding: 60px 70px;
    position: relative;
    overflow: hidden;
}
.cta-inner::before {
    content: '';
    position: absolute; top:-60px; right:-60px;
    width: 240px; height:240px; border-radius:50%;
    background: rgba(255,255,255,0.05);
}
.cta-inner::after {
    content: '';
    position: absolute; bottom:-40px; right:100px;
    width: 140px; height:140px; border-radius:50%;
    background: rgba(184,150,62,0.1);
}
.cta-inner h2 { color:var(--white); font-size:36px; margin-bottom:10px; }
.cta-inner p { color:rgba(255,255,255,0.8); font-size:16px; margin:0; }

/* ─── PAGE HEADER ─────────────────────────── */
.page-header {
    background: linear-gradient(120deg, var(--dark) 0%, var(--dark-mid) 60%, var(--primary-dark) 100%);
    padding: 70px 0 80px;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content:'';
    position:absolute; top:-100px; right:-100px;
    width:400px; height:400px; border-radius:50%;
    background:radial-gradient(circle, rgba(21,87,160,0.2) 0%, transparent 70%);
}
.page-header::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 50px;
    background: var(--white);
    clip-path: ellipse(55% 100% at 50% 100%);
}
.page-header h1 {
    color: var(--white);
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 10px;
}
.breadcrumb { background:transparent; padding:0; }
.breadcrumb-item a { color:rgba(255,255,255,0.65); font-size:13px; }
.breadcrumb-item a:hover { color:var(--white); }
.breadcrumb-item.active { color:rgba(255,255,255,0.9); font-size:13px; }
.breadcrumb-item+.breadcrumb-item::before { color:rgba(255,255,255,0.4); }

/* ─── CONTACT ─────────────────────────────── */
.contact-section { padding:100px 0; background:var(--off-white); }
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    height:100%;
}
.contact-info-item {
    display:flex; align-items:flex-start; gap:16px;
    padding:16px 0;
    border-bottom:1px solid var(--border);
}
.contact-info-item:last-of-type { border-bottom:none; }
.contact-info-icon {
    width:44px; min-width:44px; height:44px;
    background:var(--primary-light);
    border-radius:10px;
    display:flex; align-items:center; justify-content:center;
    color:var(--primary);
    font-size:17px;
    flex-shrink:0;
}
.contact-info-text h6 { font-size:14px; font-weight:600; color:var(--dark); margin-bottom:3px; }
.contact-info-text span { font-size:13.5px; color:var(--text-light); line-height:1.6; }
.contact-form {
    background:var(--white);
    border-radius:var(--radius-md);
    padding:40px;
    box-shadow:var(--shadow-sm);
    border:1px solid var(--border);
}
.form-label { font-size:12px; font-weight:600; letter-spacing:0.05em; text-transform:uppercase; color:var(--dark); }
.form-control {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 14px;
    font-family:'Inter',sans-serif;
    transition: border-color 0.25s, box-shadow 0.25s;
    background:var(--off-white);
    color:var(--dark);
}
.form-control:focus {
    border-color:var(--primary);
    box-shadow: 0 0 0 3px rgba(21,87,160,0.08);
    background:var(--white);
}
.form-control::placeholder { color:var(--text-light); }

/* ─── APPOINTMENT ─────────────────────────── */
.appointment-section { padding:100px 0; background:var(--off-white); }
.appt-info {
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-md);
    padding: 44px;
    color:var(--white);
    height:100%;
    box-shadow: 0 20px 50px rgba(21,87,160,0.25);
    position:relative; overflow:hidden;
}
.appt-info::before {
    content:'';
    position:absolute; top:-60px; right:-60px;
    width:200px; height:200px; border-radius:50%;
    background:rgba(255,255,255,0.05);
}
.appt-info h2 { color:var(--white); font-size:28px; margin-bottom:10px; }
.appt-info p { color:rgba(255,255,255,0.8); font-size:14.5px; }
.appt-detail {
    display:flex; align-items:center; gap:14px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.1);
    border-radius:10px;
    padding:14px 18px;
    margin-bottom:12px;
    transition:var(--transition);
}
.appt-detail:hover { background:rgba(255,255,255,0.14); }
.appt-detail i { font-size:16px; color:var(--gold); }
.appt-detail-text { line-height:1.3; }
.appt-detail-text small { display:block; font-size:10px; letter-spacing:0.08em; text-transform:uppercase; color:rgba(255,255,255,0.55); margin-bottom:2px; }
.appt-detail-text span { color:var(--white); font-size:14px; font-weight:500; }
.appt-form {
    background:var(--white);
    border-radius:var(--radius-md);
    padding:44px;
    box-shadow:var(--shadow-md);
    border:1px solid var(--border);
}

/* ─── SPECIALIZATIONS ─────────────────────── */
.spec-section { padding:100px 0; }
.spec-card {
    background:var(--white);
    border:1px solid var(--border);
    border-left:3px solid var(--primary);
    border-radius:0 var(--radius-sm) var(--radius-sm) 0;
    padding:20px 22px;
    margin-bottom:12px;
    transition:var(--transition);
    box-shadow:var(--shadow-sm);
}
.spec-card:hover { transform:translateX(6px); box-shadow:var(--shadow-md); border-left-color:var(--gold); }
.spec-card h6 { font-size:14px; font-weight:600; color:var(--primary); margin-bottom:3px; }
.spec-card p { font-size:12.5px; color:var(--text-light); margin:0; }
.edu-card {
    border-radius:var(--radius-md);
    padding:26px;
    text-align:center;
    margin-bottom:14px;
    position:relative; overflow:hidden;
}
.edu-card::before { content:''; position:absolute; top:-20px; right:-20px; width:80px; height:80px; border-radius:50%; background:rgba(255,255,255,0.08); }
.edu-card h5 { color:var(--white); font-size:19px; margin-bottom:4px; }
.edu-card p { color:rgba(255,255,255,0.75); font-size:13px; margin:0; }
.achieve-item { display:flex; gap:14px; margin-bottom:18px; }
.achieve-icon { width:36px; min-width:36px; height:36px; background:var(--primary-light); border-radius:8px; display:flex; align-items:center; justify-content:center; color:var(--primary); font-size:15px; }
.achieve-item p { font-size:14px; color:var(--text); margin:0; line-height:1.6; }

/* ─── GALLERY FILTER ─────────────────────── */
.filter-btn {
    padding:8px 22px; border-radius:40px;
    border:1.5px solid var(--border);
    color:var(--text); background:var(--white);
    font-weight:500; font-size:13px;
    cursor:pointer; transition:var(--transition); margin:4px;
}
.filter-btn:hover, .filter-btn.active {
    background:var(--primary); color:var(--white);
    border-color:var(--primary);
    box-shadow: 0 4px 16px rgba(21,87,160,0.25);
}

/* ─── FOOTER ─────────────────────────────── */
.footer { background:var(--dark); padding:80px 0 0; }
.footer-logo img { height:54px; margin-bottom:18px; }
.footer-about {
    color:rgba(255,255,255,0.5);
    font-size:13.5px;
    line-height:1.8;
    margin-bottom:24px;
}
.footer-social { display:flex; gap:10px; }
.social-btn {
    width:36px; height:36px;
    background:rgba(255,255,255,0.07);
    border:1px solid rgba(255,255,255,0.1);
    border-radius:8px;
    display:flex; align-items:center; justify-content:center;
    color:rgba(255,255,255,0.7); font-size:13px;
    transition:var(--transition);
}
.social-btn:hover { background:var(--primary); border-color:var(--primary); color:var(--white); transform:translateY(-2px); }
.footer h5 {
    color:var(--white);
    font-family:'Inter',sans-serif;
    font-size:13px;
    font-weight:700;
    letter-spacing:0.12em;
    text-transform:uppercase;
    margin-bottom:22px;
    padding-bottom:12px;
    border-bottom:1px solid rgba(255,255,255,0.08);
}
.footer-links { list-style:none; padding:0; margin:0; }
.footer-links li { margin-bottom:8px; }
.footer-links a {
    color:rgba(255,255,255,0.5);
    font-size:13.5px;
    display:flex; align-items:center; gap:8px;
    transition:var(--transition);
}
.footer-links a i { color:var(--gold); font-size:10px; opacity:0.7; }
.footer-links a:hover { color:var(--white); padding-left:4px; }
.footer-contact-item {
    display:flex; gap:12px; align-items:flex-start;
    margin-bottom:14px;
}
.footer-contact-item i { color:var(--gold); font-size:14px; margin-top:3px; flex-shrink:0; }
.footer-contact-item span { color:rgba(255,255,255,0.55); font-size:13px; line-height:1.6; }
.footer-bottom {
    margin-top:60px;
    border-top:1px solid rgba(255,255,255,0.06);
    padding:20px 0;
}
.footer-bottom p { color:rgba(255,255,255,0.3); font-size:12.5px; margin:0; }
.footer-bottom a { color:rgba(255,255,255,0.5); }
.footer-bottom a:hover { color:var(--white); }

/* ─── BACK TO TOP ─────────────────────────── */
.back-to-top {
    position:fixed; bottom:28px; right:28px;
    width:42px; height:42px;
    background:var(--primary);
    color:var(--white);
    border-radius:var(--radius-sm);
    display:flex; align-items:center; justify-content:center;
    font-size:16px;
    z-index:999;
    opacity:0; visibility:hidden;
    transition:var(--transition);
    box-shadow:0 6px 20px rgba(21,87,160,0.35);
}
.back-to-top.show { opacity:1; visibility:visible; }
.back-to-top:hover { background:var(--primary-dark); color:var(--white); transform:translateY(-3px); }

/* ─── BUTTONS ─────────────────────────────── */
.btn-primary-custom {
    display:inline-flex; align-items:center; gap:8px;
    background:var(--primary); color:var(--white);
    padding:13px 28px; border-radius:var(--radius-sm);
    font-weight:600; font-size:13px;
    letter-spacing:0.05em; text-transform:uppercase;
    border:none; transition:var(--transition);
}
.btn-primary-custom:hover {
    background:var(--primary-dark); color:var(--white);
    transform:translateY(-2px);
    box-shadow:0 6px 24px rgba(21,87,160,0.3);
}
.btn-outline-custom {
    display:inline-flex; align-items:center; gap:8px;
    border:1.5px solid var(--primary); color:var(--primary);
    padding:12px 28px; border-radius:var(--radius-sm);
    font-weight:600; font-size:13px;
    letter-spacing:0.05em; text-transform:uppercase;
    transition:var(--transition);
}
.btn-outline-custom:hover {
    background:var(--primary); color:var(--white);
    transform:translateY(-2px);
}
.btn-white-solid {
    display:inline-flex; align-items:center; gap:8px;
    background:var(--white); color:var(--primary);
    padding:13px 28px; border-radius:var(--radius-sm);
    font-weight:700; font-size:13px;
    letter-spacing:0.05em; text-transform:uppercase;
    transition:var(--transition);
    box-shadow:0 4px 16px rgba(0,0,0,0.12);
}
.btn-white-solid:hover {
    background:var(--gold); color:var(--white);
    transform:translateY(-2px);
    box-shadow:0 8px 28px rgba(0,0,0,0.2);
}
.btn-submit {
    background:var(--primary); color:var(--white);
    border:none; width:100%;
    padding:14px; border-radius:var(--radius-sm);
    font-weight:600; font-size:14px;
    letter-spacing:0.05em; text-transform:uppercase;
    cursor:pointer; transition:var(--transition);
    font-family:'Inter',sans-serif;
}
.btn-submit:hover { background:var(--primary-dark); transform:translateY(-1px); }

/* ─── LIGHTBOX ─────────────────────────────── */
.lightbox-overlay {
    display:none; position:fixed; inset:0;
    background:rgba(0,0,0,0.93);
    z-index:9999; align-items:center; justify-content:center;
    backdrop-filter:blur(4px);
}
.lightbox-overlay.active { display:flex; }
.lightbox-img {
    max-width:88vw; max-height:82vh;
    border-radius:var(--radius-sm);
    box-shadow:0 30px 80px rgba(0,0,0,0.5);
}
.lightbox-close {
    position:absolute; top:18px; right:22px;
    color:rgba(255,255,255,0.8); font-size:30px;
    cursor:pointer; background:none; border:none; line-height:1;
    transition:color 0.2s;
}
.lightbox-close:hover { color:var(--white); }
.lightbox-prev, .lightbox-next {
    position:absolute; top:50%; transform:translateY(-50%);
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.15);
    color:var(--white); width:48px; height:48px;
    border-radius:50%; font-size:18px;
    cursor:pointer; transition:var(--transition);
    display:flex; align-items:center; justify-content:center;
}
.lightbox-prev { left:20px; }
.lightbox-next { right:20px; }
.lightbox-prev:hover, .lightbox-next:hover { background:var(--primary); border-color:var(--primary); }

/* ─── MAP ──────────────────────────────────── */
.map-wrapper { border-radius:var(--radius-md); overflow:hidden; box-shadow:var(--shadow-md); }

/* ─── SUCCESS MESSAGE ─────────────────────── */
.form-success {
    padding:18px 22px;
    background:#ecfdf5; border:1px solid #6ee7b7;
    border-radius:var(--radius-sm); color:#065f46;
    font-size:14px; margin-top:16px; display:none;
}
.form-success i { color:#10b981; margin-right:8px; }

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE-FIRST OVERRIDES
   ═══════════════════════════════════════════════ */

/* Large desktop */
@media (max-width:1199px) {
    .hero-content h1   { font-size: 42px; }
    .section-heading   { font-size: 36px; }
    .about-text-col    { padding-left: 24px; }
    .cta-inner         { padding: 50px 50px; }
}

/* Tablet landscape / small desktop */
@media (max-width:991px) {
    /* Section spacing */
    section, .about-section, .services-section,
    .other-services-section, .gallery-section,
    .testimonials-section, .contact-section,
    .appointment-section, .spec-section,
    .hours-banner { padding-top: 70px; padding-bottom: 70px; }

    /* Topbar */
    .topbar-right { clip-path:none; padding:8px 16px; justify-content:center; flex-wrap:wrap; gap:10px; }

    /* Navbar */
    .main-navbar { padding: 0 16px; }
    .main-navbar .nav-link { padding:12px 14px !important; }
    .main-navbar .nav-link::after { display:none; }
    .navbar-collapse { background:var(--white); border-top:1px solid var(--border); padding:12px 0 16px; margin-top:4px; }

    /* Hero */
    .hero-slide { min-height: 500px; }
    .hero-slide img.hero-bg { width:100%; opacity:0.15; }
    .hero-slide::before { background:linear-gradient(180deg, rgba(10,25,50,0.97) 0%, rgba(15,55,110,0.93) 100%); }
    .hero-content { max-width:100%; padding:70px 0 80px; }
    .hero-content h1 { font-size: 36px; }
    .hero-eyebrow { font-size: 10px; }

    /* Stats */
    .stat-item { border-right:none; border-bottom:1px solid var(--border); }
    .stat-item:last-child { border-bottom:none; }

    /* About */
    .about-img-frame { padding-right:20px; padding-bottom:20px; }
    .about-img-frame img { height: 400px; }
    .about-badge { right: 30px; bottom: 40px; }
    .about-text-col { padding-left: 0; padding-top: 16px; }

    /* Hours banner */
    .hours-card { border-radius: 0 !important; }

    /* Section headings */
    .section-heading { font-size: 32px; }

    /* Gallery */
    .gallery-grid { grid-template-columns: repeat(2,1fr); }

    /* CTA */
    .cta-inner { padding: 40px 32px; }

    /* Testimonial */
    .testimonial-card { padding: 36px 30px; margin: 0 8px; }
}

/* Tablet portrait */
@media (max-width:767px) {
    /* Global spacing reduction */
    section, .about-section, .services-section,
    .other-services-section, .gallery-section,
    .testimonials-section, .contact-section,
    .appointment-section, .spec-section,
    .hours-banner { padding-top: 56px; padding-bottom: 56px; }

    /* Typography */
    .section-heading   { font-size: 28px; letter-spacing: -0.01em; }
    .section-eyebrow   { font-size: 10px; }
    .section-subtitle  { font-size: 14px; }

    /* Hero */
    .hero-slide { min-height: 460px; }
    .hero-content { padding: 60px 0 70px; }
    .hero-content h1 { font-size: 30px; line-height: 1.18; }
    .hero-content p { font-size: 14.5px; margin-bottom: 28px; }
    .hero-divider { margin-bottom: 18px; }
    .btn-hero-primary, .btn-hero-outline { padding: 12px 22px; font-size: 12px; }
    .btn-hero-primary { margin-right: 8px; }

    /* Stats — 2 × 2 grid */
    .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
    .stat-number { font-size: 32px; }

    /* About */
    .about-img-frame { padding-right: 12px; padding-bottom: 12px; }
    .about-img-frame img { height: 300px; }
    .about-img-frame::after { display: none; }
    .about-badge { position: static; margin-top: 16px; display: inline-block; border-radius: var(--radius-md); }
    .about-text-col { padding-left: 0; }
    .about-checklist { grid-template-columns: 1fr; }
    .about-body { font-size: 14.5px; }

    /* Hours banner */
    .hours-card { min-height: auto; padding: 30px 24px; border-radius: 0 !important; }

    /* Service cards */
    .service-card-img { height: 190px; }

    /* Horizontal service cards */
    .h-service-card { flex-direction: column; }
    .h-service-card img { width: 100%; height: 180px; min-width: unset; }

    /* Gallery */
    .gallery-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
    .gallery-item { height: 160px; }

    /* Testimonials */
    .testimonial-card { padding: 30px 20px; margin: 0 4px; }
    .testimonial-text { font-size: 17px; }
    .testimonial-quote-icon { font-size: 60px; margin-bottom: 16px; }

    /* Page header */
    .page-header { padding: 50px 0 60px; }
    .page-header h1 { font-size: 32px; }

    /* CTA */
    .cta-inner { padding: 32px 22px; border-radius: var(--radius-md); }
    .cta-inner h2 { font-size: 26px; }

    /* Contact & Appointment forms */
    .contact-form, .contact-info-card { padding: 28px 20px; }
    .appt-form, .appt-info { padding: 28px 20px; }

    /* Footer */
    .footer { padding-top: 56px; }
    .footer-bottom { margin-top: 40px; }

    /* Buttons */
    .btn-primary-custom, .btn-outline-custom, .btn-white-solid {
        padding: 12px 22px;
        font-size: 12px;
    }
}

/* Mobile small (phones) */
@media (max-width:575px) {
    /* Container padding */
    .container { padding-left: 16px; padding-right: 16px; }

    /* Spacing */
    section, .about-section, .services-section,
    .other-services-section, .gallery-section,
    .testimonials-section, .contact-section,
    .appointment-section, .spec-section,
    .hours-banner { padding-top: 48px; padding-bottom: 48px; }

    /* Typography */
    .section-heading { font-size: 25px; }

    /* Hero */
    .hero-slide { min-height: 420px; }
    .hero-content { padding: 52px 0 60px; }
    .hero-content h1 { font-size: 26px; }
    .hero-content p { font-size: 14px; }
    .hero-eyebrow { font-size: 9.5px; padding: 5px 12px; }
    .btn-hero-primary, .btn-hero-outline {
        display: block;
        width: 100%;
        text-align: center;
        justify-content: center;
        margin-right: 0;
        margin-bottom: 12px;
    }

    /* Stats — single column */
    .stats-bar .col-6 { flex: 0 0 50%; max-width: 50%; }
    .stat-item { padding: 22px 12px; }
    .stat-number { font-size: 28px; }
    .stat-icon-wrap { width: 44px; height: 44px; font-size: 17px; }

    /* Navbar */
    .main-navbar .navbar-brand img { height: 46px; }
    .btn-appointment { padding: 9px 16px !important; font-size: 12px !important; }

    /* About */
    .about-img-frame img { height: 260px; }
    .about-checklist { gap: 8px; }

    /* Gallery — single column on tiny screens */
    .gallery-grid { grid-template-columns: 1fr; gap: 10px; }
    .gallery-item { height: 200px; }

    /* Testimonials */
    .testimonial-card { padding: 28px 16px; margin: 0; }
    .testimonial-text { font-size: 16px; }

    /* Page header */
    .page-header h1 { font-size: 28px; }
    .page-header { padding: 44px 0 54px; }

    /* CTA */
    .cta-inner { padding: 28px 18px; }
    .cta-inner h2 { font-size: 22px; }
    .cta-section { padding: 40px 0; }

    /* Contact quick cards */
    .contact-form, .contact-info-card { padding: 22px 16px; }
    .appt-form, .appt-info { padding: 22px 16px; }

    /* Hours */
    .hours-card { padding: 26px 20px; }

    /* H-service cards */
    .h-service-card img { height: 160px; }
    .h-service-card-body { padding: 16px; }

    /* Service card nums */
    .service-card-num { font-size: 30px; margin-bottom: 6px; }
    .service-card-body { padding: 18px 20px; }

    /* Footer */
    .footer { padding-top: 48px; }
    .footer-bottom p { font-size: 12px; }

    /* Back to top */
    .back-to-top { bottom: 18px; right: 18px; width: 38px; height: 38px; font-size: 14px; }

    /* Spec cards in about page */
    .spec-card { padding: 16px 18px; }

    /* Form controls */
    .form-control { padding: 11px 14px; font-size: 14px; }
    .btn-submit { padding: 13px; font-size: 14px; }
}

/* ─── NAVBAR MOBILE COLLAPSE ──────────────── */
@media (max-width:991px) {
    .navbar-collapse {
        background: var(--white);
        border-top: 1px solid var(--border);
        padding: 8px 0 16px;
        margin: 0 -16px;
        padding-left: 16px;
        padding-right: 16px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    .navbar-nav .nav-link {
        padding: 10px 0 !important;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
        font-size: 14px !important;
    }
    .navbar-nav .nav-link:last-child { border-bottom: none; }
    .navbar-nav .nav-item:last-child .nav-link,
    .btn-appointment {
        margin: 12px 0 0 !important;
        padding: 12px 20px !important;
        display: block;
        text-align: center;
        border-radius: var(--radius-sm) !important;
        border-bottom: none !important;
        background: var(--primary) !important;
        color: var(--white) !important;
    }
    .navbar-toggler {
        padding: 6px 10px;
        border: 1.5px solid var(--border) !important;
        border-radius: 6px;
    }
    .navbar-toggler:focus { box-shadow: none; }
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(15,27,45,0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }
}

/* ─── TOUCH / HOVER FIXES ────────────────── */
@media (hover: none) {
    .service-card:hover,
    .h-service-card:hover,
    .gallery-item:hover img { transform: none; }
    .gallery-item:hover .gallery-overlay { opacity: 0; }
    .gallery-item { cursor: default; }
    .gallery-item .gallery-overlay { display: none; }
}

/* ─── OVERFLOW / LAYOUT SAFETY ───────────── */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}
img { max-width: 100%; height: auto; }
.container-fluid { overflow-x: hidden; }

/* Prevent about-img-frame overflow on mobile */
@media (max-width:575px) {
    .about-img-frame { overflow: hidden; }
}

/* ─── PY-SECTION (responsive padding utility) ── */
.py-section { padding-top: 100px; padding-bottom: 100px; }
@media (max-width:991px) { .py-section { padding-top: 70px; padding-bottom: 70px; } }
@media (max-width:767px) { .py-section { padding-top: 56px; padding-bottom: 56px; } }
@media (max-width:575px) { .py-section { padding-top: 48px; padding-bottom: 48px; } }

/* ─── HERO BUTTONS WRAPPER ─────────────────── */
.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
.hero-btns .btn-hero-primary,
.hero-btns .btn-hero-outline {
    margin-right: 0;
    flex-shrink: 0;
}
@media (max-width:480px) {
    .hero-btns { flex-direction: column; align-items: stretch; }
    .hero-btns .btn-hero-primary,
    .hero-btns .btn-hero-outline { text-align: center; justify-content: center; width: 100%; }
}

/* ─── INLINE MAX-WIDTH OVERRIDES ON MOBILE ── */
@media (max-width:575px) {
    [style*="max-width:520px"],
    [style*="max-width: 520px"],
    [style*="max-width:560px"],
    [style*="max-width: 560px"],
    [style*="max-width:580px"],
    [style*="max-width: 580px"],
    [style*="max-width:600px"],
    [style*="max-width: 600px"] {
        max-width: 100% !important;
    }
}

/* ─── SPECIALISATION CARDS — already use col-sm-6 (2-up) ─── */
/* col-sm-6 gives 2-column grid on phones ≥576px — intentional */
/* On very small phones (<360px) Bootstrap handles overflow naturally */

/* ─── CONTACT QUICK-CARDS ───────────────── */
@media (max-width:575px) {
    .map-wrapper iframe { height: 300px; }
}

/* ─── SECTION INLINE PADDING FIX ────────── */
/* Sections written with inline padding:100px 0 that bypass media queries */
@media (max-width:767px) {
    section[style*="padding:100px 0"],
    section[style*="padding: 100px 0"] {
        padding-top: 56px !important;
        padding-bottom: 56px !important;
    }
    section[style*="padding:80px 0"],
    section[style*="padding: 80px 0"] {
        padding-top: 48px !important;
        padding-bottom: 48px !important;
    }
}
@media (max-width:575px) {
    section[style*="padding:100px 0"],
    section[style*="padding: 100px 0"] {
        padding-top: 48px !important;
        padding-bottom: 48px !important;
    }
    section[style*="padding:80px 0"],
    section[style*="padding: 80px 0"] {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
}

/* ─── ROW GUTTERS ON MOBILE ─────────────── */
@media (max-width:575px) {
    .row.g-5 { --bs-gutter-x: 1.25rem; --bs-gutter-y: 1.5rem; }
    .row.g-4 { --bs-gutter-x: 1rem;    --bs-gutter-y: 1.25rem; }
}

/* ─── HOURS BANNER STACK ─────────────────── */
@media (max-width:991px) {
    .hours-banner .col-lg-4 { margin-bottom: 0; }
    .hours-card {
        border-radius: 0 !important;
        min-height: auto !important;
    }
    .hours-banner .col-lg-4:first-child .hours-card { border-radius: var(--radius-md) var(--radius-md) 0 0 !important; }
    .hours-banner .col-lg-4:last-child  .hours-card { border-radius: 0 0 var(--radius-md) var(--radius-md) !important; }
}

/* ─── FOOTER MOBILE ─────────────────────── */
@media (max-width:767px) {
    .footer .row.g-5 > [class*="col-"] { padding-bottom: 8px; }
    .footer-bottom .row > div { text-align: center !important; }
    .footer-bottom .row > div + div { margin-top: 6px; }
}

/* ─── APPOINTMENT FORM MOBILE ────────────── */
@media (max-width:575px) {
    .appt-info .appt-detail { padding: 12px 14px; gap: 10px; }
    .appt-detail-text span { font-size: 13px; }
    select.form-control { font-size: 14px; }
}

/* ─── GALLERY FILTER BUTTONS ─────────────── */
@media (max-width:575px) {
    .filter-btn { padding: 7px 14px; font-size: 12px; margin: 3px; }
}

/* ─── CTA INNER PHONE ────────────────────── */
@media (max-width:575px) {
    .cta-inner .text-lg-end { text-align: center !important; }
    .btn-white-solid { width: 100%; justify-content: center; }
}

/* ─── LIGHTBOX MOBILE ────────────────────── */
@media (max-width:575px) {
    .lightbox-img { max-width: 96vw; max-height: 75vh; }
    .lightbox-prev { left: 8px; width: 38px; height: 38px; font-size: 15px; }
    .lightbox-next { right: 8px; width: 38px; height: 38px; font-size: 15px; }
}

/* ─── TESTIMONIAL CAROUSEL MOBILE ────────── */
@media (max-width:575px) {
    .testimonials-section .col-lg-9 { padding: 0 4px; }
    .testimonial-stars i { font-size: 12px; }
    .owl-dots .owl-dot span { width: 7px; height: 7px; }
}

/* ─── PAGE HEADER PADDING FIX ────────────── */
@media (max-width:575px) {
    .page-header .container[style*="padding-bottom"] {
        padding-bottom: 32px !important;
    }
}

/* ─── ABOUT IMG FRAME MOBILE ─────────────── */
@media (max-width:991px) {
    .about-img-frame { padding-right: 16px; padding-bottom: 16px; }
    .about-img-frame::after { opacity: 0.15; }
}
@media (max-width:767px) {
    .about-img-frame { padding-right: 0; padding-bottom: 0; }
    .about-img-frame::after { display: none; }
    .about-img-frame img { height: 300px; border-radius: var(--radius-md); }
}
@media (max-width:575px) {
    .about-img-frame img { height: 240px; }
    .about-badge { position: static !important; margin: 12px 0 0; display: flex; align-items: center; gap: 12px; padding: 14px 20px; border-radius: var(--radius-md); }
    .about-badge .years { font-size: 34px; }
    .about-badge .years-label { text-align: left; font-size: 10px; }
}
