/* =====================
   VARIABLES & RESET
===================== */
:root {
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-deeper: #1e40af;
  --blue-pale: #eff6ff;
  --blue-tint: #dbeafe;
  --navy: #0f172a;
  --dark: #1e293b;
  --mid: #475569;
  --muted: #94a3b8;
  --light: #f8fafc;
  --white: #ffffff;
  --border: #e2e8f0;
  --wapp: #25D366;
  --wapp-dark: #1da851;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-xs: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-sm: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.13);
  --shadow-blue: 0 8px 28px rgba(37,99,235,0.30);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--light);
  color: var(--dark);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.dark-mode {
  background: #090b16;
  color: #e2e8f0;
}

body.dark-mode header {
  background: rgba(15,23,42,0.92);
  box-shadow: 0 1px 0 rgba(148,163,184,0.08);
}

body.dark-mode .logo {
  color: #e2e8f0;
}

body.dark-mode nav a {
  color: #cbd5e1;
}

body.dark-mode nav a:hover {
  color: #7dd3fc;
}

body.dark-mode .menu-toggle span {
  background: #e2e8f0;
}

body.dark-mode .hero {
  background: linear-gradient(135deg, #07111d 0%, #111827 60%, #0f172a 100%);
}

body.dark-mode .hero::before {
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
}

body.dark-mode .hero::after {
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
}

body.dark-mode .hero > .hero-text > p,
body.dark-mode .section-head p,
body.dark-mode .svc-body p,
body.dark-mode .about-text > p,
body.dark-mode .ab-check span,
body.dark-mode .ab-info-row,
body.dark-mode .contact-left > p {
  color: #cbd5e1;
}

body.dark-mode .stat strong {
  color: #f8fafc;
}

body.dark-mode .stat span {
  color: #94a3b8;
}

body.dark-mode .service-card {
  background: #111827;
  border-color: rgba(148,163,184,0.15);
}

body.dark-mode .services {
  background: #05070f;
}

body.dark-mode .section-head {
  color: #f8fafc;
}

body.dark-mode .section-head h2,
body.dark-mode .section-head p {
  color: #e2e8f0;
}

body.dark-mode .svc-badge {
  background: rgba(255,255,255,0.08);
  color: #f8fafc;
}

body.dark-mode .about {
  background: #0b1120;
}

body.dark-mode .about-media > img {
  box-shadow: 0 24px 54px rgba(0,0,0,0.35);
}

body.dark-mode .about-img-2 {
  border-color: #0b1120;
}

body.dark-mode .about-yr-badge {
  background: #2563eb;
  box-shadow: 0 8px 28px rgba(37,99,235,0.4);
}

body.dark-mode .ab-check strong {
  color: #f8fafc;
}

body.dark-mode .contact {
  background: #020617;
}

body.dark-mode .contact-left .section-tag {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.78);
}

body.dark-mode .c-perk {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.78);
}

body.dark-mode .contact-box {
  background: #111827;
  box-shadow: 0 32px 60px rgba(0,0,0,0.28);
}

body.dark-mode input,
body.dark-mode textarea {
  background: #08101e;
  border-color: #334155;
  color: #e2e8f0;
}

body.dark-mode input::placeholder,
body.dark-mode textarea::placeholder {
  color: rgba(226,232,240,0.5);
}

