:root {
    /* Color Palette - Modern Clinical Luxe */
    --primary: #0f172a;
    --accent: #10b981;
    --accent-light: #d1fae5;
    --secondary: #64748b;
    --natural: #f8fafc;
    --pure: #ffffff;

    /* Luxury Accents */
    --gold: #c5a059;
    --gold-light: #f59e0b22;

    /* Layout */
    --container-max: 1280px;
    --radius-luxe: 24px;
    --radius-pill: 99px;

    /* Shadow & Glass */
    --shadow-soft: 0 10px 30px -10px rgba(0,0,0,0.05);
    --shadow-luxe: 0 20px 50px -15px rgba(15, 23, 42, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.3);

    /* Gradients */
    --grad-clinical: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    --grad-emerald: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --grad-navy: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --grad-mesh: radial-gradient(at 0% 0%, hsla(161, 84%, 39%, 0.05) 0, transparent 50%),
                 radial-gradient(at 50% 0%, hsla(222, 47%, 11%, 0.03) 0, transparent 50%),
                 radial-gradient(at 100% 0%, hsla(161, 84%, 39%, 0.05) 0, transparent 50%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    background: var(--grad-clinical);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.luxury-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul { list-style: none; }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ---- ACCESSIBILITY: FOCUS STATES ---- */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ---- NAVIGATION ---- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#navbar.scrolled {
    padding: 1rem 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--pure);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.logo span span { color: var(--accent); }

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary);
}

.nav-links a:hover { color: var(--primary); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary);
    position: relative;
    padding: 0.5rem;
    border-radius: 8px;
    transition: 0.2s;
}

.icon-btn:hover { background: var(--natural); }

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent);
    color: var(--pure);
    font-size: 0.65rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.premium-btn {
    background: var(--primary);
    color: var(--pure);
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: 0.3s;
}

.premium-btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary);
    padding: 0.5rem;
    border-radius: 8px;
}

/* ---- MOBILE MENU ---- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100%;
    background: var(--pure);
    z-index: 2000;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.12);
}

.mobile-menu.open { right: 0; }

.mobile-close {
    background: none;
    border: none;
    cursor: pointer;
    align-self: flex-end;
    color: var(--secondary);
    padding: 0.25rem;
    border-radius: 8px;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.mobile-menu ul a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
}

.mobile-menu ul a:hover { color: var(--accent); }

.mobile-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #25D366;
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: auto;
    transition: 0.3s;
}

.mobile-wa-btn:hover {
    background: #1ebe5a;
    transform: translateY(-2px);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
}

.mobile-overlay.open {
    opacity: 1;
    pointer-events: all;
}

/* ---- HERO SECTION ---- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--grad-mesh);
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.sphere-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-light);
    top: -10%;
    right: -10%;
}

.sphere-2 {
    width: 400px;
    height: 400px;
    background: #e0f2fe;
    bottom: 10%;
    left: -5%;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
    background: var(--pure);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 2rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--secondary);
    max-width: 500px;
    margin-bottom: 3rem;
}

.hero-search-bar {
    display: flex;
    background: var(--pure);
    padding: 0.75rem;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-luxe);
    max-width: 600px;
    margin-bottom: 4rem;
    position: relative;
}

.search-input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 1.5rem;
}

.search-input-wrapper input {
    border: none;
    outline: none;
    width: 100%;
    font-family: inherit;
    font-size: 1rem;
    background: transparent;
}

.search-btn {
    background: var(--primary);
    color: var(--pure);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}

.search-btn:hover {
    background: var(--accent);
}

/* ---- SEARCH DROPDOWN ---- */
.search-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--pure);
    border-radius: 20px;
    box-shadow: var(--shadow-luxe);
    border: 1px solid #e2e8f0;
    z-index: 600;
    overflow: hidden;
    display: none;
}

.search-dropdown.open { display: block; }

.search-result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1.5rem;
    width: 100%;
    background: none;
    border: none;
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: background 0.2s;
}

.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--natural); }

.search-result-emoji { font-size: 1.5rem; line-height: 1; }
.search-result-name { flex: 1; font-weight: 600; font-size: 0.9rem; color: var(--primary); }
.search-result-price { font-weight: 700; color: var(--accent); font-size: 0.9rem; }

