/* ============================================================
   WIKRAMARACHCHI HEARING CARE — Homepage Design System 2026
   Font: Plus Jakarta Sans | Light Premium Theme
   ============================================================ */


/* Note: Shared tokens, header, footer, etc. moved to global.css */

/* ── 4. HERO SECTION ─────────────────────────────────────── */
.hp-hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    background: var(--hp-bg);
    overflow: hidden;
    padding-top: 76px;
    font-family: var(--hp-font);
}

/* Subtle grid overlay */
.hp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.028) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 0;
    pointer-events: none;
}

/* Soft glow blob (left) */
.hp-hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(164, 125, 92, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hp-hero-crosshairs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.hp-crosshair {
    position: absolute;
    color: rgba(70, 65, 56, 0.2);
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
    user-select: none;
}

.hp-crosshair:nth-child(1) {
    top: 22%;
    left: 42%;
}

.hp-crosshair:nth-child(2) {
    top: 55%;
    right: 18%;
}

.hp-crosshair:nth-child(3) {
    bottom: 15%;
    left: 30%;
}

.hp-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Left — Content */
.hp-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(32px);
    animation: hpFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.hp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(164, 125, 92, 0.12);
    border: 1px solid rgba(164, 125, 92, 0.25);
    color: var(--hp-ink);
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    width: max-content;
    letter-spacing: 0.02em;
}

.hp-hero-badge svg {
    width: 14px;
    height: 14px;
    color: var(--hp-accent);
}

.hp-hero-title {
    font-size: clamp(2.75rem, 5.5vw, 5rem);
    font-weight: 800;
    color: var(--hp-ink);
    line-height: 1.08;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.03em;
}

.hp-hero-title-line1 {
    display: block;
    color: var(--hp-ink);
}

.hp-hero-title-line2 {
    display: block;
    background: linear-gradient(135deg, #37332d 0%, #a47d5c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile Decor default (hidden on desktop) */
.hp-hero-mobile-decor {
    display: none;
}

/* Typewriter container */
#hp-typewriter-text {
    display: inline;
}

.hp-typewriter-cursor {
    display: inline-block;
    width: 3px;
    height: 0.85em;
    background: var(--hp-accent);
    vertical-align: middle;
    margin-left: 3px;
    border-radius: 1px;
    animation: hpBlink 1s step-end infinite;
}

.hp-hero-desc {
    font-size: clamp(0.975rem, 1.5vw, 1.0625rem);
    color: var(--hp-ink-2);
    line-height: 1.7;
    margin: 0 0 2.5rem 0;
    max-width: 480px;
}

.hp-hero-buttons {
    display: flex;
    gap: 0.875rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

/* Doctors widget (below buttons, inline) */
.hp-doctors-widget {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--hp-glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius-md);
    padding: 0.875rem 1.25rem;
    box-shadow: var(--hp-shadow-md);
    width: max-content;
    max-width: 100%;
}

.hp-doctors-avatars {
    display: flex;
    flex-shrink: 0;
}

.hp-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-right: -10px;
}

.hp-avatar-plus {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: var(--hp-accent);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
    flex-shrink: 0;
}

.hp-doctors-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--hp-ink-2);
    line-height: 1.4;
    margin: 0;
}

/* Right — Image Area */
.hp-hero-image-area {
    position: relative;
    min-height: 580px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    opacity: 0;
    animation: hpFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
}

/* Glow behind image */
.hp-hero-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 70%;
    background: radial-gradient(ellipse at bottom, rgba(0, 0, 0, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hp-hero-img {
    max-height: 82vh;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    box-shadow: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.08));
}

/* Social icons widget (top right of image) */
.hp-social-widget {
    position: absolute;
    top: 8%;
    right: 0;
    display: flex;
    gap: 0.5rem;
    z-index: 5;
    opacity: 0;
    animation: hpFadeIn 1s ease 0.8s forwards;
}

