/* ===================================================
   Dr. Neelam's Dental & Skin Cosmetic Clinic
   Custom Gold Theme — Designed by Inddig Media
   =================================================== */

:root {
    --dn-gold:       #C8A96E;
    --dn-gold-dark:  #9B7D45;
    --dn-gold-light: #F5E8CB;
    --dn-dark:       #1A1209;
    --dn-cream:      #FDF8F0;
    --dn-text:       #333333;
    --dn-text-light: #666666;
    --color-primary:      #C8A96E;
    --bg-color-primary:   #C8A96E;
    --color-subtitle:     #C8A96E;
}

/* ============================================================
   BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; overflow-x: hidden; }
img { max-width: 100%; height: auto; }

/* ============================================================
   HEADER — Modern Premium Design
   ============================================================ */

.dn-header {
    background: linear-gradient(90deg, #1a1209 0%, #22160a 50%, #1a1209 100%);
    position: sticky;
    top: 0;
    z-index: 1050;
    border-bottom: 1px solid rgba(200,169,110,.1);
    transition: background .35s, box-shadow .35s;
}
.dn-header.scrolled {
    background: rgba(24,15,6,.97);
    box-shadow: 0 4px 30px rgba(0,0,0,.45);
    border-bottom-color: rgba(200,169,110,.2);
}

/* ── HEADER INNER FLEX ROW ──────────────────────────────────── */
.dn-header-inner {
    display: flex;
    align-items: center;
    height: 76px;
    gap: 0;
    transition: height .3s;
}
.dn-header.scrolled .dn-header-inner { height: 64px; }

/* ── LOGO ─────────────────────────────────────────────────── */
.dn-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-right: auto;
}
.dn-logo-img {
    height: 68px;
    width: auto;
    object-fit: contain;
    transition: height .3s;
    display: block;
}
.dn-header.scrolled .dn-logo-img { height: 68px; }

/* ── HAMBURGER ──────────────────────────────────────────────── */
.dn-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 46px;
    height: 46px;
    background: rgba(200,169,110,.08);
    border: 1.5px solid rgba(200,169,110,.45);
    border-radius: 10px;
    cursor: pointer;
    padding: 12px;
    order: -1;
    transition: background .3s, border-color .3s;
    flex-shrink: 0;
    outline: none;
}
.dn-hamburger:hover {
    background: rgba(200,169,110,.16);
    border-color: var(--dn-gold);
}
.dn-hamburger .bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--dn-gold);
    border-radius: 2px;
    transition: transform .36s cubic-bezier(.23,1,.32,1), opacity .25s, width .3s;
}
.dn-hamburger .bar:nth-child(2) { width: 62%; }
.dn-hamburger.open .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.dn-hamburger.open .bar:nth-child(2) { opacity: 0; width: 0; }
.dn-hamburger.open .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.dn-hamburger.open {
    background: rgba(200,169,110,.18);
    border-color: var(--dn-gold);
}

/* ── DESKTOP NAVIGATION ─────────────────────────────────────── */
.dn-desktop-nav {
    display: flex;
    align-items: center;
    margin: 0 16px;
}
.dn-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0;
}
.dn-nav-links > li > a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,.82);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .75px;
    padding: 8px 14px;
    text-decoration: none;
    white-space: nowrap;
    transition: color .3s;
}
.dn-nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 14px; right: 14px;
    height: 2px;
    background: var(--dn-gold);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .32s cubic-bezier(.23,1,.32,1);
}
.dn-nav-links > li:hover > a,
.dn-nav-links > li.active > a { color: var(--dn-gold); }
.dn-nav-links > li:hover > a::after,
.dn-nav-links > li.active > a::after { transform: scaleX(1); }

/* Chevron icon in Services link */
.dn-nav-links .fa-chevron-down {
    font-size: 9px;
    transition: transform .3s;
    margin-left: 2px;
}
.dn-has-drop:hover .fa-chevron-down { transform: rotate(180deg); }

/* Desktop dropdown */
.dn-has-drop { position: relative; }
.dn-dropdown {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    min-width: 210px;
    background: #1c1308;
    border: 1px solid rgba(200,169,110,.18);
    border-top: 3px solid var(--dn-gold);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 22px 55px rgba(0,0,0,.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s, transform .25s, visibility .25s;
    z-index: 300;
}
.dn-has-drop:hover .dn-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dn-dropdown li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px;
    color: rgba(255,255,255,.7);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all .22s;
}
.dn-dropdown li a i { color: var(--dn-gold); width: 14px; font-size: 12px; flex-shrink: 0; }
.dn-dropdown li a:hover {
    color: var(--dn-gold);
    background: rgba(200,169,110,.08);
    padding-left: 26px;
}

/* ── HEADER RIGHT ACTIONS ───────────────────────────────────── */
.dn-header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    margin-left: 8px;
}
.dn-header-phone {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255,255,255,.72);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: color .3s;
    white-space: nowrap;
}
.dn-phone-icon {
    width: 34px; height: 34px;
    background: rgba(200,169,110,.12);
    border: 1px solid rgba(200,169,110,.28);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--dn-gold);
    font-size: 12px;
    flex-shrink: 0;
    transition: all .3s;
}
.dn-header-phone:hover { color: var(--dn-gold); }
.dn-header-phone:hover .dn-phone-icon {
    background: var(--dn-gold);
    color: var(--dn-dark);
    border-color: var(--dn-gold);
}
.dn-book-appt-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dn-gold);
    color: var(--dn-dark) !important;
    font-weight: 700;
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 10px 20px;
    border-radius: 7px;
    text-decoration: none;
    white-space: nowrap;
    border: 2px solid var(--dn-gold);
    transition: all .3s;
}
.dn-book-appt-btn:hover {
    background: transparent;
    color: var(--dn-gold) !important;
    text-decoration: none;
    box-shadow: 0 6px 22px rgba(200,169,110,.28);
    transform: translateY(-2px);
}

/* ── OVERLAY ─────────────────────────────────────────────────── */
.dn-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.62);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    z-index: 1299;
    transition: opacity .38s, visibility .38s;
}
.dn-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ── SIDE MENU (slides from LEFT) ────────────────────────────── */
.dn-side-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    background: linear-gradient(155deg, #1e1509 0%, #231b08 55%, #1a1209 100%);
    border-right: 1px solid rgba(200,169,110,.18);
    box-shadow: 12px 0 55px rgba(0,0,0,.65);
    z-index: 1300;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateX(-100%);
    transition: transform .4s cubic-bezier(.23,1,.32,1);
}
.dn-side-menu.open { transform: translateX(0); }

/* Top bar inside side menu */
.dn-side-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(200,169,110,.12);
    flex-shrink: 0;
    background: rgba(0,0,0,.18);
}
.dn-side-logo-wrap { display: flex; align-items: center; text-decoration: none; }
.dn-side-logo { height: 48px; width: auto; object-fit: contain; }
.dn-side-close {
    width: 38px; height: 38px;
    background: rgba(200,169,110,.1);
    border: 1px solid rgba(200,169,110,.28);
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: rgba(255,255,255,.6);
    font-size: 16px;
    transition: all .25s;
    flex-shrink: 0;
}
.dn-side-close:hover {
    background: var(--dn-gold);
    color: var(--dn-dark);
    border-color: var(--dn-gold);
    transform: rotate(90deg);
}

/* Side nav list */
.dn-side-nav {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
}
.dn-side-nav::-webkit-scrollbar { width: 3px; }
.dn-side-nav::-webkit-scrollbar-track { background: transparent; }
.dn-side-nav::-webkit-scrollbar-thumb { background: rgba(200,169,110,.25); border-radius: 2px; }
.dn-side-nav ul { list-style: none; padding: 0; margin: 0; }
.dn-side-nav ul li { border-bottom: 1px solid rgba(200,169,110,.06); }
.dn-side-nav ul li > a {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px 18px;
    color: rgba(255,255,255,.76);
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .65px;
    transition: all .25s;
}
.dn-side-icon {
    width: 36px; height: 36px;
    background: rgba(200,169,110,.1);
    border: 1px solid rgba(200,169,110,.18);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    color: var(--dn-gold);
    flex-shrink: 0;
    transition: all .25s;
}
.dn-side-nav ul li > a:hover,
.dn-side-nav ul li.dn-active > a {
    color: var(--dn-gold);
    background: rgba(200,169,110,.06);
    padding-left: 22px;
}
.dn-side-nav ul li > a:hover .dn-side-icon,
.dn-side-nav ul li.dn-active > a .dn-side-icon {
    background: var(--dn-gold);
    color: var(--dn-dark);
    border-color: var(--dn-gold);
}
.dn-side-nav ul li.dn-active > a {
    border-left: 3px solid var(--dn-gold);
    padding-left: 15px;
}

