/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: rgba(128, 0, 128, 0.9);
    --primary-dark: rgba(99, 0, 99, 0.95);
    --primary-light: rgba(153, 0, 153, 0.9);
    --secondary: #1E293B;
    --action: #0EA5E9;
    --action-dark: #0B86B8;
    --bg: #F8FAFC;
    --white: #ffffff;
    --light: #F4FAF8;
    --gray: #6B7280;
    --gray-light: #F3F4F6;
    --text: var(--secondary);
    --text-muted: #4B5563;
    --border: #E2E8F0;
    --radius: 10px;
    --shadow: 0 4px 24px rgba(128, 0, 128, 0.10);
    --accent: var(--action);
    --accent-dark: var(--action-dark);
    --nav-bg: var(--bg);
    --gradient-purple: linear-gradient(125deg, #6b21b5 0%, #3b0764 60%, #1e1a4a 100%);
    --gradient-hero-overlay: linear-gradient(105deg, rgba(85, 0, 110, 0.92) 0%, rgba(128, 0, 128, 0.65) 45%, rgba(128, 0, 128, 0.2) 100%);
    --gradient-stats: linear-gradient(135deg, #5e2a7c 0%, #3b1e4f 100%);
    --gradient-cta: linear-gradient(115deg, #7a2e9e 0%, #4a1d65 100%);
    --gradient-finder: linear-gradient(95deg, #3c1b4f 0%, #2a1238 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ---------- UTILITIES ---------- */
.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
.chip:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ---------- TOPBAR ---------- */
.topbar {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    padding: 6px 0;
}

.topbar .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.topbar-left {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.topbar-left a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.88);
    transition: color .2s;
}

.topbar-left a:hover {
    color: var(--accent);
}

.topbar-right {
    display: flex;
    gap: 10px;
}

.topbar-right a {
    color: rgba(255, 255, 255, 0.75);
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all .2s;
}

.topbar-right a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* ---------- NAVBAR ---------- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    margin: 25px auto 0;
    max-width: 88%;
    padding: 12px 0;
    background-color: rgba(248, 250, 252, 0.85);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 45px 0px;
    backdrop-filter: blur(12px);
    border-radius: 20px;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    line-height: 24px;
    color: var(--secondary);
    transition: transform 0.3s, background-color 0.3s, opacity 0.3s, box-shadow 0.3s, border-color 0.3s, margin 0.3s, backdrop-filter 0.3s;
    -webkit-font-smoothing: antialiased;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-icon {
    width: 46px;
    height: 46px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}

.logo-text {
    line-height: 1.2;
}

.logo-text strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--primary-dark);
}

.logo-text span {
    font-size: 11px;
    color: var(--gray);
    letter-spacing: .4px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.nav-links a {
    padding: 8px 13px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    border-radius: 6px;
    transition: all .2s;
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--light);
    color: var(--primary);
}

.btn-appt {
    background: var(--accent);
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 30px !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    white-space: nowrap;
    transition: background .2s, transform .15s !important;
    display: flex;
    align-items: center;
    gap: 7px;
}

.btn-appt:hover {
    background: var(--accent-dark) !important;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    background: transparent;
    border: none;
    padding: 8px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    z-index: 10001;
    border-radius: 8px;
    transition: background 0.2s;
}

.hamburger:hover {
    background: rgba(128, 0, 128, 0.1);
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.25s ease;
}

/* Hamburger animation for open state */
.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 8px;
    top: 100%;
    left: 0;
    margin-top: 5px;
}

.dropdown-menu a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    white-space: nowrap;
    transition: background 0.2s;
}

.dropdown-menu a:hover {
    background-color: #f1f1f1;
    color: var(--primary);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown.active .dropdown-menu {
    display: block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-toggle i,
.dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
}

/* ---------- HERO SLIDER ---------- */
.hero {
    position: relative;
    overflow: hidden;
    height: 90vh;
    min-height: 560px;
    max-height: 750px;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero-overlay);
}

.slides {
    display: flex;
    height: 100%;
    transition: transform .7s cubic-bezier(.65, 0, .35, 1);
    position: relative;
    z-index: 2;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.slide-content {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    padding: 0 40px;
    max-width: 600px;
}

.slide-tag {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 18px;
}

.slide-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.slide-content p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    margin-bottom: 28px;
}

.slide-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    padding: 13px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(128, 0, 128, 0.25);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.7);
    padding: 12px 26px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    transform: translateY(-2px);
}

.hero-nav {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    border: none;
    cursor: pointer;
    transition: all .25s;
}

.hero-dot.active {
    background: var(--accent);
    width: 28px;
    border-radius: 8px;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.18);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all .2s;
}

