/* ================================================================
   SARAS AUTOMOBILES — style.css
   Auto Service Business · Premium Deep Blue Theme
   Inspired by: N&N Groups Eid Al-Adha poster palette
   Fonts: Roboto, Roboto Condensed, Barlow
   ================================================================ */

/* ================================================================
   01. CSS DESIGN TOKENS
   ================================================================ */
:root {
  /* ── Brand Blue Palette (from poster gradient) ── */
  --navy:           #060d1f;          /* deepest bg */
  --dark:           #0a1628;          /* primary bg */
  --dark-2:         #0d1e38;          /* section alt bg */
  --dark-3:         #102244;          /* card bg */
  --dark-4:         #14285a;          /* input bg */
  --blue-mid:       #1a3a6b;          /* mid-tone blue */
  --blue-royal:     #1e4080;          /* royal blue */
  --blue-bright:    #1a6fc4;          /* bright accent */
  --blue-glow:      #2080d8;          /* glow blue */
  --cyan:           #00c8ff;          /* electric cyan highlight */
  --cyan-dim:       rgba(0,200,255,0.18);
  --cyan-border:    rgba(0,200,255,0.25);

  /* ── Gold Accent (matches poster yellow) ── */
  --gold:           #f5c518;
  --gold-light:     #ffd740;
  --gold-dim:       rgba(245,197,24,0.15);
  --gold-border:    rgba(245,197,24,0.3);

  /* ── Text & Borders ── */
  --white:          #ffffff;
  --off-white:      #e8eef8;
  --text:           #b8c8e0;
  --muted:          #6a80a8;
  --muted-2:        #415070;
  --border:         rgba(255,255,255,0.07);
  --border-blue:    rgba(26,111,196,0.3);
  --border-cyan:    rgba(0,200,255,0.2);

  /* ── Fonts ── */
  --font-main:      'Roboto', sans-serif;
  --font-cond:      'Roboto Condensed', sans-serif;
  --font-display:   'Barlow', sans-serif;

  /* ── Effects ── */
  --shadow-sm:      0 2px 12px rgba(0,0,0,0.4);
  --shadow-md:      0 6px 28px rgba(0,0,0,0.55);
  --shadow-lg:      0 16px 56px rgba(0,0,0,0.7);
  --shadow-blue:    0 8px 32px rgba(26,111,196,0.35);
  --shadow-cyan:    0 8px 32px rgba(0,200,255,0.2);
  --shadow-gold:    0 8px 24px rgba(245,197,24,0.3);
  --glow-cyan:      0 0 24px rgba(0,200,255,0.3);
  --glow-blue:      0 0 32px rgba(32,128,216,0.4);

  --radius:         10px;
  --radius-sm:      6px;
  --radius-lg:      16px;
  --trans:          all 0.28s cubic-bezier(.25,.8,.25,1);

  /* ── Spacing ── */
  --section-py:     5.5rem;
}

/* ================================================================
   02. BASE RESET & GLOBALS
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  /* Subtle deep-blue mesh background */
  background-image:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(26,111,196,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(0,200,255,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 100% 80% at 50% 50%, rgba(6,13,31,0.95) 0%, transparent 100%);
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--blue-bright); border-radius: 3px; }

.section-pad { padding: var(--section-py) 0; }

/* ================================================================
   03. TYPOGRAPHY UTILITIES
   ================================================================ */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.85rem;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 22px; height: 2px;
  background: linear-gradient(90deg, var(--blue-bright), var(--cyan));
  flex-shrink: 0;
}
.section-eyebrow.light { color: rgba(0,200,255,0.8); }
.section-eyebrow.light::before { background: rgba(0,200,255,0.7); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.section-title em {
  font-style: normal;
  color: var(--gold);
  font-weight: 800;
  text-shadow: 0 0 20px rgba(245,197,24,0.3);
}

.section-subtitle {
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto;
  font-weight: 300;
}

.section-body {
  font-size: 0.97rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.8;
}

/* ================================================================
   04. BUTTONS
   ================================================================ */
.saras-btn-primary {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue-glow) 100%);
  color: var(--white);
  padding: 0.72rem 1.8rem;
  border-radius: var(--radius-sm);
  border: none;
  transition: var(--trans);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  position: relative;
  overflow: hidden;
}
.saras-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,200,255,0.2) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.saras-btn-primary:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue), var(--glow-cyan);
}
.saras-btn-primary:hover::before { opacity: 1; }

