/* ============================================================
   Dr. Manish Pradhananga — Orthopedic & Trauma Surgeon
   Premium Personal Medical Website
   ============================================================ */

/* ROOT VARIABLES */
:root {
    --primary: #0B6670;
    --primary-dark: #083F46;
    --secondary: #1C4966;
    --accent: #C6A15B;
    --light-blue: #EAF6F8;
    --background: #F7FAFB;
    --white: #FFFFFF;
    --text: #1B2936;
    --muted: #667085;
    --border: #E5E7EB;
    --shadow-sm: 0 2px 8px rgba(8, 63, 70, 0.06);
    --shadow-md: 0 12px 32px rgba(8, 63, 70, 0.1);
    --shadow-lg: 0 24px 56px rgba(8, 63, 70, 0.16);
    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 28px;
    --font-body: 'Inter', 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: var(--primary); transition: color .25s var(--ease); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; padding: 0; margin: 0; }
p { margin: 0 0 1rem; }

/* GLOBAL */
.section { padding: 90px 0; position: relative; }
.section-bg { background: var(--background); }
.section-light { background: var(--light-blue); }
.section-dark {
    background: linear-gradient(140deg, var(--primary-dark) 0%, var(--secondary) 100%);
    color: var(--white);
}
.section-head { margin-bottom: 48px; }
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 14px;
}
.section-eyebrow::before {
    content: "";
    width: 26px; height: 2px;
    background: var(--accent);
    display: inline-block;
}
.section-dark .section-eyebrow { color: #BFE3E8; }
.section-title { font-weight: 700; color: var(--text); letter-spacing: -0.02em; line-height: 1.15; }
.section-dark .section-title { color: var(--white); }
.section-title.display-5 { font-size: clamp(1.9rem, 3.2vw, 2.7rem); }
.section-sub { color: var(--muted); max-width: 680px; }
.section-dark .section-sub { color: rgba(255, 255, 255, 0.78); }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-body); color: var(--text); }
.lead { font-size: 1.12rem; }
.text-muted { color: var(--muted) !important; }
.text-accent { color: var(--accent) !important; }
.text-primary-brand { color: var(--primary) !important; }
.small-label {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--primary);
}
.light-label { color: #BFE3E8; }

/* BUTTONS */
.btn {
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: .01em;
    padding: .72rem 1.6rem;
    transition: all .3s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    min-height: 46px;
}
.btn-primary-brand {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: var(--white);
}
.btn-primary-brand:hover, .btn-primary-brand:focus {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-outline-brand {
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
}
.btn-outline-brand:hover, .btn-outline-brand:focus {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-accent { background: var(--accent); border: 1px solid var(--accent); color: var(--white); }
.btn-accent:hover { background: #b28f4a; border-color: #b28f4a; color: var(--white); }
.btn-white-outline { background: transparent; border: 1.5px solid rgba(255,255,255,.55); color: var(--white); }
.btn-white-outline:hover { background: var(--white); color: var(--primary-dark); }
.btn-light-soft { background: var(--white); border: 1px solid var(--border); color: var(--text); }
.btn-light-soft:hover { background: var(--light-blue); border-color: var(--primary); color: var(--primary); }
.btn-link-arrow { padding: 0; border: none; background: none; color: var(--primary); font-weight: 600; gap: .4rem; min-height: auto; }
.btn-link-arrow:hover { color: var(--primary-dark); gap: .7rem; }

/* TOP BAR */
.topbar {
    background: var(--primary-dark);
    color: rgba(255,255,255,.85);
    font-size: .82rem;
    padding: 8px 0;
}
.topbar a { color: var(--white); font-weight: 600; }
.topbar a:hover { color: var(--accent); }
.topbar .bi { color: var(--accent); }
.topbar-wrap { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

/* NAVBAR */
.navbar-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.05;
    padding: 0;
    margin-right: 1rem;
}
.navbar-brand .brand-name {
    font-size: 1.18rem;
    font-weight: 800;
    letter-spacing: .02em;
    color: var(--text);
    line-height: 1.1;
}
.navbar-brand .brand-name span { color: var(--primary); }
.navbar-brand .brand-sub {
    font-size: .52rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 5px;
    line-height: 1.5;
}
.navbar {
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding-top: .8rem;
    padding-bottom: .8rem;
    transition: box-shadow .3s, padding .3s;
}
.navbar.navbar-scrolled { box-shadow: var(--shadow-md); }
.navbar .nav-link {
    font-weight: 600;
    color: var(--text);
    font-size: .92rem;
    padding: .5rem .85rem !important;
    position: relative;
}
.navbar .nav-link::after {
    content: "";
    position: absolute;
    left: .85rem; right: .85rem; bottom: .25rem;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ease);
}
.navbar .nav-link:hover, .navbar .nav-link.active { color: var(--primary); }
.navbar .nav-link:hover::after, .navbar .nav-link.active::after { transform: scaleX(1); }
.navbar .nav-cta { min-height: 44px; padding: .55rem 1.2rem; font-size: .9rem; }
.navbar-toggler { border: 1.5px solid var(--border); padding: .45rem .65rem; border-radius: 10px; }
.navbar-toggler:focus { box-shadow: 0 0 0 .2rem rgba(11,102,112,.12); }
.navbar-toggler-icon { width: 1.35em; height: 1.35em; }
.nav-phone-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--light-blue); color: var(--primary);
    font-size: 1.15rem;
    transition: all .25s var(--ease);
}
.nav-phone-icon:hover { background: var(--primary); color: var(--white); }

/* HERO */
.hero {
    position: relative;
    background: var(--background);
    overflow: hidden;
    padding: 90px 0 70px;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(640px 420px at 88% 12%, rgba(11,102,112,.08), transparent 60%),
        radial-gradient(520px 420px at 4% 88%, rgba(198,161,91,.08), transparent 60%);
    pointer-events: none;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(11,102,112,.045) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(11,102,112,.045) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at center, #000 40%, transparent 78%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 78%);
    pointer-events: none;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--light-blue);
    color: var(--primary);
    border: 1px solid #cde8ec;
    border-radius: 999px;
    padding: .45rem 1rem;
    font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    margin-bottom: 22px;
}
.hero h1 {
    font-size: clamp(2.4rem, 5.4vw, 3.9rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.08;
    color: var(--text);
    margin-bottom: 22px;
}
.hero h1 .accent-line { color: var(--primary); position: relative; display: inline-block; }
.hero p.lead { color: var(--muted); max-width: 560px; }
.hero-feature {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px 22px;
    box-shadow: var(--shadow-sm);
    margin-top: 8px;
}
.hero-feature .pill {
    align-self: flex-start;
    background: var(--primary);
    color: var(--white);
    font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    border-radius: 999px;
    padding: .32rem .8rem;
}
.hero-feature .sub { font-size: 1.02rem; font-weight: 700; color: var(--text); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 34px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; font-size: .86rem; color: var(--muted); font-weight: 500; }
.hero-trust .bi { color: var(--primary); }

/* HERO VISUAL / PORTRAIT FRAME */
.hero-visual { position: relative; }
.portrait-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--light-blue);
    border: 1px solid #d5edf1;
    box-shadow: var(--shadow-lg);
}
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; }