.hp-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--hp-surface);
    border: 1px solid var(--hp-border);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--hp-shadow-sm);
    transition: all var(--hp-transition);
    text-decoration: none !important;
    color: var(--hp-ink) !important;
}

.hp-social-btn:hover {
    background: var(--hp-accent);
    color: #ffffff !important;
    border-color: var(--hp-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(164, 125, 92, 0.35);
}

.hp-social-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Floating widgets */
.hp-widget {
    position: absolute;
    background: var(--hp-glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--hp-glass-border);
    border-radius: var(--hp-radius-md);
    box-shadow: var(--hp-shadow-lg);
    z-index: 6;
}

/* Phone Widget */
.hp-widget-phone {
    bottom: 28%;
    left: -12%;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: hpFloat 6s ease-in-out 1s infinite;
    min-width: 220px;
}

.hp-widget-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(164, 125, 92, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--hp-accent);
}

.hp-widget-phone-info p {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--hp-ink-2);
    margin: 0 0 0.15rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hp-widget-phone-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--hp-ink);
    margin: 0;
    letter-spacing: -0.01em;
}

/* How We Work Widget */
.hp-widget-hww {
    bottom: 6%;
    left: -12%;
    border-radius: 50px;
    padding: 0.5rem 1.75rem 0.5rem 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: hpFloat 7s ease-in-out 2s infinite;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hp-widget-hww:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 50px rgba(55, 51, 45, 0.15) !important;
    text-decoration: none;
}

.hp-widget-play {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--hp-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(164, 125, 92, 0.4);
}

.hp-widget-play svg {
    width: 20px;
    height: 20px;
    margin-left: 3px;
}

.hp-widget-hww-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--hp-ink);
    letter-spacing: -0.01em;
}

/* Calling Widget */
.hp-widget-calling {
    bottom: 6%;
    right: 0%;
    border-radius: 50px;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    animation: hpFloat 8s ease-in-out 3s infinite;
}

.hp-widget-calling-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a47d5c, #56493e);
    flex-shrink: 0;
}

.hp-widget-calling-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--hp-ink-2);
    margin-right: 0.5rem;
    white-space: nowrap;
}

.hp-calling-time {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--hp-ink);
    margin-right: 0.25rem;
}

.hp-calling-actions {
    display: flex;
    gap: 0.375rem;
}

.hp-calling-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(70, 65, 56, 0.08);
    color: var(--hp-ink);
    flex-shrink: 0;
}

.hp-calling-btn.hp-end-call {
    background: #ef4444;
    color: #fff;
}

.hp-calling-waveform {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 20px;
    padding: 0 0.25rem;
}

.hp-wave-bar {
    width: 3px;
    border-radius: 2px;
    background: var(--hp-accent);
    animation: hpWave 1.2s ease-in-out infinite;
}

.hp-wave-bar:nth-child(1) {
    height: 6px;
    animation-delay: 0s;
}

.hp-wave-bar:nth-child(2) {
    height: 12px;
    animation-delay: 0.1s;
}

.hp-wave-bar:nth-child(3) {
    height: 18px;
    animation-delay: 0.2s;
}

.hp-wave-bar:nth-child(4) {
    height: 10px;
    animation-delay: 0.3s;
}

.hp-wave-bar:nth-child(5) {
    height: 14px;
    animation-delay: 0.4s;
}

@keyframes hpWave {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 0.6;
    }

    50% {
        transform: scaleY(1.6);
        opacity: 1;
    }
}

/* ── 6. TECHNOLOGY SECTION ──────────────────────────────── */
.hc-tech-section {
    font-family: var(--hp-font) !important;
}

.hc-tech-section .hc-tech-title {
    font-family: var(--hp-font) !important;
    letter-spacing: -0.02em;
}

