/* ================================================================
   JESSY SAFETY INVISIBLE GRILLS
   Global Design System — main.css
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens ─────────────────────────────────────────────── */
:root {
  /* Brand Colors */
  --navy:         #0D1B3E;
  --navy-light:   #1A2F5E;
  --navy-muted:   #243760;
  --blue:         #1565C0;
  --blue-light:   #1976D2;
  --blue-bright:  #2196F3;
  --sky:          #E3F2FD;
  --sky-dark:     #BBDEFB;

  /* Neutrals */
  --white:        #FFFFFF;
  --grey-50:      #F8FAFC;
  --grey-100:     #F1F5F9;
  --grey-200:     #E2E8F0;
  --grey-300:     #CBD5E1;
  --grey-400:     #94A3B8;
  --grey-500:     #64748B;
  --grey-700:     #334155;
  --grey-900:     #0F172A;

  /* Functional */
  --green:        #25D366;

  /* Typography */
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --container:    1280px;
  --container-sm: 960px;
  --header-h:     72px;

  /* Spacing */
  --section-py:   5rem;
  --section-py-sm:3rem;

  /* Shadows */
  --shadow-xs:    0 1px 2px rgba(0,0,0,.06);
  --shadow-sm:    0 1px 4px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:    0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg:    0 10px 40px rgba(0,0,0,.13), 0 4px 14px rgba(0,0,0,.08);
  --shadow-xl:    0 20px 60px rgba(0,0,0,.18), 0 8px 20px rgba(0,0,0,.10);
  --shadow-blue:  0 8px 30px rgba(21,101,192,.30);
  --shadow-navy:  0 8px 30px rgba(13,27,62,.30);

  /* Radii */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-full:100px;

  /* Transitions */
  --ease:  cubic-bezier(0.4, 0, 0.2, 1);
  --t:     0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --tf:    0.15s ease;
}

/* ── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-sans); color: var(--grey-900); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: var(--font-sans); cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: var(--font-sans); }

/* ── Typography ─────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  line-height: 1.2;
  font-weight: 700;
  color: var(--navy);
}
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.65rem); }
h4 { font-size: clamp(1rem, 2vw, 1.25rem); }
p  { color: var(--grey-700); font-size: 1rem; line-height: 1.8; }

/* ── Container ──────────────────────────────────────────────────── */
.container    { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.container-sm { width: 100%; max-width: var(--container-sm); margin: 0 auto; padding: 0 1.5rem; }

/* ── Sections ───────────────────────────────────────────────────── */
.section    { padding: var(--section-py) 0; }
.section-sm { padding: var(--section-py-sm) 0; }

.bg-white  { background: var(--white); }
.bg-grey   { background: var(--grey-50); }
.bg-navy   { background: var(--navy); }
.bg-blue   { background: var(--blue); }
.bg-sky    { background: var(--sky); }

.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }
.bg-navy p { color: rgba(255,255,255,.82); }
.bg-blue  h1, .bg-blue  h2, .bg-blue  h3 { color: var(--white); }
.bg-blue  p { color: rgba(255,255,255,.85); }

