﻿/* ==================== OSNOVNI STILovi ==================== */
body {
    background-color: #ffffff;
    color: #111111;
    font-family: 'Segoe UI', sans-serif;
}

/* ==================== NAVBAR ==================== */
.custom-navbar {
    background-color: rgba(44, 44, 44, 0.95);
    backdrop-filter: blur(6px);
    position: relative;
    z-index: 1000;
}
    .custom-navbar .navbar-brand,
    .custom-navbar .nav-link {
        color: #ffffff;
        transition: color 0.3s ease;
    }

        .custom-navbar .nav-link:hover {
            color: #b34d6c; /* elegantnija tamno-roza */
        }

/* --- FIX ZA DROPDOWN (Novi Full-width stil + HOVER SAMO BOJA) --- */
@media (max-width: 1199.98px) {
    .navbar-collapse {
        background-color: #2c2c2c;
        margin-top: 8px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .navbar-nav .nav-item {
        display: block !important;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        transition: background 0.3s ease;
    }

    .navbar-nav .nav-link {
        text-align: left !important;
        width: 100%;
        padding: 12px 20px !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .navbar .dropdown-menu {
        position: static !important;
        float: none;
        background-color: rgba(255,255,255,0.05) !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0;
    }

    .navbar .dropdown-item {
        color: rgba(255,255,255,0.8) !important;
        background: transparent !important;
        padding: 10px 40px !important;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        text-align: left;
        transition: all 0.3s ease;
    }

        /* HOVER MOBILNI: Samo boja i pomak */
        .navbar .dropdown-item:active,
        .navbar .dropdown-item:hover {
            color: #b34d6c !important;
            background-color: transparent !important;
            padding-left: 50px !important;
        }

        .navbar .dropdown-item:last-child {
            border-bottom: none;
        }

    .dropdown-toggle::after {
        margin-left: 0.5rem;
    }
}

@media (min-width: 1200px) {
    .navbar .dropdown-menu {
        background-color: #2c2c2c;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        padding: 0.5rem 0;
        border: 1px solid rgba(255,255,255,0.1);
    }

    .navbar .dropdown-item {
        color: #ffffff !important;
        padding: 0.6rem 1.5rem;
        transition: all 0.3s ease;
        background: transparent !important;
    }

        /* HOVER DESKTOP: Samo boja i pomak */
        .navbar .dropdown-item:hover {
            color: #b34d6c !important;
            padding-left: 2rem !important;
            background-color: transparent !important;
        }
}

/* ==================== BUTTONS ==================== */
.btn-primary {
    background: linear-gradient(to right, #b34d6c, #80263d);
    border: none;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background: linear-gradient(to right, #80263d, #b34d6c);
        transform: scale(1.05);
        box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    }

/* ==================== CARDS ==================== */
.card {
    border: none;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 1.5rem 1rem;
}

    .card:hover,
    .o-nama-card:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

    .card i {
        color: #b34d6c;
        font-size: 3rem;
        margin-bottom: 1rem;
        transition: color 0.3s ease, transform 0.3s ease;
    }

    .card:hover i {
        color: #80263d;
        transform: scale(1.2);
    }

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.card-text,
.card-text.small {
    color: #555555;
    line-height: 1.5;
}

.text-muted {
    color: #777 !important;
}

.hover-scale:hover {
    transform: scale(1.03);
    transition: transform 0.3s ease-in-out;
}
.custom-navbar::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #b34d6c, #80263d);
}


.v-divider-container {
    position: relative;
    width: 100%;
    height: 60px;
    margin-top: -60px; /* Preklapa dno slike */
    z-index: 10;
    overflow: hidden;
}

.v-shape {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    /* Pravi trougao koji "ulazi" u sliku */
    clip-path: polygon(0 100%, 50% 0, 100% 100%);
}
#heroCarousel {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}
    #heroCarousel .carousel-item img {
        width: 100%;
        height: 850px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

#heroCarousel .carousel-item:hover img {
    transform: scale(1.05);
}


    #heroCarousel .carousel-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* Gradijent koji ide sa tamnije leve strane na providnu desnu */
        background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.2));
        z-index: 1;
    }

    /* Osiguraj da tekst bude iznad ovog tamnog sloja */
    #heroCarousel .carousel-caption {
        z-index: 2;
    }
    #heroCarousel .carousel-caption {
        background: none !important; /* Briše sivu boju pozadine */
        backdrop-filter: none !important; /* Briše zamućenje koje si dobila na sl. 22 */
        border: none !important; /* Briše ivice */
        box-shadow: none !important; /* Briše senku okvira */
        /* Pozicioniranje kao na slici 20 */
        bottom: 25%;
        left: 8%;
        right: auto;
        text-align: left;
        padding: 0;
    }

        /* Naslov mora biti čisto bijel i podebljan */
        #heroCarousel .carousel-caption h1 {
            color: #ffffff !important;
            font-weight: 800;
            font-size: 3.5rem;
            text-shadow: 2px 2px 15px rgba(0,0,0,0.4); /* Sjenka da slova "iskoče" bez kocke */
        }

    /* Dugme mora biti jarko roze i ovalno */
    #heroCarousel .btn-light {
        background: #b34d6c !important;
        color: #ffffff !important;
        border-radius: 50px !important; /* Ovalni oblik sa slike */
        padding: 12px 35px !important;
        border: none !important;
        text-transform: uppercase;
        font-weight: 700;
    }
    #heroCarousel .btn-light:hover {
        background: linear-gradient(to right, #80263d, #b34d6c);
        transform: scale(1.05);
        box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    }