.hc-tech-section .hc-glass-card {
    border-radius: var(--hp-radius-xl) !important;
    box-shadow: 0 16px 48px -8px rgba(55, 51, 45, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    transition: transform var(--hp-transition), box-shadow var(--hp-transition) !important;
}

.hc-tech-section .hc-glass-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 28px 64px -12px rgba(164, 125, 92, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

/* ── 8. ACCESSORIES SECTION ─────────────────────────────── */
#home-sec-4 {
    background: #ffffff;
    padding: 60px 0 80px;
    font-family: var(--hp-font) !important;
}

#home-sec-4 .hp-section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem) !important;
    font-weight: 800 !important;
    color: var(--hp-ink) !important;
    letter-spacing: -0.025em !important;
    line-height: 1.15 !important;
    font-family: var(--hp-font) !important;
}

#home-sec-4 .coverflow-item.active .coverflow-card {
    position: relative;
    background: linear-gradient(165deg, #37332d 0%, #25221e 100%) !important;
    box-shadow: 0 35px 70px -15px rgba(55, 51, 45, 0.5), 0 0 0 1px rgba(164, 125, 92, 0.25) inset !important;
    border: 1px solid rgba(164, 125, 92, 0.35) !important;
    transition: background 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

#home-sec-4 .coverflow-card-action {
    display: none !important;
}

#home-sec-4 .para-1 {
    color: var(--hp-ink-2) !important;
    font-size: 1.05rem !important;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ── 9. WHY CHOOSE US ──────────────────────────────────── */
.hc-why-choose-section {
    position: relative;
    padding: 110px 0 120px 0;
    background: #ffffff;
    font-family: var(--hp-font, 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif) !important;
    overflow: hidden;
}

/* Ambient Floating Background Blobs & Grid Pattern */
.hc-why-choose-section .hc-why-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

.hc-why-choose-section .hc-why-bg-orb-1 {
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(164, 125, 92, 0.08) 0%, rgba(205, 194, 184, 0.05) 50%, transparent 70%);
    animation: hcOrbFloat1 18s ease-in-out infinite alternate;
}

.hc-why-choose-section .hc-why-bg-orb-2 {
    bottom: -150px;
    left: -120px;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(70, 65, 56, 0.06) 0%, rgba(164, 125, 92, 0.04) 50%, transparent 70%);
    animation: hcOrbFloat2 22s ease-in-out infinite alternate;
}

.hc-why-choose-section .hc-why-bg-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.7;
}

@keyframes hcOrbFloat1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-40px, 50px) scale(1.08);
    }

    100% {
        transform: translate(30px, -30px) scale(0.95);
    }
}

@keyframes hcOrbFloat2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(50px, -40px) scale(1.12);
    }

    100% {
        transform: translate(-30px, 40px) scale(1);
    }
}

/* Container & Header */
.hc-why-choose-section .hc-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.hc-why-choose-section .hc-header {
    text-align: center;
    margin-bottom: 4rem;
}

.hc-why-choose-section .hc-badge-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.hc-why-choose-section .hc-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    border-radius: 100px;
    background: var(--hp-accent);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(164, 125, 92, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hc-why-choose-section .hc-section-badge i {
    color: var(--hp-sand);
    font-size: 0.85rem;
}

.hc-why-choose-section .hc-section-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(164, 125, 92, 0.35);
}

.hc-why-choose-section .hc-header h2 {
    font-size: clamp(2.1rem, 4.2vw, 3rem) !important;
    font-weight: 800 !important;
    color: var(--hp-ink) !important;
    letter-spacing: -0.03em !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
    font-family: var(--hp-font, 'Plus Jakarta Sans', sans-serif) !important;
}

.hc-why-choose-section .hc-header p {
    font-size: clamp(1.05rem, 1.8vw, 1.15rem) !important;
    color: var(--hp-ink-2) !important;
    line-height: 1.7 !important;
    max-width: 660px;
    margin: 0 auto;
    font-family: var(--hp-font, 'Plus Jakarta Sans', sans-serif) !important;
}