.saras-btn-outline {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  color: var(--white);
  padding: 0.7rem 1.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.25);
  transition: var(--trans);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.saras-btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: var(--glow-cyan);
}

.saras-btn-outline-white {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  color: var(--white);
  padding: 0.72rem 1.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.35);
  transition: var(--trans);
  display: inline-flex;
  align-items: center;
}
.saras-btn-outline-white:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.saras-btn-ghost {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  color: var(--cyan);
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-cyan);
  transition: var(--trans);
}
.saras-btn-ghost:hover {
  background: var(--blue-bright);
  color: var(--white);
  border-color: var(--blue-bright);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.saras-btn-gold {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold) 0%, #e0a800 100%);
  color: var(--navy);
  padding: 0.78rem 2rem;
  border-radius: var(--radius-sm);
  border: none;
  transition: var(--trans);
}
.saras-btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ================================================================
   05. TOPBAR
   ================================================================ */
.saras-topbar {
  background: var(--navy);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border-blue);
  font-size: 0.77rem;
  font-family: var(--font-cond);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.saras-topbar a {
  color: var(--muted);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
}
.saras-topbar a:hover { color: var(--cyan); }
.saras-topbar i { font-size: 0.75rem; }
.topbar-divider { width: 1px; height: 14px; background: var(--border); display: inline-block; }
.topbar-badge { color: var(--muted); display: inline-flex; align-items: center; gap: 0.25rem; }
.topbar-right .d-flex a { color: var(--muted); font-size: 0.78rem; transition: color 0.2s; }
.topbar-right .d-flex a:hover { color: var(--cyan); }

/* ================================================================
   05b. N & N GROUPS BANNER
   ================================================================ */
.nng-banner {
  background: linear-gradient(90deg,
    var(--navy) 0%,
    rgba(26,58,107,0.9) 40%,
    rgba(26,111,196,0.25) 70%,
    var(--navy) 100%);
  border-bottom: 1px solid var(--border-blue);
  padding: 0.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.nng-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(0,200,255,0.04) 50%, transparent 100%);
  pointer-events: none;
}
.nng-banner-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--gold);
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.22s, letter-spacing 0.22s;
  padding: 0.15rem 0;
  text-shadow: 0 0 12px rgba(245,197,24,0.35);
}
.nng-banner-link:hover {
  color: var(--gold-light);
  letter-spacing: 0.32em;
  text-shadow: 0 0 20px rgba(245,197,24,0.55);
}
.nng-banner-link .nng-divider {
  width: 18px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  display: inline-block;
  opacity: 0.6;
}
.nng-banner-link i {
  font-size: 0.78rem;
  color: var(--gold);
  opacity: 0.8;
}

.nng-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nng-side-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.22s, text-shadow 0.22s;
  white-space: nowrap;
  text-shadow: 0 0 12px rgba(245,197,24,0.35);
}
.nng-side-link i { font-size: 0.85rem; }
.nng-side-link .nng-ext {
  font-size: 0.68rem;
  opacity: 0.6;
  transition: opacity 0.2s, transform 0.2s;
}
.nng-side-link:hover {
  color: var(--gold-light);
  text-shadow: 0 0 20px rgba(245,197,24,0.55);
}
.nng-side-link:hover .nng-ext {
  opacity: 1;
  transform: translate(2px, -2px);
}

/* Responsive: hide side links on small screens */
@media (max-width: 767px) {
  .nng-side-link { display: none; }
  .nng-banner-inner { justify-content: center; }
}
@media (min-width: 768px) and (max-width: 991px) {
  .nng-side-link span { display: none; }
  .nng-side-link { gap: 0.2rem; font-size: 0.78rem; }
}