/* HERO CAROUSEL */
.portrait-frame.carousel { height: auto; }
.portrait-frame .carousel-inner { height: 100%; }
.portrait-frame .carousel-item { height: 100%; }
.portrait-frame .carousel-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; }
.portrait-frame .carousel-indicators { margin-bottom: 14px; gap: 6px; }
.portrait-frame .carousel-indicators [data-bs-target] {
    width: 10px; height: 10px; border-radius: 50%;
    background-color: var(--white);
    border: 1px solid var(--primary);
    opacity: .55;
}
.portrait-frame .carousel-indicators .active { opacity: 1; background-color: var(--primary); }
.portrait-frame .carousel-control-prev,
.portrait-frame .carousel-control-next {
    width: 15%; opacity: 0;
    transition: opacity .3s ease;
}
.portrait-frame:hover .carousel-control-prev,
.portrait-frame:hover .carousel-control-next { opacity: 1; }
.portrait-frame .carousel-control-prev-icon,
.portrait-frame .carousel-control-next-icon {
    width: 42px; height: 42px;
    background-color: rgba(255,255,255,.85);
    background-size: 50%;
    border-radius: 50%;
    border: 1px solid var(--primary);
    box-shadow: var(--shadow-md);
}
.portrait-frame .carousel-control-prev-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230B6670'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e"); }
.portrait-frame .carousel-control-next-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230B6670'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); }
.portrait-placeholder {
    aspect-ratio: 4 / 5;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
    text-align: center;
    padding: 40px;
    background:
        radial-gradient(300px 220px at 80% 18%, rgba(11,102,112,.12), transparent 60%),
        radial-gradient(260px 220px at 10% 85%, rgba(198,161,91,.14), transparent 60%),
        var(--light-blue);
}
.portrait-placeholder .ph-icon {
    font-size: 4.4rem;
    color: var(--primary);
    opacity: .55;
}
.portrait-placeholder .ph-label {
    font-size: .8rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
    color: var(--primary);
}
.portrait-placeholder .ph-note {
    font-size: .78rem; color: var(--muted); max-width: 240px;
}
.float-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    padding: 14px 18px;
    display: flex; align-items: center; gap: 12px;
    animation: float 6s ease-in-out infinite;
}
.float-card .fc-icon {
    width: 44px; height: 44px; flex: 0 0 44px;
    border-radius: 12px;
    background: var(--light-blue);
    color: var(--primary);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.25rem;
}
.float-card .fc-title { font-size: .82rem; font-weight: 700; color: var(--text); line-height: 1.2; }
.float-card .fc-sub { font-size: .72rem; color: var(--muted); }
.float-card.fc-1 { bottom: 34px; left: -30px; }
.float-card.fc-2 { top: 30px; right: -24px; animation-delay: 1.6s; }
.hero-knee-mark {
    position: absolute;
    right: -14px; bottom: -18px;
    width: 120px; height: 120px;
    color: rgba(11,102,112,.14);
}
@media (max-width: 991.98px) {
    .hero { padding: 56px 0 60px; }
    .float-card.fc-1 { left: 8px; }
    .float-card.fc-2 { right: 8px; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* CREDENTIAL CARDS */
.credential-grid { margin-top: -10px; }
.cred-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 26px;
    height: 100%;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
    position: relative;
    overflow: hidden;
}
.cred-card::before {
    content: "";
    position: absolute; top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease);
}
.cred-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.cred-card:hover::before { transform: scaleX(1); }
.cred-icon {
    width: 54px; height: 54px;
    border-radius: 14px;
    background: var(--light-blue);
    color: var(--primary);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
}
.cred-card h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: 10px; }
.cred-card p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ABOUT SPLIT */
.about-media { position: relative; }
.about-media .portrait-frame { border-radius: var(--radius-lg); }
.about-exp-card {
    position: absolute;
    bottom: 26px; right: -18px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    padding: 20px 26px;
    box-shadow: var(--shadow-lg);
}
.about-exp-card .num { font-size: 2.1rem; font-weight: 800; line-height: 1; color: var(--accent); }
.about-exp-card .txt { font-size: .82rem; opacity: .92; margin-top: 6px; line-height: 1.35; }
.about-check { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.about-check .bi { color: var(--primary); font-size: 1.15rem; margin-top: 2px; flex: 0 0 auto; }
.about-check p { color: var(--muted); font-size: .95rem; margin: 0; }

/* FEATURED SPECIALTY */
.specialty-panel {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    position: relative;
}
.specialty-knee {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(150deg, var(--light-blue), #d9f1f5);
    border: 1px solid #cde8ec;
    min-height: 420px;
    display: flex; align-items: center; justify-content: center;
}
.specialty-knee svg { width: 82%; height: auto; }
.specialty-step { display: flex; gap: 14px; margin-bottom: 20px; }
.specialty-step .snum {
    flex: 0 0 40px; width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--light-blue);
    color: var(--primary);
    font-weight: 700;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: .92rem;
}
.specialty-step h4 { font-size: 1.02rem; font-weight: 700; margin-bottom: 4px; }
.specialty-step p { color: var(--muted); font-size: .93rem; margin: 0; }

/* EXPERTISE CARDS */
.expert-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all .35s var(--ease);
}
.expert-card::after {
    content: "";
    position: absolute; right: -40px; bottom: -40px;
    width: 130px; height: 130px;
    border-radius: 50%;
    background: rgba(11,102,112,.05);
    transition: transform .4s var(--ease);
}
.expert-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.expert-card:hover::after { transform: scale(1.5); }
.expert-card .num-label {
    position: absolute; top: 22px; right: 26px;
    font-size: 2.4rem; font-weight: 800;
    color: var(--border);
    line-height: 1;
}
.expert-card h3 { font-size: 1.22rem; font-weight: 700; margin: 16px 0 10px; }
.expert-card p { color: var(--muted); font-size: .95rem; margin-bottom: 16px; }