/* ==================== DOCTOR CARDS ==================== */
.doctor-img-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.doctor-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #f3e3e8;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.doctor-info {
    margin-top: 20px;
}

.doctor-name {
    font-weight: 700;
    font-size: 2rem;
}

.doctor-title {
    font-weight: 500;
    font-size: 1.1rem;
    color: #777777;
}

.doctor-bio {
    font-size: 0.95rem;
    color: #555555;
}

/* ==================== ICON HOVER EFFECTS ==================== */
.card.h-100.shadow-sm i,
.card.py-4 i {
    transition: transform 0.3s ease, color 0.3s ease;
}

.card.h-100.shadow-sm:hover i,
.card.py-4:hover i {
    transform: scale(1.2);
    color: #80263d;
}

/* ==================== CTA ==================== */
.py-5.text-white {
    background-color: #2c2c2c;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

    .py-5.text-white:hover {
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }

    .py-5.text-white h3,
    .py-5.text-white p {
        color: #ffffff;
    }

    .py-5.text-white .btn-light {
        background: linear-gradient(to right, #b34d6c, #80263d);
        color: #ffffff;
        transition: all 0.3s ease;
    }

        .py-5.text-white .btn-light:hover {
            background: linear-gradient(to right, #80263d, #b34d6c);
            transform: scale(1.05);
            box-shadow: 0 6px 18px rgba(0,0,0,0.25);
        }

/* ==================== ACCORDION ==================== */
.accordion-button {
    background-color: #ffffff;
    color: #111111;
    font-weight: 500;
}

    .accordion-button:not(.collapsed) {
        background-color: rgba(128, 38, 61, 0.05);
        color: #80263d;
    }

.accordion-body {
    font-size: 0.95rem;
    color: #555555;
}
.btn-hover-effect {
    transition: all 0.3s ease;
}

    .btn-hover-effect:hover {
        background-color: #b34d6c !important; /* Svjetlija bordo pri hoveru */
        transform: scale(1.05);
        box-shadow: 0 10px 20px rgba(128, 38, 61, 0.2) !important;
    }

/* Razmak u harmonici (Accordion) */
.accordion-item {
    margin-bottom: 10px;
    border: none !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-radius: 8px !important;
}

.accordion-button {
    border-radius: 8px !important;
    font-weight: 500;
}
/* ==================== NAV ITEMS ==================== */
.nav-item.dropdown {
    display: flex;
    align-items: center;
}

    .nav-item.dropdown > .nav-link:first-child {
        margin-right: 0.2rem;
        padding-right: 0;
    }

.dropdown-toggle-split {
    padding-left: 0.2rem;
    padding-right: 0.2rem;
    margin-left: 0;
}

/* ==================== MOBILE FIXES ==================== */
@media (max-width: 768px) {
    .nav-item.dropdown {
        flex-wrap: nowrap;
    }

    #heroCarousel .carousel-caption {
        bottom: 10%;
        padding: 1.5rem;
    }

    

        #heroCarousel .carousel-caption p {
            font-size: 1rem;
        }

    #heroCarousel .btn-light {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    .footer-links-row .col-6 {
        width: 100%;
        margin-bottom: 1rem;
    }

    .read-more-page .row .col-md-6 {
        margin-bottom: 1.5rem;
    }
}