/* ================================================================
   06. NAVBAR
   ================================================================ */
.saras-navbar {
  background: rgba(6,13,31,0.93);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-blue);
  padding: 0.85rem 0;
  transition: var(--trans);
  z-index: 1000;
}
.saras-navbar.scrolled {
  padding: 0.55rem 0;
  background: rgba(6,13,31,0.99);
  box-shadow: 0 2px 24px rgba(0,0,0,0.7), 0 1px 0 rgba(0,200,255,0.08);
  border-bottom-color: var(--border-cyan);
}

/* Brand */
.saras-brand { display: inline-block; }
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.brand-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue-glow) 100%);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: var(--shadow-blue);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
}
.brand-sub {
  font-family: var(--font-cond);
  font-size: 0.5rem;
  letter-spacing: 0.35em;
  color: var(--cyan);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Nav links */
.saras-navbar .nav-link {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted) !important;
  padding: 0.45rem 0.9rem !important;
  transition: color 0.2s;
  position: relative;
}
.saras-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0.9rem; right: 0.9rem;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-bright), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.saras-navbar .nav-link:hover,
.saras-navbar .nav-link.active {
  color: var(--white) !important;
}
.saras-navbar .nav-link:hover::after,
.saras-navbar .nav-link.active::after { transform: scaleX(1); }

/* Custom hamburger */
.saras-toggler {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.saras-toggler span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}

/* ================================================================
   07. HERO SECTION
   ================================================================ */
.saras-hero { position: relative; }
.hero-swiper { height: calc(100vh - 90px); min-height: 560px; max-height: 860px; }

.hero-slide {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    108deg,
    rgba(6,13,31,0.88) 0%,
    rgba(10,22,40,0.65) 55%,
    rgba(10,30,56,0.35) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 0;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,200,255,0.1);
  border: 1px solid rgba(0,200,255,0.3);
  color: rgba(255,255,255,0.9);
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  max-width: 720px;
}
.hero-headline em {
  font-style: normal;
  color: var(--gold);
  text-shadow: 0 0 30px rgba(245,197,24,0.4);
}

.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 2rem;
}

/* Hero swiper controls */
.hero-nav { color: rgba(255,255,255,0.4) !important; transition: color 0.2s; }
.hero-nav::after { font-size: 1.2rem !important; }
.hero-nav:hover { color: var(--cyan) !important; }

.hero-pagination .swiper-pagination-bullet {
  width: 30px; height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.25);
  opacity: 1;
  transition: var(--trans);
}
.hero-pagination .swiper-pagination-bullet-active {
  background: linear-gradient(90deg, var(--blue-bright), var(--cyan));
  width: 48px;
  box-shadow: 0 0 8px rgba(0,200,255,0.5);
}

/* ================================================================
   08. QUICK STRIP SECTION
   ================================================================ */
.saras-quick-strip {
  background: var(--dark-2);
  border-top: 1px solid var(--border-blue);
  border-bottom: 1px solid var(--border-blue);
  padding: 2.5rem 0;
  position: relative;
}
.saras-quick-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0.4;
}

.quick-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--dark-3);
  transition: var(--trans);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.quick-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-bright), var(--cyan));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.quick-item:hover {
  border-color: var(--border-cyan);
  background: rgba(0,200,255,0.05);
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue);
}
.quick-item:hover::before { transform: scaleX(1); }

.quick-item i {
  font-size: 1.7rem;
  color: var(--cyan);
  transition: transform 0.25s;
  filter: drop-shadow(0 0 6px rgba(0,200,255,0.4));
}
.quick-item:hover i { transform: scale(1.15); }
.quick-item span {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}

/* ================================================================
   09. ABOUT SECTION
   ================================================================ */
.saras-about {
  background: var(--dark);
  position: relative;
}
.saras-about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-royal), transparent);
  opacity: 0.5;
}

.about-visual {
  position: relative;
  padding-bottom: 3rem;
  padding-right: 1.5rem;
}

.about-img-main-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-blue);
}
.about-img-main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.about-img-main-wrap:hover .about-img-main { transform: scale(1.03); }