body.dark-mode input:focus,
body.dark-mode textarea:focus {
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

body.dark-mode .field-error {
  color: #fca5a5;
}

body.dark-mode footer {
  background: #020617;
}

body.dark-mode footer p {
  color: rgba(255,255,255,0.58);
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode .about-text h2,
body.dark-mode .contact-left h2,
body.dark-mode .service-card h3,
body.dark-mode .stat strong {
  color: #f8fafc;
}

body.dark-mode .hero-badge,
body.dark-mode .section-tag,
body.dark-mode .about-yr-badge,
body.dark-mode .c-perk,
body.dark-mode .svc-badge {
  background: rgba(255,255,255,0.08);
}

body.dark-mode .hero-badge {
  color: #7dd3fc;
  border-color: rgba(125,211,252,0.2);
}

body.dark-mode .section-tag {
  color: #7dd3fc;
}

body.dark-mode .h-card {
  background: #0f172a;
  box-shadow: 0 24px 54px rgba(0,0,0,0.35);
}

body.dark-mode .h-card strong {
  color: #f8fafc;
}

body.dark-mode .h-card span {
  color: #34d399;
}

body.dark-mode .service-card.featured {
  border-color: #3b82f6;
}

body.dark-mode .svc-body p,
body.dark-mode .about-text > p,
body.dark-mode .ab-check span,
body.dark-mode .ab-info-row,
body.dark-mode .contact-left > p {
  color: #cbd5e1;
}

body.dark-mode .ab-check-icon {
  background: rgba(59,130,246,0.12);
  color: #7dd3fc;
}

body.dark-mode .about {
  background: #0b1120;
}

body.dark-mode .about-img-2 {
  border-color: #0b1120;
}

body.dark-mode .about-info {
  border-top-color: rgba(148,163,184,0.16);
}

body.dark-mode .about-yr-badge {
  background: #2563eb;
}

body.dark-mode .about-yr-badge span {
  opacity: 0.9;
}

body.dark-mode .contact-box h3 {
  color: #f8fafc;
}

body.dark-mode .form-group label {
  color: #cbd5e1;
}

body.dark-mode .btn-ghost {
  color: #cbd5e1;
}

body.dark-mode .btn-ghost:hover {
  color: #7dd3fc;
}

body.dark-mode .footer-brand,
body.dark-mode .footer-links a {
  color: #e2e8f0;
}

body.dark-mode .whatsapp-float {
  box-shadow: 0 16px 36px rgba(29,168,81,0.25);
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
  color: var(--navy);
}
em { font-style: italic; color: var(--blue); }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* =====================
   HEADER
===================== */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 72px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s, background 0.3s;
}
header.scrolled { box-shadow: var(--shadow-md); }

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}
.logo svg { flex-shrink: 0; }

nav ul { display: flex; gap: 32px; list-style: none; }
nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--mid);
  position: relative;
  transition: color 0.2s;
  padding-bottom: 3px;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--blue);
  border-radius: 99px;
  transition: width 0.3s;
}
nav a:hover { color: var(--blue); }
nav a:hover::after { width: 100%; }

/* Buttons */
.btn {
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-blue);
}
.btn:active { transform: translateY(0); }
.btn-lg { padding: 14px 30px; font-size: 15px; border-radius: var(--radius); }
.btn-ghost {
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s, gap 0.2s;
}
.btn-ghost:hover { color: var(--blue); gap: 10px; }
.theme-toggle {
  margin-left: 16px;
  background: rgba(255,255,255,0.95);
  border: none;
  color: var(--navy);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s, transform 0.2s, color 0.2s;
}
.theme-toggle:hover {
  transform: translateY(-1px);
  background: white;
}
body.dark-mode .theme-toggle {
  background: rgba(255,255,255,0.08);
  color: #f8fafc;
}
body.dark-mode .theme-toggle:hover {
  background: rgba(255,255,255,0.12);
}
.btn-full {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 15px;
  border-radius: var(--radius);
  margin-top: 4px;
}

