:root {
    --brand-blue:#2f7d4f;
    --brand-blue-dark:#174d35;
    --brand-blue-soft:#e9f7ef;
    --brand-red:#c7862c;
    --brand-red-dark:#8d5c19;
    --brand-black:#050505;
    --amber:#f2b84b;
    --ink:#111827;
    --muted:#667085;
    --line:#d7e8dd;
    --surface:#f7fbf6;
    --top-strip-height:38px;
    --header-height:87px;
}

* {
    box-sizing:border-box;
}

html {
    scroll-behavior:smooth;
    scroll-padding-top:calc(var(--top-strip-height) + var(--header-height));
}

body {
    font-family:'Poppins', sans-serif;
    color:var(--ink);
    background:var(--surface);
    padding-top:calc(var(--top-strip-height) + var(--header-height));
}

a {
    text-decoration:none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight:600;
}

.floating-actions {
    position:fixed;
    inset:auto 0 24px 0;
    z-index:1090;
    pointer-events:none;
}

.floating-action {
    position:fixed;
    bottom:24px;
    z-index:1090;
    width:56px;
    height:56px;
    display:grid;
    place-items:center;
    border-radius:50%;
    color:#fff;
    font-size:25px;
    box-shadow:0 16px 34px rgba(17,24,39,.22);
    pointer-events:auto;
    transition:transform .24s ease, box-shadow .24s ease;
}

.floating-action:hover,
.floating-action:focus {
    color:#fff;
    transform:translateY(-4px);
    box-shadow:0 20px 42px rgba(17,24,39,.28);
}

.floating-whatsapp {
    left:22px;
    background:#25d366;
}

.floating-call {
    right:22px;
    background:linear-gradient(135deg,var(--brand-blue),var(--brand-blue-dark));
}

.floating-top {
    right:22px;
    bottom:92px;
    background:linear-gradient(135deg,var(--brand-red),var(--brand-red-dark));
    font-size:24px;
}

.section-pad {
    padding:65px 0;
}

.section-title {
    max-width:760px;
    margin:0 auto 42px;
    text-align:center;
}

.section-title span {
    display:inline-flex;
    color:var(--brand-blue);
    font-weight:600;
    font-size:13px;
    letter-spacing:.08em;
    text-transform:uppercase;
    margin-bottom:10px;
}

.section-title h2 {
    font-size:clamp(30px, 4vw, 46px);
    font-weight:600;
    margin-bottom:12px;
}

.section-title p,
.muted {
    color:var(--muted);
}

.btn-green {
    background:linear-gradient(135deg,var(--brand-blue),var(--brand-blue-dark));
    color:#fff;
    border:0;
    box-shadow:0 14px 32px rgba(47,125,79,.22);
    font-size: 1rem;
}