/* ── Section Header ─────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header.align-left { text-align: left; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--sky);
  border: 1px solid var(--sky-dark);
  padding: 5px 14px;
  border-radius: var(--r-full);
  margin-bottom: 1rem;
}
.eyebrow.white {
  color: var(--white);
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.25);
}

.section-title { margin-bottom: 0.75rem; }

.section-lead {
  font-size: 1.05rem;
  color: var(--grey-500);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
}
.section-lead.white { color: rgba(255,255,255,.78); }

.divider {
  width: 56px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}
.divider.center { margin-left: auto; margin-right: auto; }
.divider.white  { background: rgba(255,255,255,.5); }

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-md);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: all var(--t);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary  { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-primary:hover  { background: var(--blue-light); border-color: var(--blue-light); transform: translateY(-2px); box-shadow: var(--shadow-blue); }

.btn-navy     { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover     { background: var(--navy-light); border-color: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-navy); }

.btn-outline  { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover  { background: var(--blue); color: var(--white); transform: translateY(-2px); }

.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.65); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

.btn-white    { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-white:hover    { background: var(--grey-100); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-whatsapp { background: #25D366; color: var(--white); border-color: #25D366; }
.btn-whatsapp:hover { background: #1ebe5c; border-color: #1ebe5c; transform: translateY(-2px); }

.btn-sm  { padding: 10px 20px; font-size: 0.82rem; }
.btn-lg  { padding: 17px 38px; font-size: 1rem; }
.btn-xl  { padding: 20px 44px; font-size: 1.05rem; }

/* ── Btn Group ──────────────────────────────────────────────────── */
.btn-group { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.btn-group.center { justify-content: center; }

/* ── Card ───────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all var(--t);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }

/* ── Checklist ──────────────────────────────────────────────────── */
.checklist        { display: flex; flex-direction: column; gap: 1rem; }
.checklist-item   { display: flex; align-items: flex-start; gap: 12px; }
.check-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.check-icon::after {
  content: '';
  width: 10px; height: 6px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg) translateY(-1px);
}
.checklist-item p { font-size: 0.95rem; line-height: 1.55; color: var(--grey-700); margin: 0; }

/* ── Page Hero ──────────────────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: calc(var(--header-h) + 4rem) 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.20;
  transition: transform 8s ease;
}
.page-hero:hover .page-hero-bg { transform: scale(1.04); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero .lead { color: rgba(255,255,255,.82); font-size: 1.1rem; max-width: 580px; margin-bottom: 2rem; }

/* ── Breadcrumb ─────────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.65); transition: var(--tf); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { opacity: 0.5; font-size: 0.7rem; }

/* ── Feature Grid ───────────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem;
  transition: all var(--t);
}
.feature-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.feature-icon {
  width: 48px; height: 48px;
  background: var(--sky);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
.feature-card h4 { font-size: 1rem; margin-bottom: 0.4rem; color: var(--navy); }
.feature-card p  { font-size: 0.88rem; color: var(--grey-500); margin: 0; line-height: 1.55; }

/* ── Split Layout ───────────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-media { position: relative; }
.split-media img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
}

/* ── Img Cover ──────────────────────────────────────────────────── */
.img-cover { width: 100%; height: 100%; object-fit: cover; }

/* ── Badge ──────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-full);
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--blue-bright);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(1.3); }
}

/* ── Accordion / FAQ ────────────────────────────────────────────── */
.accordion { display: flex; flex-direction: column; gap: 0.75rem; }
.accordion-item {
  border: 1px solid var(--grey-200);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all var(--t);
}
.accordion-item.open { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: var(--white);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  transition: all var(--tf);
}
.accordion-item.open .accordion-header { background: var(--sky); color: var(--blue); }
.accordion-chevron {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t);
}
.accordion-chevron::after {
  content: '';
  width: 5px; height: 5px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--t);
}
.accordion-item.open .accordion-chevron { transform: rotate(180deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s ease;
}
.accordion-body-inner {
  padding: 0 1.4rem 1.2rem;
}
.accordion-item.open .accordion-body { max-height: 400px; }
.accordion-body p { font-size: 0.92rem; color: var(--grey-700); line-height: 1.72; margin: 0; }

/* ── Scroll to Top ──────────────────────────────────────────────── */
#scrollTop {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: all var(--t);
  z-index: 900;
  font-size: 1.1rem;
}
#scrollTop.visible { opacity: 1; pointer-events: auto; }
#scrollTop:hover { background: var(--blue); transform: translateY(-3px); }

