/* ================================================================
   BAPUPHARMA.CSS  — Professional Indian Pharmacy Website Styles
   ================================================================ */

/* ── CSS Variables ── */
:root {
    --green-dark: #0d5c2f;
    --green-mid: #157a40;
    --green-main: #1a9950;
    --green-light: #2bbf66;
    --green-pale: #e6f7ee;
    --green-glass: rgba(26, 153, 80, 0.08);
    --saffron: #FF6B00;
    --saffron-light: #ff8c3a;
    --navy: #0a1628;
    --navy-mid: #162540;
    --text-dark: #0f1923;
    --text-body: #374151;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --border: #e5e7eb;
    --border-mid: #d1d5db;
    --white: #ffffff;
    --bg-light: #f8faf9;
    --bg-alt: #f0f7f3;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, .10), 0 2px 6px rgba(0, 0, 0, .06);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, .14), 0 4px 12px rgba(0, 0, 0, .08);
    --shadow-green: 0 8px 32px rgba(26, 153, 80, .20);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --font-body: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ── Skip Link ── */
.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: var(--green-main);
    color: var(--white);
    padding: .5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: .875rem;
    font-weight: 600;
    z-index: 9999;
    transition: top .2s;
}

.skip-link:focus {
    top: 1rem;
}

/* ── Container ── */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ────────────────────────────────
   TOP ANNOUNCEMENT BAR
──────────────────────────────── */
.top-bar {
    background: linear-gradient(90deg, var(--green-dark) 0%, var(--green-mid) 100%);
    color: var(--white);
    padding: .55rem 1rem;
    text-align: center;
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .01em;
    z-index: 1001;
    position: relative;
}

.top-bar-text {
    margin: 0;
}

.top-bar-icon {
    margin: 0 .1rem;
}

.top-bar-link {
    color: #a8f0c6;
    text-decoration: underline;
}

.top-bar-link:hover {
    color: var(--white);
}

/* ────────────────────────────────
   HEADER / NAVIGATION
──────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, .12);
    border-bottom-color: transparent;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .8rem 0;
}

.logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: .15rem;
}

.nav-link {
    display: inline-block;
    padding: .45rem .75rem;
    font-size: .88rem;
    font-weight: 500;
    color: var(--text-body);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 2px;
    background: var(--green-main);
    border-radius: 2px;
    transition: left .25s, right .25s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--green-main);
}

.nav-link:hover::after,
.nav-link.active::after {
    left: .75rem;
    right: .75rem;
}

.header-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: linear-gradient(135deg, var(--green-main), var(--green-dark));
    color: var(--white);
    padding: .55rem 1.2rem;
    border-radius: var(--radius-md);
    font-size: .88rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-green);
    transition: var(--transition);
    flex-shrink: 0;
}

.header-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(26, 153, 80, .35);
}

/* ── Hamburger ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .25rem;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Nav ── */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: .5rem 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
}

.mobile-nav.open {
    display: flex;
    max-height: 500px;
}

.mobile-nav-link {
    display: block;
    padding: .75rem 1.5rem;
    font-size: .95rem;
    font-weight: 500;
    color: var(--text-body);
    border-bottom: 1px solid var(--bg-light);
    transition: background .2s, color .2s;
}

.mobile-nav-link:hover {
    background: var(--green-pale);
    color: var(--green-main);
    padding-left: 2rem;
}

/* ────────────────────────────────
   HERO SECTION
──────────────────────────────── */
#home {
    background: linear-gradient(145deg, #062115 0%, #0d5c2f 40%, #157a40 75%, #1e8f4f 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0 4rem;
    min-height: 88vh;
    display: flex;
    align-items: center;
}

#home::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255, 107, 0, .12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(26, 153, 80, .25) 0%, transparent 50%);
    pointer-events: none;
}

/* Floating rings decoration */
#home::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border: 120px solid rgba(255, 255, 255, .03);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-bottom: 1.4rem;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .2);
    color: var(--white);
    padding: .35rem .85rem;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .03em;
}

.hero-pill .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-light);
    display: inline-block;
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.3
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.2rem;
}

.hero-title .accent {
    color: var(--green-light);
}

.hero-title .saffron-accent {
    color: #ffb347;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .82);
    margin-bottom: 2rem;
    max-width: 480px;
    line-height: 1.7;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--white);
    color: var(--green-dark);
    padding: .9rem 2rem;
    border-radius: var(--radius-md);
    font-size: .95rem;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
    transition: var(--transition);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, .3);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border: 2px solid rgba(255, 255, 255, .5);
    color: var(--white);
    padding: .9rem 2rem;
    border-radius: var(--radius-md);
    font-size: .95rem;
    font-weight: 600;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, .12);
    border-color: var(--white);
}