.search-dropdown-empty {
    padding: 1.25rem 1.5rem;
    font-size: 0.9rem;
    color: var(--secondary);
}

/* ---- HERO STATS ---- */
.hero-stats {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.stat { display: flex; flex-direction: column; }

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
}

.stat-value small {
    color: var(--accent);
    margin-left: 2px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: #e2e8f0;
}

/* Hero Visual */
.hero-visual { position: relative; }

.main-visual-circle {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: var(--pure);
    position: relative;
    padding: 20px;
    box-shadow: var(--shadow-luxe);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.floating-cards {
    position: absolute;
    inset: 0;
    z-index: 5;
}

.float-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 1rem 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-soft);
}

.card-1 {
    top: 10%;
    left: -15%;
    animation: float 4s ease-in-out infinite;
}

.card-2 {
    bottom: 20%;
    right: -10%;
    animation: float 4s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.float-icon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: var(--pure);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.float-text h4 { font-size: 0.9rem; margin-bottom: 2px; }
.float-text p { font-size: 0.75rem; color: var(--secondary); }

/* ---- TRUST STRIP ---- */
.trust-strip {
    background: var(--pure);
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    padding: 2.5rem 0;
}

.trust-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 200px;
}

.trust-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-item h5 { font-size: 0.9rem; margin-bottom: 2px; }
.trust-item p { font-size: 0.8rem; color: var(--secondary); }

.trust-divider {
    width: 1px;
    height: 48px;
    background: #e2e8f0;
    flex-shrink: 0;
}

/* ---- DEPARTMENTS ---- */
.departments {
    padding: 8rem 0;
    background: radial-gradient(circle at 10% 20%, rgba(16, 185, 129, 0.03) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.03) 0%, transparent 40%);
}

.dept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.dept-card {
    display: flex;
    flex-direction: column;
    padding: 0 !important;
    overflow: hidden;
    border-radius: var(--radius-luxe);
}

.dept-img-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.dept-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s transform cubic-bezier(0.4, 0, 0.2, 1);
}

.dept-card:hover .dept-img-wrapper img { transform: scale(1.1); }

.dept-info { padding: 2.5rem; }
.dept-info h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.dept-info p { color: var(--secondary); margin-bottom: 2rem; }

.dept-features { display: grid; grid-template-columns: 1fr; gap: 1rem; }

.dept-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary);
}

.dept-features li i { color: var(--accent); width: 18px; }

/* ---- SECTION SHARED ---- */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.eyebrow {
    display: inline-block;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title { font-size: 3rem; color: var(--primary); }

/* ---- ABOUT ---- */
.about-detailed {
    padding: 10rem 0;
    background: var(--natural);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
    align-items: center;
}

.about-text-content p {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 4rem;
    max-width: 600px;
}

.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }

.pillar-num {
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 1rem;
}

.pillar h4 { margin-bottom: 1rem; }
.pillar p { font-size: 0.9rem; margin-bottom: 0; }

.about-visual-detailed {
    height: 600px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-luxe);
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 3rem;
    overflow: hidden;
}

.about-visual-detailed::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('hero.png') no-repeat center center;
    background-size: cover;
    opacity: 0.4;
    filter: grayscale(100%);
}

.experience-card {
    position: relative;
    z-index: 2;
    background: var(--pure);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-luxe);
    max-width: 250px;
}

.exp-years {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.experience-card p { font-size: 0.85rem; font-weight: 600; color: var(--secondary); }

/* ---- PHARMACY / PRODUCTS ---- */
.pharmacy-featured {
    padding: 10rem 0;
    background: linear-gradient(to bottom, #fff 0%, var(--natural) 100%);
    position: relative;
}

.pharmacy-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255,255,255,1), rgba(255,255,255,0));
}

.filter-pills {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 2rem;
    border-radius: var(--radius-pill);
    border: 1px solid #e2e8f0;
    background: var(--pure);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    color: var(--secondary);
    font-family: inherit;
}

.filter-btn:hover { border-color: var(--accent); color: var(--accent); }

.filter-btn.active {
    background: var(--primary);
    color: var(--pure);
    border-color: var(--primary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.product-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: var(--radius-luxe);
    padding: 1.5rem;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-luxe);
    border-color: var(--accent-light);
}

.product-tag {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 99px;
}

.product-visual {
    height: 180px;
    background: var(--natural);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 3rem;
    transition: 0.3s;
}