/* ── Process Steps ──────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 30px);
  right: calc(12.5% + 30px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-bright) 100%);
  z-index: 0;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 80px; height: 80px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 3px solid var(--blue);
  box-shadow: var(--shadow-blue);
  transition: all var(--t);
}
.step-num:hover { background: var(--blue); transform: scale(1.08); }
.step-num .num {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-serif);
  line-height: 1;
}
.step-num .label { font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: .75; }
.step h4 { font-size: 0.95rem; margin-bottom: 0.4rem; color: var(--navy); }
.step p  { font-size: 0.85rem; color: var(--grey-500); line-height: 1.55; margin: 0; }

/* ── Testimonial ────────────────────────────────────────────────── */
.testimonial-slider { overflow: hidden; }
.testimonials-track {
  display: flex;
  transition: transform 0.5s var(--ease);
}
.testimonial-card {
  flex: 0 0 100%;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.testimonial-stars { color: #F59E0B; font-size: 1.1rem; margin-bottom: 1.25rem; letter-spacing: 2px; }
.testimonial-text { font-size: 1rem; line-height: 1.8; color: var(--grey-700); margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  background: var(--sky);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.92rem; color: var(--navy); }
.author-role { font-size: 0.78rem; color: var(--grey-400); }

.slider-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}
.slider-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2px solid var(--grey-200);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--navy);
  cursor: pointer;
  transition: all var(--t);
}
.slider-btn:hover { border-color: var(--blue); color: var(--blue); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--grey-300);
  cursor: pointer;
  transition: all var(--t);
}
.slider-dot.active { background: var(--blue); width: 24px; border-radius: 4px; }

/* ── Tag Cloud ──────────────────────────────────────────────────── */
.tag-list { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.tag {
  background: var(--sky);
  color: var(--blue);
  padding: 5px 14px;
  border-radius: var(--r-full);
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid var(--sky-dark);
}

/* ── Service Card (inner-page list) ─────────────────────────────── */
.related-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.related-service-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--t);
}
.related-service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.related-service-card img { width: 100%; height: 180px; object-fit: cover; }
.related-card-body { padding: 1.25rem; }
.related-card-body h4 { font-size: 1rem; margin-bottom: 0.3rem; color: var(--navy); }
.related-card-body p  { font-size: 0.85rem; color: var(--grey-500); margin-bottom: 0.8rem; }
.related-card-body a  { font-size: 0.82rem; font-weight: 600; color: var(--blue); }
.related-card-body a:hover { color: var(--navy); }

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.reverse { direction: ltr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
}

@media (max-width: 768px) {
  :root {
    --section-py: 3.5rem;
    --section-py-sm: 2rem;
  }
  .container { padding: 0 1.25rem; }
  .split-media img { height: 280px; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { text-align: center; justify-content: center; }
  .steps { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card { padding: 1.75rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.55rem; }
  .feature-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.page-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,62,.88) 0%, rgba(21,101,192,.55) 100%);
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 1rem;
}
.page-hero .lead {
  color: rgba(255,255,255,.82);
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  max-width: 620px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ── Breadcrumb ─────────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  margin-bottom: 1.25rem;
}
.breadcrumb a {
  color: rgba(255,255,255,.75);
  transition: color var(--tf);
}
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,.4); font-size: 0.75rem; }
.breadcrumb span:last-child { color: rgba(255,255,255,.9); }

/* ── Background Utilities ───────────────────────────────────────── */
.bg-white  { background: var(--white) !important; }
.bg-grey   { background: var(--grey-50) !important; }
.bg-navy   {
  background: var(--navy) !important;
  position: relative;
}
.bg-navy * { color: inherit; }

/* ── Divider variants ───────────────────────────────────────────── */
.divider.white { background: rgba(255,255,255,.25); }

/* ── Eyebrow white ──────────────────────────────────────────────── */
.eyebrow.white {
  color: rgba(255,255,255,.7);
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
}

/* ── Checklist ──────────────────────────────────────────────────── */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.checklist-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.check-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 2px;
}
.check-icon::after {
  content: '✓';
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
}
.checklist-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--grey-600, var(--grey-500));
  line-height: 1.6;
}