.hero-trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: .4rem;
    color: rgba(255, 255, 255, .85);
    font-size: .82rem;
    font-weight: 500;
}

.hero-trust-item .check {
    color: var(--green-light);
    font-size: 1rem;
}

/* Hero Right: Certification Cards stacked */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.hero-cert-card {
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius-lg);
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.hero-cert-card:hover {
    background: rgba(255, 255, 255, .16);
    transform: translateX(5px);
}

.hero-cert-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.hero-cert-title {
    font-weight: 700;
    color: var(--white);
    font-size: .95rem;
}

.hero-cert-sub {
    font-size: .78rem;
    color: rgba(255, 255, 255, .7);
    margin-top: .1rem;
}

/* ────────────────────────────────
   STATS SECTION
──────────────────────────────── */
#stats-section {
    background: var(--white);
    padding: 3rem 0;
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.stat-card {
    padding: 1.5rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: var(--bg-light);
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--green-main);
    background: var(--green-pale);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: .5rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--green-dark);
    line-height: 1;
}

.stat-label {
    font-size: .82rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: .4rem;
}

/* ────────────────────────────────
   SECTION SHARED STYLES
──────────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-eyebrow {
    display: inline-block;
    background: var(--green-pale);
    color: var(--green-dark);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .35rem 1rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: .75rem;
}

.section-title .accent {
    color: var(--green-main);
}

.section-desc {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--green-main), var(--green-light));
    border-radius: 2px;
    margin: 1rem auto 0;
}

/* ────────────────────────────────
   ABOUT SECTION
──────────────────────────────── */
#about {
    padding: 6rem 0;
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.about-text p {
    font-size: .97rem;
    color: var(--text-body);
    margin-bottom: 1rem;
    line-height: 1.75;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .8rem;
    margin-top: 1.5rem;
}

.about-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    padding: .8rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    font-size: .875rem;
    font-weight: 500;
    color: var(--text-body);
    transition: var(--transition);
}

.about-highlight-item:hover {
    border-color: var(--green-main);
    color: var(--green-dark);
    box-shadow: var(--shadow-sm);
}

.about-highlight-item .ah-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: .05rem;
}

/* About visual panel */
.about-visual {
    position: relative;
}

.about-visual-main {
    background: linear-gradient(145deg, var(--green-dark), var(--green-main));
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    color: var(--white);
    box-shadow: var(--shadow-green);
}

.about-visual-main h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.license-detail {
    background: rgba(255, 255, 255, .12);
    border-radius: var(--radius-md);
    padding: .9rem 1.1rem;
    margin-bottom: .8rem;
    font-size: .88rem;
}

.license-detail strong {
    display: block;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: rgba(255, 255, 255, .7);
    margin-bottom: .2rem;
}

.about-visual-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1rem 1.3rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: .7rem;
    font-size: .85rem;
    font-weight: 600;
    color: var(--green-dark);
}

.about-visual-badge .badge-icon {
    font-size: 1.8rem;
}

/* ────────────────────────────────
   CERTIFICATIONS SECTION
──────────────────────────────── */
#certifications {
    padding: 6rem 0;
    background: var(--white);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cert-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-main), var(--green-light));
    opacity: 0;
    transition: opacity .28s;
}

.cert-card:hover {
    border-color: var(--green-main);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.cert-card:hover::before {
    opacity: 1;
}

.cert-card-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--green-pale), #c6f2d8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.2rem;
    border: 3px solid rgba(26, 153, 80, .15);
    transition: var(--transition);
}

.cert-card:hover .cert-card-icon {
    background: linear-gradient(135deg, var(--green-main), var(--green-dark));
    border-color: var(--green-main);
    transform: scale(1.08);
}

.cert-card-icon span {
    transition: var(--transition);
}

.cert-card:hover .cert-card-icon span {
    filter: grayscale(1) brightness(10);
}

.cert-card-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: .5rem;
}

.cert-card-authority {
    font-size: .78rem;
    font-weight: 600;
    color: var(--green-main);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .8rem;
}