/* Static Grid Container for Cards 1 - 6 */
.hc-why-choose-section .hc-why-marquee-wrapper {
    position: relative;
    max-height: none;
    overflow: visible;
    padding: 12px 0;
    -webkit-mask-image: none !important;
    mask-image: none !important;
}

/* Gradient Fade Masks for Top & Bottom edges - REMOVED */
.hc-why-choose-section .hc-why-marquee-wrapper::before,
.hc-why-choose-section .hc-why-marquee-wrapper::after {
    display: none !important;
    content: none !important;
}


/* Static Track */
.hc-why-choose-section .hc-why-marquee-track {
    display: block;
    animation: none !important;
}

/* Marquee Group Layout */
.hc-why-choose-section .hc-why-marquee-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.75rem;
    padding-bottom: 1.75rem;
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .hc-why-choose-section .hc-why-marquee-group {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) and (min-width: 640px) {
    .hc-why-choose-section .hc-why-marquee-group {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 639px) {
    .hc-why-choose-section .hc-why-marquee-group {
        grid-template-columns: 1fr;
    }
}

/* Individual Premium Card */
.hc-why-choose-section .hc-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(205, 194, 184, 0.6);
    border-radius: 24px;
    padding: 2.25rem 1.75rem 2rem 1.75rem;
    text-align: center;
    box-shadow: 0 10px 30px -10px rgba(55, 51, 45, 0.05);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.4s ease,
        background-color 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    z-index: 1;
}

/* Card Top Accent Bar */
.hc-why-choose-section .hc-card-bar {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 4px;
    width: 0%;
    background: linear-gradient(90deg, #37332d, #a47d5c, #cdc2b8);
    border-radius: 4px 4px 0 0;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Watermark Number Badge */
.hc-why-choose-section .hc-card-number {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    font-size: 1.4rem;
    font-weight: 800;
    color: rgba(70, 65, 56, 0.12);
    font-family: var(--hp-font, 'Plus Jakarta Sans', sans-serif);
    letter-spacing: -0.02em;
    transition: color 0.4s ease, transform 0.4s ease;
    user-select: none;
}

/* Card Hover States */
.hc-why-choose-section .hc-card:hover {
    transform: scale(1.03);
    box-shadow: 0 24px 50px -12px rgba(164, 125, 92, 0.18), 0 0 0 1px rgba(164, 125, 92, 0.2);
    border-color: var(--hp-accent);
    background: #ffffff;
    z-index: 5;
}

.hc-why-choose-section .hc-card:hover .hc-card-bar {
    width: 100%;
}

.hc-why-choose-section .hc-card:hover .hc-card-number {
    color: rgba(164, 125, 92, 0.3);
    transform: scale(1.1);
}

/* Icon Wrapper & Pulse Effect */
.hc-why-choose-section .hc-icon-wrapper {
    position: relative;
    width: 76px;
    height: 76px;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #37332d 0%, #a47d5c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem auto 1.5rem auto;
    box-shadow: 0 10px 24px -6px rgba(164, 125, 92, 0.35);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.hc-why-choose-section .hc-icon-pulse {
    position: absolute;
    inset: -6px;
    border-radius: 50% !important;
    border: 2px solid rgba(164, 125, 92, 0.25);
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.hc-why-choose-section .hc-card:hover .hc-icon-wrapper {
    transform: scale(1.08);
    box-shadow: 0 14px 32px -6px rgba(164, 125, 92, 0.5);
}

.hc-why-choose-section .hc-card:hover .hc-icon-pulse {
    opacity: 1;
    transform: scale(1.05);
}

.hc-why-choose-section .hc-icon-wrapper img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.4s ease;
}

.hc-why-choose-section .hc-fallback-icon {
    font-size: 32px;
    color: #ffffff;
}

.hc-why-choose-section .hc-card:hover .hc-icon-wrapper img {
    transform: scale(1.08);
}

/* Card Heading Title */
.hc-why-choose-section .hc-card h4 {
    font-size: 1.0625rem !important;
    font-weight: 700 !important;
    color: var(--hp-ink) !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    font-family: var(--hp-font, 'Plus Jakarta Sans', sans-serif) !important;
    transition: color 0.3s ease;
    max-width: 280px;
}

.hc-why-choose-section .hc-card:hover h4 {
    color: var(--hp-accent) !important;
}

/* Card Footer Indicator */
.hc-why-choose-section .hc-card-footer {
    margin-top: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hc-why-choose-section .hc-card-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(205, 194, 184, 0.8);
    transition: width 0.35s ease, background 0.35s ease, border-radius 0.35s ease;
}

.hc-why-choose-section .hc-card:hover .hc-card-dot {
    width: 24px;
    border-radius: 100px;
    background: var(--hp-accent);
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
    .hc-why-choose-section {
        padding: 70px 0 80px 0;
    }

    .hc-why-choose-section .hc-why-marquee-group {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding-bottom: 1.25rem;
    }

    .hc-why-choose-section .hc-card {
        padding: 1.75rem 1.25rem;
    }
}

/* ── 10. SCIENCE / VIDEO SECTION ───────────────────────── */
#home-sec-6 {
    position: relative;
    background: var(--hp-ink);
    color: #fff;
    padding: 80px 0;
    overflow: hidden;
    font-family: var(--hp-font) !important;
}

#home-sec-6::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

#home-sec-6 .sub-heading {
    font-size: clamp(1.5rem, 3vw, 2.25rem) !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    letter-spacing: -0.025em !important;
    font-family: var(--hp-font) !important;
}

#home-sec-6 .para-1 {
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 1.05rem !important;
    line-height: 1.75 !important;
    font-family: var(--hp-font) !important;
}