/* SERVICE CARDS */
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    height: 100%;
    transition: all .35s var(--ease);
    display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--light-blue);
    color: var(--primary);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
    transition: all .35s var(--ease);
}
.service-card:hover .service-icon { background: var(--primary); color: var(--white); }
.service-card h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: .92rem; margin-bottom: 14px; flex: 1; }

/* CONDITIONS */
.condition-chip {
    display: inline-block;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 18px;
    font-weight: 600;
    color: var(--text);
    font-size: .92rem;
    transition: all .25s var(--ease);
}
.condition-chip:hover, .condition-chip.active { background: var(--primary); border-color: var(--primary); color: var(--white); transform: translateY(-2px); }
.condition-group h3 {
    font-size: 1.05rem; font-weight: 700;
    display: flex; align-items: center; gap: 10px;
    color: var(--primary);
    margin-bottom: 16px;
}
.condition-group h3 .bi { color: var(--accent); }
.condition-group ul li { padding: 8px 0; border-bottom: 1px dashed var(--border); font-size: .95rem; color: var(--text); }
.condition-group ul li:last-child { border-bottom: none; }
.condition-group ul li a { color: var(--text); display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.condition-group ul li a:hover { color: var(--primary); }
.condition-group ul li .bi { color: var(--border); transition: all .25s; }
.condition-group ul li a:hover .bi { color: var(--primary); transform: translateX(3px); }

/* PATIENT JOURNEY TIMELINE */
.journey-line { position: relative; padding: 20px 0; }
.journey-line::before {
    content: "";
    position: absolute; top: 40px; bottom: 40px; left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, var(--primary), var(--accent));
    opacity: .35;
}
.journey-step {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 36px;
    position: relative;
}
.journey-step .jnum {
    flex: 0 0 76px; width: 76px; height: 76px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary);
    color: var(--primary);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.5rem; font-weight: 800;
    box-shadow: var(--shadow-sm);
    position: relative; z-index: 1;
}
.journey-step .jcard {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 26px;
    box-shadow: var(--shadow-sm);
    flex: 1;
    max-width: 420px;
}
.journey-step .jcard h4 { font-size: 1.12rem; font-weight: 700; margin-bottom: 4px; }
.journey-step .jcard p { color: var(--muted); font-size: .92rem; margin: 0; }
.journey-step:nth-child(odd) { flex-direction: row; }
.journey-step:nth-child(even) { flex-direction: row-reverse; }
@media (max-width: 767.98px) {
    .journey-line::before { left: 38px; top: 30px; }
    .journey-step, .journey-step:nth-child(odd), .journey-step:nth-child(even) { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 26px; }
    .journey-step .jcard { max-width: 100%; }
}