.about-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 190px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--dark);
  box-shadow: var(--shadow-md);
}
.about-img-secondary img { width: 100%; height: 130px; object-fit: cover; }

.about-exp-badge {
  position: absolute;
  top: 2rem; left: -1.2rem;
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue-glow) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  text-align: center;
  box-shadow: var(--shadow-blue), var(--glow-blue);
  z-index: 2;
  border: 1px solid rgba(0,200,255,0.2);
}
.exp-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}
.exp-num sup { font-size: 1rem; }
.exp-txt {
  display: block;
  font-family: var(--font-cond);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 4px;
  opacity: 0.9;
}

/* Highlight chips */
.highlight-chip {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  transition: var(--trans);
  height: 100%;
}
.highlight-chip:hover {
  border-color: var(--border-cyan);
  background: rgba(0,200,255,0.04);
  box-shadow: var(--shadow-blue);
}
.highlight-chip i {
  font-size: 1.2rem;
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 2px;
  filter: drop-shadow(0 0 4px rgba(0,200,255,0.4));
}
.highlight-chip strong {
  display: block;
  font-family: var(--font-cond);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 0.15rem;
}
.highlight-chip span { font-size: 0.77rem; color: var(--muted); line-height: 1.4; }

/* ================================================================
   10. SERVICES SECTION
   ================================================================ */
.saras-services {
  background: var(--dark-2);
  position: relative;
}
.saras-services::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(26,111,196,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 20% 80%, rgba(0,200,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.svc-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  transition: var(--trans);
  display: flex;
  flex-direction: column;
  position: relative;
}
.svc-card:hover {
  border-color: var(--border-cyan);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md), var(--glow-blue);
}
.svc-card--featured {
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 1px var(--blue-bright), var(--shadow-blue);
}

.svc-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.svc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.svc-card:hover .svc-img img { transform: scale(1.07); }

.svc-num {
  position: absolute;
  top: 1rem; left: 1rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--white);
  background: rgba(6,13,31,0.65);
  backdrop-filter: blur(6px);
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  letter-spacing: 0.08em;
  border: 1px solid rgba(0,200,255,0.2);
}

.svc-popular-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-glow));
  color: var(--white);
  font-family: var(--font-cond);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  box-shadow: var(--glow-blue);
}

.svc-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.svc-icon-wrap {
  width: 44px; height: 44px;
  background: rgba(0,200,255,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--cyan);
  margin-bottom: 1rem;
  transition: var(--trans);
  border: 1px solid var(--border-cyan);
}
.svc-icon-wrap.featured {
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-glow));
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--glow-blue);
}
.svc-card:hover .svc-icon-wrap {
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-glow));
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--glow-blue);
}

.svc-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.svc-body > p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.svc-list {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}
.svc-list li {
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.svc-list i { color: var(--cyan); font-size: 0.8rem; flex-shrink: 0; }

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  transition: gap 0.2s, color 0.2s;
  margin-top: auto;
}
.svc-link:hover { gap: 0.7rem; color: var(--gold); }

/* ================================================================
   11. PROCESS SECTION
   ================================================================ */
.saras-process {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.saras-process::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-bright), var(--cyan), transparent);
}
.saras-process::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(26,111,196,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.process-step { text-align: center; position: relative; z-index: 1; }

.process-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 2px solid var(--border-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--cyan);
  margin: 0 auto 1.25rem;
  position: relative;
  transition: var(--trans);
}
.process-step:hover .process-circle {
  border-color: var(--cyan);
  background: rgba(0,200,255,0.08);
  transform: scale(1.05);
  box-shadow: var(--glow-cyan);
}

.step-num {
  position: absolute;
  top: -8px; right: -8px;
  width: 24px; height: 24px;
  background: linear-gradient(135deg, var(--blue-bright), var(--cyan));
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-cond);
  font-size: 0.65rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 8px rgba(0,200,255,0.4);
}

.process-step h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.process-step p {
  font-size: 0.83rem;
  color: var(--muted);
  max-width: 200px;
  margin: 0 auto;
}