/* ── Lead (standalone paragraph) ───────────────────────────────── */
.lead {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--grey-500);
  line-height: 1.75;
}

/* ── How-section (dark bg + steps) ─────────────────────────────── */
.how-section {
  background: var(--navy) !important;
}
.how-section .section-title,
.how-section .section-lead,
.how-section .eyebrow {
  color: var(--white) !important;
}
.how-section .section-lead.white { color: rgba(255,255,255,.75) !important; }
.how-section .eyebrow { border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.08); }
.step-num { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: var(--r-md); padding: 0.75rem 1rem; text-align: center; margin-bottom: 1rem; }
.step-num .num { display: block; font-family: var(--font-serif); font-size: 2rem; font-weight: 700; color: var(--blue-bright); line-height: 1; }
.step-num .label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.step h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 0.5rem; }
.step p  { color: rgba(255,255,255,.72); font-size: 0.88rem; line-height: 1.65; }

/* ── About Preview ──────────────────────────────────────────────── */
.about-preview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) { .about-preview-inner { grid-template-columns: 1fr; gap: 2rem; } }

/* ── Intro Split ────────────────────────────────────────────────── */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) { .intro-split { grid-template-columns: 1fr; gap: 2rem; } }
.intro-media { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.intro-media img { width: 100%; height: 460px; object-fit: cover; display: block; }
.intro-media-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: var(--shadow-lg);
}
.intro-media-badge strong { font-size: 0.75rem; letter-spacing: 0.1em; color: var(--blue-bright); }
.intro-media-badge span  { font-size: 0.85rem; font-weight: 600; }

/* ── Poster tags ────────────────────────────────────────────────── */
.poster-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.poster-tag {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-size: 0.82rem;
  font-weight: 600;
}

/* ── Button: white ──────────────────────────────────────────────── */
.btn-white {
  background: var(--white);
  color: var(--navy);
  border: none;
}
.btn-white:hover {
  background: var(--grey-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ── Outline White button ───────────────────────────────────────── */
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.65);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}

/* ── Why Section ────────────────────────────────────────────────── */
.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-media img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--r-xl); box-shadow: var(--shadow-xl); }
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.why-feature { padding: 1rem; background: var(--grey-50); border-radius: var(--r-md); border: 1px solid var(--grey-200); }
.why-feature-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.why-feature h4 { font-size: 0.9rem; color: var(--navy); margin-bottom: 0.3rem; }
.why-feature p  { font-size: 0.82rem; color: var(--grey-500); margin: 0; line-height: 1.5; }
@media (max-width: 900px) { .why-split { grid-template-columns: 1fr; gap: 2rem; } .why-media img { height: 280px; } }
@media (max-width: 480px) { .why-features { grid-template-columns: 1fr; } }

/* ── Trust Section ──────────────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.trust-card {
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: all var(--t);
}
.trust-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.trust-icon { font-size: 2.25rem; margin-bottom: 1rem; }
.trust-card h4 { color: var(--navy); margin-bottom: 0.5rem; font-size: 1rem; }
.trust-card p  { font-size: 0.85rem; color: var(--grey-500); line-height: 1.65; margin: 0; }
@media (max-width: 1024px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .trust-grid { grid-template-columns: 1fr; } }

/* ── Testimonials Slider ────────────────────────────────────────── */
.testimonials-inner { max-width: 800px; margin: 0 auto; }
.testimonial-slider { overflow: hidden; }
.testimonials-track {
  display: flex;
  transition: transform 0.5s var(--ease);
}
.testimonial-card {
  min-width: 100%;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-xl);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-md);
}
.testimonial-stars { color: #F59E0B; font-size: 1.2rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text  { font-size: 1rem; color: var(--grey-700); line-height: 1.75; font-style: italic; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; gap: 0.75rem; align-items: center; }
.author-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--sky); font-size: 1.5rem; display: flex; align-items: center; justify-content: center; }
.author-name { font-weight: 700; font-size: 0.95rem; color: var(--navy); }
.author-role { font-size: 0.8rem; color: var(--grey-500); }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t);
  color: var(--navy);
}
.slider-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.slider-dots { display: flex; gap: 6px; }
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--grey-300);
  cursor: pointer;
  transition: all var(--tf);
}
.slider-dot.active { background: var(--blue); transform: scale(1.3); }