/* Dropdown arrow in side menu */
.dn-arrow {
    margin-left: auto;
    font-size: 10px;
    color: rgba(255,255,255,.35);
    flex-shrink: 0;
    transition: transform .3s, color .3s;
}
.dn-has-drop.mob-open > a .dn-arrow {
    transform: rotate(180deg);
    color: var(--dn-gold);
}

/* Accordion sub-menu */
.dn-sub-menu {
    display: none;
    background: rgba(0,0,0,.22);
    border-top: 1px solid rgba(200,169,110,.07);
}
.dn-has-drop.mob-open > .dn-sub-menu { display: block; }
.dn-sub-menu li a {
    padding: 11px 18px 11px 72px !important;
    font-size: 12.5px !important;
    font-weight: 500 !important;
    letter-spacing: .3px !important;
    color: rgba(255,255,255,.58) !important;
    text-transform: none !important;
}
.dn-sub-menu li a i { color: var(--dn-gold); margin-right: 8px; font-size: 11px; }
.dn-sub-menu li a:hover {
    color: var(--dn-gold) !important;
    background: rgba(200,169,110,.07) !important;
    padding-left: 78px !important;
}

/* Side menu footer */
.dn-side-footer {
    padding: 16px 18px 22px;
    border-top: 1px solid rgba(200,169,110,.12);
    flex-shrink: 0;
    background: rgba(0,0,0,.14);
}
.dn-side-appt-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--dn-gold);
    color: var(--dn-dark) !important;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 13px 20px;
    border-radius: 9px;
    text-decoration: none;
    margin-bottom: 14px;
    transition: all .3s;
    border: 2px solid var(--dn-gold);
}
.dn-side-appt-btn:hover {
    background: transparent;
    color: var(--dn-gold) !important;
    text-decoration: none;
}
.dn-side-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}
.dn-side-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.58);
    font-size: 13px;
    text-decoration: none;
    transition: color .25s;
}
.dn-side-contact a i { color: var(--dn-gold); width: 15px; font-size: 13px; }
.dn-side-contact a:hover { color: var(--dn-gold); text-decoration: none; }
.dn-side-social {
    display: flex;
    gap: 9px;
    padding-top: 12px;
    border-top: 1px solid rgba(200,169,110,.1);
}
.dn-side-social a {
    width: 36px; height: 36px;
    background: rgba(200,169,110,.1);
    border: 1px solid rgba(200,169,110,.18);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--dn-gold);
    font-size: 14px;
    text-decoration: none;
    transition: all .3s;
}
.dn-side-social a:hover {
    background: var(--dn-gold);
    color: var(--dn-dark);
    border-color: var(--dn-gold);
    transform: translateY(-2px);
}

/* ── RESPONSIVE: show/hide ──────────────────────────────────── */
@media (max-width: 991px) {
    /* Layout: [hamburger] — spacer — [logo RIGHT] */
    .dn-header-inner { gap: 0; justify-content: flex-start; }
    .dn-hamburger { display: flex !important; order: 1; flex-shrink: 0; }
    .dn-desktop-nav { display: none !important; }
    .dn-header-actions { order: 2; margin-left: auto; flex-shrink: 0; }
    .dn-logo { order: 3; margin-left: 16px; margin-right: 0; flex-shrink: 0; }
    .dn-logo-img { height: 68px; }
    .dn-header.scrolled .dn-logo-img { height: 68px; }
    .dn-phone-text { display: none; }
    .dn-book-appt-btn { display: none; }
}
@media (max-width: 575px) {
    .dn-header-phone { display: none; }
    .dn-header-inner { height: 64px; }
    .dn-header.scrolled .dn-header-inner { height: 56px; }
    .dn-logo-img { height: 68px; }
    .dn-header.scrolled .dn-logo-img { height: 68px; }
    .dn-side-menu { width: 282px; }
}
@media (max-width: 380px) {
    .dn-side-menu { width: 270px; }
    .dn-logo-img { height: 68px; }
}

/* Prevent body scroll when mobile nav is open */
body.nav-open { overflow: hidden; }

/* ============================================================
   BUTTONS
   ============================================================ */
.theme-btn-2 {
    background: var(--dn-gold) !important;
    border-color: var(--dn-gold) !important;
    color: var(--dn-dark) !important;
    font-weight: 700;
    border-radius: 6px;
    transition: all .3s ease;
    letter-spacing: .5px;
    display: inline-block;
    text-decoration: none;
}
.theme-btn-2:hover {
    background: var(--dn-gold-dark) !important;
    border-color: var(--dn-gold-dark) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(200,169,110,.4);
}

/* ============================================================
   HERO SLIDER — FULL RESPONSIVE FIX
   ============================================================ */
.fadeslider_area {
    height: 92vh !important;
    min-height: 500px;
    overflow: hidden;
}
.fadeslider_area .owl-item,
.slide-img-1, .slide-img-2, .slide-img-3 {
    height: 92vh !important;
    min-height: 500px;
}
.fadeslider_area .middle {
    top: 55% !important;
    left: 0 !important;
    right: 0;
    padding: 0 15px;
    transform: translateY(-50%) !important;
}
.fadeslider_area h1 {
    font-size: 52px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    margin-bottom: 12px !important;
}
.fadeslider_area h3 {
    font-size: 14px !important;
    letter-spacing: 3px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    margin-bottom: 8px !important;
    color: var(--dn-gold) !important;
}
.fadeslider_area h3::before { display: none !important; }
.fadeslider_area p {
    font-size: 15px !important;
    color: rgba(255,255,255,.85) !important;
    margin-bottom: 22px !important;
    line-height: 1.7;
}
/* Slider nav arrows */
.fadeslider_area .owl-nav .owl-prev,
.fadeslider_area .owl-nav .owl-next {
    background: rgba(200,169,110,.25) !important;
    border: 2px solid rgba(200,169,110,.5) !important;
    color: #fff !important;
    transition: all .3s !important;
}
.fadeslider_area .owl-nav .owl-prev:hover,
.fadeslider_area .owl-nav .owl-next:hover {
    background: var(--dn-gold) !important;
    border-color: var(--dn-gold) !important;
}
/* Slider dots */
.fadeslider_area .owl-dots { position: absolute; bottom: 20px; width: 100%; text-align: center; z-index: 10; }
.fadeslider_area .owl-dot span { background: rgba(255,255,255,.4) !important; }
.fadeslider_area .owl-dot.active span { background: var(--dn-gold) !important; }

/* ============================================================
   SECTION TITLES & SHARED
   ============================================================ */
.sm-title h4, .sm-title h6 {
    color: var(--dn-gold) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 700;
}
.middile-title-line     { background: var(--dn-gold) !important; }
.middile-title-sm-line  { background: rgba(200,169,110,.3) !important; }
.title-sep-left         { background: var(--dn-gold) !important; }
.title-sep-sm-left      { background: rgba(200,169,110,.35) !important; }
.line                   { background: var(--dn-gold) !important; }
.section-padding        { padding: 80px 0; }
.bg-cream               { background: var(--dn-cream) !important; }

/* ============================================================
   FEATURE BOXES
   ============================================================ */