.process-line .row::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 40px);
  right: calc(12.5% + 40px);
  height: 1px;
  z-index: 0;
}
@media (max-width: 768px) {
  .process-line .row::before { display: none; }
}

/* ================================================================
   12. WHY US SECTION
   ================================================================ */
.saras-why { background: var(--dark-2); }

.why-img-group {
  position: relative;
  padding-right: 2rem;
  padding-bottom: 3rem;
}
.why-img-hero {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
  border: 1px solid var(--border-blue);
}
.why-img-float {
  position: absolute;
  bottom: 0; right: 0;
  width: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--dark-2);
  box-shadow: var(--shadow-md);
}
.why-img-float img { width: 100%; height: 145px; object-fit: cover; }

.why-rating-badge {
  position: absolute;
  top: 2rem; left: -1.5rem;
  background: var(--dark-3);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-md), var(--glow-cyan);
}
.rating-stars { font-size: 1rem; color: var(--gold); line-height: 1; }
.rating-val {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}
.rating-source {
  font-family: var(--font-cond);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.why-list { display: flex; flex-direction: column; gap: 1.25rem; }

.why-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--dark-3);
  transition: var(--trans);
}
.why-row:hover {
  border-color: var(--border-cyan);
  background: rgba(0,200,255,0.03);
  box-shadow: var(--shadow-blue);
}

.why-icon {
  width: 36px; height: 36px;
  background: rgba(0,200,255,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 2px;
  border: 1px solid var(--border-cyan);
}
.why-row h5 {
  font-family: var(--font-cond);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.why-row p { font-size: 0.82rem; color: var(--muted); margin: 0; }

/* ================================================================
   13. GALLERY SECTION
   ================================================================ */
.saras-gallery {
  background: var(--dark);
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 0.6rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.g-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark-4);
}
.g-item--tall { grid-row: span 2; }
.g-item--wide { grid-column: span 2; }

.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.g-item:hover img { transform: scale(1.08); }

.g-hover {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: var(--trans);
}
.g-hover i, .g-hover span {
  opacity: 0;
  transform: translateY(8px);
  transition: var(--trans);
  color: var(--white);
}
.g-hover i { font-size: 1.6rem; }
.g-hover span {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.g-item:hover .g-hover {
  background: linear-gradient(135deg, rgba(26,111,196,0.55), rgba(0,200,255,0.35));
}
.g-item:hover .g-hover i,
.g-item:hover .g-hover span { opacity: 1; transform: translateY(0); }

/* Lightbox */
.saras-lightbox {
  position: fixed; inset: 0;
  background: rgba(6,13,31,0.97);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 2rem;
  flex-direction: column;
  gap: 1rem;
}
.saras-lightbox.active { display: flex; }
.saras-lightbox img {
  max-width: 90vw; max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
  border: 1px solid var(--border-blue);
}
.lb-close {
  position: fixed; top: 1.5rem; right: 1.5rem;
  width: 42px; height: 42px;
  background: var(--dark-4);
  border: 1px solid var(--border-blue);
  color: var(--white);
  font-size: 1rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--trans);
}
.lb-close:hover {
  background: var(--blue-bright);
  border-color: var(--cyan);
  box-shadow: var(--glow-cyan);
}
.lb-caption {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

/* ================================================================
   14. TESTIMONIALS SECTION
   ================================================================ */
.saras-testimonials { background: var(--dark-2); }

.testi-overall {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.overall-stars { font-size: 1.2rem; color: var(--gold); }
.overall-score {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
}
.overall-label { font-size: 0.83rem; color: var(--muted); }

.testi-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--trans);
}
.testi-card:hover {
  border-color: var(--border-cyan);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), var(--glow-blue);
}

.testi-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.testi-top img {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-cyan);
  flex-shrink: 0;
}
.testi-top h5 {
  font-family: var(--font-cond);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.1rem;
}
.testi-top span { font-size: 0.75rem; color: var(--muted); display: block; }
.t-stars { color: var(--gold); font-size: 0.78rem; margin-top: 0.2rem; }
.t-google { color: var(--muted); font-size: 1rem; }