/* Mobile toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 99px;
  transition: all 0.3s;
}

/* =====================
   HERO
===================== */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 80px 60px 90px;
  background: linear-gradient(135deg, #eef4ff 0%, #f8faff 60%, #f0f5ff 100%);
  min-height: calc(100vh - 72px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -160px; right: -160px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(37,99,235,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(37,99,235,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-text { max-width: 510px; position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--blue-tint);
  color: var(--blue-deeper);
  border: 1px solid rgba(37,99,235,0.18);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 52px);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.hero > .hero-text > p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat strong {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  font-family: 'Playfair Display', serif;
}
.stat span { font-size: 12px; color: var(--muted); font-weight: 500; }
.stat-div { width: 1px; height: 34px; background: var(--border); }

/* Hero visual */
.hero-visual { position: relative; z-index: 1; flex-shrink: 0; }
.hero-img-wrap { position: relative; }
.hero-img-wrap > img {
  width: min(500px, 44vw);
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

/* Floating cards */
.h-card {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  font-size: 13px;
  animation: floatCard 3.5s ease-in-out infinite;
}
.h-card-2 { animation-duration: 4.5s; animation-delay: 0.8s; }

.h-card:nth-child(2) { bottom: -18px; left: -28px; }
.h-card:nth-child(3) { top: 24px; right: -24px; }

.h-card-icon { font-size: 26px; line-height: 1; }
.h-card strong { display: block; font-weight: 700; color: var(--navy); font-size: 13px; }
.h-card span { color: #10b981; font-size: 12px; font-weight: 600; }
.h-card .avatars { display: flex; }
.h-card .avatars img {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -7px;
  object-fit: cover;
}
.h-card .avatars img:first-child { margin-left: 0; }
.h-card .av-label { font-size: 12px; color: var(--muted); font-weight: 600; }

@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}

/* =====================
   SECTION SHARED
===================== */
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 5px 13px;
  border-radius: 99px;
  margin-bottom: 12px;
}

.section-head {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 56px;
}
.section-head h2 { font-size: clamp(30px, 4vw, 40px); margin-bottom: 10px; }
.section-head p { color: var(--muted); font-size: 16px; }

/* Scroll-reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0s);
}
[data-reveal="left"]  { transform: translateX(-26px); }
[data-reveal="right"] { transform: translateX(26px); }
[data-reveal].in { opacity: 1; transform: none; }

/* =====================
   SERVICES
===================== */
.services {
  padding: 96px 60px;
  background: var(--light);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card.featured { border-color: var(--blue); border-width: 1.5px; }

.svc-img-wrap { position: relative; overflow: hidden; height: 195px; }
.svc-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.service-card:hover .svc-img-wrap img { transform: scale(1.05); }

.svc-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 4px 11px;
  border-radius: 99px;
}
.featured-pill {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--blue);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
}

.svc-body { padding: 20px 22px 24px; }
.svc-icon { font-size: 22px; margin-bottom: 10px; }
.svc-body h3 { font-size: 20px; margin-bottom: 8px; }
.svc-body p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.svc-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.svc-link:hover { gap: 8px; }

/* =====================
   ABOUT
===================== */
.about {
  padding: 96px 60px;
  background: var(--white);
}
.about-inner {
  display: flex;
  align-items: center;
  gap: 72px;
  max-width: 1160px;
  margin: 0 auto;
}

.about-media { position: relative; flex-shrink: 0; }
.about-media > img {
  width: min(440px, 40vw);
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}
.about-img-2 {
  position: absolute;
  bottom: -32px; right: -28px;
  width: 175px; height: 145px;
  border-radius: 14px;
  overflow: hidden;
  border: 5px solid white;
  box-shadow: var(--shadow-md);
}
.about-img-2 img { width: 100%; height: 100%; object-fit: cover; }
.about-yr-badge {
  position: absolute;
  top: -20px; left: -20px;
  background: var(--blue);
  color: white;
  border-radius: 14px;
  padding: 14px 18px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(37,99,235,0.35);
}
.about-yr-badge strong { display: block; font-size: 30px; font-weight: 700; font-family: 'Playfair Display', serif; }
.about-yr-badge span { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; opacity: 0.8; text-transform: uppercase; }

.about-text { max-width: 480px; }
.about-text h2 { font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 16px; }
.about-text > p { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 28px; }

.about-checks { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.ab-check { display: flex; align-items: flex-start; gap: 12px; }
.ab-check-icon {
  width: 26px; height: 26px; flex-shrink: 0;
  background: var(--blue-pale);
  color: var(--blue);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
  margin-top: 2px;
}
.ab-check strong { display: block; font-size: 14px; color: var(--navy); font-weight: 600; margin-bottom: 1px; }
.ab-check span { font-size: 13px; color: var(--muted); }

.about-info {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.ab-info-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--mid);
}

/* =====================
   CONTACT
===================== */
.contact { padding: 96px 60px; background: var(--navy); }
.contact-inner {
  display: flex;
  align-items: flex-start;
  gap: 72px;
  max-width: 1160px;
  margin: 0 auto;
}

.contact-left { flex: 1; }
.contact-left .section-tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.75); }
.contact-left h2 { font-size: clamp(28px, 3.5vw, 42px); color: white; margin-bottom: 14px; }
.contact-left > p { color: rgba(255,255,255,0.55); font-size: 15px; line-height: 1.75; margin-bottom: 36px; }

.c-perks { display: flex; flex-wrap: wrap; gap: 10px; }
.c-perk {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  padding: 8px 16px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
}

.contact-right { flex: 0 0 430px; }
.contact-box {
  background: white;
  border-radius: 20px;
  padding: 32px 32px 28px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.25);
}
.contact-box h3 { font-size: 22px; margin-bottom: 22px; color: var(--navy); }