/* ==================== ANIMATIONS ==================== */
@keyframes blinkPhone {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.3;
        transform: scale(1.2);
    }
}

.phone-blink {
    animation: blinkPhone 1s infinite;
}

/* ==================== BACK LINK ==================== */
.btn-minimal-back {
    color: #80263d !important; /* Tvoja bordo boja */
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    padding: 5px 0;
    position: relative;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

    /* Strelica koja se blago miče */
    .btn-minimal-back i {
        margin-right: 10px;
        transition: transform 0.3s ease;
    }

    /* Donja linija koja se pojavljuje na hover */
    .btn-minimal-back::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: #80263d;
        transition: width 0.3s ease;
    }

    .btn-minimal-back:hover {
        color: #a0304d !important;
    }

        .btn-minimal-back:hover i {
            transform: translateX(-5px); /* Strelica pobjegne malo ulijevo */
        }

        .btn-minimal-back:hover::after {
            width: 100%; /* Linija se podvuče ispod cijelog teksta */
        }

/* ==================== FOOTER ==================== */
.custom-footer {
    background: linear-gradient(to top, rgba(44,44,44,1) 0%, rgba(44,44,44,0.85) 25%, rgba(44,44,44,0.65) 50%, rgba(44,44,44,0.4) 75%, rgba(44,44,44,0) 100%);
    color: #fff;
    padding-top: 3rem;
}
.footer-divider-full {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.15); /* Suptilna bela linija */
    margin: 30px 0; /* Razmak iznad i ispod linije */
}

.footer-logo-wrapper, .header-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.footer-logo-wrapper {
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.05);
    margin: 0 0 15px 0;
}

.footer-logo {
    max-width: 70%;
    max-height: 70%;
    border-radius: 50%;
}

.custom-footer .bi-facebook,
.custom-footer .bi-instagram {
    transition: transform 0.3s ease, color 0.3s ease;
}

    .custom-footer .bi-facebook:hover,
    .custom-footer .bi-instagram:hover {
        color: #b34d6c;
        transform: scale(1.2);
    }

.header-logo-wrapper {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.05);
}

.header-logo {
    max-width: 75%;
    max-height: 75%;
    border-radius: 50%;
}
.bi-facebook,
.bi-instagram {
    transition: transform 0.3s ease, color 0.3s ease;
}

    .bi-facebook:hover,
    .bi-instagram:hover {
        color: #b34d6c;
        transform: scale(1.2);
    }
.footer-links li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    display: block;
    padding: 4px 0;
    transition: color 0.3s ease, transform 0.2s ease;
}

    .footer-links li a:hover {
        color: #b34d6c;
        transform: translateX(5px);
    }

/* ==================== SECTION LINES ==================== */
.section-title-line {
    background-color: #80263d;
}

/* ==================== CERTIFICATES ==================== */
.certifikat-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

    .certifikat-card:hover {
        transform: scale(1.03);
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }

.certifikat-name {
    font-weight: 500;
    font-size: 0.95rem;
    color: #111111;
}