/* ── 11. VIDEO SECTION ──────────────────────────────────── */
#home-sec-7 {
    background: var(--hp-bg);
    padding: 80px 0;
    font-family: var(--hp-font) !important;
}

#home-sec-7 .sub-heading {
    font-size: clamp(1.5rem, 3vw, 2.25rem) !important;
    font-weight: 800 !important;
    color: var(--hp-ink) !important;
    letter-spacing: -0.025em !important;
    font-family: var(--hp-font) !important;
}

#home-sec-7 .sub-heading2 {
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    color: var(--hp-ink-2) !important;
    font-family: var(--hp-font) !important;
}

.vedio-hear {
    border-radius: var(--hp-radius-xl) !important;
    overflow: hidden;
    box-shadow: var(--hp-shadow-lg) !important;
}

.vedio-hear video {
    display: block;
    width: 100%;
    border-radius: var(--hp-radius-xl) !important;
}

/* ── 12. SERVICES SECTION ───────────────────────────────── */
#home-sec-8 {
    background: var(--hp-surface);
    padding: 80px 0;
    font-family: var(--hp-font) !important;
}

#home-sec-8 h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem) !important;
    font-weight: 800 !important;
    color: var(--hp-ink) !important;
    letter-spacing: -0.025em !important;
    font-family: var(--hp-font) !important;
}

/* ── RESPONSIVE (HOMEPAGE) ─────────────────────────────────── */
@media (max-width: 1200px) {
    .hp-hero-container {
        gap: 2rem;
    }

    .hp-widget-phone {
        left: -5%;
    }

    .hp-widget-hww {
        left: -5%;
    }
}

