/* ============================================================
   DIVYA LIFE CARE — Premium Design System
   ============================================================ */

/* ── Google Fonts ────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ── CSS Custom Properties ───────────────────────────────── */
:root {
  --primary:        #1A9898;
  --primary-dark:   #107878;
  --primary-light:  #E0F7F7;
  --secondary:      #7ECECE;
  --accent:         #F59E0B;
  --accent-light:   #FEF3C7;
  --light:          #F2FAFA;
  --cream:          #E5F5F5;
  --text:           #0D2626;
  --text-light:     #2D5050;
  --text-muted:     #7AACAC;
  --white:          #FFFFFF;
  --border:         #B8E4E4;
  --border-light:   #D5F0F0;
  --shadow-sm:      0 2px 12px rgba(26,152,152,.07);
  --shadow-md:      0 8px 32px rgba(26,152,152,.12);
  --shadow-lg:      0 20px 60px rgba(26,152,152,.15);
  --radius-sm:      8px;
  --radius-md:      7px;
  --radius-lg:      7px;
  --radius-xl:      7px;
  --transition:     all .35s cubic-bezier(.4,0,.2,1);
  --font-heading:   'Manrope', sans-serif;
  --font-body:      'Inter', sans-serif;
}

/* ── 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);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; background: none; font-family: var(--font-body); }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text);
  line-height: 1.25;
  letter-spacing: -.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }
h5 { font-size: 1rem; font-weight: 600; }
p  { color: var(--text-light); font-size: .975rem; line-height: 1.8; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  background: var(--primary-light);
  color: var(--primary-dark);
  border: 1px solid var(--border);
}
.section-label::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  display: block;
}

.section-title { margin-bottom: .75rem; color: var(--primary); }
.section-subtitle { font-size: 1.05rem; color: var(--text-light); line-height: 1.8; max-width: none; }

/* ── Section Header — split layout (title left, subtitle right) ── */
.section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem 4rem;
  align-items: center;
  margin-bottom: 3.5rem;
  text-align: left !important;
}
.section-header .section-label  { grid-column: 1; grid-row: 1; }
.section-header .section-title  { grid-column: 1; grid-row: 2; margin-bottom: 0; }
.section-header .section-subtitle { grid-column: 2; grid-row: 1 / 3; align-self: center; margin: 0; }
/* For headers that only have title + subtitle (no label), subtitle still goes right */
.section-header h2:first-child { grid-column: 1; grid-row: 1 / 3; }
/* Override old text-center utility so it doesn't interfere */
.section-header.text-center { text-align: left !important; }
.section-header.text-center .section-subtitle { margin: 0; }

/* ── Layout ──────────────────────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 20px 0; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .02em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.12);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(26,152,152,.3);
}
.btn-primary:hover { color: var(--white); box-shadow: 0 8px 28px rgba(26,152,152,.4); }

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline:hover { background: var(--primary); color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.btn-white:hover { background: var(--cream); color: var(--primary-dark); }

.btn-accent {
  background: linear-gradient(135deg, var(--accent), #C9943E);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(216,168,91,.35);
}
.btn-accent:hover { color: var(--white); box-shadow: 0 8px 28px rgba(216,168,91,.5); }

.btn-sm { padding: .6rem 1.4rem; font-size: .83rem; }
.btn-lg { padding: 1.05rem 2.4rem; font-size: .97rem; }

/* ══ PAGE LOADER ══════════════════════════════════════════ */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .4s ease, visibility .4s ease;
}
#page-loader.loader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--primary-light);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── HEADER ──────────────────────────────────────────────── */
#main-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header-top {
  background: rgba(0,0,0,.28);
  padding: .4rem 0;
  font-size: .78rem;
  color: rgba(255,255,255,.85);
  max-height: 60px;
  overflow: hidden;
  opacity: 1;
  transition: max-height .35s ease, padding .35s ease, opacity .25s ease;
}
.header-top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.header-top-left { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.header-top-right { display: flex; align-items: center; gap: 1.2rem; }
.header-top a { color: rgba(255,255,255,.85); transition: color .2s; }
.header-top a:hover { color: var(--white); }
.header-top i { margin-right: .35rem; }
.header-top-tag {
  background: rgba(255,255,255,.15);
  border-radius: 100px;
  padding: .15rem .7rem;
  font-size: .7rem;
  letter-spacing: .05em;
  color: var(--white);
}

.header-main {
  background: rgba(255,255,255,.0);
  backdrop-filter: blur(0);
  padding: 1.1rem 0;
  transition: var(--transition);
}
#main-header.scrolled .header-top {
  max-height: 0;
  padding: 0;
  opacity: 0;
}
#main-header.scrolled .header-main {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(26,152,152,.1);
  padding: .8rem 0;
}

.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.logo-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  transition: var(--transition);
}
#main-header.scrolled .logo-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: transparent;
  color: var(--white);
}
.logo-text { line-height: 1.15; }
.logo-text .brand-name {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.03em;
  display: block;
}
#main-header.scrolled .logo-text .brand-name { color: var(--primary); }
.logo-text .brand-sub {
  font-size: .65rem;
  color: rgba(255,255,255,.7);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 500;
}
#main-header.scrolled .logo-text .brand-sub { color: var(--text-muted); }

/* Nav */
.navbar-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-item { position: relative; }
.nav-link {
  font-size: .875rem;
  font-weight: 600;
  color: rgba(255,255,255,.92);
  padding: .5rem .75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: .3rem;
  white-space: nowrap;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.12); }
.nav-link.active { color: var(--white); background: rgba(255,255,255,.15); }
#main-header.scrolled .nav-link { color: var(--text); }
#main-header.scrolled .nav-link:hover { color: var(--primary); background: var(--primary-light); }
#main-header.scrolled .nav-link.active { color: var(--primary); background: var(--primary-light); }
.nav-link .nav-arrow { transition: transform .25s; font-size: .7rem; }
.nav-item:hover .nav-arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,.12), 0 0 0 1px rgba(0,0,0,.04);
  padding: .75rem .6rem .6rem;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s, transform .22s, visibility .22s;
  pointer-events: none;
}
.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .65rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .86rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}
.dropdown-item:hover { background: var(--primary-light); color: var(--primary); }
.dropdown-item i { width: 18px; text-align: center; color: var(--primary); font-size: 1rem; }

/* CTA Nav */
.nav-cta { margin-left: .75rem; }

/* White outlined CTA button (transparent navbar state) */
.btn-nav-cta {
  border: 2px solid rgba(255,255,255,.75);
  color: var(--white);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(4px);
}
.btn-nav-cta:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
/* When scrolled — switch to solid green */
#main-header.scrolled .btn-nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(26,152,152,.3);
}
#main-header.scrolled .btn-nav-cta:hover {
  box-shadow: 0 6px 22px rgba(26,152,152,.45);
  color: var(--white);
}