.cert-card-desc {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.cert-status {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    margin-top: 1rem;
    padding: .3rem .8rem;
    background: var(--green-pale);
    color: var(--green-dark);
    border-radius: 999px;
    font-size: .74rem;
    font-weight: 700;
}

.cert-status .dot {
    width: 6px;
    height: 6px;
    background: var(--green-main);
    border-radius: 50%;
}

/* ────────────────────────────────
   SERVICES SECTION
──────────────────────────────── */
#services {
    padding: 6rem 0;
    background: var(--bg-alt);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    transition: var(--transition);
    cursor: default;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--green-main);
    box-shadow: var(--shadow-lg);
}

.service-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
    background: linear-gradient(135deg, var(--green-main), var(--green-dark));
    transform: rotate(-5deg) scale(1.1);
}

.service-card:hover .service-icon-wrap .s-icon {
    filter: grayscale(1) brightness(10);
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: .6rem;
}

.service-card-desc {
    font-size: .875rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.service-tag {
    margin-top: 1rem;
    display: inline-block;
    background: var(--green-glass);
    color: var(--green-dark);
    border: 1px solid rgba(26, 153, 80, .2);
    padding: .25rem .7rem;
    border-radius: 999px;
    font-size: .74rem;
    font-weight: 600;
}

/* ────────────────────────────────
   WHY CHOOSE US
──────────────────────────────── */
#why-us {
    padding: 6rem 0;
    background: linear-gradient(145deg, var(--green-dark) 0%, #0a3d22 100%);
    position: relative;
    overflow: hidden;
}

#why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 70% at 90% 50%, rgba(255, 107, 0, .1) 0%, transparent 60%);
    pointer-events: none;
}

#why-us .section-title {
    color: var(--white);
}

#why-us .section-eyebrow {
    background: rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .9);
}

#why-us .section-desc {
    color: rgba(255, 255, 255, .75);
}

#why-us .section-divider {
    background: linear-gradient(90deg, var(--green-light), var(--saffron-light));
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    position: relative;
    z-index: 2;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: var(--transition);
}

.why-item:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateX(5px);
}

.why-item-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-top: .1rem;
}

.why-item-title {
    font-family: var(--font-heading);
    font-size: .95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .35rem;
}

.why-item-desc {
    font-size: .82rem;
    color: rgba(255, 255, 255, .72);
    line-height: 1.6;
}

/* ────────────────────────────────
   POLICIES SECTION
──────────────────────────────── */
#policies {
    padding: 6rem 0;
    background: var(--bg-light);
}

.policies-accordion {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    max-width: 860px;
    margin: 0 auto;
}

.policy-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color .25s, box-shadow .25s;
}

.policy-item.open {
    border-color: var(--green-main);
    box-shadow: 0 4px 16px rgba(26, 153, 80, .1);
}

.policy-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    user-select: none;
    gap: .5rem;
}

.policy-header:hover {
    background: var(--bg-light);
}

.policy-header-left {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.policy-color-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.policy-title {
    font-family: var(--font-heading);
    font-size: .97rem;
    font-weight: 700;
    color: var(--text-dark);
}

.policy-chevron {
    font-size: .7rem;
    color: var(--text-muted);
    transition: transform .3s ease;
    flex-shrink: 0;
    font-style: normal;
}

.policy-item.open .policy-chevron {
    transform: rotate(180deg);
    color: var(--green-main);
}

.policy-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(0.4, 0, 0.2, 1), padding .4s;
    padding: 0 1.5rem;
}

.policy-item.open .policy-body {
    max-height: 900px;
    padding: 0 1.5rem 1.5rem;
}

.policy-body p,
.policy-body ul {
    font-size: .875rem;
    color: var(--text-body);
    line-height: 1.75;
}

.policy-body ul {
    padding-left: 1.2rem;
    list-style: disc;
}

.policy-body ul li {
    margin-bottom: .35rem;
}

.policy-body p+p {
    margin-top: .75rem;
}

.policy-body h5 {
    font-size: .9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 1rem 0 .4rem;
}

.policy-body .policy-notice {
    background: var(--green-pale);
    border-left: 3px solid var(--green-main);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: .75rem 1rem;
    margin: 1rem 0;
    font-size: .82rem;
    color: var(--green-dark);
    font-weight: 500;
}

/* ────────────────────────────────
   CONTACT SECTION
──────────────────────────────── */
#contact {
    padding: 6rem 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: .9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.contact-detail-list {
    display: flex;
    flex-direction: column;
    gap: .8rem;
    margin-bottom: 1.5rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    padding: .9rem 1.1rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    font-size: .875rem;
    color: var(--text-body);
    transition: var(--transition);
}

.contact-detail-item:hover {
    border-color: var(--green-main);
    background: var(--green-pale);
}