@media (max-width: 900px) {
    /* ── Mobile Hero Redesign ── */
    .hp-hero {
        position: relative !important;
        background: linear-gradient(175deg, #fdfbf8 0%, #faf5ee 50%, #f4eae0 100%) !important;
        min-height: 100vh !important;
        min-height: 100svh !important;
        padding-top: 72px !important;
        overflow: hidden !important;
        display: block !important;
    }

    /* Hide desktop tech grid, glow, and crosshairs */
    .hp-hero::before {
        display: none !important;
    }

    .hp-hero::after {
        display: none !important;
    }

    .hp-hero-crosshairs {
        display: none !important;
    }

    /* Mobile Organic & Soundwave Decor */
    .hp-hero-mobile-decor {
        display: block !important;
        position: absolute !important;
        inset: 0 !important;
        pointer-events: none !important;
        z-index: 1 !important;
        overflow: hidden !important;
    }

    .hp-mobile-backdrop-svg {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 550px !important;
        pointer-events: none !important;
        z-index: 1 !important;
    }

    .hp-mobile-bottom-curve {
        position: absolute !important;
        bottom: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: 120px !important;
        pointer-events: none !important;
        z-index: 2 !important;
    }

    /* Container: Clean column layout */
    .hp-hero-container {
        position: relative !important;
        z-index: 4 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
        padding: 0 1.25rem 2.5rem 1.25rem !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 0 !important;
    }

    /* Woman's Image: Positioned upper-right in hero background */
    .hp-hero-image-area {
        position: absolute !important;
        top: 25px !important;
        right: -6% !important;
        width: 86% !important;
        max-width: 360px !important;
        min-height: auto !important;
        max-height: none !important;
        display: block !important;
        z-index: 2 !important;
        pointer-events: none !important;
        opacity: 1 !important;
        animation: none !important;
        margin: 0 !important;
        order: unset !important;
    }

    .hp-hero-glow {
        display: none !important;
    }

    .hp-widget,
    .hp-social-widget {
        display: none !important;
    }

    .hp-hero-img {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        max-height: 560px !important;
        object-fit: contain !important;
        object-position: top right !important;
        filter: none !important;
        -webkit-mask-image: linear-gradient(to bottom, #000 68%, rgba(0, 0, 0, 0.35) 86%, transparent 100%),
                            linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.25) 15%, #000 40%) !important;
        -webkit-mask-composite: source-in !important;
        mask-image: linear-gradient(to bottom, #000 68%, rgba(0, 0, 0, 0.35) 86%, transparent 100%),
                    linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.25) 15%, #000 40%) !important;
        mask-composite: intersect !important;
    }

    /* Content: Left-aligned, placed cleanly below her hand level */
    .hp-hero-content {
        position: relative !important;
        z-index: 5 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
        padding-top: clamp(235px, 60vw, 290px) !important;
        width: 100% !important;
        max-width: 100% !important;
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    /* Badge: Soft cream pill on left */
    .hp-hero-badge {
        display: inline-flex !important;
        align-items: center !important;
        gap: 0.45rem !important;
        background: #f4ede5 !important;
        border: 1px solid rgba(164, 125, 92, 0.22) !important;
        color: #1a1816 !important;
        padding: 0.42rem 1.1rem !important;
        border-radius: 9999px !important;
        font-size: 0.8125rem !important;
        font-weight: 700 !important;
        margin-bottom: 1.15rem !important;
        box-shadow: 0 2px 8px rgba(55, 51, 45, 0.04) !important;
        letter-spacing: 0.01em !important;
        width: max-content !important;
        align-self: flex-start !important;
    }

    .hp-hero-badge svg {
        color: #a47d5c !important;
        width: 14px !important;
        height: 14px !important;
        flex-shrink: 0 !important;
    }

    /* Title: Bold geometric left-aligned with typewriter */
    .hp-hero-title {
        font-size: clamp(2.35rem, 9.2vw, 2.9rem) !important;
        font-weight: 800 !important;
        color: #181615 !important;
        line-height: 1.06 !important;
        margin: 0 0 1rem 0 !important;
        letter-spacing: -0.035em !important;
        text-align: left !important;
        min-height: 2.25em !important;
    }

    #hp-typewriter-text {
        display: inline !important;
        color: #181615 !important;
    }

    .hp-typewriter-cursor {
        display: inline-block !important;
        width: 3px !important;
        height: 0.82em !important;
        background: var(--hp-accent, #a47d5c) !important;
        vertical-align: middle !important;
        margin-left: 3px !important;
        border-radius: 1px !important;
    }

    /* Description */
    .hp-hero-desc {
        font-size: 0.9375rem !important;
        color: #4a453e !important;
        line-height: 1.55 !important;
        margin: 0 0 1.85rem 0 !important;
        max-width: 275px !important;
        text-align: left !important;
    }

    /* Buttons: Full-width stacked pills */
    .hp-hero-buttons {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
        margin-bottom: 2rem !important;
    }

    /* Primary Button: Book Appointment (TOP) */
    .hp-hero-buttons .hp-btn-primary {
        order: 1 !important;
        width: 100% !important;
        min-height: 52px !important;
        height: 52px !important;
        background: #9e714b !important;
        color: #ffffff !important;
        border: 1px solid #9e714b !important;
        border-radius: 9999px !important;
        font-size: 0.975rem !important;
        font-weight: 700 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        box-shadow: 0 4px 16px rgba(158, 113, 75, 0.28) !important;
        text-decoration: none !important;
        padding: 0 1.5rem !important;
        transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease !important;
    }

    .hp-hero-buttons .hp-btn-primary:active {
        transform: scale(0.98) !important;
        background: #8b623f !important;
    }

    .hp-hero-buttons .hp-btn-primary svg {
        width: 17px !important;
        height: 17px !important;
        stroke: #ffffff !important;
        flex-shrink: 0 !important;
    }

    /* Secondary Button: Free Hearing Test (BOTTOM) */
    .hp-hero-buttons .hp-btn-secondary {
        order: 2 !important;
        width: 100% !important;
        min-height: 52px !important;
        height: 52px !important;
        background: #f2e9de !important;
        color: #181615 !important;
        border: 1.5px solid #cbbaaa !important;
        border-radius: 9999px !important;
        font-size: 0.975rem !important;
        font-weight: 700 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        box-shadow: none !important;
        text-decoration: none !important;
        padding: 0 1.5rem !important;
        transition: background 0.25s ease, transform 0.2s ease, border-color 0.25s ease !important;
    }

    .hp-hero-buttons .hp-btn-secondary:active {
        transform: scale(0.98) !important;
        background: #e8ded2 !important;
    }

    .hp-hero-buttons .hp-btn-secondary svg {
        width: 17px !important;
        height: 17px !important;
        stroke: #181615 !important;
        flex-shrink: 0 !important;
    }

    .hp-doctors-widget {
        display: none !important;
    }
}

/* ── 18. PREMIUM BRAND RIBBON MARQUEE ────────────────────── */
.hc-brand-ribbon {
    position: relative;
    width: 100%;
    max-width: 100%;
    background: #37332d;
    background: linear-gradient(180deg, #37332d 0%, #25221e 50%, #37332d 100%);
    overflow: hidden;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    z-index: 10;
    user-select: none;
    -webkit-user-select: none;
    box-shadow: 0 20px 40px rgba(55, 51, 45, 0.4), inset 0 1px 0 rgba(205, 194, 184, 0.15);
}

.hc-brand-ribbon__glow {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    z-index: 5;
    pointer-events: none;
}

.hc-brand-ribbon__glow--top {
    top: 0;
    background: linear-gradient(90deg,
            rgba(205, 194, 184, 0.15) 0%,
            rgba(164, 125, 92, 0.9) 25%,
            rgba(205, 194, 184, 1) 50%,
            rgba(164, 125, 92, 0.9) 75%,
            rgba(205, 194, 184, 0.15) 100%);
    box-shadow: 0 -2px 14px rgba(164, 125, 92, 0.8),
        0 -6px 28px rgba(164, 125, 92, 0.4),
        0 2px 10px rgba(205, 194, 184, 0.5);
}

.hc-brand-ribbon__glow--bottom {
    bottom: 0;
    background: linear-gradient(90deg,
            rgba(205, 194, 184, 0.15) 0%,
            rgba(164, 125, 92, 0.9) 25%,
            rgba(205, 194, 184, 1) 50%,
            rgba(164, 125, 92, 0.9) 75%,
            rgba(205, 194, 184, 0.15) 100%);
    box-shadow: 0 2px 14px rgba(164, 125, 92, 0.8),
        0 6px 28px rgba(164, 125, 92, 0.4),
        0 -2px 10px rgba(205, 194, 184, 0.5);
}

.hc-brand-ribbon__radial-ambient {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(164, 125, 92, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.hc-brand-ribbon__track-container {
    display: flex;
    align-items: center;
    width: 100%;
    height: 96px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.hc-brand-ribbon__track {
    display: flex;
    align-items: center;
    width: max-content;
    will-change: transform;
    animation: hc-marquee-slide 32s linear infinite;
}

.hc-brand-ribbon:hover .hc-brand-ribbon__track {
    animation-play-state: paused;
}

.hc-brand-ribbon__group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    width: max-content;
}

@keyframes hc-marquee-slide {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.hc-brand-ribbon__item {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 0 38px;
    flex-shrink: 0;
    white-space: nowrap;
}

.hc-brand-ribbon__logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(205, 194, 184, 0.4);
    box-shadow: 0 0 14px rgba(164, 125, 92, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.hc-brand-ribbon__item:hover .hc-brand-ribbon__logo-wrapper {
    border-color: var(--hp-accent);
    transform: scale(1.06);
    box-shadow: 0 0 20px rgba(164, 125, 92, 0.5);
}

.hc-brand-ribbon__logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 50%;
    display: block;
}

.hc-brand-ribbon__text-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.15;
}

.hc-brand-ribbon__brand-name {
    font-family: var(--hp-font, 'Plus Jakarta Sans', sans-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.01em;
}

.hc-brand-ribbon__tagline {
    font-family: var(--hp-font, 'Plus Jakarta Sans', sans-serif);
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--hp-sand);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-top: 2px;
}

.hc-brand-ribbon__separator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle, #cdc2b8 0%, #a47d5c 70%, #56493e 100%);
    box-shadow: 0 0 10px rgba(164, 125, 92, 0.8);
    margin-left: 22px;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .hc-brand-ribbon__track-container {
        height: 80px;
    }

    .hc-brand-ribbon__item {
        gap: 12px;
        padding: 0 28px;
    }

    .hc-brand-ribbon__logo-wrapper {
        width: 36px;
        height: 36px;
    }

    .hc-brand-ribbon__logo {
        width: 24px;
        height: 24px;
    }

    .hc-brand-ribbon__brand-name {
        font-size: 1rem;
    }

    .hc-brand-ribbon__tagline {
        font-size: 0.625rem;
        letter-spacing: 0.18em;
    }

    .hc-brand-ribbon__separator {
        width: 7px;
        height: 7px;
        margin-left: 16px;
    }
}

@media (max-width: 640px) {
    .hc-brand-ribbon__track-container {
        height: 68px;
    }

    .hc-brand-ribbon__item {
        gap: 10px;
        padding: 0 20px;
    }

    .hc-brand-ribbon__logo-wrapper {
        width: 30px;
        height: 30px;
    }

    .hc-brand-ribbon__logo {
        width: 20px;
        height: 20px;
    }

    .hc-brand-ribbon__brand-name {
        font-size: 0.875rem;
    }

    .hc-brand-ribbon__tagline {
        font-size: 0.5625rem;
        letter-spacing: 0.15em;
    }

    .hc-brand-ribbon__separator {
        width: 6px;
        height: 6px;
        margin-left: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hc-brand-ribbon__track {
        animation: none !important;
        transform: none !important;
    }

    .hc-brand-ribbon__track-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}