/* WHY PERSONALIZED */
.why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 34px 28px;
    height: 100%;
    text-align: center;
    transition: all .35s var(--ease);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-card .why-num {
    width: 52px; height: 52px; margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-weight: 800;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}
.why-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.why-card p { color: var(--muted); font-size: .93rem; margin: 0; }

/* CTA BAND */
.section.pt-0 { padding-top: 0; }
.section.pb-0 { padding-bottom: 0; }
.cta-band {
    background: linear-gradient(140deg, var(--primary-dark) 0%, var(--primary) 55%, var(--secondary) 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 60px 48px;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: "";
    position: absolute; right: -70px; top: -70px;
    width: 260px; height: 260px;
    border-radius: 50%;
    border: 42px solid rgba(255,255,255,.06);
}
.cta-band::after {
    content: "";
    position: absolute; left: 30%; bottom: -90px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
}
.cta-band h2 { color: var(--white); font-weight: 800; letter-spacing: -0.02em; }
.cta-band p { color: rgba(255,255,255,.8); }
@media (max-width: 575.98px) {
    .cta-band { padding: 40px 26px; }
    .cta-band .btn { width: 100%; justify-content: center; }
}

/* DISCLAIMER NOTE */
.disclaimer-note {
    background: var(--light-blue);
    border-left: 3px solid var(--primary);
    border-radius: var(--radius-sm);
    padding: 16px 22px;
    font-size: .88rem;
    color: var(--secondary);
    margin-top: 34px;
}
.disclaimer-note .bi { color: var(--primary); }

/* PAGE HERO (inner pages) */
.page-hero {
    position: relative;
    background:
        radial-gradient(560px 340px at 90% 10%, rgba(11,102,112,.1), transparent 60%),
        radial-gradient(460px 340px at 5% 90%, rgba(198,161,91,.1), transparent 60%),
        var(--background);
    border-bottom: 1px solid var(--border);
    padding: 76px 0 60px;
    overflow: hidden;
}
.page-hero .page-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(11,102,112,.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(11,102,112,.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    pointer-events: none;
}
.page-hero h1 { font-size: clamp(2rem, 4.4vw, 3.1rem); font-weight: 800; letter-spacing: -0.03em; color: var(--text); }
.page-hero .breadcrumb { background: none; margin: 14px 0 0; --bs-breadcrumb-divider-color: var(--muted); }
.page-hero .breadcrumb a { color: var(--primary); }
.page-hero .breadcrumb .active { color: var(--muted); }

/* SIDE CONTENT */
.info-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}
.info-box h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 16px; }
.info-list li {
    display: flex; gap: 12px; align-items: flex-start;
    padding: 10px 0; border-bottom: 1px dashed var(--border); font-size: .93rem;
}
.info-list li:last-child { border: none; }
.info-list .bi { color: var(--primary); margin-top: 3px; }
.quick-links li a { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed var(--border); font-weight: 600; color: var(--text); font-size: .93rem; }
.quick-links li:last-child a { border: none; }
.quick-links li a:hover { color: var(--primary); padding-left: 6px; }
.quick-links .bi { color: var(--accent); }