.testi-card > p {
  font-size: 0.87rem;
  color: var(--text);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.testi-pagination .swiper-pagination-bullet {
  background: var(--dark-4);
  opacity: 1;
  width: 8px; height: 8px;
  border: 1px solid var(--border-blue);
}
.testi-pagination .swiper-pagination-bullet-active {
  background: linear-gradient(90deg, var(--blue-bright), var(--cyan));
  border-color: transparent;
  width: 22px;
  border-radius: 4px;
  box-shadow: 0 0 6px rgba(0,200,255,0.4);
}

/* ================================================================
   15. CTA BANNER SECTION
   ================================================================ */
.saras-cta { background: var(--dark); }

.cta-inner {
  background: linear-gradient(
    135deg,
    #0d2860 0%,
    #0f3580 40%,
    #0d2060 70%,
    #091830 100%
  );
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-blue);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(26,111,196,0.15);
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0.5;
}
.cta-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 0% 50%, rgba(0,200,255,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 100% 50%, rgba(26,111,196,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-decor-left, .cta-decor-right {
  position: absolute;
  font-size: 8rem;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}
.cta-decor-left { top: -1rem; left: -1rem; transform: rotate(-15deg); color: var(--cyan); }
.cta-decor-right { bottom: -1rem; right: -1rem; transform: rotate(15deg); color: var(--blue-bright); }

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.75rem;
  position: relative; z-index: 1;
}
.cta-title em { font-style: normal; color: var(--gold); text-shadow: 0 0 20px rgba(245,197,24,0.3); }
.cta-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  position: relative; z-index: 1;
}
.section-eyebrow.light { position: relative; z-index: 1; }

/* ================================================================
   16. CONTACT SECTION
   ================================================================ */
.saras-contact { background: var(--dark-2); }

.contact-info-card {
  background: var(--dark-3);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
}
.contact-detail-list { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-detail-list li { display: flex; align-items: flex-start; gap: 1rem; }

.ci-icon {
  width: 38px; height: 38px;
  background: rgba(0,200,255,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 2px;
  border: 1px solid var(--border-cyan);
}
.contact-detail-list strong {
  display: block;
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.2rem;
}
.contact-detail-list span,
.contact-detail-list a {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}
.contact-detail-list a:hover { color: var(--cyan); }

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-blue);
}
.contact-map iframe {
  width: 100%; height: 210px;
  border: none; display: block;
  filter: grayscale(0.5) brightness(0.6) hue-rotate(195deg);
}

.wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #25d366;
  color: var(--white);
  font-family: var(--font-cond);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-sm);
  width: 100%;
  transition: var(--trans);
}
.wa-btn i { font-size: 1.1rem; }
.wa-btn:hover { background: #1eb857; color: var(--white); transform: translateY(-2px); }

/* Form Card */
.contact-form-card {
  background: var(--dark-3);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.contact-form-card > p { font-size: 0.87rem; color: var(--muted); margin-bottom: 1.5rem; }

.form-label {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.form-label span { color: var(--cyan); }

.saras-input {
  background: var(--dark-4) !important;
  border: 1px solid var(--border-blue) !important;
  color: var(--white) !important;
  border-radius: var(--radius-sm) !important;
  padding: 0.72rem 1rem !important;
  font-size: 0.9rem !important;
  font-family: var(--font-main) !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
}
.saras-input::placeholder { color: var(--muted-2) !important; }
.saras-input:focus {
  outline: none !important;
  border-color: var(--cyan) !important;
  box-shadow: 0 0 0 3px rgba(0,200,255,0.1) !important;
  background: rgba(0,200,255,0.02) !important;
}
.form-select.saras-input option { background: var(--dark-4); color: var(--white); }

.form-success {
  text-align: center;
  padding: 3rem 1rem;
}
.form-success i {
  font-size: 3.5rem;
  color: #25d366;
  display: block;
  margin-bottom: 1rem;
}
.form-success h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.form-success p { font-size: 0.9rem; color: var(--muted); }

/* ================================================================
   17. FOOTER SECTION
   ================================================================ */
.saras-footer {
  background: var(--navy);
  border-top: 1px solid var(--border-blue);
  position: relative;
}
.saras-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-bright), var(--cyan), transparent);
  opacity: 0.4;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.footer-brand-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-glow));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: var(--shadow-blue);
}
.footer-brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
}
.footer-brand-sub {
  display: block;
  font-family: var(--font-cond);
  font-size: 0.48rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 600;
  margin-top: 3px;
}