/* ==================== READ MORE PAGES ==================== */
.read-more-page {
    padding: 0 1rem;
}

    .read-more-page h1.text-center {
        color: #000000;
        font-weight: 700;
        margin-bottom: 2rem;
    }

    .read-more-page h3.mt-4 {
        color: #b34d6c;
        font-weight: 600;
        margin: 2rem 0 1rem;
        position: relative;
    }

        .read-more-page h3.mt-4::after {
            content: "";
            display: block;
            width: 50px;
            height: 3px;
            background-color: #80263d;
            margin-top: 5px;
            border-radius: 2px;
        }

    .read-more-page ul li {
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
        line-height: 1.6;
        color: #111111;
    }

        .read-more-page ul li strong {
            color: #b34d6c;
        }

    .read-more-page .img-fluid.rounded.shadow-sm {
        border-radius: 12px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .read-more-page .img-fluid.rounded.shadow-sm:hover {
            transform: scale(1.03);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

/* ==================== SECTION TITLE ==================== */
.section-title {
    color: #111111;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

/* CTA div neutralan */
.cta-neutral {
    background-color: rgba(255,255,255,0.05);
    color: #111111;
    padding: 2rem 1rem;
    border-radius: 12px;
    text-align: center;
    max-width: 900px;
    margin: 40px auto;
    transition: background 0.3s ease;
}

    .cta-neutral:hover {
        background-color: rgba(179,77,108,0.2);
    }

/* STOMATOLOZI SEKCIJA */
#stomatolozi .btn-outline-primary {
        color: #b34d6c;
        border-color: #b34d6c;
        background-color: transparent;
        transition: all 0.3s ease;
    }

        #stomatolozi .btn-outline-primary:hover {
            color: #ffffff;
            background: #b34d6c;
            border-color: #b34d6c;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(179,77,108,0.3);
        }
/* PACIJENTI CAROUSEL */

/* Glavni kontejner sa suptilnim borderom */
#carouselPacijenti {
    background-color: #ffffff !important;
    border: 2px solid #fcf8f9; /* Suptilna roze ivica */
    min-height: 500px;
    padding: 60px 20px;
    position: relative;
    transition: border-color 0.3s ease;
}

/* Na hover cijelog diva, border može postati malo tamniji */
#carouselPacijenti:hover {
    border-color: #f1e1e5;
}

/* Kontejner kontrole */
#dostignucaCarousel .custom-carousel-control {
    background-color: transparent;
    border: none;
    width: 50px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

    #dostignucaCarousel .custom-carousel-control:hover {
        opacity: 1;
    }


    #carouselPacijenti .carousel-control-prev-icon,
    #carouselPacijenti .carousel-control-next-icon,
    #dostignucaCarousel .carousel-control-prev-icon,
    #dostignucaCarousel .carousel-control-next-icon {
        /* Ovaj filter pretvara bijelu ikonicu u tvoju roze boju */
        filter: invert(50%) sepia(80%) saturate(2000%) hue-rotate(300deg) brightness(90%) contrast(100%);
        width: 35px;
        height: 35px;
        background-size: 100% 100%;
        transition: transform 0.3s ease, filter 0.3s ease;
    }

    /* Na hover možeš staviti da boja postane još intenzivnija */
    #carouselPacijenti .custom-carousel-control:hover .carousel-control-prev-icon,
    #carouselPacijenti .custom-carousel-control:hover .carousel-control-next-icon,
    #dostignucaCarousel .custom-carousel-control:hover .carousel-control-prev-icon,
    #dostignucaCarousel .custom-carousel-control:hover .carousel-control-next-icon {
        filter: invert(40%) sepia(90%) saturate(3000%) hue-rotate(310deg) brightness(80%) contrast(110%);
        transform: scale(1.1);
    }
/* Sve ikonice u O nama sekciji — TAMNO ROZA */
.o-nama-card i,
#vrijednosti .card i,
#vrijednosti .card i.bi-clock-fill {
    color: #b34d6c !important;
}

.oprema-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(128, 38, 61, 0.1) !important;
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease;
}

    .oprema-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(128, 38, 61, 0.05) !important;
    }
.btn:hover {
    transform: translateY(-3px);
    filter: brightness(110%);
    color: white;
}
/* Stil za ikonice da prate gornji dio */
.icon-square-small {
    width: 45px;
    height: 45px;
    background-color: #80263d;
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}
#oprema {
    padding: 0;
}

/* ==================== O NAMA ==================== */
.about-page {
    --about-brand: #80263d;
    --about-brand-soft: #b34d6c;
    --about-ink: #1a1a1a;
    --about-muted: #5c5c5c;
    --about-wash: #fcf8f9;
    color: var(--about-ink);
}

.about-intro {
    background: var(--about-wash);
    padding: 4.5rem 0 3.5rem;
    border-bottom: 1px solid #f1e1e5;
}