/* ARTICLE BODY */
.prose h2 { font-size: 1.5rem; font-weight: 700; margin: 34px 0 16px; letter-spacing: -0.01em; }
.prose h3 { font-size: 1.2rem; font-weight: 700; margin: 28px 0 12px; }
.prose p { color: #2c3a47; font-size: 1.02rem; }
.prose ul { padding-left: 22px; list-style: none; }
.prose ul li { position: relative; padding-left: 24px; margin-bottom: 10px; color: #2c3a47; }
.prose ul li::before {
    content: "";
    position: absolute; left: 0; top: .62em;
    width: 9px; height: 9px; border-radius: 2px;
    background: var(--primary);
}
.prose .lead { color: var(--muted); }
.callout {
    background: var(--light-blue);
    border-radius: var(--radius);
    padding: 26px 30px;
    border-left: 4px solid var(--primary);
    margin: 26px 0;
}
.callout h5 { font-weight: 700; color: var(--primary); }
.callout p { color: var(--secondary); margin: 0; font-size: .98rem; }

/* FORMS */
.form-control, .form-select {
    border-radius: 12px;
    border: 1.5px solid var(--border);
    padding: .7rem 1rem;
    font-size: .95rem;
    background-color: var(--white);
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 .2rem rgba(11,102,112,.12);
}
.form-label { font-weight: 600; font-size: .88rem; color: var(--text); margin-bottom: 6px; }
.form-section-title { font-weight: 700; font-size: 1.05rem; color: var(--text); margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.form-section-title .bi { color: var(--primary); }

/* APPOINTMENT PAGE */
.appointment-form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow-lg);
}
.appointment-info-card {
    background: linear-gradient(150deg, var(--primary-dark), var(--secondary));
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.appointment-info-card::after {
    content: "";
    position: absolute; right: -60px; top: -60px;
    width: 200px; height: 200px; border-radius: 50%;
    border: 30px solid rgba(255,255,255,.06);
}
.appointment-info-card h3 { color: var(--white); font-weight: 700; }
.appointment-info-card .ai-item { display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start; }
.appointment-info-card .ai-icon {
    flex: 0 0 46px; width: 46px; height: 46px;
    border-radius: 13px;
    background: rgba(255,255,255,.1);
    color: var(--accent);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}
.appointment-info-card .ai-label { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; opacity: .75; }
.appointment-info-card .ai-value { font-weight: 600; font-size: 1.02rem; }
.appointment-info-card a { color: var(--white); }

/* TESTIMONIALS */
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    position: relative;
}
.testimonial-card .quote-mark {
    font-size: 3rem; line-height: 1;
    color: var(--accent);
    font-family: Georgia, serif;
    margin-bottom: 6px;
}
.testimonial-card p { color: var(--text); font-size: .97rem; }
.testimonial-meta { display: flex; align-items: center; gap: 14px; border-top: 1px dashed var(--border); padding-top: 18px; margin-top: 6px; }
.testimonial-meta .avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--primary); color: var(--white);
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700;
}
.testimonial-meta .t-name { font-weight: 700; font-size: .95rem; }
.testimonial-meta .t-sub { font-size: .8rem; color: var(--muted); }
.testimonial-placeholder {
    text-align: center;
    background: var(--white);
    border: 1px dashed var(--border);
    border-radius: var(--radius);
    padding: 70px 30px;
    color: var(--muted);
}

/* FAQ */
.accordion-item { border: 1px solid var(--border); border-radius: var(--radius) !important; overflow: hidden; margin-bottom: 14px; background: var(--white); }
.accordion-button { font-weight: 700; color: var(--text); font-size: 1rem; padding: 1.1rem 1.4rem; background: var(--white); }
.accordion-button:not(.collapsed) { color: var(--primary); background: var(--light-blue); box-shadow: none; }
.accordion-button:focus { box-shadow: 0 0 0 .2rem rgba(11,102,112,.12); }
.accordion-body { color: var(--muted); font-size: .97rem; }

/* GALLERY */
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    display: block;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.gallery-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.gallery-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(8,63,70,.85));
    display: flex; align-items: flex-end;
    padding: 18px;
    opacity: 0;
    transition: opacity .35s var(--ease);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item .g-title { color: var(--white); font-weight: 700; font-size: .95rem; }
