/* =========================================================
   HEALCURE IMPLANTS & SURGICALS — Custom Design System
   Palette: Logo Maroon + Logo Gray
   Type: Poppins (display) + Inter (body)
   ========================================================= */

:root {
    --hc-teal-900: #5a0f17;
    --hc-teal-700: #961a27;
    --hc-teal-600: #b02331;
    --hc-teal-100: #fce8ea;
    --hc-coral: #818285;
    --hc-coral-dark: #5c5d60;
    --hc-charcoal: #231f20;
    --hc-grey-600: #818285;
    --hc-grey-300: #d8d9db;
    --hc-bg: #fdfcfc;
    --hc-white: #ffffff;
    --hc-shadow: 0 8px 24px rgba(150, 26, 39, 0.08);
    --hc-radius: 10px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--hc-charcoal);
    background-color: var(--hc-bg);
    line-height: 1.65;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--hc-teal-900);
    font-weight: 600;
}

a {
    color: var(--hc-teal-700);
    text-decoration: none;
    transition: color .2s ease;
}

a:hover {
    color: var(--hc-coral);
}

.text-coral {
    color: var(--hc-coral);
}

.bg-teal {
    background-color: var(--hc-teal-700);
}

/* ---------------- TOP BAR ---------------- */
.top-bar {
    background: var(--hc-teal-900);
    color: #fce8ea;
    font-size: 0.85rem;
}

.top-bar a {
    color: #fce8ea;
}

.top-bar a:hover {
    color: #ffffff;
}

/* ---------------- NAVBAR ---------------- */
.main-navbar {
    background: var(--hc-white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 0.6rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}

.navbar-brand img {
    height: 46px;
    margin-right: 10px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-main {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--hc-teal-900);
    letter-spacing: 0.3px;
}

.brand-sub {
    font-size: 0.68rem;
    color: var(--hc-grey-600);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    color: var(--hc-charcoal);
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--hc-teal-700);
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.1rem;
    height: 2px;
    background: var(--hc-coral);
    border-radius: 2px;
}

.btn-enquire {
    background: var(--hc-teal-700);
    color: #fff !important;
    border-radius: 30px;
    padding: 0.5rem 1.3rem;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    transition: all .2s ease;
}

.btn-enquire:hover {
    background: var(--hc-teal-900);
    transform: translateY(-1px);
}

/* ---------------- BUTTONS ---------------- */
.btn-primary {
    background: var(--hc-teal-700);
    border-color: var(--hc-teal-700);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--hc-teal-900);
    border-color: var(--hc-teal-900);
}

.btn-outline-light-teal {
    border: 2px solid #ffffff;
    color: #ffffff;
    border-radius: 30px;
    padding: 0.6rem 1.6rem;
    font-weight: 600;
}

.btn-outline-light-teal:hover {
    background: #ffffff;
    color: var(--hc-teal-700);
}

.btn-coral {
    background: var(--hc-coral);
    border-color: var(--hc-coral);
    color: #fff;
    border-radius: 30px;
    padding: 0.7rem 1.8rem;
    font-weight: 600;
}

.btn-coral:hover {
    background: var(--hc-coral-dark);
    border-color: var(--hc-coral-dark);
    color: #fff;
}

/* ---------------- HERO ---------------- */
.hero-section {
    position: relative;
    background: linear-gradient(120deg, var(--hc-teal-900) 0%, var(--hc-teal-700) 60%, var(--hc-teal-600) 100%);
    color: #fff;
    overflow: hidden;
    padding: 5rem 0 6rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fce8ea;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    margin-bottom: 1.2rem;
}

.hero-title {
    font-size: 2.9rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.1rem;
}

.hero-title .accent {
    color: #d8d9db;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #fce8ea;
    max-width: 520px;
    margin-bottom: 2rem;
}

.hero-banner-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    border: 6px solid rgba(255, 255, 255, 0.15);
}

.hero-banner-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

/* ---------------- SPEC STRIP (signature element) ---------------- */
/* Echoes the "NW / GW / Cms" spec-label style seen on Healcure's own product photography */
.spec-strip {
    background: var(--hc-white);
    border-top: 1px solid var(--hc-grey-300);
    border-bottom: 1px solid var(--hc-grey-300);
    margin-top: -2.2rem;
    position: relative;
    z-index: 2;
}