.about-eyebrow {
    color: var(--about-brand);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.about-title {
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.about-lead {
    max-width: 40rem;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--about-muted);
    margin: 0;
}

.about-heading {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.35rem;
}

    .about-heading::after {
        content: "";
        display: block;
        width: 40px;
        height: 2px;
        background: var(--about-brand);
        margin-top: 0.85rem;
        border-radius: 2px;
    }

.about-heading-center {
    text-align: center;
    margin-bottom: 2.5rem;
}

    .about-heading-center::after {
        margin-left: auto;
        margin-right: auto;
    }

.about-dentist {
    padding: 5rem 0;
}

.about-portrait {
    margin: 0;
    overflow: hidden;
    border-radius: 18px;
    background: var(--about-wash);
}

    .about-portrait img {
        display: block;
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 5;
        object-fit: cover;
        object-position: center top;
    }

.about-role {
    color: var(--about-brand-soft);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.about-bio,
.about-dentist-sub {
    color: var(--about-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-facts {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

    .about-facts li {
        border: 1px solid #f1e1e5;
        background: var(--about-wash);
        color: var(--about-brand);
        font-size: 0.85rem;
        font-weight: 600;
        padding: 0.4rem 0.85rem;
        border-radius: 999px;
    }

.about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.about-page .btn:hover {
    filter: none;
    transform: none;
}

.about-btn-primary,
.about-btn-ghost {
    border-radius: 999px;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
}

.about-btn-primary {
    background: var(--about-brand);
    color: #fff;
    border: 1px solid var(--about-brand);
}

    .about-btn-primary:hover,
    .about-btn-primary:focus-visible {
        background: var(--about-brand-soft);
        border-color: var(--about-brand-soft);
        color: #fff;
    }

.about-btn-ghost {
    background: transparent;
    color: var(--about-brand);
    border: 1px solid #e4cdd4;
}

    .about-btn-ghost:hover,
    .about-btn-ghost:focus-visible {
        background: var(--about-wash);
        color: var(--about-brand);
    }

.about-values {
    padding: 4.5rem 0 5rem;
    border-top: 1px solid #f1e1e5;
}

.about-value h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 1rem 0 0.5rem;
}

.about-value p {
    color: var(--about-muted);
    line-height: 1.65;
    margin: 0;
    font-size: 0.95rem;
}

.about-value-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--about-brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.about-equipment {
    background: #2c2c2c;
    color: #fff;
}

.about-equipment-copy {
    display: flex;
    align-items: center;
}

.about-equipment-inner {
    padding: 4.5rem 8%;
    max-width: 36rem;
}

    .about-equipment-inner .about-eyebrow {
        color: #e8b4c2;
    }

    .about-equipment-inner .about-heading::after {
        background: #e8b4c2;
    }

.about-equip-item {
    display: flex;
    gap: 1rem;
    margin-top: 1.75rem;
}

    .about-equip-item i {
        color: #e8b4c2;
        font-size: 1.4rem;
        margin-top: 0.15rem;
        flex-shrink: 0;
    }

    .about-equip-item h3 {
        font-size: 1.05rem;
        font-weight: 700;
        margin-bottom: 0.35rem;
    }

    .about-equip-item p {
        margin: 0;
        color: rgba(255, 255, 255, 0.75);
        font-size: 0.95rem;
        line-height: 1.65;
    }

.about-equipment-photo {
    min-height: 320px;
}

    .about-equipment-photo img {
        display: block;
        width: 100%;
        height: 100%;
        min-height: 420px;
        object-fit: cover;
    }

.about-team {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

    .about-team img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.about-team-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 4rem 1.5rem 3rem;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.78), rgba(26, 26, 26, 0.15) 70%, transparent);
    text-align: center;
    color: #fff;
}

    .about-team-content p {
        font-size: 1.35rem;
        font-weight: 600;
        max-width: 32rem;
        margin: 0 auto 1.5rem;
    }

@media (max-width: 767.98px) {
    .about-intro,
    .about-dentist,
    .about-values {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .about-equipment-inner {
        padding: 3rem 1.5rem;
    }

    .about-portrait {
        max-width: 22rem;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-btn-primary,
    .about-btn-ghost {
        transition: none;
    }
}

/* ==================== SERVICE READ MORE ==================== */

.btn-back-link {
    color: #80263d !important;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 0.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

    .btn-back-link::after {
        content: "→";
        display: inline-block;
        transition: transform 0.3s ease;
    }

    .btn-back-link:hover {
        color: #b34d6c !important;
        text-decoration: none;
    }

        .btn-back-link:hover::after {
            transform: translateX(4px);
        }