.gallery-item .g-icon { position: absolute; top: 14px; right: 14px; color: var(--white); opacity: 0; transition: opacity .35s; font-size: 1.3rem; }
.gallery-item:hover .g-icon { opacity: 1; }

/* BLOG */
.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    display: flex; flex-direction: column;
    transition: all .35s var(--ease);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.blog-card .blog-img { overflow: hidden; }
.blog-card .blog-img img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform .6s var(--ease); }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-card .blog-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card .blog-cat {
    align-self: flex-start;
    background: var(--light-blue);
    color: var(--primary);
    font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    border-radius: 999px; padding: .3rem .8rem; margin-bottom: 14px;
}
.blog-card h3 { font-size: 1.12rem; font-weight: 700; line-height: 1.35; margin-bottom: 10px; }
.blog-card h3 a { color: var(--text); }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card p { color: var(--muted); font-size: .92rem; flex: 1; }
.blog-meta { display: flex; gap: 16px; font-size: .8rem; color: var(--muted); border-top: 1px dashed var(--border); padding-top: 14px; }
.blog-meta .bi { color: var(--primary); }

/* RELATED / SIDEBAR */
.sidebar-widget { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); margin-bottom: 24px; }
.sidebar-widget h4 { font-size: 1rem; font-weight: 700; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px dashed var(--border); }
.sidebar-article { display: flex; gap: 14px; margin-bottom: 16px; align-items: center; }
.sidebar-article img { width: 74px; height: 58px; border-radius: 10px; object-fit: cover; flex: 0 0 74px; }
.sidebar-article .sa-title { font-size: .88rem; font-weight: 600; line-height: 1.35; }
.sidebar-article .sa-title a { color: var(--text); }
.sidebar-article .sa-title a:hover { color: var(--primary); }

/* TABLE */
.table-responsive { border-radius: var(--radius); }
.table { --bs-table-hover-bg: var(--light-blue); }
.table thead th { background: var(--primary-dark); color: var(--white); font-size: .85rem; font-weight: 700; letter-spacing: .04em; border: none; }
.table td, .table th { padding: 14px 18px; vertical-align: middle; border-color: var(--border); font-size: .93rem; }

/* FOOTER */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,.72);
    padding: 76px 0 0;
}
.footer-brand .brand-name { color: var(--white); font-size: 1.35rem; font-weight: 800; }
.footer-brand .brand-name span { color: var(--accent); }
.footer-brand .brand-sub { color: var(--accent); font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 700; }
.footer h5 {
    color: var(--white);
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: rgba(255,255,255,.72); font-size: .92rem; }
.footer ul a:hover { color: var(--white); padding-left: 4px; }
.footer ul a .bi { color: var(--accent); margin-right: 8px; font-size: .85rem; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: .93rem; }
.footer-contact .bi { color: var(--accent); margin-top: 3px; }
.footer-contact a { color: rgba(255,255,255,.72); }
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    margin-top: 56px;
    padding: 22px 0;
    font-size: .85rem;
    color: rgba(255,255,255,.55);
}
.footer-bottom a { color: rgba(255,255,255,.75); }
.footer-bottom a:hover { color: var(--accent); }

/* BACK TO TOP */
#backToTop {
    position: fixed;
    right: 22px; bottom: 22px;
    width: 48px; height: 48px;
    border-radius: 14px;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-size: 1.2rem;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0; visibility: hidden; transform: translateY(16px);
    transition: all .35s var(--ease);
    z-index: 1050;
}
#backToTop.show { opacity: 1; visibility: visible; transform: translateY(0); }
#backToTop:hover { background: var(--primary-dark); }

/* ANIMATIONS */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.revealed { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}

/* RESPONSIVE */
@media (max-width: 1199.98px) {
    .hero-feature .sub { font-size: .92rem; }
}
@media (max-width: 991.98px) {
    .section { padding: 64px 0; }
    .about-exp-card { right: 10px; }
    .navbar-collapse { padding-top: 16px; }
    .navbar .nav-link { padding: .7rem .5rem !important; border-bottom: 1px dashed var(--border); }
    .navbar .nav-link::after { display: none; }
    .navbar .nav-cta { margin-top: 10px; width: 100%; justify-content: center; }
    .navbar-nav .btn { width: 100%; justify-content: center; }
    .specialty-panel { padding: 28px; }
}
@media (max-width: 767.98px) {
    .section { padding: 52px 0; }
    .appointment-form-card { padding: 28px 22px; }
    .specialty-panel { padding: 22px; }
    .float-card.fc-2 { display: none; }
    .topbar .topbar-left { display: none; }
    .topbar-wrap { justify-content: center; }
}
@media (max-width: 479.98px) {
    .hero h1 { font-size: 2.15rem; }
    .cta-band h2 { font-size: 1.6rem; }
    .navbar-brand .brand-name { font-size: 1.02rem; }
    .btn { padding: .65rem 1.2rem; }
}