.dn-feature-box {
    text-align: center;
    padding: 35px 22px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,.07);
    transition: all .35s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: 25px;
    height: calc(100% - 25px);
}
.dn-feature-box:hover {
    transform: translateY(-6px);
    border-bottom-color: var(--dn-gold);
    box-shadow: 0 18px 45px rgba(0,0,0,.12);
}
.dn-feature-box .icon {
    width: 72px; height: 72px;
    background: var(--dn-cream);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    transition: background .3s;
}
.dn-feature-box:hover .icon { background: var(--dn-gold); }
.dn-feature-box .icon i { font-size: 28px; color: var(--dn-gold); transition: color .3s; }
.dn-feature-box:hover .icon i { color: #fff; }
.dn-feature-box h4 { font-size: 16px; font-weight: 700; color: var(--dn-dark); margin-bottom: 8px; }
.dn-feature-box p   { font-size: 13px; color: var(--dn-text-light); margin: 0; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.aboutcom { background: var(--dn-cream); }
.aboutcom .list-col ul li i { color: var(--dn-gold); }
.experince-box { background: linear-gradient(135deg, var(--dn-gold) 0%, var(--dn-gold-dark) 100%) !important; }
.experince-box .ex-year h1 { color: var(--dn-dark) !important; font-size: 68px; font-weight: 900; }
.experince-box .ex-year h3 { color: var(--dn-dark) !important; }

/* ============================================================
   ABOUT SECTION — REDESIGNED
   ============================================================ */
.dn-about-section { background: var(--dn-cream); }

/* Image collage container */
.dn-about-img-collage {
    position: relative;
    display: flex;
    gap: 14px;
    align-items: stretch;
    padding-bottom: 30px;
    padding-right: 30px;
}

/* Main large doctor image */
.dn-about-img-main {
    flex: 0 0 58%;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.18);
}
.dn-about-img-main img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.dn-about-img-main:hover img { transform: scale(1.04); }

/* Right side column */
.dn-about-img-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Top clinic image */
.dn-about-img-side-top {
    flex: 1;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,.14);
    min-height: 180px;
}
.dn-about-img-side-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.dn-about-img-side-top:hover img { transform: scale(1.05); }

/* Experience badge */
.dn-about-exp-badge {
    background: linear-gradient(135deg, var(--dn-gold) 0%, var(--dn-gold-dark) 100%);
    border-radius: 14px;
    padding: 22px 18px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(200,169,110,.4);
    flex: 0 0 auto;
}
.dn-about-exp-num {
    display: block;
    font-size: 48px;
    font-weight: 900;
    color: var(--dn-dark);
    line-height: 1;
    letter-spacing: -1px;
}
.dn-about-exp-num sup { font-size: 22px; vertical-align: super; }
.dn-about-exp-lbl {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--dn-dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.4;
    margin-top: 6px;
}

/* Decorative dot pattern */
.dn-about-dot-decor {
    position: absolute;
    bottom: 0; right: 0;
    width: 110px; height: 110px;
    background-image: radial-gradient(circle, var(--dn-gold) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    opacity: .45;
    z-index: 0;
    pointer-events: none;
}

/* Gold border accent behind main image */
.dn-about-border-accent {
    position: absolute;
    top: 20px; left: 20px;
    width: 58%;
    height: calc(100% - 50px);
    border: 3px solid var(--dn-gold);
    border-radius: 14px;
    z-index: 0;
    pointer-events: none;
    opacity: .25;
}

/* Text content */
.dn-about-content { padding-left: 10px; }
.dn-about-heading {
    font-size: 32px;
    font-weight: 800;
    color: var(--dn-dark);
    line-height: 1.3;
    margin-bottom: 14px;
}
.dn-about-heading span { color: var(--dn-gold); }
.dn-sep-line {
    width: 54px; height: 3px;
    background: linear-gradient(90deg, var(--dn-gold), var(--dn-gold-dark));
    border-radius: 2px;
    margin-bottom: 20px;
}
.dn-about-para { color: var(--dn-text-light); font-size: 15px; line-height: 1.8; margin-bottom: 14px; }
.dn-about-para strong { color: var(--dn-dark); }

/* Feature pills */
.dn-about-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 26px;
}
.dn-about-pills span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid rgba(200,169,110,.3);
    color: var(--dn-dark);
    font-size: 12.5px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.dn-about-pills span i { color: var(--dn-gold); font-size: 11px; }

/* Stats row */
.dn-about-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,.07);
    padding: 18px 20px;
    margin-bottom: 28px;
}
.dn-about-stat { flex: 1; text-align: center; }
.dn-about-stat-div { width: 1px; height: 40px; background: rgba(200,169,110,.3); flex-shrink: 0; }
.dn-stat-num {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: var(--dn-gold);
    line-height: 1;
}
.dn-stat-num sup { font-size: 14px; vertical-align: super; }
.dn-stat-lbl { display: block; font-size: 11px; font-weight: 600; color: var(--dn-text-light); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* CTA row */
.dn-about-cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.dn-about-call { display: flex; align-items: center; gap: 12px; }
.dn-about-call-icon {
    width: 50px; height: 50px;
    background: var(--dn-gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.dn-about-call-icon i { color: var(--dn-dark); font-size: 18px; }
.dn-about-call p { margin: 0; font-size: 11px; color: var(--dn-text-light); text-transform: uppercase; letter-spacing: 1px; }
.dn-about-call a { color: var(--dn-gold); font-weight: 800; font-size: 17px; text-decoration: none; display: block; }

@media (max-width: 991px) {
    .dn-about-img-collage { padding-bottom: 20px; padding-right: 20px; }
    .dn-about-img-main img { min-height: 320px; }
    .dn-about-img-side-top { min-height: 140px; }
    .dn-about-content { padding-left: 0; }
}
@media (max-width: 576px) {
    .dn-about-img-collage { flex-direction: column; padding-right: 0; padding-bottom: 16px; }
    .dn-about-img-main { flex: unset; }
    .dn-about-img-main img { min-height: 260px; }
    .dn-about-img-side { flex-direction: row; }
    .dn-about-img-side-top { min-height: 120px; }
    .dn-about-border-accent { display: none; }
    .dn-about-heading { font-size: 24px; }
    .dn-about-stats { padding: 14px 12px; }
    .dn-stat-num { font-size: 22px; }
}

/* ============================================================
   STATS COUNTER
   ============================================================ */
.dn-counter-section { background: var(--dn-dark); padding: 65px 0; }
.dn-counter-box { text-align: center; padding: 20px 10px; position: relative; }
.dn-counter-box::after {
    content: '';
    position: absolute; right: 0; top: 20%; bottom: 20%;
    width: 1px; background: rgba(200,169,110,.2);
}
.dn-counter-box:last-child::after { display: none; }
.dn-counter-box .count-icon { font-size: 28px; color: rgba(255,255,255,.15); margin-bottom: 8px; }
.dn-counter-box .count-number {
    font-size: 50px; font-weight: 900; color: var(--dn-gold);
    line-height: 1; display: inline-block;
}
.dn-counter-box .count-plus { color: var(--dn-gold); font-size: 30px; font-weight: 900; }
.dn-counter-box .count-title {
    display: block; font-size: 12px;
    color: rgba(255,255,255,.6);
    text-transform: uppercase; letter-spacing: 1.5px;
    margin-top: 10px;
}

/* ============================================================
   SERVICES CAROUSEL — ORIGINAL TEMPLATE OVERLAY STYLE + GOLD
   ============================================================ */
.dental-services { background: var(--dn-cream); }

/* card wrapper — image fills entire card, content overlays from bottom */
.dental-services .item-block {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,.15);
}

/* full-height image */
.dental-services .item-block .position-re.o-hidden {
    position: relative;
    height: 300px;
    overflow: hidden;
}
.dental-services .item-block .position-re.o-hidden img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s ease;
    display: block;
}
.dental-services .item-block:hover .position-re.o-hidden img {
    transform: scale(1.08);
}

/* content panel — slides up from bottom on hover */
.dental-services .item-block .con {
    position: absolute;
    bottom: -90px;
    left: 0; right: 0;
    padding: 22px 22px 22px;
    text-align: center;
    transition: bottom .38s ease;
    z-index: 5;
    background: linear-gradient(to bottom, transparent 0%, rgba(26,18,9,.12) 5%, rgba(26,18,9,.88) 45%);
}
.dental-services .item-block:hover .con { bottom: 0; }

/* icon circle */
.dental-services .item-block .con .icon {
    width: 68px; height: 68px;
    background: var(--dn-gold);
    border-radius: 50%;
    margin: 0 auto 12px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 18px rgba(200,169,110,.5);
    border: 3px solid rgba(255,255,255,.3);
    transition: background .3s, transform .3s;
}
.dental-services .item-block:hover .con .icon {
    background: #fff;
    transform: scale(1.08);
}
.dental-services .item-block .con .icon i {
    font-size: 24px;
    color: var(--dn-dark);
    transition: color .3s;
}
.dental-services .item-block:hover .con .icon i { color: var(--dn-gold); }

/* title */
.dental-services .item-block .con h5,
.dental-services .item-block .con h5 a {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 6px;
    text-decoration: none;
    transition: color .3s;
}
.dental-services .item-block .con h5 a:hover { color: var(--dn-gold); }

/* gold line */
.dental-services .item-block .con .line {
    width: 45px; height: 2px;
    background: var(--dn-gold);
    margin: 0 auto 10px;
    border-radius: 2px;
    transition: width .3s;
}
.dental-services .item-block:hover .con .line { width: 70px; }

/* description text */
.dental-services .item-block .con .permalink {
    color: rgba(255,255,255,.85);
    font-size: 13px;
    line-height: 1.65;
    margin: 0 0 12px;
}

/* book now button inside card */
.dental-services .item-block .con .dn-card-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--dn-gold);
    color: var(--dn-dark);
    font-size: 12px;
    font-weight: 700;
    padding: 7px 20px;
    border-radius: 5px;
    text-decoration: none;
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: background .3s;
}
.dental-services .item-block .con .dn-card-book-btn:hover {
    background: #fff;
    color: var(--dn-dark);
    text-decoration: none;
}