.btn-green:hover,
.btn-green:focus {
    color:#fff;
    background:linear-gradient(135deg,#3b9460,var(--brand-blue-dark));
}

.btn-soft {
    color:var(--brand-blue);
    background:var(--brand-blue-soft);
    border:1px solid #c6e2cf;
}

.btn-soft:hover {
    color:var(--brand-blue-dark);
    background:#dff1e7;
}

.top-strip {
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:1070;
    min-height:var(--top-strip-height);
    background:#1f6843;
    color:#fff;
    font-size:13px;
}

.top-strip .container {
    min-height:var(--top-strip-height);
}

.top-strip a {
    color:#fff;
}

.social-links {
    display:flex;
    align-items:center;
    gap:10px;
}

.social-links a {
    width:32px;
    height:32px;
    display:grid;
    place-items:center;
    border-radius:50%;
    /* background:#fff; */
    box-shadow:0 8px 18px rgba(23,77,53,.14);
    transition:transform .24s ease, box-shadow .24s ease;
}

.social-links a:hover {
    transform:translateY(-2px);
    box-shadow:0 12px 24px rgba(23,77,53,.22);
}

.social-links img {
    width:30px;
    height:30px;
    object-fit:contain;
    display:block;
}

.top-social a {
    width:30px;
    height:30px;
    /* background:rgba(255,255,255,.95); */
}

.top-social img {
    width:30px;
    height:30px;
}

.main-nav {
    position:fixed;
    top:var(--top-strip-height);
    left:0;
    right:0;
    z-index:1060;
    padding:9px 0;
    background:rgba(255,255,255,.92);
    border-bottom:1px solid rgba(215,232,221,.78);
    transition:padding .28s ease, background .28s ease, box-shadow .28s ease, backdrop-filter .28s ease;
}

.main-nav.scrolled {
    padding:7px 0;
    background:rgba(255,255,255,.78);
    backdrop-filter:blur(16px);
    box-shadow:0 16px 42px rgba(23,77,53,.12);
}

.brand-mark {
    width:58px;
    height:58px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#fff;
    border:2px solid #dceee3;
    box-shadow:0 10px 24px rgba(23,77,53,.12);
    transition:width .28s ease, height .28s ease;
}

.brand-mark img {
    width:88px;
    height:88px;
    object-fit:contain;
    border-radius:50%;
}

.main-nav.scrolled .brand-mark {
    width:46px;
    height:46px;
}

.main-nav.scrolled .brand-mark img {
    width:38px;
    height:38px;
}

.navbar-brand {
    color:var(--ink);
    font-weight:600;
}

.brand-copy {
    display:flex;
    flex-direction:column;
    min-width:0;
    line-height:1.16;
    padding-left: 10px;
}

.brand-name {
    font-weight:600;
    color:var(--brand-blue-dark);
    font-size:16px;
}

.brand-doctor {
    color:var(--ink);
    font-size:14px;
    font-weight:600;
}

.brand-meta {
    color:#363636;
    font-size:14px;
    font-weight:600;
}

.nav-link {
    color:#263c31;
    font-weight:600;
    font-size:15px;
}

.nav-link:hover {
    color:var(--brand-blue);
}

.hero {
    background:
        radial-gradient(circle at 12% 18%, rgba(47,125,79,.16), transparent 30%),
        radial-gradient(circle at 82% 24%, rgba(199,134,44,.14), transparent 26%),
        linear-gradient(135deg,#f0f9f2 0%,#fff 48%,#fff8ec 100%);
}

.hero-slide {
    display:flex;
    align-items:center;
    padding:0;
}

.hero-image-stage {
    position:relative;
    width:100%;
    height:min(500px, calc(100vh - 140px));
    min-height:360px;
    display:grid;
    place-items:center;
    overflow:hidden;
    background:
        linear-gradient(135deg,rgba(255,255,255,.86),rgba(233,247,239,.8)),
        #edf8f1;
}

.hero-image-stage img {
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}

.doctor-video img,
.clinic-photo img {
    width:100%;
    height:100%;
    object-fit:cover;
}

.carousel-control-prev,
.carousel-control-next {
    width:44px;
    height:44px;
    top:auto;
    bottom:22px;
    border-radius:50%;
    background:rgba(23,77,53,.86);
}

.carousel-control-prev {
    left:auto;
    right:76px;
}

.carousel-control-next {
    right:22px;
}

.trust-strip {
    margin-top:-34px;
    position:relative;
    z-index:2;
}

.trust-panel {
    border:1px solid rgba(215,232,221,.95);
    border-radius:18px;
    background:rgba(255,255,255,.86);
    backdrop-filter:blur(12px);
    box-shadow:0 20px 56px rgba(23,77,53,.1);
}

.trust-number {
    font-size:28px;
    font-weight:600;
    color:var(--brand-blue);
}

.highlight-line {
    max-width:1040px;
    margin:18px auto 0;
    padding:16px 22px;
    border:1px solid #f2cf8a;
    border-radius:8px;
    text-align:center;
    color:#6b3d00;
    background:linear-gradient(135deg,#fff5d8,#fffaf0);
    box-shadow:0 18px 40px rgba(141,92,25,.14);
    font-size:clamp(17px, 2.6vw, 25px);
    font-weight:600;
    line-height:1.45;
}

.clinic-name-section {
    padding:54px 0 0;
}

.clinic-name-panel {
    max-width:920px;
    margin:0 auto;
    padding:34px 28px;
    border:1px solid var(--line);
    border-radius:8px;
    text-align:center;
    background:
        linear-gradient(135deg,rgba(255,255,255,.96),rgba(233,247,239,.84)),
        #fff;
    box-shadow:0 20px 50px rgba(23,77,53,.1);
}

.clinic-name-panel span {
    display:block;
    color:var(--brand-red);
    font-size:clamp(18px, 3vw, 28px);
    font-weight:600;
    letter-spacing:.04em;
    text-transform:uppercase;
}

.clinic-name-panel h1,
.clinic-name-panel h3 {
    margin:8px 0 0;
    color:var(--brand-blue-dark);
    font-size:clamp(30px, 5vw, 54px);
    font-weight:600;
    line-height:1.08;
    text-transform:uppercase;
}

.services-head {
    display:flex;
    align-items:end;
    justify-content:space-between;
    gap:24px;
    margin-bottom:34px;
}

.services-head .section-title {
    margin:0;
    text-align:left;
}

.service-card {
    position:relative;
    min-height:100%;
    padding:0;
    border:1px solid var(--line);
    border-radius:8px;
    overflow:hidden;
    background:#fff;
    transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.service-card:hover {
    transform:translateY(-10px);
    border-color:#a9d4b8;
    box-shadow:0 24px 58px rgba(23,77,53,.14);
}

.service-icon,
.condition-icon,
.info-icon {
    width:52px;
    height:52px;
    display:grid;
    place-items:center;
    border-radius:14px;
    color:var(--brand-blue);
    background:#e9f7ef;
    font-size:24px;
    margin-bottom:20px;
}

.service-image {
    width:100%;
    aspect-ratio:16 / 9;
    overflow:hidden;
    background:var(--brand-blue-soft);
}

.service-image img {
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .32s ease;
}

.service-card:hover .service-image img {
    transform:scale(1.04);
}

.service-body {
    position:relative;
    z-index:1;
    padding:22px 22px 24px;
}

.service-card h4 {
    color:var(--brand-blue-dark);
    font-weight:600;
    margin-bottom:10px;
}

.service-card p {
    color:var(--muted);
    margin-bottom:18px;
}

.service-read-more {
    position:relative;
    z-index:2;
    min-width:118px;
    font-weight:600;
    border-radius:8px;
    box-shadow:0 12px 26px rgba(47,125,79,.28);
}

.service-card .service-count {
    position:absolute;
    right:24px;
    bottom:18px;
    color:rgba(47,125,79,.14);
    font-size:48px;
    font-weight:600;
}

.timeline-wrap {
    position:relative;
}

.timeline-wrap::before {
    content:"";
    position:absolute;
    top:50px;
    left:8%;
    right:8%;
    height:3px;
    background:linear-gradient(90deg,var(--brand-blue),var(--brand-red),var(--amber));
}

.timeline-step {
    position:relative;
    padding:30px 22px;
    border-radius:18px;
    background:#fff;
    border:1px solid var(--line);
    box-shadow:0 16px 36px rgba(23,77,53,.08);
}

.timeline-dot {
    width:46px;
    height:46px;
    display:grid;
    place-items:center;
    margin:0 auto 18px;
    border-radius:50%;
    color:#fff;
    background:var(--brand-blue);
    font-weight:600;
}

.story-card,
.appointment-panel,
.doctor-panel,
.clinic-panel {
    border:1px solid var(--line);
    border-radius:24px;
    background:#fff;
    box-shadow:0 22px 54px rgba(23,77,53,.1);
}

.testimonial-card {
    min-height:260px;
    padding:30px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    transition:transform .28s ease, box-shadow .28s ease;
}

.testimonial-card:hover {
    transform:translateY(-8px);
    box-shadow:0 28px 62px rgba(23,77,53,.14);
}

.testimonial-mark {
    width:46px;
    height:46px;
    display:grid;
    place-items:center;
    border-radius:50%;
    color:#fff;
    background:linear-gradient(135deg,var(--brand-blue),var(--brand-red));
    font-size:26px;
    font-weight:600;
    margin-bottom:18px;
}

.testimonial-card p {
    color:#34483d;
    line-height:1.8;
}

.testimonial-name {
    color:var(--brand-blue-dark);
    font-weight:600;
}

.youtube-card,
.gallery-item {
    border:1px solid var(--line);
    border-radius:8px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 18px 42px rgba(23,77,53,.09);
    transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.youtube-card:hover,
.gallery-item:hover {
    transform:translateY(-6px);
    border-color:#a9d4b8;
    box-shadow:0 24px 58px rgba(23,77,53,.14);
}

.youtube-card iframe {
    border:0;
}

.youtube-card-body {
    padding:22px;
}

.youtube-card-body h5 {
    font-weight:600;
    color:var(--brand-blue-dark);
}

.instagram-section {
    background:
        linear-gradient(135deg,rgba(233,247,239,.72),rgba(255,248,236,.78)),
        #fff;
}

.instagram-panel {
    padding:32px;
    border:1px solid var(--line);
    border-radius:8px;
    background:#fff;
    box-shadow:0 22px 54px rgba(23,77,53,.1);
}

.instagram-preview {
    position:relative;
    display:block;
    overflow:hidden;
    border-radius:8px;
    border:1px solid var(--line);
    background:var(--brand-blue-soft);
    box-shadow:0 18px 42px rgba(23,77,53,.09);
}

.instagram-preview::after {
    content:"View on Instagram";
    position:absolute;
    right:18px;
    bottom:18px;
    padding:10px 14px;
    border-radius:999px;
    color:#fff;
    background:linear-gradient(135deg,var(--brand-blue),var(--brand-red));
    font-size:13px;
    font-weight:700;
    opacity:0;
    transform:translateY(8px);
    transition:opacity .24s ease, transform .24s ease;
}

.instagram-preview:hover::after,
.instagram-preview:focus::after {
    opacity:1;
    transform:translateY(0);
}

.instagram-preview img {
    width:100%;
    max-height:430px;
    object-fit:cover;
    object-position:top center;
    display:block;
    transition:transform .32s ease;
}

.instagram-preview:hover img,
.instagram-preview:focus img {
    transform:scale(1.03);
}

.gallery-grid {
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:18px;
}

.gallery-item {
    position:relative;
    width:100%;
    min-height:190px;
    padding:0;
    cursor:pointer;
}

.gallery-item:first-child {
    grid-column:span 2;
    grid-row:span 2;
}

.gallery-page-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-page-grid .gallery-item:first-child {
    grid-column: auto;
    grid-row: auto;
}

.gallery-item img {
    width:100%;
    height:100%;
    min-height:190px;
    object-fit:cover;
    display:block;
}

.gallery-item::after {
    content:"\F62C";
    font-family:"bootstrap-icons";
    position:absolute;
    inset:auto 14px 14px auto;
    width:40px;
    height:40px;
    display:grid;
    place-items:center;
    border-radius:50%;
    color:#fff;
    background:rgba(23,77,53,.84);
    opacity:0;
    transform:scale(.88);
    transition:opacity .24s ease, transform .24s ease;
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
    opacity:1;
    transform:scale(1);
}

.gallery-modal .modal-content {
    position:relative;
    border:0;
    border-radius:8px;
    overflow:hidden;
    background:#0f2d21;
    min-height:320px;
}

.gallery-modal img {
    width:100%;
    max-height:82vh;
    object-fit:contain;
    display:block;
    background:#0f2d21;
}

.gallery-close {
    position:absolute;
    top:14px;
    right:14px;
    z-index:3;
    width:42px;
    height:42px;
    border-radius:50%;
    background-color:#fff;
    opacity:1;
}

.gallery-nav {
    position:absolute;
    top:50%;
    z-index:3;
    width:46px;
    height:46px;
    display:grid;
    place-items:center;
    border:0;
    border-radius:50%;
    color:#fff;
    background:rgba(23,77,53,.84);
    font-size:26px;
    transform:translateY(-50%);
    transition:background .24s ease, transform .24s ease;
}

.gallery-nav:hover,
.gallery-nav:focus {
    background:var(--brand-blue);
    transform:translateY(-50%) scale(1.05);
}

.gallery-prev {
    left:18px;
}

.gallery-next {
    right:18px;
}

.doctor-video {
    position:relative;
    min-height:360px;
    overflow:hidden;
}

.doctor-profile {
    padding:18px 20px;
    border-left:5px solid var(--brand-blue);
    border-radius:8px;
    background:var(--brand-blue-soft);
}

.doctor-profile h3 {
    margin-bottom:8px;
    color:var(--brand-blue-dark);
    font-weight:600;
    text-transform:uppercase;
}

.doctor-profile p {
    margin-bottom:4px;
    color:#34483d;
    font-weight:600;
}

.play-button {
    position:absolute;
    inset:0;
    display:grid;
    place-items:center;
    color:#fff;
    font-size:58px;
    background:linear-gradient(180deg,transparent,rgba(23,77,53,.36));
}

.rating {
    color:var(--amber);
    letter-spacing:2px;
}

.appointment-panel {
    background:
        linear-gradient(160deg,rgba(255,255,255,.98),rgba(233,247,239,.9)),
        #fff;
}

.form-control,
.form-select {
    border:1px solid #cfe6d6;
    border-radius:14px;
}

.form-control:focus,
.form-select:focus {
    border-color:var(--brand-blue);
    box-shadow:0 0 0 .25rem rgba(47,125,79,.12);
}

.contact-method {
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.contact-method input {
    position:absolute;
    opacity:0;
}

.contact-method label {
    padding:10px 14px;
    border:1px solid #c6e2cf;
    border-radius:999px;
    color:var(--brand-blue);
    background:#fff;
    cursor:pointer;
    font-weight:600;
}

.contact-method input:checked + label {
    color:#fff;
    background:var(--brand-blue);
    border-color:var(--brand-blue);
}

.works-strip {
    background:
        linear-gradient(135deg,var(--brand-blue-dark),var(--brand-blue));
    color:#fff;
}

.works-strip p {
    color:#e2f3e7;
}

.clinic-photo {
    height:auto;
    overflow:hidden;
    border-radius:18px;
}

.rating-badge {
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 16px;
    border-radius:8px;
    background:#fff8e8;
    color:#7a4b00;
    font-weight:700;
}

.map-preview {
    min-height:220px;
    display:grid;
    place-items:center;
    border-radius:8px;
    background:
        linear-gradient(90deg, rgba(15,118,110,.18) 1px, transparent 1px),
        linear-gradient(rgba(15,118,110,.18) 1px, transparent 1px),
        #eef9f3;
    background-size:34px 34px;
    color:var(--brand-blue);
    font-weight:600;
}

.tips-scroll {
    display:grid;
    grid-auto-flow:column;
    grid-auto-columns:minmax(260px, 1fr);
    gap:18px;
    overflow-x:auto;
    padding-bottom:8px;
    scroll-snap-type:x mandatory;
}

.tip-card {
    min-height:180px;
    padding:24px;
    border-radius:8px;
    border:1px solid var(--line);
    background:#fff;
    scroll-snap-align:start;
}

.presence-grid {
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:22px;
    max-width:860px;
    margin:0 auto;
}

.presence-card {
    min-height:150px;
    display:grid;
    place-items:center;
    padding:28px;
    border:1px solid var(--line);
    border-radius:8px;
    background:#fff;
    box-shadow:0 18px 42px rgba(23,77,53,.09);
    transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.presence-card:hover,
.presence-card:focus {
    transform:translateY(-6px);
    border-color:#a9d4b8;
    box-shadow:0 24px 58px rgba(23,77,53,.14);
}

.presence-card img {
    max-width:150px;
    max-height:72px;
    object-fit:contain;
    display:block;
}

.footer {
    color:#e1f2e6;
    position:relative;
    overflow:hidden;
    background:
        radial-gradient(circle at 18% 18%, rgba(199,134,44,.22), transparent 28%),
        linear-gradient(135deg,var(--brand-blue-dark),#092217);
}

.footer::before {
    content:"";
    position:absolute;
    right:-120px;
    top:-120px;
    width:320px;
    height:320px;
    border:38px solid rgba(255,255,255,.08);
    border-radius:50%;
}

.footer .container {
    position:relative;
    z-index:1;
}

.footer a {
    color:#e1f2e6;
}

.footer a:hover {
    color:#fff;
}

.footer-social a {
    /* background:rgba(255,255,255,.94); */
}

.footer-logo {
    width:86px;
    height:86px;
    object-fit:contain;
    border-radius:50%;
    background:#fff;
    padding:6px;
    box-shadow:0 18px 36px rgba(0,0,0,.18);
}

.footer-pill {
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:9px 12px;
    border:1px solid rgba(255,255,255,.18);
    border-radius:999px;
    background:rgba(255,255,255,.08);
    color:#fff;
    font-size:13px;
    margin:4px 6px 4px 0;
}

.footer-links {
    display:grid;
    gap:10px;
}

.footer-links a {
    position:relative;
    width:max-content;
    padding-left:18px;
    font-weight:600;
}

.footer-links a::before {
    content:"";
    position:absolute;
    left:0;
    top:50%;
    width:7px;
    height:7px;
    border-radius:50%;
    background:var(--brand-red);
    transform:translateY(-50%);
}

.footer-links a:hover {
    transform:translateX(4px);
}

.footer-contact-card {
    padding:18px;
    border:1px solid rgba(255,255,255,.16);
    border-radius:18px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(12px);
}

.text-brand-red {
    color:var(--brand-red);
}

@media (max-width: 991px) {
    :root {
        --top-strip-height:42px;
        --header-height:78px;
    }

    .main-nav {
        padding:10px 0;
        background:#fff;
        box-shadow:0 12px 30px rgba(23,77,53,.12);
    }

    .navbar-collapse {
        background:#fff;
        margin-top:10px;
        padding:14px 0 18px;
        border-top:1px solid var(--line);
    }

    .services-head {
        display:block;
    }

    .services-head .btn {
        margin-top:18px;
    }

    .hero-slide {
        padding:0;
    }

    .hero-image-stage {
        height:min(500px, calc(100vh - 124px));
        min-height:300px;
    }

    .timeline-wrap::before {
        display:none;
    }

    .gallery-grid {
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }

    .instagram-panel {
        padding:24px;
    }

    .presence-grid {
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    :root {
        --top-strip-height:42px;
        --header-height:78px;
    }

    .floating-action {
        bottom:18px;
        width:50px;
        height:50px;
        font-size:22px;
    }

    .floating-whatsapp {
        left:14px;
    }

    .floating-call {
        right:14px;
    }

    .floating-top {
        right:14px;
        bottom:80px;
    }

    .top-strip .container {
        gap:8px;
        flex-wrap:nowrap;
        overflow:hidden;
    }

    .top-strip {
        font-size:11px;
        height:var(--top-strip-height);
        overflow:hidden;
    }

    .top-strip .container > .d-flex {
        flex-wrap:nowrap !important;
        min-width:0;
        overflow:hidden;
    }

    .top-strip a[href^="mailto:"] {
        display:none;
    }

    .top-strip .strip-hours {
        display:none;
    }

    .navbar-brand {
        min-width:0;
        max-width:calc(100% - 58px);
        line-height:1.2;
    }

    .brand-copy {
        line-height:1.12;
    }

    .brand-name {
        font-size:12px;
    }

    .brand-doctor {
        font-size:12px;
    }

    .brand-meta {
        font-size:7px;
    }

    .brand-mark {
        width:42px;
        height:42px;
        flex:0 0 42px;
    }

    .brand-mark img {
        width:60px;
        height:60px;
    }

    .section-pad {
        padding:64px 0;
    }

    .section-title {
        margin-bottom:30px;
    }

    .section-title h2 {
        font-size:clamp(25px, 9vw, 34px);
    }

    .highlight-line {
        padding:14px 16px;
        font-size:17px;
    }

    .hero-image-stage {
        height:auto;
        min-height:0;
        background:transparent;
    }

    .hero-image-stage img {
        height:auto;
        object-fit:contain;
        object-position:center;
    }

    .carousel-control-prev,
    .carousel-control-next {
        bottom:18px;
    }

    .top-social {
        gap:6px;
    }

    .top-social a {
        width:24px;
        height:24px;
    }

    .gallery-grid {
        grid-template-columns:1fr;
    }

    .gallery-item:first-child {
        grid-column:auto;
        grid-row:auto;
    }

    .gallery-nav {
        width:40px;
        height:40px;
        font-size:22px;
    }

    .gallery-prev {
        left:10px;
    }

    .gallery-next {
        right:10px;
    }

    .instagram-panel {
        padding:20px;
    }

    .instagram-preview::after {
        opacity:1;
        transform:none;
    }

    .presence-grid {
        grid-template-columns:1fr;
    }
}

.page-header {
  position: relative;
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
    /* Gradient texture background */
  background: linear-gradient(135deg,var(--brand-blue),var(--brand-blue-dark));
  /* background-size: 200% 200%; */
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.overlay {
  padding: 40px;
}

.page-header .overlay {
  text-align: center;
  /* background: rgba(0, 0, 0, 0.4); subtle dark overlay */
  /* padding: 40px; */
  border-radius: 8px;
}

.page-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.breadcrumb-container {
  display: inline-block;
}

.breadcrumb {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
}

.breadcrumb li {
  margin: 0 8px;
  color: #ddd;
}

.breadcrumb li a {
  text-decoration: none;
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  transition: background 0.3s ease;
}

.breadcrumb li a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.breadcrumb li::after {
  content: "›";
  margin-left: 8px;
  color: #bbb;
}

.breadcrumb li:last-child::after {
  content: "";
}

.breadcrumb li.active {
  font-weight: 600;
  color: #fff;
}

.text-brand-red {
    color: var(--brand-red);
}

.bg-brand-red {
    background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark)) !important;
}

.contact-info-card {
    border: 1px solid var(--line);
    background: #fff;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(23,77,53,.1);
    border-color: var(--brand-blue);
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    font-size: 28px;
    margin-bottom: 15px;
}

.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    position: relative;
    height: 0;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    border-radius: 1rem; /* rounded-4 from bootstrap */
}

.qual-tag {
    display: inline-block;
    padding: 5px 15px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-blue-dark);
    margin-right: 8px;
    margin-bottom: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    border-left: 3px solid var(--brand-blue);
}
.form-control-lg{
    padding: 12px 20px;
    font-size: 1rem;
}