/* Mobile toggle */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.navbar-toggle:hover { background: rgba(255,255,255,.1); }
.navbar-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
#main-header.scrolled .navbar-toggle span { background: var(--text); }
.navbar-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: linear-gradient(160deg, #1B2E2A 0%, #0F1E1B 100%);
  color: var(--white);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,152,152,.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .footer-logo { margin-bottom: 1.25rem; }
.footer-brand .footer-logo .logo-text .brand-name { color: var(--white); }
.footer-brand .footer-logo .logo-text .brand-sub { color: rgba(255,255,255,.85); }
.footer-brand p { font-size: .875rem; line-height: 1.8; color: var(--white); margin-bottom: 1.5rem; max-width: 280px; }

.footer-socials { display: flex; gap: .65rem; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .95rem;
  transition: var(--transition);
}
.footer-socials a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h5 {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a {
  font-size: .86rem;
  color: var(--white);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.footer-links a:hover { color: var(--secondary); padding-left: .3rem; }
.footer-links a::before {
  content: '→';
  font-size: .7rem;
  opacity: 0;
  transition: opacity .2s;
}
.footer-links a:hover::before { opacity: 1; }

.footer-contact-list { display: flex; flex-direction: column; gap: .85rem; }
.footer-contact-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}
.footer-contact-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(26,152,152,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: .9rem;
  flex-shrink: 0;
}
.footer-contact-info { font-size: .82rem; color: var(--white); line-height: 1.6; }
.footer-contact-info strong { display: block; color: var(--white); font-size: .78rem; margin-bottom: .15rem; }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.85); margin: 0; }
.footer-bottom-links { display: flex; gap: 10px; }
.footer-bottom-links a { font-size: .8rem; color: rgba(255,255,255,.85); transition: color .2s; }
.footer-bottom-links a:hover { color: var(--secondary); }

/* ══════════════════════════════════════════════════════════
   HOME SPLIT HERO
   ══════════════════════════════════════════════════════════ */
.home-hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
.home-hero > .container {
  width: 100%;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    140deg,
    rgba(7, 24, 24, 0.50) 0%,
    rgba(13, 62, 62, 0.45) 55%,
    rgba(16, 120, 120, 0.35) 100%
);
}
.home-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 170px 0 110px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  text-align: left;
}
/* Legacy split-layout (hidden) */
.home-hero-left {
  display: none;
}
.hero-welcome-tag {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: .1rem;
}
.home-hero-content h1 {
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 2.85rem);
  line-height: 1.3;
  letter-spacing: -.02em;
  margin: 0;
}

/* Word-by-word slide-up animation */
@keyframes wordSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.home-hero-content h1 .hw {
  display: inline-block;
  opacity: 0;
  animation: wordSlideUp .55s cubic-bezier(.22,1,.36,1) forwards;
}
.home-hero-content h1 .hw:nth-child(1) { animation-delay: .1s; }
.home-hero-content h1 .hw:nth-child(2) { animation-delay: .22s; }
.home-hero-content h1 .hw:nth-child(3) { animation-delay: .34s; }
.home-hero-content h1 .hw:nth-child(4) { animation-delay: .46s; }
.home-hero-content h1 .hw:nth-child(6) { animation-delay: .75s; }
.home-hero-content h1 .hw:nth-child(7) { animation-delay: .87s; }
.home-hero-content h1 .hw:nth-child(8) { animation-delay: .99s; }

/* Cycling highlighted word */
.hero-type-wrap {
  display: inline-block;
  position: relative;
}
.hero-cycle-word {
  color: var(--secondary);
  display: inline-block;
  animation: wordSlideUp .55s .58s cubic-bezier(.22,1,.36,1) both;
}
@keyframes cycleOut {
  0%   { opacity: 1; transform: translateY(0); }
  40%  { opacity: 0; transform: translateY(-22px); }
  60%  { opacity: 0; transform: translateY(22px); }
  100% { opacity: 1; transform: translateY(0); }
}
.home-hero-left h1 {
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 2.85rem);
  line-height: 1.18;
  letter-spacing: -.02em;
  margin: 0;
}
.home-hero-left h1 span { color: var(--secondary); }
.home-hero-left > p {
  color: rgba(255,255,255,.7);
  font-size: .95rem;
  line-height: 1.85;
  max-width: 450px;
  margin: 0;
}
.hero-new-btns {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  margin-top: .35rem;
}
.btn-hero-ghost {
  border: 1.5px solid rgba(255,255,255,.55);
  color: var(--white);
  padding: .72rem 1.8rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: .9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-hero-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.9); }
.btn-hero-fill {
  background: var(--secondary);
  color: #071818;
  padding: .72rem 1.8rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: .9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-hero-fill:hover { background: var(--white); }
.home-hero-right { display: none; }

/* ── TRUST STRIP ─────────────────────────────────────────── */
.trust-strip {
  background: linear-gradient(135deg, #071818 0%, #0d3e3e 60%, #107878 100%);
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}
.trust-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,.1);
  transition: background .25s;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(255,255,255,.05); }
.trust-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: rgba(126,206,206,.15);
  color: var(--secondary);
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(126,206,206,.2);
}
.trust-item h5 { font-size: .9rem; margin-bottom: .2rem; color: var(--white); }
.trust-item p  { font-size: .75rem; color: rgba(255,255,255,.55); margin: 0; line-height: 1.4; }

/* ── STATS BAR ───────────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, #071818 0%, #107878 100%);
  padding: 55px 0;
}
.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stats-bar-item { position: relative; }
.stats-bar-item + .stats-bar-item::before {
  content: '';
  position: absolute;
  left: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: rgba(255,255,255,.12);
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.7);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: .6rem;
  display: block;
}

/* ── HOME ABOUT ──────────────────────────────────────────── */
.home-about-section {
  background: var(--light);
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}
.home-about-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40%; height: 100%;
  background: linear-gradient(180deg, var(--primary-light) 0%, transparent 100%);
  opacity: .5;
  pointer-events: none;
}
.home-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
/* ══ Premium About Image Block ══════════════════════════ */
.ab-wrap {
  position: relative;
  padding: 0 0 80px 0;
  max-width: 520px;
}

/* Teal diagonal background block */
.ab-bg-block {
  position: absolute;
  bottom: 40px; right: -20px;
  width: 80%; height: 78%;
  background: linear-gradient(145deg, var(--primary), var(--primary-dark));
  border-radius: 24px;
  z-index: 0;
  opacity: .12;
}

/* Dot grid — top-left corner */
.ab-dots {
  position: absolute;
  top: -10px; left: -10px;
  width: 140px; height: 140px;
  background-image: radial-gradient(var(--primary) 2px, transparent 2px);
  background-size: 18px 18px;
  opacity: .2;
  z-index: 0;
}

/* Main tall image */
.ab-main-img {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(26,152,152,.2);
}
.ab-main-img > img {
  width: 100%; height: 540px;
  object-fit: cover;
  display: block;
}

/* Stats strip at bottom of main image */
.ab-stats-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(135deg, rgba(7,24,24,.92), rgba(16,120,120,.88));
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 1.5rem;
  gap: 0;
}
.ab-stat {
  text-align: center;
  flex: 1;
}
.ab-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.1;
}
.ab-stat span {
  font-size: .72rem;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 500;
}
.ab-stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.18);
  flex-shrink: 0;
  margin: 0 .5rem;
}

/* Circular badges */
.ab-exp-badge {
  position: absolute;
  z-index: 3;
  width: 115px; height: 115px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 12px 40px rgba(26,152,152,.45);
  border: 4px solid var(--white);
}
.ab-badge-tr {
  top: -18px; right: -18px;
}
.ab-badge-bl {
  bottom: 18px; left: -22px;
}
.ab-exp-num {
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
}
.ab-exp-label {
  font-size: .54rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: rgba(255,255,255,.88);
  font-weight: 600;
  line-height: 1.3;
  max-width: 72px;
  margin-top: .25rem;
}