.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 6px;
}
input, textarea {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--dark);
  background: var(--light);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
}
input:focus, textarea:focus {
  border-color: var(--blue);
  background: white;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.input-error {
  border-color: #d14343;
  box-shadow: 0 0 0 3px rgba(209,67,67,0.12);
}
.field-error {
  display: block;
  margin-top: 6px;
  color: #d14343;
  font-size: 12px;
  min-height: 16px;
}
textarea { resize: vertical; min-height: 108px; }

/* =====================
   WHATSAPP BUTTON (redesigned)
===================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  background: linear-gradient(135deg, #25D366 0%, #1fa84e 100%);
  border-radius: 999px;
  height: 54px;
  width: 54px;
  overflow: hidden;
  transition: width 0.35s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.25s ease,
              background 0.2s;
  box-shadow: 0 12px 30px rgba(37,211,102,0.3),
              0 4px 10px rgba(0,0,0,0.14);
  will-change: width;
  cursor: pointer;
}
.whatsapp-float:hover {
  width: 192px;
  background: linear-gradient(135deg, #1fa84e 0%, #128c5e 100%);
  box-shadow: 0 16px 36px rgba(29,168,81,0.35),
              0 4px 12px rgba(0,0,0,0.18);
}
.whatsapp-float:active { transform: scale(0.98); }

/* Icon circle stays fixed size */
.wapp-icon-wrap {
  width: 54px; height: 54px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  border: 1px solid rgba(37,211,102,0.18);
}
.wapp-icon-wrap img {
  width: 28px; height: 28px;
}

/* Label appears on expand */
.wapp-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: white;
  white-space: nowrap;
  padding-right: 18px;
  padding-left: 10px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.25s ease 0.1s, transform 0.25s ease 0.1s;
  pointer-events: none;
  letter-spacing: 0.01em;
}
.whatsapp-float:hover .wapp-label {
  opacity: 1;
  transform: translateX(0);
}

/* Pulse ring */
.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.5);
  opacity: 0;
  animation: wappPulse 2.8s ease-out infinite;
}
@keyframes wappPulse {
  0%   { opacity: 0.65; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.55); }
}

/* =====================
   FOOTER
===================== */
footer { background: #07102b; padding: 28px 60px; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
}
.footer-brand { display: flex; align-items: center; gap: 8px; color: white; font-weight: 600; font-size: 15px; }
footer p { color: rgba(255,255,255,0.38); font-size: 13px; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: rgba(255,255,255,0.4); font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.8); }

/* =====================
   RESPONSIVE — tablet
===================== */
@media (max-width: 1024px) {
  header { padding: 0 32px; }
  .hero { padding: 64px 32px 80px; gap: 40px; }
  .hero-img-wrap > img { width: 100%; height: 360px; }
  .services { padding: 80px 32px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .about { padding: 80px 32px; }
  .about-inner { gap: 48px; }
  .about-media > img { width: 100%; height: 340px; }
  .contact { padding: 80px 32px; }
  footer { padding: 24px 32px; }
}

/* =====================
   RESPONSIVE — mobile
===================== */
@media (max-width: 768px) {
  header {
    padding: 0 20px;
    height: 64px;
  }

  /* hide nav / btn, show burger */
  nav > ul {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    box-shadow: var(--shadow-md);
    z-index: 99;
  }
  nav > ul.show { display: flex; }
  nav > ul li a {
    display: block;
    padding: 14px 24px;
    font-size: 16px;
    color: var(--dark);
    border-bottom: 1px solid var(--border);
  }
  header > .btn { display: none; }
  .menu-toggle { display: flex; }

  /* hero */
  .hero {
    flex-direction: column-reverse;
    padding: 48px 20px 64px;
    min-height: auto;
    text-align: center;
    gap: 36px;
  }
  .hero::before, .hero::after { display: none; }
  .hero-text { max-width: 100%; }
  .hero-badge { margin: 0 auto 18px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; flex-wrap: wrap; gap: 16px; }
  .stat-div { display: none; }
  .hero-img-wrap > img { width: 100%; height: 260px; border-radius: 14px; }
  .h-card:nth-child(2) { bottom: -14px; left: -10px; }
  .h-card:nth-child(3) { top: 12px; right: -8px; }

  /* services */
  .services { padding: 64px 20px; }
  .service-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

  /* about */
  .about { padding: 64px 20px; }
  .about-inner { flex-direction: column; gap: 48px; }
  .about-media { width: 100%; }
  .about-media > img { width: 100%; height: 280px; border-radius: 14px; }
  .about-img-2 { display: none; }
  .about-yr-badge { top: -16px; left: -10px; }
  .about-text { max-width: 100%; text-align: left; }

  /* contact */
  .contact { padding: 64px 20px; }
  .contact-inner { flex-direction: column; gap: 40px; }
  .contact-right { flex: none; width: 100%; }
  .contact-box { padding: 24px 20px 20px; }

  /* footer */
  footer { padding: 20px; }
  .footer-inner { flex-direction: column; gap: 10px; text-align: center; }

  /* whatsapp — shrink slightly on mobile */
  .whatsapp-float { bottom: 20px; right: 20px; height: 50px; width: 50px; }
  .wapp-icon-wrap { width: 50px; height: 50px; }
  .wapp-icon-wrap img { width: 24px; height: 24px; }
  .whatsapp-float:hover { width: 168px; }
}

@media (max-width: 400px) {
  .hero h1 { font-size: 30px; }
  .contact-box { padding: 20px 16px 16px; }
}