/* ── SERVICES SECTION HEADER ────────────────────────────────── */
.dn-svc-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 10px;
    padding: 0 50px;
}
.dn-svc-title {
    font-size: 34px;
    font-weight: 800;
    color: var(--dn-dark);
    margin: 4px 0 0;
    line-height: 1.2;
}
.dn-svc-title span { color: var(--dn-gold); }
.dn-svc-viewall {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dn-gold);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 2px solid var(--dn-gold);
    padding-bottom: 2px;
    transition: gap .3s, color .3s;
    white-space: nowrap;
    margin-bottom: 6px;
}
.dn-svc-viewall:hover {
    gap: 14px;
    color: var(--dn-gold-dark);
    text-decoration: none;
}
.dn-svc-sep {
    height: 3px;
    background: linear-gradient(90deg, var(--dn-gold) 0%, rgba(200,169,110,.15) 60%, transparent 100%);
    border-radius: 2px;
    margin: 0 50px 28px;
}
@media (max-width: 767px) {
    .dn-svc-header { padding: 0 36px; }
    .dn-svc-sep { margin: 0 36px 22px; }
    .dn-svc-title { font-size: 26px; }
}
@media (max-width: 480px) {
    .dn-svc-header { padding: 0 28px; flex-direction: column; align-items: flex-start; }
    .dn-svc-sep { margin: 0 28px 18px; }
}

/* ── SERVICES CAROUSEL — OWL NAV ARROWS ────────────────────── */

/* Give the carousel a horizontal padding so arrows sit outside */
.dental-services #services-carousel.owl-carousel {
    padding: 0 50px;
}

/* Base arrow button */
#services-carousel .owl-nav .owl-prev,
#services-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50% !important;
    background: #fff !important;
    border: 2px solid var(--dn-gold) !important;
    color: var(--dn-gold) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    box-shadow: 0 4px 18px rgba(0,0,0,.12);
    transition: all .3s ease !important;
    outline: none;
    cursor: pointer;
    z-index: 10;
}
#services-carousel .owl-nav .owl-prev {
    left: 0;
}
#services-carousel .owl-nav .owl-next {
    right: 0;
}
#services-carousel .owl-nav .owl-prev:hover,
#services-carousel .owl-nav .owl-next:hover {
    background: var(--dn-gold) !important;
    color: #fff !important;
    box-shadow: 0 8px 28px rgba(200,169,110,.45) !important;
    transform: translateY(-50%) scale(1.08) !important;
}
#services-carousel .owl-nav .owl-prev.disabled,
#services-carousel .owl-nav .owl-next.disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* Wrapper needs relative so absolute arrows work */
.dental-services .owl-carousel {
    position: relative;
}
.dental-services .owl-carousel .owl-nav {
    margin: 0;
    position: static;
}

/* Dots below carousel */
#services-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
}
#services-carousel .owl-dot span {
    background: rgba(200,169,110,.3) !important;
    width: 8px; height: 8px;
    border-radius: 50%;
    margin: 0 4px;
    transition: all .3s;
}
#services-carousel .owl-dot.active span {
    background: var(--dn-gold) !important;
    width: 24px;
    border-radius: 4px;
}

/* Mobile: smaller arrows, less padding */
@media (max-width: 767px) {
    .dental-services #services-carousel.owl-carousel { padding: 0 36px; }
    #services-carousel .owl-nav .owl-prev,
    #services-carousel .owl-nav .owl-next {
        width: 38px; height: 38px; font-size: 13px;
    }
}
@media (max-width: 480px) {
    .dental-services #services-carousel.owl-carousel { padding: 0 28px; }
    #services-carousel .owl-nav .owl-prev,
    #services-carousel .owl-nav .owl-next {
        width: 32px; height: 32px; font-size: 11px;
    }
}

/* ============================================================
   GALLERY
   ============================================================ */
.dn-gallery-item { position: relative; overflow: hidden; border-radius: 10px; margin-bottom: 20px; }
.dn-gallery-item img { width: 100%; height: 220px; object-fit: cover; transition: transform .45s ease; display: block; }
.dn-gallery-item:hover img { transform: scale(1.08); }
.dn-gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(26,18,9,.6);
    opacity: 0; display: flex;
    align-items: center; justify-content: center;
    transition: opacity .3s;
}
.dn-gallery-item:hover .dn-gallery-overlay { opacity: 1; }
.dn-gallery-overlay a {
    color: #fff; font-size: 22px;
    width: 52px; height: 52px;
    border: 2px solid rgba(255,255,255,.6);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; transition: all .3s;
}
.dn-gallery-overlay a:hover { background: var(--dn-gold); border-color: var(--dn-gold); }

/* ============================================================
   BLOG CARDS
   ============================================================ */
.dn-blog-card {
    background: #fff; border-radius: 12px; overflow: hidden;
    box-shadow: 0 5px 22px rgba(0,0,0,.07);
    margin-bottom: 30px; transition: all .35s ease;
}
.dn-blog-card:hover { transform: translateY(-6px); box-shadow: 0 18px 45px rgba(0,0,0,.12); }
.dn-blog-card .blog-img { position: relative; overflow: hidden; height: 220px; }
.dn-blog-card .blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.dn-blog-card:hover .blog-img img { transform: scale(1.06); }
.dn-blog-date-badge {
    position: absolute; bottom: 12px; left: 12px;
    background: var(--dn-gold); color: var(--dn-dark);
    padding: 4px 12px; border-radius: 4px; font-size: 12px; font-weight: 700;
}
.dn-blog-card .blog-body { padding: 22px 25px; }
.dn-blog-meta { display: flex; gap: 15px; margin-bottom: 10px; font-size: 12.5px; color: var(--dn-text-light); flex-wrap: wrap; }
.dn-blog-meta i { color: var(--dn-gold); margin-right: 4px; }
.dn-blog-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; line-height: 1.5; }
.dn-blog-card h3 a { color: var(--dn-dark); text-decoration: none; transition: color .3s; }
.dn-blog-card h3 a:hover { color: var(--dn-gold); }
.dn-blog-card p { color: var(--dn-text-light); font-size: 13.5px; line-height: 1.7; margin-bottom: 12px; }
.dn-blog-card .read-more {
    color: var(--dn-gold); font-weight: 700; font-size: 13.5px;
    text-decoration: none; display: inline-flex; align-items: center; gap: 5px; transition: gap .3s;
}
.dn-blog-card .read-more:hover { gap: 10px; color: var(--dn-gold-dark); }

/* ============================================================
   CTA BANNER — "READY FOR A BEAUTIFUL SMILE?" — REDESIGNED
   ============================================================ */