/* ── HOME SERVICES GRID ──────────────────────────────────── */
.home-services-section { background: var(--white); padding: 10px 0; }
.home-services-header {
  text-align: center;
  margin-bottom: 3rem;
}
.home-services-header .section-label { display: inline-flex; }
.home-svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.home-svc-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.2rem 1.75rem;
  border: 2px solid var(--border);
  text-align: center;
  transition: transform .38s ease, box-shadow .38s ease, border-color .38s ease, background .38s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
/* Card 1 — Bottom to Top sweep (teal) */
.home-svc-card:nth-child(1)::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(160deg, #0d6b6b, #1A9898);
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  border-radius: 14px;
}
.home-svc-card:nth-child(1):hover::before { transform: scaleY(1); }

/* Card 2 — Left to Right sweep (green) */
.home-svc-card:nth-child(2)::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(120deg, #1a6b3a, #27AE60);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  border-radius: 14px;
}
.home-svc-card:nth-child(2):hover::before { transform: scaleX(1); }

/* Card 3 — Diagonal corner expand (purple) */
.home-svc-card:nth-child(3)::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #5b2d80, #8E44AD);
  transform: scale(0);
  transform-origin: top left;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  border-radius: 14px;
}
.home-svc-card:nth-child(3):hover::before { transform: scale(1); }

/* Card 4 — Top to Bottom sweep (blue) */
.home-svc-card:nth-child(4)::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(160deg, #145480, #2980B9);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  border-radius: 14px;
}
.home-svc-card:nth-child(4):hover::before { transform: scaleY(1); }

.home-svc-card:hover { background: transparent; }