.spec-strip-inner {
    background: var(--hc-white);
    border-radius: var(--hc-radius);
    box-shadow: var(--hc-shadow);
    margin-top: -2.5rem;
    padding: 1.6rem 1rem;
}

.spec-item {
    text-align: center;
    border-right: 1px dashed var(--hc-grey-300);
}

.spec-item:last-child {
    border-right: none;
}

.spec-value {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--hc-teal-700);
    line-height: 1;
}

.spec-label {
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--hc-grey-600);
    font-weight: 600;
    margin-top: 0.3rem;
}

/* ---------------- SECTIONS ---------------- */
.section {
    padding: 4.5rem 0;
}

.section-sm {
    padding: 3rem 0;
}

.section-eyebrow {
    color: var(--hc-coral);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 0.6rem;
    display: block;
}

.section-title {
    font-size: 2.1rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--hc-grey-600);
    font-size: 1.02rem;
    max-width: 680px;
}

.bg-alt {
    background: var(--hc-teal-100);
}

/* ---------------- CATEGORY CARDS ---------------- */
.category-card {
    background: #fff;
    border-radius: var(--hc-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    box-shadow: var(--hc-shadow);
    transition: transform .25s ease, box-shadow .25s ease;
    border: 1px solid var(--hc-grey-300);
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(11, 78, 78, 0.14);
    border-color: var(--hc-teal-600);
}

.category-icon {
    width: 66px;
    height: 66px;
    background: var(--hc-teal-100);
    color: var(--hc-teal-700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.2rem;
}

.category-card h5 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.category-card p {
    color: var(--hc-grey-600);
    font-size: 0.88rem;
    margin-bottom: 0;
}

/* ---------------- PRODUCT CARDS ---------------- */
.product-card {
    background: #fff;
    border-radius: var(--hc-radius);
    overflow: hidden;
    height: 100%;
    border: 1px solid var(--hc-grey-300);
    transition: transform .2s ease, box-shadow .2s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--hc-shadow);
}

.product-img-wrap {
    background: #f7ebec;
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0.8rem;
}

.product-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.product-card-body {
    padding: 1.1rem 1.1rem 1.3rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-name {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--hc-charcoal);
    margin-bottom: 0.4rem;
    line-height: 1.4;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-category-tag {
    font-size: 0.7rem;
    color: var(--hc-teal-700);
    background: var(--hc-teal-100);
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    margin-bottom: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    width: fit-content;
}

.btn-enquire-card {
    background: var(--hc-teal-700);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 600;
    width: 100%;
    transition: background .2s ease;
}

.btn-enquire-card:hover {
    background: var(--hc-coral);
    color: #fff;
}

/* ---------------- CATEGORY FILTER PILLS ---------------- */
.filter-bar {
    background: #fff;
    border-radius: var(--hc-radius);
    padding: 1rem;
    box-shadow: var(--hc-shadow);
    margin-bottom: 2.2rem;
}

.filter-pill {
    border: 1px solid var(--hc-grey-300);
    background: #fff;
    color: var(--hc-charcoal);
    border-radius: 30px;
    padding: 0.45rem 1.1rem;
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0.25rem;
    transition: all .2s ease;
    cursor: pointer;
}

.filter-pill:hover {
    border-color: var(--hc-teal-600);
    color: var(--hc-teal-700);
}

.filter-pill.active {
    background: var(--hc-teal-700);
    border-color: var(--hc-teal-700);
    color: #fff;
}

.search-box {
    border-radius: 30px;
    border: 1px solid var(--hc-grey-300);
    padding: 0.55rem 1.2rem;
}

.search-box:focus {
    box-shadow: 0 0 0 3px rgba(14, 133, 133, 0.15);
    border-color: var(--hc-teal-600);
}

/* ---------------- ABOUT PAGE ---------------- */
.about-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--hc-shadow);
}

.timeline {
    border-left: 3px solid var(--hc-teal-100);
    padding-left: 2rem;
    position: relative;
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.45rem;
    top: 0.2rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--hc-coral);
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px var(--hc-teal-100);
}