.contact-detail-item .cd-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: .05rem;
}

.contact-detail-item a {
    color: var(--green-dark);
    font-weight: 500;
}

.contact-detail-item a:hover {
    text-decoration: underline;
}

.cd-label {
    font-size: .73rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: .05em;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: #25D366;
    color: var(--white);
    padding: .9rem 1.8rem;
    border-radius: var(--radius-md);
    font-size: .9rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(37, 211, 102, .35);
    transition: var(--transition);
    width: 100%;
    justify-content: center;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, .5);
}

/* Contact Form */
.contact-form-wrap {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
}

.contact-form-wrap h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-label {
    display: block;
    font-size: .83rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: .45rem;
}

.form-label .required {
    color: var(--saffron);
    margin-left: .15rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: .75rem 1rem;
    border: 1.5px solid var(--border-mid);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: .9rem;
    color: var(--text-dark);
    background: var(--white);
    outline: none;
    transition: border-color .22s, box-shadow .22s;
    -webkit-appearance: none;
    appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--green-main);
    box-shadow: 0 0 0 3px rgba(26, 153, 80, .12);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-submit-btn {
    width: 100%;
    padding: .95rem 2rem;
    background: linear-gradient(135deg, var(--green-main), var(--green-dark));
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    box-shadow: var(--shadow-green);
    transition: var(--transition);
    margin-top: .5rem;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(26, 153, 80, .4);
}

.form-submit-btn:disabled {
    opacity: .65;
    cursor: not-allowed;
    transform: none;
}

.alert-box {
    display: none;
    padding: .9rem 1.2rem;
    border-radius: var(--radius-md);
    font-size: .875rem;
    font-weight: 500;
    margin-top: 1rem;
}

.alert-success {
    background: var(--green-pale);
    color: var(--green-dark);
    border: 1px solid rgba(26, 153, 80, .3);
    display: none;
}

.alert-error {
    background: #fff0f0;
    color: #c53030;
    border: 1px solid rgba(197, 48, 48, .3);
    display: none;
}

/* ────────────────────────────────
   LEGAL NOTICE BANNER
──────────────────────────────── */
.legal-notice-banner {
    background: linear-gradient(135deg, #fffbf0, #fff8e7);
    border: 1px solid #f0c874;
    border-radius: var(--radius-md);
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.legal-banner-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: .1rem;
}

.legal-banner-text {
    font-size: .85rem;
    color: #7c5c00;
    line-height: 1.65;
}

.legal-banner-text strong {
    color: #6b4a00;
}

/* ────────────────────────────────
   FADE IN ANIMATION
──────────────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s ease, transform .55s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}

/* ────────────────────────────────
   FOOTER
──────────────────────────────── */
.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, .85);
}

.footer-top {
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 3rem;
}

.footer-logo {
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
    opacity: .9;
}

.footer-desc {
    font-size: .855rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.footer-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.trust-badge {
    display: inline-block;
    padding: .3rem .7rem;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    font-size: .73rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .8);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: .9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.1rem;
    padding-bottom: .6rem;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.footer-links-list a {
    font-size: .83rem;
    color: rgba(255, 255, 255, .6);
    transition: color .2s, padding-left .2s;
}

.footer-links-list a:hover {
    color: var(--green-light);
    padding-left: .4rem;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .83rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.55;
}

.footer-contact-list .contact-icon {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: .05rem;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, .75);
}

.footer-contact-list a:hover {
    color: var(--green-light);
}

.footer-compliance {
    background: rgba(0, 0, 0, .25);
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, .07);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.compliance-text {
    font-size: .78rem;
    color: rgba(255, 255, 255, .55);
    text-align: center;
    line-height: 1.7;
}

.footer-bottom {
    padding: 1.5rem 0;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    text-align: center;
}

.copyright {
    font-size: .82rem;
    color: rgba(255, 255, 255, .5);
}

.footer-disclaimer-note {
    font-size: .77rem;
    color: rgba(255, 255, 255, .38);
}

/* ────────────────────────────────
   RESPONSIVE
──────────────────────────────── */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-right {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        margin-top: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .main-nav,
    .header-cta-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-right {
        grid-template-columns: 1fr;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .cert-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: 1;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-cta-row {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-form-wrap {
        padding: 1.5rem;
    }
}

/* ── Utility ── */
.text-green {
    color: var(--green-main);
}

.text-saffron {
    color: var(--saffron);
}

.mb-0 {
    margin-bottom: 0;
}