.product-card:hover .product-visual { background: var(--pure); }

.product-info h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--primary); }
.product-info p { font-size: 0.85rem; color: var(--secondary); margin-bottom: 1.5rem; }

.product-meta {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price { font-size: 1.25rem; font-weight: 700; color: var(--primary); }

.cart-add-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--primary);
    color: var(--pure);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.cart-add-btn:hover {
    background: var(--accent);
    transform: scale(1.1);
}

.grid-footer { text-align: center; margin-top: 5rem; }

.secondary-btn {
    background: none;
    border: 1px solid #e2e8f0;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: 0.3s;
    font-family: inherit;
}

.secondary-btn:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.no-results {
    text-align: center;
    padding: 4rem 0 2rem;
    font-size: 1rem;
    color: var(--secondary);
}

.no-results a { color: var(--accent); font-weight: 600; }

/* ---- TESTIMONIALS ---- */
.testimonials {
    padding: 8rem 0;
    background: var(--grad-clinical);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: var(--pure);
    border: 1px solid #f1f5f9;
    border-radius: var(--radius-luxe);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-luxe);
    border-color: var(--accent-light);
}

.stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 1.25rem;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: var(--secondary);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--pure);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.testimonial-author h5 { font-size: 0.9rem; margin-bottom: 2px; }
.testimonial-author span { font-size: 0.78rem; color: var(--secondary); }

/* ---- FAQ ---- */
.faq-section {
    padding: 8rem 0;
    background: var(--pure);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.open { border-color: var(--accent); }

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    text-align: left;
}

.faq-question i { flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-question i { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9rem;
    color: var(--secondary);
    line-height: 1.75;
}

/* ---- SERVICES ---- */
.services {
    background: var(--grad-navy);
    color: var(--pure);
    padding: 10rem 0;
    border-radius: 80px 80px 0 0;
    position: relative;
    overflow: hidden;
}

.services::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: var(--accent);
    filter: blur(150px);
    opacity: 0.1;
    border-radius: 50%;
}

.services-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.services .section-title { color: var(--pure); }

/* Contrast fix: secondary color is too dark on the navy background */
.services-content p {
    color: #cbd5e1;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.services-list { display: flex; flex-direction: column; gap: 2rem; }

.service-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 24px;
    transition: 0.3s;
    cursor: pointer;
}

.service-item.active {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.s-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.s-text h4 { font-size: 1.1rem; margin-bottom: 5px; }

/* Contrast fix for service description text on dark bg */
.s-text p { font-size: 0.9rem; color: #cbd5e1; margin-bottom: 0; }

.luxe-image {
    width: 100%;
    border-radius: var(--radius-luxe);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

/* ---- CONTACT SECTION ---- */
.contact-section {
    padding: 8rem 0;
    background: var(--natural);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-top: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--pure);
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    box-shadow: var(--shadow-soft);
    transition: 0.3s;
}

.contact-card:hover {
    border-color: var(--accent-light);
    transform: translateX(4px);
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary);
    margin-bottom: 4px;
}

.contact-card p,
.contact-card a {
    font-size: 0.95rem;
    color: var(--primary);
    line-height: 1.6;
}

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

.whatsapp-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #25D366;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 1rem;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
    color: #fff;
}

.map-embed {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid #f1f5f9;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--pure);
    border-radius: var(--radius-luxe);
    padding: 3rem;
    border: 1px solid #f1f5f9;
    box-shadow: var(--shadow-luxe);
}

.contact-form-wrapper h3 { font-size: 1.5rem; margin-bottom: 2rem; }

.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }

.form-group label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.75px;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1.25rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--primary);
    background: var(--natural);
    transition: border-color 0.2s, background 0.2s;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--pure);
}

.form-error {
    font-size: 0.8rem;
    color: #ef4444;
    min-height: 1rem;
}

.form-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #25D366;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-pill);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}

/* ---- FOOTER ---- */
.luxe-footer {
    padding: 6rem 0 3rem;
    background: var(--natural);
    border-top: 1px solid #e2e8f0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1.5fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 3rem;
}

.footer-brand p { margin-top: 1.5rem; color: var(--secondary); font-size: 0.95rem; }