.timeline-year {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--hc-teal-700);
    font-size: 1.1rem;
}

.value-card {
    background: #fff;
    border-radius: var(--hc-radius);
    padding: 1.8rem;
    height: 100%;
    border-left: 4px solid var(--hc-coral);
    box-shadow: var(--hc-shadow);
}

.value-card i {
    color: var(--hc-teal-700);
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

/* ---------------- TESTIMONIALS ---------------- */
.testimonial-card {
    background: #fff;
    border-radius: var(--hc-radius);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--hc-shadow);
    position: relative;
}

.testimonial-card .quote-icon {
    color: var(--hc-teal-100);
    font-size: 2.5rem;
    position: absolute;
    top: 1rem;
    right: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--hc-grey-600);
    margin-bottom: 1rem;
}

.testimonial-name {
    font-weight: 600;
    color: var(--hc-teal-900);
    margin-bottom: 0;
}

.testimonial-role {
    font-size: 0.82rem;
    color: var(--hc-grey-600);
}

/* ---------------- CONTACT PAGE ---------------- */
.contact-info-card {
    background: #fff;
    border-radius: var(--hc-radius);
    padding: 1.6rem;
    box-shadow: var(--hc-shadow);
    margin-bottom: 1.2rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--hc-teal-100);
    color: var(--hc-teal-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.map-wrap {
    border-radius: var(--hc-radius);
    overflow: hidden;
    box-shadow: var(--hc-shadow);
    border: none;
}

.contact-form-card {
    background: #fff;
    border-radius: var(--hc-radius);
    padding: 2rem;
    box-shadow: var(--hc-shadow);
}

/* ---------------- CTA BAND ---------------- */
.cta-band {
    background: linear-gradient(120deg, var(--hc-teal-900), var(--hc-teal-700));
    color: #fff;
    border-radius: 16px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.cta-band::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
    border-radius: 50%;
}

/* ---------------- FOOTER ---------------- */
.site-footer {
    background: var(--hc-teal-900);
    color: #fce8ea;
    padding-top: 3.5rem;
}

.site-footer h6.footer-heading {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1.1rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-brand {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    color: #fff;
}

.footer-text {
    font-size: 0.88rem;
    color: #eabbc0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #fce8ea;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.88rem;
}

.footer-contact li {
    margin-bottom: 0.8rem;
    display: flex;
    gap: 0.6rem;
}

.footer-contact i {
    color: var(--hc-coral);
    margin-top: 0.2rem;
}

.footer-contact a {
    color: #fce8ea;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.12);
}

.social-icons a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: #fff;
    margin-right: 8px;
}

.social-icons a:hover {
    background: var(--hc-coral);
}

/* ---------------- WHATSAPP FLOAT ---------------- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    z-index: 1050;
    animation: pulse-wa 2.4s infinite;
}

.whatsapp-float:hover {
    background: #1ebe5b;
    color: #fff;
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5), 0 0 0 12px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ---------------- BACK TO TOP ---------------- */
.back-to-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--hc-teal-700);
    color: #fff;
    border: none;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    z-index: 1050;
    box-shadow: var(--hc-shadow);
}

.back-to-top.show {
    display: flex;
}

.back-to-top:hover {
    background: var(--hc-coral);
}

/* ---------------- MISC ---------------- */
.badge-years {
    background: var(--hc-coral);
    color: #fff;
    border-radius: 30px;
    padding: 0.35rem 1rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.client-logo-strip img,
.client-logo-strip span {
    color: var(--hc-grey-600);
    font-weight: 600;
}

.no-results {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--hc-grey-600);
}

/* Reduced motion respect */
@media (prefers-reduced-motion: reduce) {
    .whatsapp-float {
        animation: none;
    }

    * {
        transition: none !important;
    }
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-banner-wrap img {
        height: 260px;
    }

    .spec-item {
        border-right: none;
        border-bottom: 1px dashed var(--hc-grey-300);
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }

    .spec-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
}

@media (max-width: 575px) {
    .hero-section {
        padding: 3.5rem 0 5rem;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .section {
        padding: 3rem 0;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 1.6rem;
        bottom: 16px;
        right: 16px;
    }

    .back-to-top {
        bottom: 16px;
        left: 16px;
    }
}