.dn-cta-section {
    position: relative;
    padding: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #1A1209 0%, #2d1f0a 40%, #1A1209 100%);
}
.dn-cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background: url('../img/home-slider/slide-1.jpg') center/cover no-repeat;
    opacity: .07;
}
/* decorative circles */
.dn-cta-section::after {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(200,169,110,.08);
    top: -200px; right: -150px;
    pointer-events: none;
}
.dn-cta-inner {
    position: relative; z-index: 2;
    display: flex;
    align-items: stretch;
    min-height: 320px;
}
.dn-cta-left {
    flex: 1;
    padding: 60px 50px 60px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(200,169,110,.15);
}
.dn-cta-left .dn-cta-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(200,169,110,.12);
    border: 1px solid rgba(200,169,110,.3);
    color: var(--dn-gold);
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    padding: 6px 16px; border-radius: 20px;
    margin-bottom: 20px;
    width: fit-content;
}
.dn-cta-left h2 {
    color: #fff;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
}
.dn-cta-left h2 span { color: var(--dn-gold); }
.dn-cta-left p {
    color: rgba(255,255,255,.65);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 480px;
}
.dn-cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.dn-cta-btn-primary {
    display: inline-flex; align-items: center; gap: 9px;
    background: var(--dn-gold);
    color: var(--dn-dark) !important;
    font-weight: 700; font-size: 14px;
    padding: 13px 28px; border-radius: 6px;
    text-decoration: none; transition: all .3s;
    border: 2px solid var(--dn-gold);
}
.dn-cta-btn-primary:hover {
    background: var(--dn-gold-dark);
    border-color: var(--dn-gold-dark);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200,169,110,.35);
    text-decoration: none;
}
.dn-cta-btn-outline {
    display: inline-flex; align-items: center; gap: 9px;
    background: transparent;
    color: #fff !important;
    font-weight: 600; font-size: 14px;
    padding: 13px 28px; border-radius: 6px;
    text-decoration: none; transition: all .3s;
    border: 2px solid rgba(255,255,255,.35);
}
.dn-cta-btn-outline:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.7);
    color: #fff !important;
    transform: translateY(-2px);
    text-decoration: none;
}
.dn-cta-right {
    width: 380px;
    flex-shrink: 0;
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    background: rgba(200,169,110,.06);
}
.dn-cta-info-item {
    display: flex; align-items: flex-start; gap: 16px;
}
.dn-cta-info-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    background: rgba(200,169,110,.15);
    border: 1px solid rgba(200,169,110,.3);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
}
.dn-cta-info-icon i { color: var(--dn-gold); font-size: 18px; }
.dn-cta-info-body { display: block; }
.dn-cta-info-body span {
    display: block; font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: rgba(255,255,255,.4); margin-bottom: 3px;
}
.dn-cta-info-body a,
.dn-cta-info-body p {
    font-size: 15px; font-weight: 700;
    color: #fff; margin: 0;
    text-decoration: none; line-height: 1.4;
    transition: color .3s;
}
.dn-cta-info-body a:hover { color: var(--dn-gold); }
.dn-cta-divider {
    height: 1px;
    background: rgba(200,169,110,.15);
    margin: 0;
}

/* ============================================================
   SLIDER BUTTONS
   ============================================================ */
.dn-slider-btns {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 4px;
}
.dn-btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff !important;
    border: 2px solid rgba(255,255,255,.6);
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    padding: 9px 22px;
    text-decoration: none;
    transition: all .3s;
}
.dn-btn-outline-white:hover {
    background: rgba(255,255,255,.15);
    border-color: #fff;
    color: #fff !important;
    text-decoration: none;
    transform: translateY(-2px);
}

/* ============================================================
   FEATURE BOXES SECTION WRAPPER
   ============================================================ */
.dn-features-wrap {
    background: #fff;
    padding: 40px 0 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    position: relative;
    z-index: 2;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.dn-why-img-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}
.dn-why-img-wrap img {
    border-radius: 12px;
    width: 100%;
    object-fit: cover;
    max-height: 480px;
}
.dn-why-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--dn-gold);
    color: var(--dn-dark);
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 800;
    font-size: 12px;
    line-height: 1.3;
    box-shadow: 0 6px 24px rgba(200,169,110,.45);
}
.dn-why-badge i { font-size: 18px; margin-bottom: 4px; }
.dn-why-list { display: flex; flex-direction: column; gap: 20px; }
.dn-why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 14px rgba(0,0,0,.06);
    border-left: 3px solid var(--dn-gold);
    transition: all .3s;
}
.dn-why-item:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 28px rgba(0,0,0,.1);
}
.dn-why-icon {
    width: 48px;
    height: 48px;
    background: var(--dn-cream);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .3s;
}
.dn-why-item:hover .dn-why-icon { background: var(--dn-gold); }
.dn-why-icon i { font-size: 20px; color: var(--dn-gold); transition: color .3s; }
.dn-why-item:hover .dn-why-icon i { color: var(--dn-dark); }
.dn-why-body h4 { font-size: 15px; font-weight: 700; color: var(--dn-dark); margin-bottom: 4px; }
.dn-why-body p  { font-size: 13.5px; color: var(--dn-text-light); margin: 0; line-height: 1.6; }

/* ============================================================
   DOCTOR PROFILE
   ============================================================ */
