/* ═══════════════════════════════════════════════════
   LINDO PHARMACEUTICAL — MAIN STYLESHEET
   ═══════════════════════════════════════════════════ */
:root {
  --navy:   #0a1628;
  --blue:   #1a3a6b;
  --sky:    #0077c8;
  --accent: #00c2ff;
  --teal:   #00a896;
  --gold:   #f5a623;
  --white:  #ffffff;
  --off:    #f4f8ff;
  --text:   #1a1a2e;
  --gray:   #6b7280;
  --light:  #e8f4ff;
  --red:    #e63946;
  --green:  #2ecc71;
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html  { scroll-behavior: smooth; }
body  { font-family: 'Outfit', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
a     { text-decoration: none; }
img   { max-width: 100%; display: block; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f0f0f0; }
::-webkit-scrollbar-thumb { background: var(--sky); border-radius: 3px; }

/* ── LAYOUT ──────────────────────────────────────────── */
.container { max-width: 1300px; margin: 0 auto; padding: 0 24px; }
section    { padding: 80px 0; }
main       { padding-top: 70px; }

/* ── TYPOGRAPHY ──────────────────────────────────────── */
.section-label {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--sky);
  border-bottom: 2px solid var(--sky); padding-bottom: 4px; margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 900; color: var(--navy); line-height: 1.2; margin-bottom: 16px;
}
.section-desc { font-size: 16px; color: var(--gray); line-height: 1.7; max-width: 640px; }
.text-center  { text-align: center; }
.text-center .section-desc { margin: 0 auto; }

/* ── NAVBAR ──────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,22,40,.97); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,194,255,.15);
}
.nav-inner {
  max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 70px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 48px; width: 48px; object-fit: contain; filter: drop-shadow(0 0 8px rgba(0,194,255,.4)); }
.nav-logo-text  { display: flex; flex-direction: column; }
.nav-logo-name  { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700; color: #fff; letter-spacing: .5px; line-height: 1.1; }
.nav-logo-tag   { font-size: 9px; color: var(--accent); letter-spacing: 1px; text-transform: uppercase; font-weight: 500; }
.nav-links      { display: flex; align-items: center; gap: 2px; }
.nav-links a    { color: rgba(255,255,255,.8); font-size: 12px; font-weight: 500; padding: 8px 9px; border-radius: 6px; transition: all .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); background: rgba(0,194,255,.08); }
.nav-cta    { background: linear-gradient(135deg,var(--sky),var(--teal)); color: #fff !important; padding: 9px 16px !important; border-radius: 20px !important; font-weight: 700 !important; }
.nav-portal { background: rgba(245,166,35,.15); color: var(--gold) !important; border-radius: 8px !important; }
.hamburger  { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }

/* ── FLASH ───────────────────────────────────────────── */
.flash-container { position: fixed; top: 80px; right: 20px; z-index: 9999; }
.flash { padding: 12px 18px; border-radius: 10px; font-size: 14px; font-weight: 500; display: flex; align-items: center; justify-content: space-between; gap: 12px; min-width: 280px; box-shadow: 0 4px 20px rgba(0,0,0,.15); animation: slideIn .3s ease; }
.flash span { cursor: pointer; font-size: 20px; opacity: .7; line-height: 1; }
.flash-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.flash-error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.flash-info    { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }
.flash-warning { background: #fff3cd; color: #856404; border: 1px solid #ffeeba; }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg,var(--sky),var(--accent));
  color: #fff; padding: 13px 28px; border-radius: 30px;
  font-weight: 700; font-size: 14px; border: none; cursor: pointer;
  transition: all .3s; box-shadow: 0 4px 20px rgba(0,119,200,.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,119,200,.5); color: #fff; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--sky); padding: 12px 28px;
  border-radius: 30px; font-weight: 700; font-size: 14px;
  border: 2px solid var(--sky); transition: all .3s;
}
.btn-outline:hover { background: var(--sky); color: #fff; transform: translateY(-2px); }
.btn-sm      { padding: 8px 18px !important; font-size: 13px !important; }
.btn-danger  { background: linear-gradient(135deg,#e63946,#c1121f) !important; }
.btn-success { background: linear-gradient(135deg,var(--green),var(--teal)) !important; }
.btn-warning { background: linear-gradient(135deg,var(--gold),#e67e22) !important; }

/* ── ALERTS ──────────────────────────────────────────── */
.alert         { padding: 14px 18px; border-radius: 10px; font-size: 14px; margin-bottom: 20px; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert-info    { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }

/* ── PAGE HERO BANNER ────────────────────────────────── */
.page-hero { background: linear-gradient(135deg,var(--navy),var(--blue)); padding: 80px 0 60px; color: #fff; text-align: center; }
.page-hero .section-label { border-color: var(--accent); color: var(--accent); }
.page-hero .section-title { color: #fff; margin-top: 12px; }
.page-hero .section-desc  { color: rgba(255,255,255,.7); margin: 16px auto 0; }

/* ── CARDS ───────────────────────────────────────────── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 24px; margin-top: 48px; }
.card { background: #fff; border-radius: 16px; padding: 32px; border: 1px solid rgba(0,119,200,.1); transition: all .3s; position: relative; overflow: hidden; }
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(135deg,var(--sky),var(--accent)); }
.card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,119,200,.15); border-color: rgba(0,194,255,.3); }
.card-icon  { width: 56px; height: 56px; background: linear-gradient(135deg,var(--sky),var(--teal)); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: #fff; margin-bottom: 20px; }
.card-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.card-text  { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ── PRODUCTS ────────────────────────────────────────── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); gap: 24px; margin-top: 48px; }
.product-card { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid rgba(0,119,200,.1); transition: all .3s; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,119,200,.15); }
.product-img-wrap { background: linear-gradient(135deg,#f0f8ff,#e8f4ff); height: 210px; display: flex; align-items: center; justify-content: center; padding: 20px; overflow: hidden; }
.product-img  { max-height: 170px; max-width: 100%; object-fit: contain; transition: transform .4s; margin: 0 auto; }
.product-card:hover .product-img { transform: scale(1.07); }
.product-info { padding: 20px; }
.product-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.product-cat  { font-size: 11px; color: var(--sky); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 8px; }
.product-comp { font-size: 12px; color: var(--gray); line-height: 1.5; }
.product-badge { display: inline-block; background: linear-gradient(135deg,var(--sky),var(--teal)); color: #fff; font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin-top: 10px; }

/* ── SERVICES STRIP ──────────────────────────────────── */
.services-strip { background: linear-gradient(135deg,var(--sky),var(--teal)); padding: 28px 0; }
.services-strip-inner { max-width: 1300px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-around; gap: 20px; flex-wrap: wrap; }
.strip-item { display: flex; align-items: center; gap: 12px; color: #fff; }
.strip-item i { font-size: 22px; opacity: .85; }
.strip-item-text strong { display: block; font-size: 14px; font-weight: 700; }
.strip-item-text span   { font-size: 12px; opacity: .85; }
.strip-divider { width: 1px; height: 36px; background: rgba(255,255,255,.25); }

/* ── HOME HERO ───────────────────────────────────────── */
.hero {
  min-height: calc(100vh - 70px);
  background: linear-gradient(135deg,var(--navy) 0%,#0d1f3c 40%,#0a2444 70%,#051525 100%);
  position: relative; display: flex; align-items: center; overflow: hidden;
}
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(0,194,255,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(0,194,255,.03) 1px,transparent 1px); background-size: 60px 60px; }
.hero-circle { position: absolute; border-radius: 50%; opacity: .05; animation: pulse 4s ease-in-out infinite; }
.hero-circle:nth-child(2) { width: 600px; height: 600px; top: -100px; right: -100px; background: var(--sky); }
.hero-circle:nth-child(3) { width: 400px; height: 400px; bottom: -50px; left: -100px; background: var(--teal); animation-delay: 2s; }
.hero-content { max-width: 1300px; margin: 0 auto; padding: 60px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,194,255,.1); border: 1px solid rgba(0,194,255,.3); padding: 8px 16px; border-radius: 20px; margin-bottom: 20px; }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: blink 1.5s infinite; }
.hero-badge span { font-size: 12px; color: var(--accent); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.hero-tagline { font-size: 14px; color: var(--gold); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; border-left: 3px solid var(--gold); padding-left: 12px; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(32px,4vw,58px); font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 16px; }
.hero-title .highlight { color: var(--accent); display: block; }
.hero-desc  { font-size: 16px; color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 32px; max-width: 500px; }
.hero-btns  { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 28px; margin-top: 40px; flex-wrap: wrap; }
.stat-num   { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 900; color: var(--accent); }
.stat-label { font-size: 11px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.hero-visual { display: flex; align-items: center; justify-content: center; position: relative; }
.hero-logo-wrap { position: relative; }
.hero-logo-glow { position: absolute; inset: -30px; background: radial-gradient(circle,rgba(0,194,255,.3) 0%,transparent 70%); border-radius: 50%; animation: glow 3s ease-in-out infinite; }
.hero-logo { width: 280px; height: 280px; object-fit: contain; filter: drop-shadow(0 0 30px rgba(0,194,255,.5)); animation: float 6s ease-in-out infinite; position: relative; z-index: 1; margin: 0 auto; }
.hero-float-card { position: absolute; background: rgba(255,255,255,.08); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 12px 16px; }
.hero-float-card.c1 { top: 10%; left: -20px; }
.hero-float-card.c2 { bottom: 15%; right: -20px; }
.hfc-icon  { font-size: 18px; margin-bottom: 4px; }
.hfc-title { font-size: 11px; color: rgba(255,255,255,.9); font-weight: 600; }
.hfc-sub   { font-size: 10px; color: rgba(255,255,255,.5); }

/* ── DIRECTOR CARDS ──────────────────────────────────── */
.director-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 28px; margin-top: 48px; }
.director-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,.08); transition: all .3s; }
.director-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,119,200,.15); }
.director-card-header { height: 120px; display: flex; align-items: center; justify-content: center; font-size: 52px; font-family: 'Playfair Display', serif; font-weight: 900; color: #fff; }
.director-card-body { padding: 24px; }
.director-name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.director-role { font-size: 12px; color: var(--sky); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 12px; }
.director-desc { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ── VALUES ──────────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 24px; margin-top: 48px; }
.value-card  { padding: 32px 24px; border-radius: 16px; text-align: center; background: linear-gradient(135deg,var(--navy),var(--blue)); position: relative; }
.value-num   { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 900; color: rgba(0,194,255,.3); line-height: 1; margin-bottom: 8px; }
.value-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.value-text  { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.6; }

/* ── VISION / MISSION ────────────────────────────────── */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; }
.vm-card { border-radius: 20px; padding: 40px; }
.vm-card.vision  { background: linear-gradient(135deg,var(--navy),var(--blue)); }
.vm-card.mission { background: linear-gradient(135deg,#0d3320,#0a5530); }
.vm-icon  { font-size: 48px; margin-bottom: 20px; }
.vm-label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 12px; }
.vm-title { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 900; color: #fff; margin-bottom: 16px; }
.vm-text  { font-size: 15px; color: rgba(255,255,255,.75); line-height: 1.75; }

/* ── GALLERY ─────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 48px; }
.gallery-item { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(180deg,transparent 40%,rgba(10,22,40,.8)); opacity: 0; transition: .3s; display: flex; align-items: flex-end; padding: 16px; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-size: 14px; font-weight: 600; }

/* ── EVENTS ──────────────────────────────────────────── */
.event-card { background: #fff; border-radius: 20px; overflow: hidden; border: 1px solid rgba(0,119,200,.1); margin-bottom: 24px; display: flex; transition: all .3s; }
.event-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,119,200,.15); }
.event-date-box { background: linear-gradient(135deg,var(--sky),var(--teal)); color: #fff; padding: 24px 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; min-width: 100px; }
.event-day   { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 900; line-height: 1; }
.event-month { font-size: 14px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.event-year  { font-size: 12px; opacity: .8; margin-top: 2px; }
.event-content { padding: 24px 28px; flex: 1; }
.event-tag   { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--sky); margin-bottom: 8px; }
.event-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.event-text  { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ── FIND US ─────────────────────────────────────────── */
.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; }
.location-card { background: var(--navy); border-radius: 20px; padding: 32px; color: #fff; position: relative; overflow: hidden; }
.location-card::before { content: ''; position: absolute; top: -40px; right: -40px; width: 120px; height: 120px; border-radius: 50%; background: rgba(0,194,255,.1); }
.location-icon { font-size: 36px; margin-bottom: 16px; color: var(--accent); }
.location-type { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 8px; }
.location-name { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.location-addr { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.6; }
.location-link { display: inline-flex; align-items: center; gap: 8px; color: var(--accent); font-size: 13px; font-weight: 600; margin-top: 16px; }
.map-embed { width: 100%; height: 320px; border-radius: 16px; border: none; display: block; margin-top: 48px; box-shadow: 0 20px 60px rgba(0,0,0,.1); }
.hours-box   { background: var(--off); border-radius: 20px; padding: 32px; margin-top: 32px; border: 1px solid rgba(0,119,200,.1); }
.hours-title { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--navy); margin-bottom: 20px; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid rgba(0,119,200,.1); }
.hours-table td { padding: 10px 0; font-size: 14px; }
.hours-table td:first-child { font-weight: 600; color: var(--navy); }
.hours-table td:last-child  { color: var(--gray); text-align: right; }
.hours-closed { color: var(--red) !important; font-weight: 700 !important; }

/* ── CONTACT ─────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; padding: 20px; background: var(--off); border-radius: 12px; border: 1px solid rgba(0,119,200,.1); }
.ci-icon  { width: 44px; height: 44px; background: linear-gradient(135deg,var(--sky),var(--teal)); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; flex-shrink: 0; }
.ci-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); margin-bottom: 4px; font-weight: 600; }
.ci-value { font-size: 15px; color: var(--navy); font-weight: 600; }
.ci-value a { color: var(--navy); }
.contact-form  { background: var(--off); border-radius: 20px; padding: 32px; border: 1px solid rgba(0,119,200,.1); }
.form-title    { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--navy); margin-bottom: 24px; }

/* ── FORMS ───────────────────────────────────────────── */
.form-group    { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid rgba(0,119,200,.2); border-radius: 10px;
  font-family: 'Outfit', sans-serif; font-size: 14px; color: var(--text);
  background: #fff; transition: all .2s; outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--sky); box-shadow: 0 0 0 3px rgba(0,119,200,.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── AWARDS ──────────────────────────────────────────── */
.award-cards { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 48px; justify-content: center; }
.award-card  { background: linear-gradient(135deg,var(--navy),var(--blue)); color: #fff; border-radius: 20px; padding: 36px 28px; text-align: center; max-width: 280px; flex: 1; min-width: 240px; position: relative; overflow: hidden; }
.award-card::before { content: ''; position: absolute; top: -30px; right: -30px; width: 100px; height: 100px; border-radius: 50%; background: rgba(0,194,255,.15); }
.award-star  { font-size: 48px; margin-bottom: 16px; }
.award-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.award-desc  { font-size: 13px; opacity: .75; line-height: 1.6; }
.award-year  { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 900; color: var(--accent); margin-top: 16px; }

/* ── AUTH ────────────────────────────────────────────── */
.auth-wrap { min-height: calc(100vh - 70px); display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg,var(--navy),#0d2a4e); padding: 40px 24px; }
.auth-card { background: #fff; border-radius: 24px; padding: 48px; max-width: 520px; width: 100%; box-shadow: 0 30px 80px rgba(0,0,0,.3); }
.auth-logo { text-align: center; margin-bottom: 32px; }
.auth-logo img { height: 64px; margin: 0 auto 12px; }
.auth-logo-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--navy); }
.auth-logo-sub  { font-size: 11px; color: var(--sky); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }
.auth-title { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--navy); text-align: center; margin-bottom: 6px; }
.auth-sub   { font-size: 13px; color: var(--gray); text-align: center; margin-bottom: 32px; }
.role-select { display: flex; gap: 12px; margin-bottom: 24px; }
.role-btn { flex: 1; padding: 12px; border: 2px solid rgba(0,119,200,.2); border-radius: 10px; text-align: center; cursor: pointer; font-size: 13px; font-weight: 600; color: var(--gray); background: transparent; transition: all .2s; font-family: 'Outfit', sans-serif; }
.role-btn:hover, .role-btn.active { border-color: var(--sky); color: var(--sky); background: rgba(0,119,200,.05); }

/* ── PORTAL ──────────────────────────────────────────── */
.portal-wrap    { max-width: 1300px; margin: 0 auto; padding: 40px 24px; }
.portal-header  { background: linear-gradient(135deg,var(--navy),var(--blue)); border-radius: 20px; padding: 32px 40px; color: #fff; margin-bottom: 32px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.portal-name    { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; }
.portal-role    { font-size: 13px; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.stats-grid     { display: grid; grid-template-columns: repeat(auto-fit,minmax(170px,1fr)); gap: 20px; margin-bottom: 32px; }
.stat-card      { background: #fff; border-radius: 16px; padding: 24px; border: 1px solid rgba(0,119,200,.1); text-align: center; }
.stat-card-num  { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 900; color: var(--sky); }
.stat-card-lbl  { font-size: 13px; color: var(--gray); margin-top: 4px; }
.portal-section { background: #fff; border-radius: 16px; padding: 28px; border: 1px solid rgba(0,119,200,.1); margin-bottom: 24px; }
.portal-section h3 { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--navy); margin-bottom: 20px; border-bottom: 2px solid var(--light); padding-bottom: 12px; }
.data-table     { width: 100%; border-collapse: collapse; font-size: 13px; }
.data-table th  { background: var(--off); padding: 12px 16px; text-align: left; font-weight: 700; color: var(--navy); font-size: 11px; text-transform: uppercase; letter-spacing: .5px; }
.data-table td  { padding: 12px 16px; border-bottom: 1px solid rgba(0,119,200,.07); color: var(--gray); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--off); }
.badge          { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; }
.badge-pending  { background: #fff3cd; color: #856404; }
.badge-approved { background: #d4edda; color: #155724; }
.badge-rejected { background: #f8d7da; color: #721c24; }
.badge-admin    { background: rgba(0,119,200,.12); color: var(--sky); }
.badge-employee { background: rgba(0,168,150,.12); color: var(--teal); }
.action-btns    { display: flex; gap: 8px; }

/* ── FOOTER ──────────────────────────────────────────── */
footer { background: var(--navy); color: rgba(255,255,255,.8); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand img { height: 56px; margin-bottom: 12px; filter: drop-shadow(0 0 8px rgba(0,194,255,.4)); }
.footer-brand-name { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.footer-brand-tag  { font-size: 12px; color: var(--accent); font-style: italic; margin-bottom: 12px; }
.footer-brand-desc { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.6); margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.social-btn    { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; color: #fff; transition: all .2s; }
.social-wa     { background: #25d366; }
.social-email  { background: var(--sky); }
.social-phone  { background: var(--teal); }
.social-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.3); }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #fff; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 24px; height: 2px; background: var(--accent); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.6); font-size: 13px; transition: all .2s; display: flex; align-items: center; gap: 6px; }
.footer-col ul li a:hover { color: var(--accent); padding-left: 4px; }
.footer-hours { margin-top: 20px; font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.7; }
.fh-title { color: rgba(255,255,255,.8); font-weight: 600; margin-bottom: 6px; }
.closed { color: var(--red); font-weight: 700; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,.4); }

/* ── WA FLOAT ────────────────────────────────────────── */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 999; width: 56px; height: 56px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; color: #fff; box-shadow: 0 4px 20px rgba(37,211,102,.5); animation: bounce 2s infinite; }

/* ── ANIMATIONS ──────────────────────────────────────── */
@keyframes pulse  { 0%,100%{transform:scale(1)}  50%{transform:scale(1.05)} }
@keyframes float  { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-20px)} }
@keyframes glow   { 0%,100%{opacity:.4} 50%{opacity:.8} }
@keyframes blink  { 0%,100%{opacity:1}  50%{opacity:.3} }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes slideIn{ from{opacity:0;transform:translateX(20px)} to{opacity:1;transform:translateX(0)} }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media(max-width:1024px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:900px){
  .hero-content, .contact-grid, .locations-grid, .vm-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-logo { width: 180px; height: 180px; }
  .hero-float-card { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; position: fixed; top: 70px; left: 0; right: 0; background: var(--navy); flex-direction: column; padding: 20px; gap: 4px; border-bottom: 1px solid rgba(0,194,255,.1); max-height: calc(100vh - 70px); overflow-y: auto; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .strip-divider { display: none; }
}
@media(max-width:600px){
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }
  .event-card   { flex-direction: column; }
  .stats-grid   { grid-template-columns: 1fr 1fr; }
  .auth-card    { padding: 32px 20px; }
  .portal-header { padding: 24px; }
  .data-table   { font-size: 12px; }
  .data-table td, .data-table th { padding: 8px 10px; }
}