/* ============================================================
   HOMEPAGE V2 COMPONENTS
   ============================================================ */

/* HERO: SUBTITLE / FELLOWSHIP / TAGLINE */
.hero-subtitle {
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}
.hero-fellowship {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.6;
    margin-bottom: 0;
}
.hero-fellowship .bi { color: var(--accent); margin-top: 4px; flex: 0 0 auto; }
.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border: 1px solid #cde8ec;
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    padding: 14px 20px;
    margin-top: 20px;
    box-shadow: var(--shadow-sm);
    max-width: 100%;
}
.hero-tagline .ht-icon {
    width: 42px; height: 42px; flex: 0 0 42px;
    border-radius: 50%;
    background: var(--light-blue);
    color: var(--primary);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}
.hero-tagline .ht-label {
    display: block;
    font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 2px;
}
.hero-tagline .ht-text {
    display: block;
    font-weight: 700;
    font-size: .98rem;
    color: var(--text);
    line-height: 1.4;
}

/* WHATSAPP BUTTON */
.btn-whatsapp {
    background: var(--white);
    border: 1.5px solid #1EBE5D;
    color: #128C46;
}
.btn-whatsapp .bi { color: #25D366; }
.btn-whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-whatsapp:hover .bi { color: var(--white); }

/* STATISTICS */
.stats-section { padding-top: 70px; padding-bottom: 70px; }
.stat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 34px 26px;
    height: 100%;
    text-align: center;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
    position: relative;
    overflow: hidden;
}
.stat-card::before {
    content: "";
    position: absolute; top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease);
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.stat-card:hover::before { transform: scaleX(1); }
.stat-icon {
    width: 56px; height: 56px;
    margin: 0 auto 16px;
    border-radius: 16px;
    background: var(--light-blue);
    color: var(--primary);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
}
.stat-num {
    font-size: clamp(2rem, 3.4vw, 2.6rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.stat-label {
    color: var(--muted);
    font-size: .9rem;
    margin-top: 8px;
    display: block;
    line-height: 1.5;
}
.stat-card-accent {
    background: linear-gradient(160deg, var(--primary-dark), var(--secondary));
    border-color: transparent;
}
.stat-card-accent .stat-icon { background: rgba(255,255,255,.12); color: var(--accent); }
.stat-card-accent .stat-num {
    color: var(--white);
    font-size: 1.15rem;
    letter-spacing: .04em;
    margin-top: 18px;
}
.stat-card-accent .stat-label { color: rgba(255,255,255,.8); }
.stat-card-accent::before { background: linear-gradient(90deg, var(--accent), var(--primary)); }

/* WHY CHOOSE */
.why-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 22px;
    height: 100%;
    transition: all .3s var(--ease);
}
.why-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.why-item .bi { color: var(--primary); font-size: 1.3rem; flex: 0 0 auto; }
.why-item p { margin: 0; font-weight: 600; color: var(--text); font-size: .96rem; line-height: 1.45; }

/* SERVICE GROUPS */
.service-group-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 26px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all .35s var(--ease);
}
.service-group-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-group-card .sg-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: var(--light-blue);
    color: var(--primary);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
    transition: all .35s var(--ease);
}
.service-group-card:hover .sg-icon { background: var(--primary); color: var(--white); }
.service-group-card h3 { font-size: 1.18rem; font-weight: 700; margin-bottom: 14px; }
.service-group-card ul { flex: 1; }
.service-group-card ul li {
    display: flex; align-items: center; gap: 10px;
    padding: 7px 0;
    font-size: .93rem;
    color: var(--text);
    border-bottom: 1px dashed var(--border);
}
.service-group-card ul li:last-child { border-bottom: none; }
.service-group-card ul li .bi { color: var(--primary); }
.service-group-card .btn-link-arrow { margin-top: 14px; align-self: flex-start; }