.hero-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.hero-arrow.prev {
    left: 20px;
}

.hero-arrow.next {
    right: 20px;
}

/* ---------- QUICK FINDER ---------- */
.finder {
    background: var(--gradient-finder);
    padding: 26px 20px;
}

.finder-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.finder h3 {
    color: #fff;
    font-size: 17px;
    white-space: nowrap;
}

.finder-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex: 1;
}

.chip {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
}

.chip:hover,
.chip.sel {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.finder-btn {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 11px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    white-space: nowrap;
}

.finder-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* ---------- SECTIONS COMMON ---------- */
section {
    padding: 72px 20px;
}

.section-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--primary-dark);
    line-height: 1.25;
    margin-bottom: 14px;
}

.section-sub {
    color: var(--text-muted);
    max-width: 560px;
    font-size: 15.5px;
}

.section-header {
    margin-bottom: 48px;
}

.section-header.center {
    text-align: center;
}

.section-header.center .section-sub {
    margin: 0 auto;
}

/* ---------- WHY CHOOSE ---------- */
.why {
    background: var(--light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.why-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    box-shadow: var(--shadow);
    transition: transform .25s, box-shadow .25s, background .25s;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(128, 0, 128, 0.15);
    background: linear-gradient(145deg, #ffffff, #faf5ff);
    border-left: 3px solid #9b4dff;
}

.why-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
}

.why-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.why-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ---------- SERVICES GRID ---------- */
.services {
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 22px;
}

.svc-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 20px 26px;
    text-align: center;
    transition: all .25s;
    cursor: default;
}

.svc-card:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(128, 0, 128, 0.22);
}

.svc-icon {
    width: 64px;
    height: 64px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary);
    margin: 0 auto 18px;
    transition: all .25s;
}

.svc-card:hover .svc-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.svc-card h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.svc-card p {
    font-size: 13px;
    color: var(--text-muted);
    transition: color .25s;
}

.svc-card:hover p {
    color: rgba(255, 255, 255, 0.82);
}

/* ---------- MISSION & VALUES ---------- */
.mission {
    background: var(--primary-dark);
    color: #fff;
}

.mission .section-title {
    color: #fff;
}

.mission .section-sub {
    color: rgba(255, 255, 255, 0.75);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.mission-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    padding: 28px;
}

.mission-box h4 {
    color: var(--accent);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.mission-box p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    font-style: italic;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    margin-top: 36px;
}

.val-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 22px 18px;
    text-align: center;
}

.val-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent);
    margin: 0 auto 14px;
}

.val-card h5 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.val-card p {
    color: rgba(255, 255, 255, 0.70);
    font-size: 13px;
}

/* ---------- PARTNERS & TELE BANNER ---------- */
.partners {
    background: var(--light);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 20px;
}

.partner-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform .2s;
}

.partner-card:hover {
    transform: translateY(-4px);
}

.partner-card i {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}

.partner-card h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.partner-card p {
    font-size: 12px;
    color: var(--text-muted);
}

.tele-banner {
    margin-top: 40px;
    background: var(--primary);
    border-radius: var(--radius);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    color: #fff;
}

.tele-banner i {
    font-size: 36px;
    opacity: .9;
}

.tele-banner div {
    flex: 1;
}

.tele-banner strong {
    font-size: 17px;
    display: block;
    margin-bottom: 4px;
}

.tele-banner span {
    font-size: 14px;
    opacity: .85;
}

.tele-banner a {
    background: var(--accent);
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    transition: background .2s;
}

.tele-banner a:hover {
    background: var(--accent-dark);
}

/* ---------- FEATURED CONTENT ---------- */
.featured-content {
    position: relative;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgb(216, 234, 255) 0%, rgba(216, 234, 255, 0.7) 100%);
    margin: 40px 0;
}

.featured-box {
    position: relative;
    max-width: 567px;
    width: 100%;
    padding: 40px;
    background-color: rgb(216, 234, 255);
    border-radius: 20px;
    font-size: 14px;
    line-height: 24px;
    color: rgb(40, 44, 104);
    font-weight: 400;
}

.featured-box h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary);
}

.featured-box p {
    margin-bottom: 24px;
    color: var(--secondary);
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
    background: #fff;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 24px;
}

.testi-card {
    background: var(--light);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    padding: 28px;
    position: relative;
}

.testi-card .quote-icon {
    font-size: 48px;
    line-height: 1;
    color: var(--primary);
    opacity: .15;
    position: absolute;
    top: 18px;
    right: 22px;
    font-family: Georgia, serif;
}