.footer-links-group { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

.footer-col h4 { margin-bottom: 1.5rem; font-size: 1rem; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul a { color: var(--secondary); font-size: 0.9rem; }
.footer-col ul a:hover { color: var(--accent); }

.footer-cta h4 { margin-bottom: 1.5rem; }

.footer-wa {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--pure);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-soft);
    font-weight: 700;
    border: 1px solid #e2e8f0;
    transition: 0.3s;
}

.footer-wa:hover { border-color: var(--accent); color: var(--accent); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--secondary);
}

.legal-links { display: flex; gap: 2rem; }
.legal-links a:hover { color: var(--accent); }

/* ---- CART DRAWER ---- */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -500px;
    width: min(440px, 100vw);
    height: 100%;
    background: var(--pure);
    z-index: 3000;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 60px rgba(0,0,0,0.15);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-drawer.open { right: 0; }

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
}

.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #f1f5f9;
    flex-shrink: 0;
}

.cart-drawer-header h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.15rem;
}

.cart-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--secondary);
    padding: 0.4rem;
    border-radius: 8px;
    transition: 0.2s;
    display: flex;
}

.cart-close:hover { background: var(--natural); color: var(--primary); }

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    height: 100%;
    color: var(--secondary);
    text-align: center;
}

.cart-empty-icon { font-size: 3rem; opacity: 0.4; }
.cart-empty p { font-size: 1rem; font-weight: 600; color: var(--primary); }
.cart-empty span { font-size: 0.85rem; max-width: 200px; line-height: 1.5; }

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--natural);
    border-radius: 14px;
    border: 1px solid #f1f5f9;
}

.cart-item-emoji { font-size: 1.75rem; line-height: 1; flex-shrink: 0; }

.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info h4 { font-size: 0.88rem; margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-price { font-size: 0.78rem; color: var(--secondary); }

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid #e2e8f0;
    background: var(--pure);
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    color: var(--primary);
    line-height: 1;
    font-family: inherit;
}

.qty-btn:hover { border-color: var(--accent); color: var(--accent); }

.qty-val {
    font-size: 0.9rem;
    font-weight: 700;
    min-width: 22px;
    text-align: center;
}

.remove-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: #fee2e2;
    color: #ef4444;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 4px;
    transition: 0.2s;
    font-family: inherit;
}

.remove-btn:hover { background: #fecaca; }

.cart-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-shrink: 0;
}

.cart-subtotal { font-size: 1rem; color: var(--secondary); }
.cart-subtotal strong { font-size: 1.3rem; color: var(--primary); }

.whatsapp-order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #25D366;
    color: #fff;
    border: none;
    padding: 1rem;
    border-radius: var(--radius-pill);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.whatsapp-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}

.cart-note {
    font-size: 0.75rem;
    color: var(--secondary);
    text-align: center;
    line-height: 1.5;
}

/* ---- LUXE CARD (shared) ---- */
.luxe-card {
    background: var(--pure);
    padding: 3rem 2rem;
    border-radius: var(--radius-luxe);
    border: 1px solid #f1f5f9;
    display: block;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.luxe-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: var(--shadow-luxe);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .dept-grid,
    .about-grid { grid-template-columns: 1fr; }

    .about-visual-detailed { height: 400px; }

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

    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

    .trust-items { justify-content: center; }
}

@media (max-width: 768px) {
    .mobile-toggle { display: flex; }
    .nav-links { display: none; }
    .nav-actions .premium-btn { display: none; }

    .hero .container { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .hero-title { font-size: 2.8rem; }
    .hero-search-bar { flex-direction: column; border-radius: 20px; gap: 0.5rem; }
    .search-input-wrapper { padding: 0.5rem 1rem; }
    .search-btn { border-radius: 14px; }

    .trust-divider { display: none; }
    .trust-items { flex-direction: column; gap: 1.5rem; align-items: flex-start; }

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

    .services { border-radius: 40px 40px 0 0; }
    .services-wrapper { grid-template-columns: 1fr; gap: 3rem; }
    .services-visual { display: none; }

    .footer-top { grid-template-columns: 1fr; gap: 3rem; }
    .footer-links-group { grid-template-columns: 1fr 1fr; }

    .contact-form-wrapper { padding: 2rem; }

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

    .section-title { font-size: 2.25rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .hero-stats { gap: 1.5rem; }
    .stat-divider { display: none; }
}