/* Hover lift + unique shadow per card */
.home-svc-card:nth-child(1):hover { transform: translateY(-8px); border-color: #1A9898; box-shadow: 0 24px 60px rgba(26,152,152,.4); }
.home-svc-card:nth-child(2):hover { transform: translateY(-8px); border-color: #27AE60; box-shadow: 0 24px 60px rgba(39,174,96,.4); }
.home-svc-card:nth-child(3):hover { transform: translateY(-8px); border-color: #8E44AD; box-shadow: 0 24px 60px rgba(142,68,173,.4); }
.home-svc-card:nth-child(4):hover { transform: translateY(-8px); border-color: #2980B9; box-shadow: 0 24px 60px rgba(41,128,185,.4); }

/* All content stays above the sweep */
.home-svc-card h4,
.home-svc-card p,
.home-svc-icon,
.home-svc-card .svc-link { position: relative; z-index: 1; }

.home-svc-icon {
  width: 70px; height: 70px;
  border-radius: 18px;
  font-size: 1.8rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.4rem;
  transition: all .38s ease;
}
/* Default icon colors per card */
.home-svc-card:nth-child(1) .home-svc-icon { background: #E0F7F7; color: #1A9898; }
.home-svc-card:nth-child(2) .home-svc-icon { background: #E9F7EF; color: #27AE60; }
.home-svc-card:nth-child(3) .home-svc-icon { background: #F5EEF8; color: #8E44AD; }
.home-svc-card:nth-child(4) .home-svc-icon { background: #EBF5FB; color: #2980B9; }
/* Hover icon style */
.home-svc-card:hover .home-svc-icon { background: rgba(255,255,255,.2); color: var(--white); transform: scale(1.1); }

/* Default link colors */
.home-svc-card:nth-child(1) .svc-link { color: #1A9898; }
.home-svc-card:nth-child(2) .svc-link { color: #27AE60; }
.home-svc-card:nth-child(3) .svc-link { color: #8E44AD; }
.home-svc-card:nth-child(4) .svc-link { color: #2980B9; }

.home-svc-card h4 { font-size: 1.05rem; margin-bottom: .65rem; transition: color .35s ease; }
.home-svc-card:hover h4 { color: var(--white); }
.home-svc-card p { font-size: .84rem; color: var(--text-light); margin-bottom: 1.1rem; line-height: 1.75; transition: color .35s ease; }
.home-svc-card:hover p { color: rgba(255,255,255,.82); }
.home-svc-card .svc-link { font-size: .84rem; font-weight: 700; display: inline-flex; align-items: center; gap: .4rem; transition: all .35s ease; }
.home-svc-card:hover .svc-link { color: var(--white); gap: .7rem; }
.home-svc-card .svc-link {
  font-size: .82rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: all .35s ease;
}
.home-svc-card:hover .svc-link { color: var(--white); gap: .6rem; }

/* ── WHY CHOOSE (home) ───────────────────────────────────── */
.why-home-section { background: var(--light); padding: 30px 0; position: relative; overflow: hidden; }
.why-home-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,152,152,.08) 0%, transparent 70%);
  pointer-events: none;
}
.why-home-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 3rem;
}
.why-home-card {
  background: var(--white);
  border-radius: 18px;
  padding: 2.2rem 1.8rem;
  border: 1px solid var(--border);
  border-left: 4px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-home-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 80px; height: 80px;
  border-radius: 50% 0 0 0;
  background: var(--primary-light);
  opacity: 0;
  transition: var(--transition);
}
.why-home-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); border-left-color: var(--primary); }
.why-home-card:hover::after { opacity: 1; }
.why-home-card:nth-child(1) { border-left-color: #1A9898; }
.why-home-card:nth-child(2) { border-left-color: #27AE60; }
.why-home-card:nth-child(3) { border-left-color: #8E44AD; }
.why-home-card:nth-child(4) { border-left-color: #2980B9; }
.why-home-card:nth-child(5) { border-left-color: #E67E22; }
.why-home-card:nth-child(6) { border-left-color: #E91E8C; }
.why-home-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem;
  position: relative; z-index: 1;
}
.why-home-card:nth-child(1) .why-home-icon { background: #E0F7F7; color: #1A9898; }
.why-home-card:nth-child(2) .why-home-icon { background: #E9F7EF; color: #27AE60; }
.why-home-card:nth-child(3) .why-home-icon { background: #F5EEF8; color: #8E44AD; }
.why-home-card:nth-child(4) .why-home-icon { background: #EBF5FB; color: #2980B9; }
.why-home-card:nth-child(5) .why-home-icon { background: #FEF9E7; color: #E67E22; }
.why-home-card:nth-child(6) .why-home-icon { background: #FEE5F3; color: #E91E8C; }
.why-home-card h4 { font-size: 1.05rem; margin-bottom: .6rem; position: relative; z-index: 1; }
.why-home-card p  { font-size: .84rem; color: var(--text-light); margin: 0; line-height: 1.8; position: relative; z-index: 1; }

/* ── HOME ENQUIRY FORM ───────────────────────────────────── */
.home-enquiry-section {
  background: var(--light);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.home-enquiry-section::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 45%;
  pointer-events: none;
}
.home-enquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.home-enquiry-info h2 { margin-bottom: 1rem; color: var(--white); }
.home-enquiry-info > p  { margin-bottom: 2rem; color: rgba(255,255,255,.65); }
.home-enquiry-info .section-label { background: rgba(255,255,255,.1); color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.15); }
.home-enquiry-info .section-label::before { background: var(--secondary); }
.enquiry-contact-list { display: flex; flex-direction: column; gap: 1rem; }
.enquiry-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.enquiry-contact-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(126,206,206,.15);
  color: var(--secondary);
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(126,206,206,.25);
}
.enquiry-contact-item strong { display: block; font-size: .78rem; color: #2d5050; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .1rem; }
.enquiry-contact-item span   { font-size: .95rem; color: #2d5050; font-weight: 600; }
.home-enquiry-form {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.home-enquiry-form h3 { margin-bottom: 1.5rem; font-size: 1.3rem; }
.hef-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.hef-field { display: flex; flex-direction: column; gap: .4rem; }
.hef-field.full { grid-column: 1 / -1; }
.hef-field label { font-size: .78rem; font-weight: 600; color: var(--text); letter-spacing: .04em; }
.hef-field input,
.hef-field select,
.hef-field textarea {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: .65rem .9rem;
  font-size: .88rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  transition: border-color .2s;
  outline: none;
}
.hef-field input:focus,
.hef-field select:focus,
.hef-field textarea:focus { border-color: var(--primary); }
.hef-field textarea { min-height: 100px; resize: vertical; }

/* ── HERO (Video) ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 680px;
  max-height: 820px;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, #021414 0%, #051E1E 40%, #021414 100%);
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.15) 50%, rgba(0,0,0,.35) 100%);
  z-index: 1;
}
.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,152,152,.18) 0%, transparent 70%);
}
.hero-shape-1 { width: 600px; height: 600px; top: -100px; right: -100px; }
.hero-shape-2 { width: 400px; height: 400px; bottom: -80px; left: -80px; background: radial-gradient(circle, rgba(216,168,91,.1) 0%, transparent 70%); }
.hero-shape-3 { width: 200px; height: 200px; top: 30%; right: 25%; animation: floatShape 6s ease-in-out infinite; }

@keyframes floatShape {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.08); }
}

.hero-grid-overlay {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background-image:
    linear-gradient(rgba(26,152,152,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,152,152,.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Hero 2-column split */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3.5rem;
}

.hero-content {
  position: relative;
  z-index: 5;
  padding: 80px 0 60px;
  max-width: none;
}

/* Hero right — video card */
.hero-media {
  position: relative;
  z-index: 5;
  padding: 80px 0 60px;
}

.hero-video-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 24px 64px rgba(0,0,0,.45);
  aspect-ratio: 16/9;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(6px);
}

.hero-video-card video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

.hero-vid-placeholder {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(26,111,170,.25) 0%, rgba(14,45,30,.6) 100%);
}

.hvp-ring {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  backdrop-filter: blur(4px);
  transition: var(--transition);
}

.hero-video-card:hover .hvp-ring {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.08);
}

.hero-vid-placeholder span {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}

.hero-vid-badge {
  position: absolute;
  bottom: 1rem; left: 1rem;
  z-index: 3;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  padding: .35rem .9rem;
  font-size: .72rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.hero-float-card {
  position: absolute;
  top: calc(80px - 1.5rem);
  right: -1.5rem;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 14px;
  padding: .75rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .85rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  animation: floatShape 4s ease-in-out infinite;
}

.hero-float-card i {
  font-size: 1.6rem;
  color: var(--secondary);
}

.hero-float-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
}

.hero-float-card span {
  font-size: .72rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .04em;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  padding: .4rem 1.1rem .4rem .4rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1.75rem;
}
.hero-label-dot {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-label-dot i { font-size: .65rem; color: var(--white); }

.hero h1 {
  color: var(--white);
  margin-bottom: 1.4rem;
  letter-spacing: -.03em;
}
.hero h1 span { color: var(--accent); }
.hero-sub {
  font-size: 1.07rem;
  color: rgba(255,255,255,.7);
  line-height: 1.8;
  margin-bottom: 1.75rem;
  max-width: 600px;
}
.hero-sub span { color: var(--white); }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero-stat { border-left: 2px solid rgba(255,255,255,.15); padding-left: 1.2rem; }
.hero-stat .stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: block;
}
.hero-stat .stat-num span { color: var(--accent); }
.hero-stat .stat-label { font-size: .75rem; color: rgba(255,255,255,.55); letter-spacing: .06em; text-transform: uppercase; margin-top: .25rem; display: block; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.4);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.scroll-mouse {
  width: 26px; height: 40px;
  border: 2px solid rgba(255,255,255,.25);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-mouse::after {
  content: '';
  width: 3px; height: 8px;
  background: rgba(255,255,255,.5);
  border-radius: 2px;
  animation: scrollMouse 2s infinite;
}
@keyframes scrollMouse {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ── ABOUT SECTION (Homepage) ────────────────────────────── */
.about-home {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.about-home::before {
  content: '';
  position: absolute;
  top: -120px; left: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,152,152,.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/4.5;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.about-img-main:hover img { transform: scale(1.04); }
.about-img-main .img-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 100%; width: 100%;
  color: rgba(255,255,255,.4); gap: 1rem;
  font-family: var(--font-heading); font-weight: 700; letter-spacing: .05em;
}
.about-img-main .img-placeholder i { font-size: 4rem; }

.about-stat-cards {
  position: absolute;
  bottom: -28px; right: -28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.about-stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
}
.about-stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.about-stat-num {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.about-stat-label { font-size: .7rem; color: var(--text-muted); letter-spacing: .04em; margin-top: .2rem; }

.about-content { padding-left: 1rem; }
.about-content h2 { margin-bottom: 1.25rem; }
.about-content p { margin-bottom: 1.25rem; }
.about-points { display: flex; flex-direction: column; gap: .75rem; margin: 1.75rem 0; }
.about-point {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
}
.about-point-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  font-size: .85rem;
  margin-top: .1rem;
}
.about-point p { margin: 0; font-size: .9rem; color: var(--text-light); }

/* ── WHY DIVYA ────────────────────────────────────────────── */
.why-section { background: var(--white); }
.why-section .section-header { margin-bottom: 4rem; }


.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); background: var(--white); border-color: var(--primary-light); }
.why-card:hover::before { transform: scaleX(1); }

.why-card-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}
.why-card:hover .why-card-icon {
  background: var(--primary);
  color: var(--white);
  transform: rotate(5deg) scale(1.05);
}
.why-card h4 { margin-bottom: .6rem; font-size: 1.08rem; }
.why-card p { font-size: .875rem; margin: 0; }

/* ── GLOBAL MARKET ───────────────────────────────────────── */
.global-market {
  background: linear-gradient(160deg, #071818 0%, #0d3e3e 50%, #107878 100%);
  position: relative;
  overflow: hidden;
}
.global-market::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(126,206,206,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.global-market::after {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,152,152,.2) 0%, transparent 70%);
  pointer-events: none;
}
.global-market .container { position: relative; z-index: 1; }
.global-market .section-header { margin-bottom: 3rem; }
.global-market .section-label { background: rgba(255,255,255,.1); color: rgba(255,255,255,.9); border: 1px solid rgba(255,255,255,.15); }
.global-market .section-label::before { background: var(--secondary); }
.global-market h2 { color: var(--white); }
.global-market .section-subtitle { color: rgba(255,255,255,.65); margin: 0 auto; }

.global-map-wrap {
  background: var(--light);
  border-radius: var(--radius-xl);
  padding: 3rem;
  margin-bottom: 2.5rem;
  border: 1px solid var(--border);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.global-map-svg { width: 100%; max-width: 900px; opacity: .85; }

.market-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin: 1.5rem 0 0;
}
.market-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1.2rem;
  border-radius: 100px;
  border: 1px solid rgba(126,206,206,.3);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(4px);
  transition: var(--transition);
}
.market-tag:hover { background: rgba(126,206,206,.2); border-color: rgba(126,206,206,.5); color: var(--white); }
.market-tag i { color: var(--secondary); font-size: .8rem; }

/* ── VIDEO WRAP (used inside Global Market section) ──────── */
.video-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/7;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  box-shadow: 0 24px 64px rgba(0,0,0,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.1);
}
.video-wrap video { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.video-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.2rem;
  transition: background .3s, opacity .4s ease;
}
.video-wrap:hover .video-overlay { background: rgba(10,35,32,.35); }
.play-btn {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 1.6rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  transition: var(--transition);
}
.video-wrap:hover .play-btn { transform: scale(1.08); box-shadow: 0 12px 40px rgba(0,0,0,.3); }
.video-caption { font-size: .85rem; color: rgba(255,255,255,.8); letter-spacing: .06em; text-transform: uppercase; }

/* ── PRODUCT CATEGORIES ──────────────────────────────────── */
.products-cats { background: var(--white); }
.products-cats .section-header { margin-bottom: 4rem; }


.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.cat-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 220px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat-card-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  z-index: 0;
  transition: transform .5s ease;
}
.cat-card:hover .cat-card-bg { transform: scale(1.06); }
.cat-card-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .45; transition: transform .5s; }
.cat-card:hover .cat-card-bg img { transform: scale(1.08); }
.cat-card-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(7,27,44,.92) 0%, rgba(7,27,44,.3) 55%, transparent 100%);
}
.cat-card-content {
  position: relative; z-index: 2;
  padding: 1.1rem 1.25rem;
}
.cat-card-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.1rem;
  margin-bottom: .6rem;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.15);
}
.cat-card h4 { color: var(--white); margin-bottom: .25rem; font-size: 1rem; }
.cat-card p { color: rgba(255,255,255,.7); font-size: .78rem; margin-bottom: .75rem; line-height: 1.5; }
.cat-card .btn-sm { font-size: .75rem; padding: .35rem .9rem; }

/* Cat color variants */
.cat-card:nth-child(1) .cat-card-bg { background: linear-gradient(135deg, #107878, #1A9898); }
.cat-card:nth-child(2) .cat-card-bg { background: linear-gradient(135deg, #0A5E5E, #107878); }
.cat-card:nth-child(3) .cat-card-bg { background: linear-gradient(135deg, #1A9898, #5CC5C5); }
.cat-card:nth-child(4) .cat-card-bg { background: linear-gradient(135deg, #0D4A4A, #0A5E5E); }

/* ── OUR ADVANTAGE ───────────────────────────────────────── */
.advantage-section { background: var(--cream); }
.advantage-section .section-header { margin-bottom: 4rem; }


.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.adv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.adv-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, transparent);
  opacity: 0;
  transition: opacity .35s;
  z-index: 0;
}
.adv-card > * { position: relative; z-index: 1; }

.adv-card:nth-child(1):hover { background: linear-gradient(135deg, #107878, #1A9898); border-color: transparent; }
.adv-card:nth-child(2):hover { background: linear-gradient(135deg, #0A5E5E, #107878); border-color: transparent; }
.adv-card:nth-child(3):hover { background: linear-gradient(135deg, #1A9898, #5CC5C5); border-color: transparent; }
.adv-card:nth-child(4):hover { background: linear-gradient(135deg, #0D4A4A, #107878); border-color: transparent; }
.adv-card:nth-child(5):hover { background: linear-gradient(135deg, #107878, #1A9898); border-color: transparent; }
.adv-card:nth-child(6):hover { background: linear-gradient(135deg, #0A5E5E, #0D4A4A); border-color: transparent; }

.adv-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.adv-card:hover h4, .adv-card:hover p, .adv-card:hover .adv-icon { color: var(--white); }
.adv-card:hover .adv-icon { background: rgba(255,255,255,.15); transform: rotate(-5deg) scale(1.1); }
.adv-card:hover p { color: rgba(255,255,255,.75); }

.adv-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.45rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}
.adv-card h4 { margin-bottom: .6rem; transition: color .35s; }
.adv-card p { font-size: .875rem; margin: 0; transition: color .35s; }

/* ── SERVICES SECTION ────────────────────────────────────── */
.services-home { background: var(--white); }
.services-home .section-header { margin-bottom: 4rem; }


.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-card:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-icon {
  width: 72px; height: 72px;
  border-radius: var(--radius-lg);
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: rgba(255,255,255,.15); color: var(--white); }
.service-card h4 { margin-bottom: .6rem; transition: color .3s; }
.service-card p { font-size: .875rem; margin-bottom: 1.25rem; transition: color .3s; }
.service-card:hover h4, .service-card:hover p { color: rgba(255,255,255,.9); }
.service-card:hover .btn-outline { background: var(--white); color: var(--primary); border-color: var(--white); }

/* ── WHY CHOOSE SECTION ──────────────────────────────────── */
.why-choose {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-choose-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/4.2;
  background: linear-gradient(135deg, var(--primary-dark), #0A4040);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
}
.why-choose-img img { width: 100%; height: 100%; object-fit: cover; }
.why-choose-content h2 { margin-bottom: 1rem; }
.why-choose-content > p { margin-bottom: 2rem; }

.why-points { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.why-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.why-point:hover { border-color: var(--primary); transform: translateX(4px); }
.why-point-check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: .85rem;
  flex-shrink: 0;
}
.why-point p { margin: 0; font-size: .9rem; font-weight: 500; color: var(--text); }

.why-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.why-stat-box {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  border: 1px solid var(--border);
}
.why-stat-box .num {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  line-height: 1;
}
.why-stat-box .lbl { font-size: .73rem; color: var(--text-muted); margin-top: .2rem; display: block; }

/* ── WHAT WE OFFER ───────────────────────────────────────── */
.what-we-offer { background: var(--white); }
.what-we-offer .section-header { margin-bottom: 4rem; }


.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.offer-item {
  background: var(--light);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  border: 1px solid var(--border);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: var(--transition);
}
.offer-item:hover { border-color: var(--primary); background: var(--white); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.offer-item-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.offer-item:hover .offer-item-icon { background: var(--primary); color: var(--white); }
.offer-item-text h5 { font-size: .9rem; margin-bottom: .25rem; }
.offer-item-text p { font-size: .8rem; margin: 0; line-height: 1.6; }

/* ── QUALITY APPROACH ────────────────────────────────────── */
.quality-section { background: var(--cream); position: relative; }
.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.quality-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.quality-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.quality-card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.quality-card i { font-size: 1.5rem; color: var(--primary); margin-bottom: .75rem; display: block; }
.quality-card h5 { margin-bottom: .4rem; }
.quality-card p { font-size: .83rem; margin: 0; line-height: 1.6; }

.quality-content { padding-left: 2rem; }
.quality-content h2 { margin-bottom: 1rem; }
.quality-content > p { margin-bottom: 2rem; }

.quality-process { margin-bottom: 2.5rem; }
.quality-process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.q-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1.25rem;
  position: relative;
}
.q-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 16px; top: 36px;
  width: 2px;
  height: calc(100% - 10px);
  background: var(--border);
}
.q-step-num {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
  position: relative; z-index: 1;
}
.q-step-text { padding-top: .3rem; }
.q-step-text strong { font-size: .92rem; color: var(--text); display: block; margin-bottom: .2rem; }
.q-step-text span { font-size: .82rem; color: var(--text-light); }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials { background: var(--light); position: relative; overflow: hidden; }
.testimonials::before {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,152,152,.06) 0%, transparent 70%);
  pointer-events: none;
}
.testimonials .section-header { margin-bottom: 4rem; }


.testimonials-slider-wrap { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex;
  gap: 1.5rem;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid var(--border);
  flex: 0 0 calc(33.333% - 1rem);
  min-width: calc(33.333% - 1rem);
  transition: var(--transition);
  position: relative;
  box-shadow: 0 4px 24px rgba(26,152,152,.06);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--primary-light); }
.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--primary-light);
  position: absolute;
  top: .5rem; left: 1.5rem;
  line-height: 1;
  z-index: 0;
}
.testimonial-card > * { position: relative; z-index: 1; }
.t-stars { display: flex; gap: 3px; color: var(--accent); margin-bottom: 1.25rem; font-size: .9rem; }
.t-text { font-size: .9rem; line-height: 1.8; color: var(--text); margin-bottom: 1.75rem; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 1rem; }
.t-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1rem; font-weight: 700;
  flex-shrink: 0;
  font-family: var(--font-heading);
}
.t-name { font-weight: 700; font-size: .9rem; color: var(--text); display: block; }
.t-role { font-size: .8rem; color: var(--text-muted); }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 2.5rem;
}
.slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  transition: var(--transition);
  cursor: pointer;
}
.slider-btn:hover { background: var(--primary); color: var(--white); transform: scale(1.05); }
.slider-dots { display: flex; gap: .5rem; align-items: center; }
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.slider-dot.active { background: var(--primary); width: 24px; border-radius: 4px; }

/* ── BLOGS SECTION ───────────────────────────────────────── */
.blogs-home { background: var(--cream); }
.blogs-home .section-header {
  display: grid;
  align-items: center;
  margin-bottom: 3.5rem;
}
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap:8px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  position: relative;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-cat-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--primary);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 100px;
}
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; gap: 1rem; font-size: .78rem; color: var(--text-muted); margin-bottom: .85rem; }
.blog-meta span { display: flex; align-items: center; gap: .3rem; }
.blog-card-body h4 { font-size: 1rem; margin-bottom: .65rem; line-height: 1.4; }
.blog-card-body h4 a { color: var(--text); transition: color .2s; }
.blog-card-body h4 a:hover { color: var(--primary); }
.blog-card-body p { font-size: .85rem; flex: 1; margin-bottom: 1.25rem; }
.blog-read-more { color: var(--primary); font-size: .85rem; font-weight: 600; display: flex; align-items: center; gap: .4rem; transition: gap .2s; }
.blog-read-more:hover { gap: .7rem; }

/* ── FINAL CTA ───────────────────────────────────────────── */
.final-cta {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0A4040 50%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 30px 0;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-shape-1 {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  top: -150px; right: -100px;
}
.cta-shape-2 {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,168,91,.12) 0%, transparent 70%);
  bottom: -80px; left: -50px;
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta .section-label { background: rgba(255,255,255,.1); color: rgba(255,255,255,.9); border: 1px solid rgba(255,255,255,.15); }
.final-cta .section-label::before { background: var(--accent); }
.final-cta h2 { color: var(--white); margin-bottom: 1rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.final-cta p { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 560px; margin: 0 auto 2.5rem; }
.final-cta .cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── INNER PAGE HERO ─────────────────────────────────────── */
.page-hero {
  background:#bec6ca;
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::before { display: none; }
.page-hero-shape {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,152,152,.08) 0%, transparent 70%);
  top: -150px; right: -100px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-content { max-width: 700px; }
.page-hero h1 { color: var(--text); margin-bottom: 1rem; }
.page-hero p { color: var(--text-light); font-size: 1.07rem; margin-bottom: 1.5rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-light); transition: color .2s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb i { font-size: .65rem; }

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.mission-vision {
  background: var(--white);
}
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 3rem; }
.mv-card {
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.mv-card.mission { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }
.mv-card.vision { background: linear-gradient(135deg, #0A5E5E, #107878); }
.mv-card h3 { color: var(--white); margin-bottom: 1rem; }
.mv-card p { color: rgba(255,255,255,.8); margin: 0; }
.mv-icon { font-size: 3rem; color: rgba(255,255,255,.2); position: absolute; bottom: 1.5rem; right: 2rem; }

.values-section { background: var(--light); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem; }
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}
.value-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--primary);
  margin: 0 auto 1.25rem;
  transition: var(--transition);
}
.value-card:hover .value-icon { background: var(--primary); color: var(--white); }
.value-card h4 { margin-bottom: .5rem; }
.value-card p { font-size: .875rem; margin: 0; }

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-section { background: var(--light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; }
.contact-info-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: var(--transition);
}
.contact-info-card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.ci-icon {
  width: 50px; height: 50px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 1.25rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.contact-info-card:hover .ci-icon { background: var(--primary); color: var(--white); }
.ci-text h5 { margin-bottom: .25rem; font-size: .95rem; }
.ci-text p { margin: 0; font-size: .875rem; line-height: 1.6; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-form-wrap h3 { margin-bottom: .5rem; }
.contact-form-wrap > p { margin-bottom: 2rem; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .8rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  background: var(--light);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--primary-light);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-error { font-size: .78rem; color: #E05050; display: none; }
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea { border-color: #E05050; }
.form-group.has-error .form-error { display: block; }

.form-success {
  background: var(--primary-light);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: none;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--secondary);
  margin-top: 1.25rem;
}
.form-success i { color: var(--primary); font-size: 1.5rem; }
.form-success p { margin: 0; color: var(--primary-dark); font-weight: 500; font-size: .9rem; }
.form-success.show { display: flex; }

/* ── PRODUCTS PAGE ───────────────────────────────────────── */
.products-section { background: var(--light); }
.products-filter {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: .55rem 1.3rem;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  border: 2px solid var(--border);
  color: var(--text-light);
  background: var(--white);
  transition: var(--transition);
  cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}
.search-wrap {
  position: relative;
  max-width: 440px;
  margin: 0 auto 2.5rem;
}
.search-wrap i {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: .95rem;
}
.search-wrap input {
  padding: .8rem 1.1rem .8rem 2.8rem;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  width: 100%;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: var(--transition);
}
.search-wrap input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-light); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.product-card-img {
  aspect-ratio: 5/3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-cat-badge {
  position: absolute;
  top: .75rem; right: .75rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 100px;
}
.badge-pharma { background: rgba(26,152,152,.15); color: var(--primary); }
.badge-nutra  { background: rgba(0,166,166,.15);  color: #007A7A; }
.badge-cosm   { background: rgba(192,122,106,.15); color: #8A4A3F; }
.badge-chem   { background: rgba(100,120,192,.15); color: #3A5090; }

.product-card-body { padding: .9rem 1rem; flex: 1; display: flex; flex-direction: column; }
.product-card-body h4 { font-size: .92rem; margin-bottom: .3rem; }
.product-card-body p { font-size: .78rem; flex: 1; margin-bottom: .75rem; line-height: 1.5; }

/* ── FAQ PAGE ────────────────────────────────────────────── */
.faq-section { background: var(--light); }
.faq-categories {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  justify-content: center;
}
.faq-cat-btn {
  padding: .5rem 1.2rem;
  border-radius: 100px;
  font-size: .83rem;
  font-weight: 600;
  border: 2px solid var(--border);
  color: var(--text-light);
  background: var(--white);
  transition: var(--transition);
  cursor: pointer;
}
.faq-cat-btn.active, .faq-cat-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: .85rem;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item.open { box-shadow: var(--shadow-sm); border-color: var(--primary-light); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  transition: color .2s;
}
.faq-item.open .faq-question { color: var(--primary); }
.faq-toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light);
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-toggle { background: var(--primary); color: var(--white); transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ── QUALITY PAGE ────────────────────────────────────────── */
.quality-philosophy { background: var(--white); }
.quality-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.q-phil-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.q-phil-card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.q-phil-card i { font-size: 2rem; color: var(--primary); margin-bottom: 1rem; display: block; }
.q-phil-card h4 { margin-bottom: .5rem; }
.q-phil-card p { font-size: .875rem; margin: 0; }

.quality-timeline { background: var(--cream); }
.timeline-wrap { position: relative; max-width: 800px; margin: 3rem auto 0; }
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
  transform: translateX(-50%);
}
.timeline-step {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}
.timeline-step:nth-child(odd) .t-content { grid-column: 1; text-align: right; }
.timeline-step:nth-child(odd) .t-dot   { grid-column: 2; }
.timeline-step:nth-child(odd) .t-empty { grid-column: 3; }
.timeline-step:nth-child(even) .t-empty { grid-column: 1; }
.timeline-step:nth-child(even) .t-dot  { grid-column: 2; }
.timeline-step:nth-child(even) .t-content { grid-column: 3; text-align: left; }
.t-dot {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.2rem;
  margin: 0 auto;
  position: relative; z-index: 1;
  box-shadow: 0 0 0 6px var(--primary-light);
}
.t-content {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
}
.t-content h5 { margin-bottom: .35rem; color: var(--primary); }
.t-content p { font-size: .83rem; margin: 0; }

/* ── BLOGS PAGE ──────────────────────────────────────────── */
.blogs-page-section { background: var(--light); }
.blogs-search-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.pagination {
  display: flex;
  gap: .5rem;
  justify-content: center;
  margin-top: 3rem;
}
.page-btn {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: .88rem;
  font-weight: 600;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--text-light);
  transition: var(--transition);
  cursor: pointer;
}
.page-btn:hover, .page-btn.active { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }

/* ── SERVICE PAGES ───────────────────────────────────────── */
.service-overview { background: var(--white); }
.service-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.service-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3.5;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
}
.service-img img { width: 100%; height: 100%; object-fit: cover; }

.service-cats { background: var(--light); }
.service-cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.service-cat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.service-cat-card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.service-cat-card i { font-size: 1.75rem; color: var(--primary); margin-bottom: 1rem; display: block; }
.service-cat-card h4 { margin-bottom: .5rem; }
.service-cat-card p { font-size: .875rem; margin: 0; }

.service-faq { background: var(--white); }

/* ── ANIMATIONS ──────────────────────────────────────────── */
[data-aos] {
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
}
[data-aos="fade-up"]    { transform: translateY(30px); }
[data-aos="fade-in"]    { transform: none; }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"]  { transform: translateX(30px); }
[data-aos="zoom-in"]    { transform: scale(.94); }
[data-aos].aos-animate  { opacity: 1; transform: none; }

/* Stagger delays */
[data-aos-delay="100"] { transition-delay: .1s; }
[data-aos-delay="200"] { transition-delay: .2s; }
[data-aos-delay="300"] { transition-delay: .3s; }
[data-aos-delay="400"] { transition-delay: .4s; }
[data-aos-delay="500"] { transition-delay: .5s; }

/* ── UTILITIES ───────────────────────────────────────────── */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.d-flex { display: flex; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.section-header { margin-bottom: 3rem; }

/* ── IMG PLACEHOLDER HELPERS ─────────────────────────────── */
.img-ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,.35);
  gap: .75rem;
  font-family: var(--font-heading);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  padding: 2rem;
}
.img-ph i { font-size: 3.5rem; }

/* ═══════════════════════════════ PRODUCT MODAL ══════════════════════════════ */
.pm-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 28, 22, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.pm-overlay.open {
  opacity: 1;
  visibility: visible;
}
.pm-dialog {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 860px;
  width: 100%;
  max-height: 92vh;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  box-shadow: 0 40px 100px rgba(10,28,22,.4), 0 0 0 1px rgba(255,255,255,.06);
  transform: translateY(28px) scale(.96);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
  position: relative;
}
.pm-overlay.open .pm-dialog {
  transform: translateY(0) scale(1);
}
.pm-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background .2s, transform .2s;
  font-family: sans-serif;
}
.pm-close:hover { background: rgba(255,255,255,.32); transform: scale(1.1); }
.pm-img-panel {
  flex: 0 0 38%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  position: relative;
  background: linear-gradient(135deg, #107878, #1A9898);
  min-height: 360px;
}
.pm-img-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.08), transparent 60%);
  pointer-events: none;
}
.pm-img-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.pm-icon-wrap {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  border: 2px solid rgba(255,255,255,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.pm-icon-wrap i { font-size: 3.2rem; color: #fff; }
.pm-content {
  flex: 1;
  padding: 2.5rem 2.5rem 2.5rem 2rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.pm-name {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--text-dark);
  margin: .45rem 0 0;
  line-height: 1.25;
}
.pm-desc {
  color: var(--text);
  line-height: 1.72;
  margin: 0;
}
.pm-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem;
}
.pm-spec {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
}
.pm-spec-key {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--primary);
  margin-bottom: .22rem;
}
.pm-spec-val { font-size: .84rem; color: var(--text); }
.pm-note {
  background: rgba(26,152,152,.08);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: .9rem 1.1rem;
  font-size: .82rem;
  color: var(--primary-dark);
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  line-height: 1.6;
}
.pm-note i { font-size: 1rem; flex-shrink: 0; margin-top: .12rem; }
.pm-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: .25rem;
  margin-top: auto;
}
.product-card[data-product-name] { cursor: pointer; }

@media (max-width: 680px) {
  .pm-dialog { flex-direction: column; max-height: 96vh; overflow-y: auto; }
  .pm-img-panel { min-height: 160px; flex: none; padding: 1.75rem 1.5rem; }
  .pm-content { padding: 1.75rem 1.5rem; gap: 1rem; }
  .pm-specs { grid-template-columns: 1fr; }
  .pm-actions { flex-direction: column; }
  .pm-actions .btn { width: 100%; justify-content: center; }
}

/* ── Hero responsive ─────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-media { padding: 0 0 60px; }
  .hero-float-card { right: 0; top: -1rem; }
}

@media (max-width: 600px) {
  .hero-float-card { display: none; }
  .hero-split { gap: 1.5rem; }
}

/* ── FLOATING BUTTONS ────────────────────────────────────── */
.floating-btns {
  position: fixed;
  bottom: 2rem;
  right: 1.75rem;
  z-index: 990;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: center;
}

.float-btn {
  position: relative;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,.22);
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
}
.float-btn:hover { transform: scale(1.12); box-shadow: 0 8px 28px rgba(0,0,0,.3); }

.float-wa  { background: #25D366; }
.float-wa:hover  { background: #1ebe5d; }

.float-call { background: var(--primary); }
.float-call:hover { background: var(--primary-dark); }

/* Tooltip */
.float-tooltip {
  position: absolute;
  right: calc(100% + .6rem);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.75);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  padding: .3rem .7rem;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s;
}
.float-btn:hover .float-tooltip { opacity: 1; }

/* Pulse ring on WhatsApp */
.float-wa::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulse 2.2s ease-out infinite;
  opacity: 0;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ── COOKIE BANNER ───────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: min(680px, calc(100vw - 2rem));
  z-index: 9999;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
  border: 1px solid var(--border);
  transition: bottom .45s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
}
.cookie-banner.show { bottom: 1.5rem; }

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.25rem 1.5rem;
}

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

.cookie-text { flex: 1; min-width: 0; }
.cookie-text p { margin: 0; line-height: 1.5; }
.cookie-text p:first-child { color: var(--text); font-size: .9rem; margin-bottom: .2rem; }
.cookie-text p:last-child { color: var(--text-light); font-size: .8rem; }
.cookie-text a { color: var(--primary); text-decoration: underline; }

.cookie-actions {
  display: flex;
  gap: .6rem;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .cookie-inner { flex-wrap: wrap; }
  .cookie-actions { width: 100%; justify-content: flex-end; }
  .floating-btns { bottom: 1.25rem; right: 1rem; }
  .float-btn { width: 46px; height: 46px; font-size: 1.15rem; }
}

.brand-logo {
  width: 170px;
  height: 55px;
  object-fit: contain;
  display: block;
}

/* ══════════════════════════════════════════════════════════
   PREMIUM DESIGN ENHANCEMENTS
   ══════════════════════════════════════════════════════════ */

/* ── Section title — gradient underline ─────────────────── */
.section-title {
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 1.25rem !important;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 52px; height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.home-services-header .section-title::after,
.testimonials .section-title::after,
.global-market .section-title::after,
.final-cta .section-title::after {
  left: 50%; transform: translateX(-50%);
}
.global-market .section-title::after {
  background: linear-gradient(90deg, var(--secondary), var(--white));
}

/* ── Hero — bigger, bolder ───────────────────────────────── */
.home-hero {
  min-height: 720px;
}
.home-hero-content {
  padding: 190px 0 130px;
  gap: 1.5rem;
}
.home-hero-content h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.1rem);
  line-height: 1.2;
}

/* Hero floating bottom stat cards */
.hero-stat-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  padding: 0 0 0 calc((100% - 1240px) / 2 + 1.5rem);
  gap: 1rem;
  pointer-events: none;
}
.hero-stat-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px 16px 0 0;
  padding: 1rem 1.6rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  min-width: 160px;
}
.hero-stat-card-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: block;
}
.hero-stat-card-lbl {
  font-size: .7rem;
  color: rgba(255,255,255,.65);
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.4;
  display: block;
}
.hero-stat-card-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(126,206,206,.2);
  color: var(--secondary);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ── Product cards — per-card gradient backgrounds ───────── */
.product-card {
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(26,152,152,.07);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 55px rgba(26,152,152,.18);
  border-color: var(--primary);
}
.product-card:nth-child(4n+1) .product-card-img { background: linear-gradient(145deg, #107878, #1A9898); }
.product-card:nth-child(4n+2) .product-card-img { background: linear-gradient(145deg, #1E8449, #27AE60); }
.product-card:nth-child(4n+3) .product-card-img { background: linear-gradient(145deg, #6C3483, #8E44AD); }
.product-card:nth-child(4n+4) .product-card-img { background: linear-gradient(145deg, #1A5276, #2980B9); }
.product-card-img .img-ph {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  font-size: 1.8rem;
  color: rgba(255,255,255,.9);
  display: flex; align-items: center; justify-content: center;
}
.product-card-body { padding: 1.2rem 1.3rem 1.4rem; }
.product-card-body h4 { font-size: .95rem; margin-bottom: .45rem; line-height: 1.4; }
.product-card-body p  { font-size: .8rem; margin-bottom: 1rem; line-height: 1.65; }

/* ── Blog cards — colored top stripe per card ────────────── */
.blog-card {
  border-radius: 16px;
  border-top: 4px solid transparent;
  box-shadow: 0 2px 14px rgba(26,152,152,.06);
}
.blog-card:nth-child(1) { border-top-color: #1A9898; }
.blog-card:nth-child(2) { border-top-color: #27AE60; }
.blog-card:nth-child(3) { border-top-color: #8E44AD; }
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(26,152,152,.14); }

/* ── Stats bar — glowing numbers ────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, #071818 0%, #0a2e2e 40%, #107878 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.stat-num {
  font-size: 3.4rem;
  text-shadow: 0 0 40px rgba(126,206,206,.4);
}
.stats-bar-item:hover .stat-num {
  color: var(--secondary);
}

/* ── Home services section — subtle grid pattern ─────────── */
.home-services-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.home-services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,152,152,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,152,152,.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

/* ── Service cards — bigger icon, top accent line ────────── */
.home-svc-card {
  border-top: 3px solid transparent;
  transition: transform .38s ease, box-shadow .38s ease, border-color .38s ease;
}
.home-svc-card:nth-child(1) { border-top-color: #1A9898; }
.home-svc-card:nth-child(2) { border-top-color: #27AE60; }
.home-svc-card:nth-child(3) { border-top-color: #8E44AD; }
.home-svc-card:nth-child(4) { border-top-color: #2980B9; }

/* ── Why-us section — left panel dark diagonal ───────────── */
.why-home-section {
  position: relative;
}
.why-home-section::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,152,152,.07) 0%, transparent 70%);
  pointer-events: none;
}

/* ── About section — stronger visual ────────────────────── */
.home-about-section {
  background: linear-gradient(160deg, var(--light) 0%, #f0fafa 50%, var(--cream) 100%);
}
.ab-main-img {
  box-shadow: 0 40px 100px rgba(26,152,152,.25);
}

/* ── Testimonials — top border per card ─────────────────── */
.testimonial-card:nth-child(odd) {
  border-top: 3px solid var(--primary);
}
.testimonial-card:nth-child(even) {
  border-top: 3px solid var(--secondary);
}
.testimonial-card::before {
  font-size: 6rem;
  color: rgba(26,152,152,.1);
  top: .2rem;
}

/* ── Enquiry form — card lift ────────────────────────────── */
.home-enquiry-form {
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,.12);
  border: none;
}
.home-enquiry-form h3 { color: var(--primary); }

/* ── Final CTA — pattern background ─────────────────────── */
.final-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

/* ── Smooth scroll reveal on section entries ─────────────── */
@keyframes sectionFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Page hero (inner pages) — more padding ─────────────── */
.page-hero { padding: 160px 0 80px; }
.page-hero-content h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); }

/* ── Radius upgrade ──────────────────────────────────────── */
:root {
  --radius-sm: 10px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
}