.stars {
    color: var(--accent);
    font-size: 15px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testi-card p {
    font-size: 15px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 20px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.testi-author strong {
    font-size: 15px;
    display: block;
}

.testi-author span {
    font-size: 13px;
    color: var(--text-muted);
}

/* ---------- STATS BAND ---------- */
.stats {
    background: var(--gradient-stats);
    padding: 48px 20px;
    color: #fff;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    text-align: center;
}

.stat-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--accent);
}

.stat-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.80);
    margin-top: 4px;
}

/* ---------- CTA ---------- */
.cta {
    background: var(--gradient-cta);
    padding: 56px 20px;
    text-align: center;
}

.cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #fff;
    margin-bottom: 12px;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
    font-size: 16px;
}

.cta a {
    background: #fff;
    color: var(--accent-dark);
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: transform .2s;
}

.cta a:hover {
    transform: translateY(-2px);
}

/* ---------- PAGE HERO (About, Services, Contact, Pharmacy) ---------- */
.page-hero {
    padding-top: 120px;
    padding-bottom: 0;
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?w=1600&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.13;
}

.page-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 56px;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.65);
    transition: color .2s;
}

.breadcrumb a:hover {
    color: var(--accent);
}

.page-hero-inner h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    line-height: 1.2;
    margin-bottom: 14px;
    max-width: 640px;
}

.page-hero-inner p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    max-width: 560px;
    margin-bottom: 32px;
}

/* ---------- ABOUT PAGE ---------- */
.about-intro {
    background: #fff;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 460px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 78%;
    height: 82%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(128, 0, 128, 0.18);
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 56%;
    height: 54%;
    object-fit: cover;
    border-radius: 16px;
    border: 5px solid #fff;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
}

.about-badge {
    position: absolute;
    bottom: 36px;
    left: 0;
    background: var(--primary-dark);
    color: #fff;
    border-radius: var(--radius);
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(128, 0, 128, 0.25);
    z-index: 2;
    line-height: 1.5;
}

.about-text p {
    color: var(--text-muted);
    font-size: 15.5px;
    margin-bottom: 18px;
    line-height: 1.8;
}

.about-checklist {
    list-style: none;
    margin: 24px 0 32px;
}

.about-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14.5px;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 12px;
}

.about-checklist li::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--accent);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-size: 13px;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 2px;
}

/* ---------- TEAM SECTION ---------- */
.team {
    background: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.team-card {
    background: var(--light);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .25s, box-shadow .25s;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(128, 0, 128, 0.16);
}

.team-photo {
    width: 100%;
    height: 200px;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: rgba(255, 255, 255, 0.25);
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 22px 20px;
}

.team-info h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.team-info .role {
    font-size: 13px;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}

.team-info p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ---------- SERVICES PAGE ---------- */
.services-section .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.services-section .svc-card {
    background: var(--bg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.svc-img-wrap {
    overflow: hidden;
    position: relative;
}

.svc-img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}

.services-section .svc-card:hover .svc-img {
    transform: scale(1.04);
}

.svc-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
}

.svc-body {
    padding: 24px 24px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.svc-body h4 {
    font-size: 17px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.svc-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    flex: 1;
}

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 18px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    transition: gap .2s, color .2s;
}

.svc-link:hover {
    gap: 11px;
    color: var(--primary-dark);
}

/* Highlights Section */
.highlights-section {
    background: #fff;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.hl-card {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}

.hl-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(128, 0, 128, 0.12);
    border-color: var(--primary);
}

.hl-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
}

.hl-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.hl-card p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ---------- PHARMACY PAGE ---------- */
.hero-search {
    display: flex;
    max-width: 520px;
    margin: 0 auto;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.hero-search input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 22px;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    color: var(--text);
}

.hero-search button {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 14px 26px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background .2s;
    display: flex;
    align-items: center;
    gap: 7px;
}

.categories {
    background: var(--light);
    padding: 36px 20px;
}

.cat-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.cat-chip {
    background: #fff;
    border: 1.5px solid var(--border);
    color: var(--text-muted);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cat-chip i {
    color: var(--primary);
    font-size: 14px;
}

.cat-chip:hover,
.cat-chip.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* Products */
.products-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}

.prod-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all .25s;
    display: flex;
    flex-direction: column;
}

.prod-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(128, 0, 128, 0.13);
}

.prod-img {
    height: 160px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    position: relative;
    overflow: hidden;
}

.prod-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.prod-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 30px;
}

.prod-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.prod-body h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.prod-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.prod-price {
    font-size: 17px;
    font-weight: 800;
    color: var(--primary-dark);
}