.footer-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.75; font-weight: 300; }

.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--muted);
  transition: var(--trans);
}
.footer-socials a:hover {
  background: var(--blue-bright);
  border-color: var(--cyan);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--glow-cyan);
}

.footer-heading {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border-blue);
}

.footer-links li { margin-bottom: 0.55rem; }
.footer-links a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: var(--trans);
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.footer-links a::before {
  content: '›';
  color: var(--cyan);
  opacity: 0;
  transition: opacity 0.2s, margin 0.2s;
  margin-left: -0.5rem;
}
.footer-links a:hover { color: var(--white); padding-left: 0.4rem; }
.footer-links a:hover::before { opacity: 1; margin-left: 0; }

.footer-contact-list { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.84rem; }
.footer-contact-list i { color: var(--cyan); margin-top: 3px; font-size: 0.85rem; flex-shrink: 0; }
.footer-contact-list span, .footer-contact-list a { color: var(--muted); line-height: 1.5; }
.footer-contact-list a:hover { color: var(--cyan); }

/* N&N Groups footer credit */
.footer-nng {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  margin-top: 0.5rem;
}
.footer-nng:hover { color: var(--cyan); }
.footer-nng i { font-size: 0.65rem; }

.footer-hr { border-color: var(--border-blue); margin: 0; }
.footer-bottom p, .footer-bottom a { font-size: 0.77rem; color: var(--muted-2); }
.footer-bottom a:hover { color: var(--cyan); }

/* ================================================================
   18. BACK TO TOP BUTTON
   ================================================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-glow));
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transform: translateY(16px);
  transition: var(--trans);
  z-index: 999;
  box-shadow: var(--shadow-blue), var(--glow-blue);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover {
  background: linear-gradient(135deg, var(--blue-glow), var(--cyan));
  transform: translateY(-3px);
  box-shadow: var(--glow-cyan);
}

/* ================================================================
   19. RESPONSIVE — LARGE DESKTOP (≥ 1440px)
   ================================================================ */
@media (min-width: 1440px) {
  .container-xl { max-width: 1360px; }
  .hero-headline { font-size: 5rem; }
  .section-title { font-size: 3rem; }
}

/* ================================================================
   20. RESPONSIVE — 13–14" LAPTOPS (1280px–1440px)
   ================================================================ */
@media (min-width: 1280px) and (max-width: 1439px) {
  .container-xl { max-width: 1200px; }
  .hero-swiper { height: calc(100vh - 86px); max-height: 780px; }
  .hero-headline { font-size: clamp(2.6rem, 4vw, 4rem); }
  .section-title  { font-size: clamp(1.8rem, 2.5vw, 2.5rem); }
  .svc-img        { height: 185px; }
  .why-img-hero   { height: 400px; }
  .gallery-grid   { grid-auto-rows: 210px; }
  .about-img-main { height: 390px; }
}

/* ================================================================
   21. RESPONSIVE — TABLET LANDSCAPE + SMALL LAPTOP (992px–1279px)
   ================================================================ */
@media (max-width: 1279px) {
  :root { --section-py: 4.5rem; }
  .hero-swiper { height: calc(100vh - 86px); max-height: 720px; }
  .about-img-secondary { display: none; }
  .about-visual { padding: 0; }
  .about-img-main { height: 360px; }
  .about-exp-badge { left: 1rem; }
  .why-img-group { padding: 0; }
  .why-img-hero { height: 340px; }
  .why-img-float { display: none; }
  .why-rating-badge { top: 1rem; left: 1rem; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 195px; }
  .g-item--tall { grid-row: span 1; }
  .cta-inner { padding: 2.5rem 2rem; }
}