/* GALLERY SLIDESHOW */
.gallery-slideshow {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    background: var(--white);
    position: relative;
}
.gallery-slideshow .carousel-item { position: relative; }
.gallery-slideshow .carousel-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gallery-caption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, transparent, rgba(8,63,70,.88));
    padding: 44px 24px 18px;
}
.gallery-caption span {
    color: var(--white);
    font-weight: 700;
    font-size: .98rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.gallery-slideshow .carousel-indicators { margin-bottom: 18px; gap: 6px; }
.gallery-slideshow .carousel-indicators [data-bs-target] {
    width: 10px; height: 10px; border-radius: 50%;
    background-color: var(--white);
    border: 1px solid rgba(255,255,255,.6);
    opacity: .6;
}
.gallery-slideshow .carousel-indicators .active { opacity: 1; background-color: var(--white); }
.gallery-slideshow .carousel-control-prev,
.gallery-slideshow .carousel-control-next { width: 12%; opacity: 0; transition: opacity .3s ease; }
.gallery-slideshow:hover .carousel-control-prev,
.gallery-slideshow:hover .carousel-control-next { opacity: 1; }
.gallery-slideshow .carousel-control-prev-icon,
.gallery-slideshow .carousel-control-next-icon {
    width: 44px; height: 44px;
    background-color: rgba(255,255,255,.85);
    background-size: 50%;
    border-radius: 50%;
    border: 1px solid var(--primary);
    box-shadow: var(--shadow-md);
}
.gallery-slideshow .carousel-control-prev-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230B6670'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e"); }
.gallery-slideshow .carousel-control-next-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230B6670'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); }
.gallery-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border);
    color: var(--text);
    font-weight: 500;
    font-size: .97rem;
}
.gallery-list li:last-child { border-bottom: none; }
.gallery-list .bi { color: var(--primary); font-size: 1.1rem; }

/* CONTACT */
.contact-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--radius-lg);
    padding: 34px;
    height: 100%;
    backdrop-filter: blur(6px);
}
.contact-name { color: var(--white); font-weight: 800; font-size: 1.4rem; letter-spacing: -0.01em; }
.contact-role { color: var(--accent); font-size: .9rem; font-weight: 600; margin-bottom: 22px; line-height: 1.5; }
.contact-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 13px 0;
    border-bottom: 1px dashed rgba(255,255,255,.15);
}
.contact-list li:last-child { border-bottom: none; }
.contact-list .bi { color: var(--accent); font-size: 1.2rem; margin-top: 2px; flex: 0 0 auto; }
.contact-list .cl-label {
    display: block;
    font-size: .7rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
    margin-bottom: 2px;
}
.contact-list .cl-value { color: var(--white); font-weight: 600; font-size: .98rem; line-height: 1.45; }
.contact-list .cl-value a { color: var(--white); }
.contact-list .cl-value a:hover { color: var(--accent); }
.contact-social { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.social-btn {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: rgba(255,255,255,.1);
    color: var(--white);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.25rem;
    border: 1px solid rgba(255,255,255,.16);
    transition: all .3s var(--ease);
}
.social-btn:hover { background: var(--accent); color: var(--white); transform: translateY(-3px); }
.social-btn-soon { opacity: .45; pointer-events: none; }
.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: var(--shadow-lg);
    height: 100%;
    min-height: 340px;
}
.contact-map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* FOOTER TAGLINE & SOCIAL */
.footer-tagline {
    background: rgba(255,255,255,.08);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--white);
    font-weight: 600;
    font-size: .92rem;
    font-style: italic;
    margin-top: 18px;
}
.footer-tagline .bi { color: var(--accent); margin-right: 6px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: rgba(255,255,255,.1);
    color: var(--white);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    transition: all .3s var(--ease);
}
.footer-social a:hover { background: var(--accent); color: var(--white); transform: translateY(-3px); }

/* FLOATING WHATSAPP */
.whatsapp-float {
    position: fixed;
    left: 22px; bottom: 22px;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 10px 24px rgba(37, 211, 102, .4);
    z-index: 1050;
    transition: transform .3s var(--ease);
}
.whatsapp-float::before {
    content: "";
    position: absolute; inset: 0;
    border-radius: 50%;
    background: #25D366;
    animation: wa-pulse 2.2s infinite;
    z-index: -1;
}
@keyframes wa-pulse {
    0% { transform: scale(1); opacity: .5; }
    70% { transform: scale(1.5); opacity: 0; }
    100% { opacity: 0; }
}
.whatsapp-float:hover { color: var(--white); transform: scale(1.08); }

/* NEW COMPONENT RESPONSIVE */
@media (max-width: 575.98px) {
    .hero-tagline { padding: 12px 16px; }
    .hero-tagline .ht-text { font-size: .88rem; }
    .contact-card { padding: 26px 22px; }
    .contact-map, .contact-map iframe { min-height: 260px; }
    .whatsapp-float { left: 16px; bottom: 16px; width: 50px; height: 50px; font-size: 1.5rem; }
}