.btn-order {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 9px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: background .2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Delivery Banner */
.delivery-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    padding: 36px 40px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 48px;
}

/* How to Order Steps */
.how {
    background: var(--light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.step-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
}

.step-num {
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    margin: 0 auto 16px;
}

.step-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

/* Prescription Section */
.rx-section {
    background: var(--primary-dark);
    color: #fff;
}

.rx-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.rx-upload-box {
    background: rgba(255, 255, 255, 0.07);
    border: 2px dashed rgba(255, 255, 255, 0.28);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    cursor: pointer;
    transition: all .2s;
}

.rx-upload-box i {
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 16px;
    display: block;
}

.wa-rx-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    background: var(--accent);
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    transition: background .2s;
}

/* FAQ Section */
.faq-section {
    background: var(--light);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: var(--radius);
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    gap: 12px;
}

.faq-a {
    display: none;
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item.open .faq-a {
    display: block;
}

/* ---------- CONTACT PAGE ---------- */
.contact-cards-section {
    background: var(--light);
    padding: 64px 20px;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
}

.contact-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform .25s, box-shadow .25s;
    border-top: 3px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-top-color: var(--primary);
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 26px;
    color: var(--primary);
    transition: all .25s;
}

.contact-card:hover .contact-card-icon {
    background: var(--primary);
    color: #fff;
}

.contact-main {
    background: #fff;
    padding: 72px 20px;
}

.contact-two-col {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: start;
}

.info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.info-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary);
}

.contact-form-wrap {
    background: var(--light);
    border-radius: 16px;
    padding: 38px 36px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 14px;
    font-family: 'Nunito', sans-serif;
    color: var(--text);
    outline: none;
    transition: border-color .2s;
}

.form-submit {
    background: var(--primary);
    color: #fff;
    border: none;
    width: 100%;
    padding: 14px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.wa-quick {
    margin-top: 20px;
    background: #25D366;
    color: #fff;
    border-radius: 30px;
    padding: 12px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    transition: background .2s;
}

/* Facilities & Map */
.facilities-section {
    background: var(--light);
    padding: 72px 20px;
}

.facilities-two-col {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

.map-embed {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(128, 0, 128, 0.12);
    border: 2px solid var(--border);
}

.map-embed iframe {
    width: 100%;
    height: 340px;
    border: none;
    display: block;
}

.facility-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

/* ---------- FOOTER ---------- */
footer {
    background: #0D1F1C;
    color: rgba(255, 255, 255, 0.80);
    padding: 60px 20px 0;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 40px;
    padding-bottom: 48px;
}

footer h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all .2s;
}

.footer-socials a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.70);
    font-size: 14px;
    transition: color .2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
}

/* ---------- BACK TO TOP ---------- */
.back-top {
    position: fixed;
    bottom: 28px;
    right: 24px;
    background: var(--primary);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
    z-index: 800;
    border: none;
    cursor: pointer;
}

.back-top.visible {
    opacity: 1;
    pointer-events: all;
}

/* ---------- RESPONSIVE STYLES ---------- */
@media (max-width: 900px) {
    nav {
        margin: 15px auto 0;
        max-width: 94%;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 84px;
        left: 5%;
        right: 5%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        z-index: 10000;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.25s ease, transform 0.25s ease;
        pointer-events: none;
    }

    .nav-links.open {
        display: flex;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 12px 16px;
        border-radius: 12px;
        text-align: left;
    }

    .hamburger {
        display: flex;
    }

    /* Mobile Dropdown Styles */
    .dropdown {
        display: block;
        width: 100%;
    }

    .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 12px 16px;
        border-radius: 12px;
        background: transparent;
        border: none;
        cursor: pointer;
        font-weight: 600;
        font-size: 14px;
        color: var(--text);
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 20px;
        background: rgba(128, 0, 128, 0.05);
        margin-top: 5px;
        border-radius: 12px;
        display: none;
        width: 100%;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 10px 16px 10px 30px;
        white-space: normal;
    }

    .mission-grid,
    .rx-grid,
    .contact-two-col,
    .facilities-two-col,
    .about-intro-grid {
        grid-template-columns: 1fr;
    }

    .step-arrow {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .slide-content {
        padding: 0 20px;
    }

    .slide-btns .btn-primary,
    .slide-btns .btn-outline {
        padding: 10px 18px;
        font-size: 13px;
    }

    .why-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .about-images {
        height: 320px;
    }
}

@media (max-width: 600px) {
    .hero {
        height: 75vh;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }

    .contact-form-wrap {
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .page-hero-inner {
        padding: 40px 20px 44px;
    }
}

@media (max-width: 540px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}