/* ================================================================
   22. RESPONSIVE — TABLET PORTRAIT (768px–991px)
   ================================================================ */
@media (max-width: 991px) {
  :root { --section-py: 4rem; }
  .hero-swiper { height: 82vh; min-height: 500px; max-height: none; }
  .hero-headline { font-size: 2.6rem; }
  .svc-card { min-height: unset; }
  .contact-info-card { margin-bottom: 0; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .g-item--tall { grid-row: span 1; }
  .g-item--wide { grid-column: span 2; }
  .process-line .row::before { display: none; }
  .why-img-hero { height: 300px; }
  .about-img-main { height: 320px; }
  .nng-banner-link { font-size: 0.68rem; letter-spacing: 0.18em; }
}

/* ================================================================
   23. RESPONSIVE — MOBILE LANDSCAPE + LARGE PHONE (≤ 767px)
   ================================================================ */
@media (max-width: 767px) {
  :root { --section-py: 3.5rem; }

  /* Topbar */
  .saras-topbar .topbar-left a:not(:first-child) { display: none; }

  /* N&N Banner */
  .nng-banner-link .nng-divider { display: none; }
  .nng-banner-link { font-size: 0.65rem; letter-spacing: 0.15em; gap: 0.4rem; }

  /* Hero */
  .hero-swiper { height: 78vh; min-height: 480px; max-height: none; }
  .hero-headline { font-size: 2rem; letter-spacing: -0.01em; }
  .hero-sub { font-size: 0.9rem; }
  .hero-tag { font-size: 0.68rem; }

  /* About */
  .about-img-main { height: 260px; }
  .about-exp-badge {
    position: relative; left: auto; top: auto;
    display: inline-flex; align-items: center; gap: 0.6rem;
    margin-top: 1rem;
    border-radius: var(--radius-sm);
  }
  .exp-num { font-size: 1.8rem; }

  /* Why section */
  .why-img-group { padding: 0; }
  .why-rating-badge {
    position: relative; top: auto; left: auto;
    display: inline-flex; align-items: center; gap: 0.75rem;
    margin-top: 1rem; text-align: left;
  }
  .rating-stars { font-size: 0.9rem; }
  .rating-val { font-size: 1.2rem; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 155px;
    gap: 0.4rem;
  }
  .g-item--wide { grid-column: span 2; }
  .g-item--tall { grid-row: span 1; }

  /* CTA */
  .cta-inner { padding: 2rem 1.25rem; }
  .cta-title { font-size: 1.5rem; }

  /* Contact */
  .contact-form-card { padding: 1.5rem; }
  .contact-info-card { padding: 1.25rem; }

  /* Process */
  .process-circle { width: 64px; height: 64px; font-size: 1.2rem; }
  .process-step h4 { font-size: 0.88rem; }
  .process-step p { font-size: 0.78rem; }
}

/* ================================================================
   24. RESPONSIVE — SMALL MOBILE (≤ 480px)
   ================================================================ */
@media (max-width: 480px) {
  .hero-swiper { height: 88svh; min-height: 460px; }
  .hero-headline { font-size: 1.75rem; }
  .hero-content .d-flex.flex-wrap { flex-direction: column; }
  .hero-content .d-flex .btn { width: 100%; justify-content: center; }
  .brand-name { font-size: 1.3rem; }
  .brand-icon { width: 34px; height: 34px; font-size: 1rem; }
  .quick-item { padding: 0.75rem 0.25rem; }
  .quick-item i { font-size: 1.4rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.35rem; grid-auto-rows: 130px; }
  .svc-body { padding: 1.1rem; }
  .section-title { font-size: 1.65rem; }
  .footer-brand-name { font-size: 1.25rem; }
  .nng-banner-link { font-size: 0.62rem; letter-spacing: 0.12em; }
  .cta-inner { padding: 1.5rem 1rem; }
  .contact-form-card { padding: 1.1rem; }
}