/* ── Final CTA ──────────────────────────────────────────────────── */
.final-cta {
  background: var(--navy);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(21,101,192,.35), transparent 70%);
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 { color: var(--white); font-size: clamp(1.75rem, 3vw, 2.6rem); margin-bottom: 1rem; }
.final-cta p  { color: rgba(255,255,255,.78); max-width: 540px; margin: 0 auto 2.5rem; font-size: 1rem; }

/* ── Scroll-to-top button ───────────────────────────────────────── */
#scrollTop {
  position: fixed;
  bottom: 7rem;
  right: 1.5rem;
  width: 46px; height: 46px;
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--blue);
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transition: all var(--t);
  box-shadow: var(--shadow-md);
}
#scrollTop.visible { opacity: 1; visibility: visible; }
#scrollTop:hover { background: var(--blue); transform: translateY(-3px); }

/* ── Mobile sub-links ───────────────────────────────────────────── */
.mobile-sub-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 1rem;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.mobile-sub-links.open { max-height: 400px; }
.mobile-sub-links a {
  font-size: 0.9rem;
  padding: 0.6rem 0.5rem;
  color: var(--grey-700);
  border-bottom: 1px solid var(--grey-100);
  font-weight: 500;
}
.mobile-sub-links a:hover { color: var(--blue); }

/* ── About Preview (standalone utility) ─────────────────────────── */
.about-preview { background: var(--white); }

/* ── Gallery Preview ────────────────────────────────────────────── */
.gallery-preview { background: var(--white); }
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.25rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 1/0.75;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
  display: block;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,62,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity var(--t);
  color: var(--white);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-cta { text-align: center; margin-top: 2.5rem; }
.filter-btn {
  padding: 8px 20px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--grey-200);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--grey-700);
  cursor: pointer;
  transition: all var(--t);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── Services Section ───────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.service-card {
  border: 1px solid var(--grey-200);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--white);
  transition: all var(--t);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: var(--blue); }
.service-card.featured { grid-column: span 2; display: grid; grid-template-columns: 1.2fr 1fr; }
.service-card-media { overflow: hidden; position: relative; }
.service-card-media img { width: 100%; height: 100%; object-fit: cover; min-height: 220px; transition: transform 0.5s var(--ease); display: block; }
.service-card:hover .service-card-media img { transform: scale(1.05); }
.service-card-media-badge { position: absolute; top: 1rem; left: 1rem; background: var(--blue); color: var(--white); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; padding: 4px 10px; border-radius: var(--r-full); }
.service-card-body { padding: 1.75rem; display: flex; flex-direction: column; justify-content: center; }
.service-card-body h3 { font-size: 1.25rem; color: var(--navy); margin-bottom: 0.75rem; }
.service-card-body p  { font-size: 0.9rem; color: var(--grey-500); line-height: 1.7; margin-bottom: 1.25rem; flex: 1; }
.service-card-link { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; color: var(--blue); display: inline-flex; align-items: center; gap: 0.4rem; transition: color var(--tf); }
.service-card-link:hover { color: var(--navy); }
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
}

/* ── Lightbox (global — used on homepage, gallery & service pages) ── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  display: block;
}
.lightbox-close {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2001;
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }
.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2001;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,.25); }
.lightbox-caption {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.75);
  font-size: 0.85rem;
  text-align: center;
  max-width: 80vw;
}
@media (max-width: 768px) {
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}