.dn-doc-img-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}
.dn-doc-img-wrap img {
    border-radius: 16px;
    width: 100%;
    object-fit: cover;
    max-height: 480px;
}
.dn-doc-exp-badge {
    position: absolute;
    bottom: 24px;
    left: -18px;
    background: var(--dn-gold);
    color: var(--dn-dark);
    border-radius: 12px;
    padding: 14px 18px;
    text-align: center;
    box-shadow: 0 6px 24px rgba(200,169,110,.45);
    min-width: 90px;
}
.dn-doc-exp-badge .num {
    display: block;
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 4px;
}
.dn-doc-exp-badge .lbl {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    line-height: 1.3;
}
.dn-cred-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: var(--dn-cream);
    border-radius: 10px;
    transition: all .3s;
}
.dn-cred-item:hover {
    background: var(--dn-gold-light);
    transform: translateY(-2px);
}
.dn-cred-icon {
    width: 42px;
    height: 42px;
    background: var(--dn-gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.dn-cred-icon i { font-size: 17px; color: var(--dn-dark); }
.dn-cred-item h5 { font-size: 13.5px; font-weight: 700; color: var(--dn-dark); margin-bottom: 2px; }
.dn-cred-item p  { font-size: 12px; color: var(--dn-text-light); margin: 0; line-height: 1.4; }

/* ============================================================
   APPOINTMENT SECTION — NEW LAYOUT
   ============================================================ */
.dn-appt-form-wrap {
    background: #fff;
    border-radius: 14px;
    padding: 35px 35px;
    box-shadow: 0 8px 40px rgba(0,0,0,.15);
}
.dn-appt-info-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.dn-appt-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(200,169,110,.15);
}
.dn-appt-info-item:last-child { border-bottom: none; }
.dn-appt-info-icon {
    width: 44px;
    height: 44px;
    background: rgba(200,169,110,.15);
    border: 1px solid rgba(200,169,110,.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.dn-appt-info-icon i { color: var(--dn-gold); font-size: 16px; }
.dn-appt-lbl {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,.4);
    margin: 0 0 3px;
}
.dn-appt-val {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.5;
}
a.dn-appt-val:hover { color: var(--dn-gold); }
.dn-form-input {
    border: 1.5px solid rgba(200,169,110,.35) !important;
    border-radius: 8px !important;
    padding: 12px 15px !important;
    font-size: 14px !important;
    background: var(--dn-cream) !important;
    color: var(--dn-dark) !important;
    transition: border-color .3s, box-shadow .3s;
    width: 100%;
}
.dn-form-input::placeholder { color: #aaa; }
.dn-form-input:focus {
    border-color: var(--dn-gold) !important;
    box-shadow: 0 0 0 3px rgba(200,169,110,.15) !important;
    outline: none;
    background: #fff !important;
}
.dn-submit-btn {
    display: block;
    width: 100%;
    background: var(--dn-gold);
    color: var(--dn-dark);
    border: none;
    border-radius: 8px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    cursor: pointer;
    transition: all .3s;
}
.dn-submit-btn:hover {
    background: var(--dn-gold-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200,169,110,.4);
}

/* ============================================================
   APPOINTMENT SECTION
   ============================================================ */
.connect-info { background: var(--dn-dark); }
.appointment-form .form-control {
    border: 1px solid rgba(200,169,110,.4); border-radius: 6px;
    padding: 12px 15px; font-size: 14px;
    transition: border-color .3s;
    background: rgba(255,255,255,.04);
    color: #fff;
}
.appointment-form .form-control::placeholder { color: rgba(255,255,255,.4); }
.appointment-form .form-control:focus {
    border-color: var(--dn-gold);
    box-shadow: 0 0 0 3px rgba(200,169,110,.15);
    background: rgba(255,255,255,.06);
    color: #fff;
}
.appointment-form select.form-control option { color: #333; background: #fff; }
.appointment-form button[type="submit"] {
    background: var(--dn-gold); color: var(--dn-dark);
    font-weight: 700; border: none; padding: 14px 30px;
    border-radius: 6px; width: 100%; cursor: pointer;
    transition: all .3s; text-transform: uppercase; letter-spacing: 1px; font-size: 14px;
}
.appointment-form button[type="submit"]:hover {
    background: var(--dn-gold-dark); color: #fff; transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200,169,110,.35);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-area {
    background: linear-gradient(135deg, var(--dn-dark) 0%, #2d1f0a 60%, var(--dn-dark) 100%);
    position: relative;
}
.testimonial-area::before {
    content: '';
    position: absolute; inset: 0;
    background: url('../img/home-slider/slide-1.jpg') center/cover no-repeat;
    opacity: .05;
}
.testimonial-area .container { position: relative; z-index: 1; }

/* card */
.testimonial-block-outer {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(200,169,110,.2);
    border-radius: 16px;
    padding: 36px 36px 32px;
    display: flex;
    gap: 28px;
    align-items: flex-start;
    margin: 8px 10px;
    transition: all .3s;
}
.testimonial-block-outer:hover {
    background: rgba(200,169,110,.08);
    border-color: rgba(200,169,110,.45);
    transform: translateY(-4px);
}

/* avatar */
.testimonial-block-outer .border-box {
    flex-shrink: 0;
    width: 80px; height: 80px;
    border-radius: 50%;
    border: 3px solid var(--dn-gold) !important;
    overflow: hidden;
    box-shadow: 0 0 0 4px rgba(200,169,110,.25);
}
.testimonial-block-outer .border-box .client-img { width: 100%; height: 100%; }
.testimonial-block-outer .border-box .client-img img { width: 100%; height: 100%; object-fit: cover; }

/* text */
.testimonial-block-outer .text-box { flex: 1; }
.dn-quote-icon { font-size: 26px; color: var(--dn-gold); opacity: .7; margin-bottom: 12px; line-height: 1; }
.testimonial-block-outer .text-box p {
    color: rgba(255,255,255,.8);
    font-size: 14.5px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 14px;
}
.dn-testi-stars { margin-bottom: 10px; }
.dn-testi-stars i { color: var(--dn-gold); font-size: 13px; margin-right: 2px; }
.testimonial-block-outer .text-box .name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
}
.testimonial-block-outer .text-box .name span {
    font-size: 12px;
    color: var(--dn-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* owl dots for testimonials */
.testimonial-area .owl-dots { margin-top: 20px; text-align: center; }
.testimonial-area .owl-dot span { background: rgba(200,169,110,.35) !important; transition: background .3s; }
.testimonial-area .owl-dot.active span { background: var(--dn-gold) !important; }

/* ============================================================
   DOCTOR ABOUT
   ============================================================ */
.doctor-about { background: var(--dn-cream); }
.doctor-about .profile-content h3 { color: var(--dn-gold); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
.doctor-about .profile-content h2 { color: var(--dn-dark); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-section, .footer_area { background: var(--dn-dark); }
.footer_copyright { background: rgba(0,0,0,.3); }
.footer_copyright_inner p { color: rgba(255,255,255,.5); }
.footer_copyright_inner a { color: var(--dn-gold); text-decoration: none; }
.f_title h3 { color: var(--dn-gold) !important; font-size: 16px; font-weight: 700; margin-bottom: 18px; }
.footer-about p { color: rgba(255,255,255,.65); font-size: 13.5px; line-height: 1.7; }
.footer-link ul { list-style: none; padding: 0; }
.footer-link ul li a { color: rgba(255,255,255,.6); font-size: 13.5px; text-decoration: none; transition: all .3s; display: block; padding: 4px 0; }
.footer-link ul li a:hover { color: var(--dn-gold); padding-left: 6px; }
.social-links-footer a {
    background: rgba(200,169,110,.15) !important;
    color: var(--dn-gold) !important;
    border: 1px solid rgba(200,169,110,.3) !important;
    transition: all .3s;
}
.social-links-footer a:hover { background: var(--dn-gold) !important; color: var(--dn-dark) !important; }
.footer-address ul { list-style: none; padding: 0; }
.footer-address ul li { display: flex; gap: 12px; margin-bottom: 14px; }
.footer-address ul li i { color: var(--dn-gold); margin-top: 3px; width: 16px; flex-shrink: 0; }
.footer-address ul li p, .footer-address ul li div { color: rgba(255,255,255,.65); font-size: 13.5px; margin: 0; }
.footer-address ul li a { color: rgba(255,255,255,.65); text-decoration: none; transition: color .3s; }
.footer-address ul li a:hover { color: var(--dn-gold); }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
#scroll { background: var(--dn-gold) !important; color: var(--dn-dark) !important; border-color: var(--dn-gold) !important; }
#scroll:hover { background: var(--dn-gold-dark) !important; color: #fff !important; }

/* ============================================================
   PAGE BANNER
   ============================================================ */
.dn-page-banner {
    position: relative; padding: 85px 0; overflow: hidden;
    background: linear-gradient(135deg, var(--dn-dark) 0%, #2d1f0a 100%);
}
.dn-page-banner::before {
    content: ''; position: absolute; inset: 0;
    background: url('../img/banner/banner.jpg') center/cover no-repeat;
    opacity: .12;
}
.dn-page-banner .container { position: relative; z-index: 2; }
.dn-page-banner h1 { color: #fff; font-size: 38px; font-weight: 800; margin-bottom: 10px; }
.dn-page-banner h1 span { color: var(--dn-gold); }
.dn-breadcrumb { list-style: none; padding: 0; margin: 0; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.dn-breadcrumb li { color: rgba(255,255,255,.55); font-size: 13.5px; }
.dn-breadcrumb li a { color: var(--dn-gold); text-decoration: none; }
.dn-breadcrumb li + li::before { content: '/'; margin-right: 8px; color: rgba(255,255,255,.3); }

/* ============================================================
   SERVICE CARDS
   ============================================================ */

/* Hover overlay on card image */
.dn-service-card .card-img { position: relative; overflow: hidden; height: 220px; }
.dn-service-card .card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .45s ease;
    display: block;
}
.dn-service-card:hover .card-img img { transform: scale(1.07); }

.dn-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,18,9,.75) 0%, rgba(26,18,9,.1) 60%, transparent 100%);
    opacity: 0;
    display: flex; align-items: flex-end; justify-content: center;
    padding-bottom: 20px;
    transition: opacity .35s ease;
}
.dn-service-card:hover .dn-card-overlay { opacity: 1; }
.dn-card-overlay-btn {
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--dn-gold); color: var(--dn-dark);
    font-size: 13px; font-weight: 700;
    padding: 8px 20px; border-radius: 5px;
    text-decoration: none;
    transform: translateY(10px);
    transition: transform .35s ease, background .3s;
}
.dn-service-card:hover .dn-card-overlay-btn { transform: translateY(0); }
.dn-card-overlay-btn:hover { background: #fff; color: var(--dn-dark); text-decoration: none; }

/* ensure carousel image area has consistent height */
.item-block .position-re.o-hidden { height: 200px; overflow: hidden; }
.item-block .position-re.o-hidden img { width: 100%; height: 100%; object-fit: cover; }
.dn-service-card {
    background: #fff; border-radius: 12px; overflow: hidden;
    box-shadow: 0 5px 22px rgba(0,0,0,.07);
    margin-bottom: 30px; transition: all .35s ease;
}
.dn-service-card:hover { transform: translateY(-6px); box-shadow: 0 18px 45px rgba(0,0,0,.12); }
.dn-service-card .card-img { position: relative; overflow: hidden; height: 200px; }
.dn-service-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.dn-service-card:hover .card-img img { transform: scale(1.06); }
.dn-service-card .card-body { padding: 22px 25px; }
.dn-service-card .card-title { color: var(--dn-dark); font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.dn-service-card .card-text { color: var(--dn-text-light); font-size: 13.5px; line-height: 1.7; margin-bottom: 14px; }
.dn-service-card .read-more {
    color: var(--dn-gold); font-weight: 700; font-size: 13.5px;
    text-decoration: none; display: inline-flex; align-items: center; gap: 5px; transition: gap .3s;
}
.dn-service-card .read-more:hover { gap: 10px; color: var(--dn-gold-dark); }
.dn-service-badge {
    display: inline-block; padding: 3px 12px; border-radius: 20px;
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px;
    background: rgba(200,169,110,.15); color: var(--dn-gold-dark);
}
.dn-service-section-head {
    display: flex; align-items: center; gap: 15px; flex-wrap: wrap;
    margin: 40px 0 25px; padding-bottom: 12px;
    border-bottom: 2px solid var(--dn-gold-light);
}
.dn-service-section-head h2 { margin: 0; font-size: 24px; font-weight: 800; color: var(--dn-dark); }
.dn-service-section-head .badge-head {
    background: var(--dn-gold); color: var(--dn-dark);
    padding: 4px 14px; border-radius: 4px; font-weight: 700; font-size: 13px;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.dn-gallery-page-item { margin-bottom: 20px; }

/* ============================================================
   BLOG DETAIL / SERVICE DETAIL / SIDEBAR
   ============================================================ */
.dn-detail-content h1, .dn-detail-content h2 { color: var(--dn-dark); font-weight: 800; margin-bottom: 18px; }
.dn-detail-content p { color: var(--dn-text-light); line-height: 1.85; margin-bottom: 18px; }
.dn-detail-img { border-radius: 10px; overflow: hidden; margin-bottom: 30px; }
.dn-detail-img img { width: 100%; max-height: 450px; object-fit: cover; }
.dn-sidebar-widget { background: var(--dn-cream); border-radius: 10px; padding: 25px; margin-bottom: 25px; }
.dn-sidebar-widget h4 { color: var(--dn-dark); font-weight: 700; margin-bottom: 15px; padding-bottom: 10px; border-bottom: 2px solid var(--dn-gold); }
.dn-sidebar-link {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 0; border-bottom: 1px solid #e8d5a3;
    color: var(--dn-text); text-decoration: none; font-size: 13.5px; transition: all .3s;
}
.dn-sidebar-link:last-child { border-bottom: none; }
.dn-sidebar-link:hover { color: var(--dn-gold); text-decoration: none; padding-left: 5px; }
.dn-sidebar-link i { color: var(--dn-gold); width: 16px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.dn-contact-info-card {
    background: #fff; border-radius: 12px; padding: 28px;
    box-shadow: 0 5px 22px rgba(0,0,0,.07);
    margin-bottom: 22px; display: flex; align-items: flex-start; gap: 18px; transition: all .3s;
}
.dn-contact-info-card:hover { box-shadow: 0 12px 35px rgba(0,0,0,.12); transform: translateY(-3px); }
.dn-contact-icon-wrap {
    width: 54px; height: 54px; background: var(--dn-gold); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.dn-contact-icon-wrap i { color: var(--dn-dark); font-size: 20px; }
.dn-contact-info-card h4 { color: var(--dn-dark); font-size: 15px; font-weight: 700; margin-bottom: 5px; }
.dn-contact-info-card p, .dn-contact-info-card a {
    color: var(--dn-text-light); font-size: 13.5px; text-decoration: none; margin: 0; line-height: 1.6;
}
.dn-contact-info-card a:hover { color: var(--dn-gold); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.dn-whatsapp {
    position: fixed; bottom: 25px; right: 25px;
    width: 56px; height: 56px; background: #25d366; color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 26px; text-decoration: none; z-index: 9999;
    box-shadow: 0 5px 20px rgba(37,211,102,.4); transition: all .3s;
}
.dn-whatsapp:hover { transform: scale(1.12); color: #fff; }

/* ============================================================
   ALERTS
   ============================================================ */
.dn-success-msg {
    background: rgba(200,169,110,.15); border: 1px solid var(--dn-gold);
    color: var(--dn-dark); padding: 13px 18px; border-radius: 7px; margin-bottom: 18px; font-weight: 500;
}
.dn-error-msg {
    background: rgba(220,53,69,.1); border: 1px solid #dc3545;
    color: #842029; padding: 13px 18px; border-radius: 7px; margin-bottom: 18px;
}

/* ============================================================
   ==================  RESPONSIVE  ===========================
   ============================================================ */

/* ---------- 1200px ---------- */
@media (max-width: 1199px) {
    .dn-nav-links > li > a { padding: 7px 10px; font-size: 12px; }
    .dn-book-appt-btn { padding: 9px 14px; font-size: 12px; }
    .dn-header-inner { gap: 0; }
    .dn-cta-left { padding: 50px 35px 50px 40px; }
    .dn-cta-left h2 { font-size: 30px; }
    .dn-cta-right { width: 320px; padding: 40px 30px; }
    .fadeslider_area h1 { font-size: 44px !important; }
}

/* ---------- 991px — tablet ---------- */
@media (max-width: 991px) {
    /* Why Choose Us badge */
    .dn-why-badge { right: 10px; }

    /* Doctor badge */
    .dn-doc-exp-badge { left: 10px; }

    /* Appt form */
    .dn-appt-form-wrap { padding: 28px 24px; }

    /* Slider */
    .fadeslider_area,
    .fadeslider_area .owl-item,
    .slide-img-1, .slide-img-2, .slide-img-3 {
        height: 75vh !important;
        min-height: 420px;
    }
    .fadeslider_area h1 { font-size: 36px !important; line-height: 1.2 !important; }
    .fadeslider_area h3 { font-size: 12px !important; letter-spacing: 2px !important; }
    .fadeslider_area p   { font-size: 14px !important; margin-bottom: 18px !important; }

    /* Sections */
    .section-padding { padding: 55px 0; }
    .dn-page-banner { padding: 60px 0; }
    .dn-page-banner h1 { font-size: 28px; }
    .dn-counter-section { padding: 45px 0; }
    .dn-counter-box .count-number { font-size: 38px; }
    .dn-counter-box::after { display: none; }

    /* CTA section — stack vertically */
    .dn-cta-inner { flex-direction: column; }
    .dn-cta-left {
        padding: 50px 35px 40px;
        border-right: none;
        border-bottom: 1px solid rgba(200,169,110,.15);
    }
    .dn-cta-left h2 { font-size: 28px; }
    .dn-cta-right { width: 100%; padding: 35px; flex-direction: row; flex-wrap: wrap; gap: 20px; }
    .dn-cta-info-item { flex: 1; min-width: 200px; }
    .dn-cta-divider { display: none; }
}

/* ---------- 767px — large mobile ---------- */
@media (max-width: 767px) {
    /* Why Choose Us */
    .dn-why-badge { right: 15px; bottom: 15px; width: 76px; height: 76px; font-size: 11px; }
    .dn-why-badge i { font-size: 16px; }
    .dn-why-item { padding: 14px 16px; }
    .dn-why-icon { width: 42px; height: 42px; }
    .dn-why-icon i { font-size: 18px; }

    /* Doctor badge */
    .dn-doc-exp-badge { left: 10px; bottom: 16px; padding: 10px 14px; min-width: 76px; }
    .dn-doc-exp-badge .num { font-size: 22px; }
    .dn-doc-exp-badge .lbl { font-size: 10px; }

    /* Features wrap */
    .dn-features-wrap { padding: 28px 0 10px; }

    /* Slider buttons */
    .dn-slider-btns { gap: 10px; }
    .dn-btn-outline-white { padding: 8px 16px; font-size: 13px; }
    /* Slider */
    .fadeslider_area,
    .fadeslider_area .owl-item,
    .slide-img-1, .slide-img-2, .slide-img-3 {
        height: 65vh !important;
        min-height: 380px;
    }
    .fadeslider_area .middle { top: 55% !important; padding: 0 20px; }
    .fadeslider_area h1 { font-size: 26px !important; line-height: 1.25 !important; }
    .fadeslider_area h3 { font-size: 11px !important; }
    .fadeslider_area p   { font-size: 13px !important; margin-bottom: 16px !important; }
    .fadeslider_area .col-md-9, .fadeslider_area .col-md-10, .fadeslider_area .col-lg-7 {
        text-align: center !important;
    }
    .fadeslider_area .owl-nav .owl-prev,
    .fadeslider_area .owl-nav .owl-next {
        width: 38px; height: 38px; font-size: 14px; line-height: 38px;
    }
    .fadeslider_area .owl-nav .owl-prev { left: 10px; }
    .fadeslider_area .owl-nav .owl-next { right: 10px; }

    /* Feature boxes — 2 per row on mobile */
    .dn-feature-box { padding: 22px 14px; margin-bottom: 16px; }
    .dn-feature-box .icon { width: 60px; height: 60px; }
    .dn-feature-box .icon i { font-size: 24px; }
    .dn-feature-box h4 { font-size: 14px; }

    /* Counter — 2 per row */
    .dn-counter-box .count-number { font-size: 30px; }
    .dn-counter-box .count-title { font-size: 10px; letter-spacing: 1px; }
    .dn-counter-box .count-plus { font-size: 22px; }

    /* Gallery */
    .dn-gallery-item img { height: 180px; }

    /* Blog */
    .dn-blog-card .blog-img { height: 190px; }

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

    /* Page banner */
    .dn-page-banner { padding: 45px 0; }
    .dn-page-banner h1 { font-size: 22px; }

    /* Sections */
    .section-padding { padding: 45px 0; }

    /* CTA */
    .dn-cta-left { padding: 40px 24px; }
    .dn-cta-left h2 { font-size: 24px; }
    .dn-cta-left p { font-size: 14px; }
    .dn-cta-right { padding: 28px 24px; gap: 16px; }
    .dn-cta-btns { flex-direction: column; gap: 10px; }
    .dn-cta-btn-primary, .dn-cta-btn-outline { justify-content: center; width: 100%; }

    /* Services overlay: always show content on touch/mobile */
    .dental-services .item-block .con {
        bottom: 0 !important;
        background: linear-gradient(to bottom, transparent 0%, rgba(26,18,9,.92) 30%);
    }
    .dental-services .item-block .position-re.o-hidden { height: 260px; }

    /* Testimonials card: stack vertically */
    .testimonial-block-outer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 28px 22px;
        gap: 18px;
    }

    /* About section: fix image grid on mobile */
    .aboutcom .col-6:first-child,
    .aboutcom .col-6:last-child {
        flex: 0 0 50%;
        max-width: 50%;
    }

    /* Footer columns */
    .footer-link, .footer-address { margin-bottom: 10px; }
}

/* ---------- 576px — small mobile ---------- */
@media (max-width: 576px) {
    /* Why Choose Us — badge inside image, no overflow */
    .dn-why-badge { position: static; margin: -45px auto 16px; }
    .dn-why-img-wrap { text-align: center; }
    .dn-why-list { gap: 14px; }

    /* Doctor badge — stay in bottom left */
    .dn-doc-exp-badge { left: 6px; bottom: 10px; }

    /* Slider buttons stack on phone */
    .dn-slider-btns { flex-direction: column; align-items: center; gap: 8px; }
    .theme-btn-2.btn-md, .dn-btn-outline-white { width: 100%; justify-content: center; text-align: center; }

    /* Appt form */
    .dn-appt-form-wrap { padding: 22px 18px; }

    /* Logo */
    .dn-logo-img { max-height: 44px; }
    .main-header.scrolled .dn-logo-img { max-height: 68px; }

    /* About section: stack images on small phones */
    .aboutcom .row { flex-direction: column; }
    .aboutcom .col-6 { flex: 0 0 100% !important; max-width: 100% !important; margin-bottom: 12px; }
    .aboutcom .col-6 .d-flex { flex-direction: row !important; gap: 12px !important; }
    .aboutcom .col-6 .d-flex > div { flex: 1; }
    .experince-box { min-height: 100px !important; }

    /* Testimonials — full width card */
    .testimonial-block-outer { padding: 22px 16px; }
    .testimonial-block-outer .border-box { width: 64px; height: 64px; }

    /* Services carousel card on phone */
    .dental-services .item-block .position-re.o-hidden { height: 220px; }
    .dental-services .item-block .con { padding: 16px 14px 14px; }
    .dental-services .item-block .con .icon { width: 52px; height: 52px; margin-bottom: 8px; }
    .dental-services .item-block .con .icon i { font-size: 19px; }
    .dental-services .item-block .con h5 { font-size: 15px; }

    /* Nav appt button full width on small phone */
    .dn-nav-appt-btn { margin: 10px 14px 16px; }

    /* Slider */
    .fadeslider_area,
    .fadeslider_area .owl-item,
    .slide-img-1, .slide-img-2, .slide-img-3 {
        height: 60vh !important;
        min-height: 340px;
    }
    .fadeslider_area h1 { font-size: 21px !important; line-height: 1.3 !important; }
    .fadeslider_area h3 { display: none !important; }
    .fadeslider_area p   { font-size: 12.5px !important; margin-bottom: 14px !important; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    /* Align all slides center on phone */
    .fadeslider_area .text-right { text-align: center !important; }
    .fadeslider_area .justify-content-end { justify-content: center !important; }
    /* Slider buttons smaller */
    .fadeslider_area .animated { animation: none !important; }

    /* Sections */
    .section-padding { padding: 35px 0; }

    /* Page banner */
    .dn-page-banner { padding: 36px 0; }
    .dn-page-banner h1 { font-size: 20px; }

    /* Counter */
    .dn-counter-section { padding: 36px 0; }
    .dn-counter-box { padding: 12px 5px; }
    .dn-counter-box .count-number { font-size: 26px; }
    .dn-counter-box .count-icon { display: none; }

    /* Feature boxes */
    .dn-feature-box { padding: 18px 12px; }

    /* About experience box */
    .experince-box .ex-year h1 { font-size: 48px; }

    /* CTA */
    .dn-cta-left { padding: 32px 20px; }
    .dn-cta-left h2 { font-size: 20px; }
    .dn-cta-right { padding: 24px 20px; }
    .dn-cta-info-item { min-width: 100%; }

    /* Contact cards */
    .dn-contact-info-card { padding: 20px 18px; }

    /* WhatsApp float */
    .dn-whatsapp { width: 48px; height: 48px; font-size: 22px; bottom: 18px; right: 16px; }

    /* Appointment form */
    .appointment-form .form-control { font-size: 13px; padding: 10px 12px; }

    /* Blog/service sidebar */
    .dn-sidebar-widget { padding: 18px; }

    /* Footer */
    .footer_area { padding: 40px 0 20px !important; }
}

/* ---------- 400px — very small phones ---------- */
@media (max-width: 400px) {
    .fadeslider_area h1 { font-size: 18px !important; }
    .dn-cta-left h2 { font-size: 18px; }
    .dn-page-banner h1 { font-size: 17px; }
    .dn-counter-box .count-number { font-size: 22px; }
    .dn-nav-wrap { height: 60px; }
    .dn-logo-img { max-height: 68px; }
}

/* ============================================================
   INNER PAGES — BLOG-DETAILS / SERVICE-DETAILS / CONTACT
   ============================================================ */
/* Blog/service sidebar stacks below content on mobile */
@media (max-width: 991px) {
    .col-lg-8.col-md-12,
    .col-lg-4.col-md-12 { margin-bottom: 24px; }
    /* Contact map */
    iframe { width: 100% !important; }
}

/* Blog detail post meta wraps properly */
@media (max-width: 576px) {
    .dn-detail-content h1 { font-size: 20px !important; }
    .dn-detail-content h2 { font-size: 17px !important; }
    .dn-detail-content p  { font-size: 14px; }
    /* Page banner title small */
    .dn-page-banner h1[style*="30px"] { font-size: 18px !important; }
    /* Footer cols full width */
    .col-lg-4.col-md-12.mb-4,
    .col-lg-2.col-md-4.col-6.mb-4,
    .col-lg-3.col-md-4.col-6.mb-4,
    .col-lg-3.col-md-4.col-12.mb-4 { margin-bottom: 20px; }
}
