/* ═══════════════════════════════════════════════════════════
   REN COMPUTERS — style.css
   Color Palette:
     Primary Dark Navy : #0F172A
     Blue              : #2563EB
     Accent Yellow     : #FACC15
   ═══════════════════════════════════════════════════════════ */

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0F172A;
  --navy-mid: #1E293B;
  --navy-light: #334155;
  --blue: #2563EB;
  --blue-dark: #1D4ED8;
  --blue-light: #3B82F6;
  --yellow: #FACC15;
  --yellow-dark: #EAB308;
  --white: #FFFFFF;
  --light: #F8FAFC;
  --light-2: #F1F5F9;
  --text: #1E293B;
  --text-muted: #64748B;
  --border: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: .3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── Utility ─────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 96px 0; }
.bg-light { background: var(--light); }
.highlight { color: var(--blue); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  background: rgba(37,99,235,.1);
  color: var(--blue);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,235,.35); }
.btn-whatsapp { background: #25D366; color: #fff; border-color: #25D366; }
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.35); }
.btn-full { width: 100%; justify-content: center; }

/* ── Preloader ───────────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s, visibility .5s;
}
#preloader.hide { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-logo {
  font-size: 3rem; font-weight: 900; color: var(--yellow);
  letter-spacing: .1em; margin-bottom: 20px;
  animation: pulse 1s infinite alternate;
}
@keyframes pulse { from { opacity: .6; } to { opacity: 1; } }
.preloader-bar {
  width: 200px; height: 4px; background: rgba(255,255,255,.15);
  border-radius: 4px; overflow: hidden; margin: 0 auto;
}
.preloader-fill {
  width: 0; height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--yellow));
  border-radius: 4px;
  animation: load 1.8s ease forwards;
}
@keyframes load { to { width: 100%; } }

/* ── Navbar ──────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: background .35s, box-shadow .35s, padding .35s;
  padding: 18px 0;
}
#navbar.scrolled {
  background: rgba(15,23,42,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
  padding: 10px 0;
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: #fff;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main { font-size: 1.2rem; font-weight: 900; color: #fff; letter-spacing: .08em; }
.logo-sub { font-size: .6rem; font-weight: 500; color: var(--yellow); letter-spacing: .18em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-link {
  color: rgba(255,255,255,.82);
  font-size: .9rem; font-weight: 500;
  padding: 7px 14px; border-radius: 8px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(255,255,255,.1); }
.nav-cta {
  background: var(--blue);
  color: #fff; font-size: .88rem; font-weight: 600;
  padding: 9px 22px; border-radius: 50px;
  display: flex; align-items: center; gap: 7px;
  transition: var(--transition);
}
.nav-cta:hover { background: var(--blue-dark); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Offer Banner ────────────────────────────────────────── */
.offer-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: linear-gradient(90deg, var(--yellow-dark), var(--yellow));
  color: var(--navy); font-size: .82rem; font-weight: 600;
  text-align: center; padding: 8px 20px;
  transform: translateY(0);
  transition: transform .35s;
}
.offer-banner.hide { transform: translateY(-100%); }
.offer-inner { display: flex; align-items: center; justify-content: center; gap: 8px; }

/* Push content below fixed nav + banner */
body { padding-top: 88px; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a6e 100%);
  min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 80px 0 60px;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232563eb' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(37,99,235,.25);
  animation: float-particle linear infinite;
}
@keyframes float-particle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: .5; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

.hero-container {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(250,204,21,.15); border: 1px solid rgba(250,204,21,.35);
  color: var(--yellow); font-size: .82rem; font-weight: 600;
  padding: 7px 18px; border-radius: 100px; margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 20px;
}
.hero-title .highlight { color: var(--yellow); }
.hero-desc { color: rgba(255,255,255,.76); font-size: 1.05rem; margin-bottom: 28px; }
.hero-features { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero-feat { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.88); font-size: .9rem; }
.hero-feat i { color: var(--yellow); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-image { position: relative; }
.hero-img-wrapper { position: relative; }
.hero-img-wrapper img {
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
  width: 100%;
  object-fit: cover; aspect-ratio: 4/3;
}
.hero-badge-float {
  position: absolute;
  background: #fff; border-radius: var(--radius);
  padding: 12px 18px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg);
  font-size: .85rem; font-weight: 600; color: var(--navy);
  animation: float 4s ease-in-out infinite;
}
.hero-badge-float i { color: var(--blue); font-size: 1.1rem; }
.badge-1 { top: -16px; left: -20px; animation-delay: 0s; }
.badge-2 { bottom: 20px; right: -20px; animation-delay: 2s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; }
.hero-wave svg { width: 100%; display: block; }

/* ── Stats ───────────────────────────────────────────────── */
.stats { padding: 0; margin-top: -2px; background: var(--white); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  box-shadow: 0 8px 40px rgba(0,0,0,.08);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
}
.stat-card {
  background: var(--navy);
  padding: 40px 24px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--blue) 0%, transparent 60%);
  opacity: 0; transition: var(--transition);
}
.stat-card:hover::before { opacity: .12; }
.stat-card:last-child { border-right: none; }
.stat-icon { font-size: 1.8rem; color: var(--yellow); margin-bottom: 12px; }
.stat-num {
  font-size: 2.8rem; font-weight: 900; color: #fff;
  display: inline-block; line-height: 1;
}
.stat-plus, .stat-slash { font-size: 1.8rem; font-weight: 700; color: var(--yellow); display: inline-block; }
.stat-label { color: rgba(255,255,255,.65); font-size: .9rem; margin-top: 8px; font-weight: 500; }

/* ── About ───────────────────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: center;
}
.about-images { position: relative; }
.about-img-main img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
}
.about-img-accent {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 55%; border-radius: var(--radius);
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about-img-accent img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.experience-badge {
  position: absolute; top: 0; left: 0;
  background: var(--blue);
  color: #fff; padding: 12px 16px;
  display: flex; flex-direction: column; align-items: center;
  border-radius: 0 0 var(--radius) 0;
}
.exp-num { font-size: 1.8rem; font-weight: 900; line-height: 1; }
.exp-text { font-size: .65rem; font-weight: 600; text-align: center; line-height: 1.3; }

.about-content .section-tag { display: inline-block; }
.about-lead { font-size: 1.1rem; font-weight: 500; color: var(--text); margin-bottom: 16px; }
.about-body { color: var(--text-muted); margin-bottom: 28px; }
.about-highlights { display: flex; flex-direction: column; gap: 18px; margin-bottom: 36px; }
.about-highlight {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--light); border-radius: var(--radius);
  padding: 16px 20px;
}
.about-highlight > i {
  font-size: 1.3rem; color: var(--blue);
  margin-top: 2px; flex-shrink: 0;
}
.about-highlight strong { display: block; font-weight: 700; color: var(--navy); font-size: .95rem; }
.about-highlight span { font-size: .88rem; color: var(--text-muted); }

/* ── Services ────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--yellow));
  transform: scaleX(0); transform-origin: center;
  transition: transform .35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(37,99,235,.15);
  border-color: transparent;
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(37,99,235,.1), rgba(37,99,235,.2));
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; color: var(--blue);
  margin: 0 auto 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  transform: rotateY(180deg);
}
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.service-badge {
  display: inline-block;
  background: rgba(37,99,235,.08); color: var(--blue);
  font-size: .75rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: 4px 14px; border-radius: 100px;
}

/* ── Why Choose Us ───────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px; text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid transparent;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(37,99,235,.14);
  border-color: var(--blue);
}
.why-icon-wrap {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem; color: #fff;
  margin: 0 auto 22px;
  box-shadow: 0 8px 24px rgba(37,99,235,.35);
  transition: var(--transition);
}
.why-card:hover .why-icon-wrap { transform: scale(1.12) rotate(-5deg); }
.why-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.why-card p { font-size: .88rem; color: var(--text-muted); }

/* ── Gallery ─────────────────────────────────────────────── */
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-bottom: 36px;
}
.gallery-filter {
  padding: 9px 24px; border-radius: 50px;
  background: var(--white); border: 2px solid var(--border);
  font-size: .88rem; font-weight: 600; color: var(--text-muted);
  transition: var(--transition);
}
.gallery-filter.active, .gallery-filter:hover {
  background: var(--blue); border-color: var(--blue); color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  background: var(--light-2);
  box-shadow: 0 10px 30px rgba(15,23,42,.08);
  isolation: isolate;
}
.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-wide {
  grid-column: span 2;
}
.gallery-wide { aspect-ratio: 2 / 1; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); filter: saturate(1.08) contrast(1.04); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,.9), rgba(15,23,42,.2) 58%, transparent);
  opacity: 0; transition: var(--transition);
  display: flex; align-items: flex-end;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-info {
  width: 100%;
  padding: 18px;
  color: #fff;
  display: flex; flex-direction: column; gap: 6px;
}
.gallery-info i { font-size: 1.35rem; }
.gallery-info span { font-size: .9rem; font-weight: 700; text-align: left; line-height: 1.3; }
.gallery-item.hidden { display: none; }

/* Lightbox */
.lightbox-backdrop {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(0,0,0,.92);
  opacity: 0; visibility: hidden; transition: var(--transition);
}
.lightbox-backdrop.active { opacity: 1; visibility: visible; }
.lightbox {
  position: fixed; inset: 0; z-index: 1200;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: var(--transition);
  padding: 40px 20px;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-content { position: relative; max-width: 860px; width: 100%; }
.lightbox-content img {
  border-radius: var(--radius-lg);
  max-height: 80vh; width: 100%; object-fit: contain;
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
}
#lightboxCaption {
  text-align: center; color: rgba(255,255,255,.8);
  margin-top: 14px; font-size: .95rem;
}
.lightbox-close, .lightbox-nav {
  position: fixed;
  background: rgba(255,255,255,.12); color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-nav.prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-nav:hover { background: var(--blue); }

/* ── Reviews ─────────────────────────────────────────────── */
.google-review-summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  background: linear-gradient(135deg, #ffffff, #f8fbff);
  border: 1px solid rgba(226,232,240,.95);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 32px;
  box-shadow: 0 14px 44px rgba(15,23,42,.08);
}
.google-mark {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: conic-gradient(from -45deg, #4285f4, #34a853, #fbbc05, #ea4335, #4285f4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(66,133,244,.25);
}
.google-review-copy {
  min-width: 0;
}
.google-label,
.review-source {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.google-review-copy strong {
  display: block;
  color: var(--navy);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.25;
  margin: 5px 0 9px;
}
.google-rating-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.google-score {
  color: var(--navy);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}
.google-muted {
  color: var(--text-muted);
  font-size: .9rem;
}
.google-review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.btn-google {
  background: #fff;
  color: var(--navy);
  border-color: var(--border);
}
.btn-google:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15,23,42,.1);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
}
.review-card::before {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute; top: 24px; right: 28px;
  font-size: 2.8rem;
  color: rgba(37,99,235,.08);
}
.review-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
  transform: translateY(-4px);
}
.google-review-card {
  padding-top: 26px;
}
.google-review-card::before {
  color: rgba(66,133,244,.08);
}
.review-source {
  margin-bottom: 12px;
  letter-spacing: .04em;
}
.review-stars { color: var(--yellow-dark); font-size: .9rem; margin-bottom: 14px; display: flex; gap: 3px; }
.review-text {
  color: var(--text); font-size: .9rem; line-height: 1.7;
  margin-bottom: 22px; font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: #fff; font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.author-info strong { display: block; font-size: .92rem; color: var(--navy); }
.author-info span { font-size: .8rem; color: var(--text-muted); }

/* ── Contact ─────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; }
.contact-card {
  background: var(--navy); border-radius: var(--radius-lg);
  padding: 36px; margin-bottom: 24px;
}
.contact-item {
  display: flex; align-items: flex-start; gap: 18px;
  margin-bottom: 26px; padding-bottom: 26px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.contact-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.contact-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(37,99,235,.2);
  color: var(--blue-light); font-size: 1.15rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item strong { display: block; color: #fff; font-size: .9rem; margin-bottom: 4px; }
.contact-item span, .contact-item a { color: rgba(255,255,255,.65); font-size: .88rem; }
.contact-item a:hover { color: var(--yellow); }

.contact-map { border-radius: var(--radius-lg); overflow: hidden; }
.map-open-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--blue);
  font-size: .9rem;
  font-weight: 700;
  transition: var(--transition);
}
.map-open-link:hover {
  color: var(--blue-dark);
  transform: translateX(3px);
}

.contact-form-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-lg);
}
.contact-form h3 { font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: .88rem; font-weight: 600;
  color: var(--navy); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 18px;
  border: 2px solid var(--border); border-radius: var(--radius);
  font-family: inherit; font-size: .92rem; color: var(--text);
  background: var(--light);
  transition: var(--transition); outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(37,99,235,.1); }
.form-group textarea { resize: vertical; }
.form-success {
  display: none; margin-top: 16px;
  background: rgba(34,197,94,.1); color: #16a34a;
  border: 1px solid rgba(34,197,94,.3);
  padding: 14px 20px; border-radius: var(--radius);
  font-weight: 600; font-size: .92rem;
  align-items: center; gap: 10px;
}
.form-success.show { display: flex; }

/* ── Footer ──────────────────────────────────────────────── */
.footer { background: var(--navy); }
.footer-top { padding: 72px 0 48px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-brand { }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-brand p { color: rgba(255,255,255,.6); font-size: .9rem; line-height: 1.7; margin-bottom: 24px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.social-links a:hover { background: var(--blue); color: #fff; transform: translateY(-3px); }

.footer-links h4, .footer-services h4, .footer-contact h4 {
  color: #fff; font-size: 1rem; font-weight: 700;
  margin-bottom: 22px; position: relative; padding-bottom: 12px;
}
.footer-links h4::after, .footer-services h4::after, .footer-contact h4::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 36px; height: 3px;
  background: var(--blue); border-radius: 2px;
}
.footer-links ul, .footer-services ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-services a {
  color: rgba(255,255,255,.6); font-size: .88rem;
  display: flex; align-items: center; gap: 8px;
  transition: var(--transition);
}
.footer-links a:hover, .footer-services a:hover { color: var(--yellow); padding-left: 4px; }
.footer-links i, .footer-services i { font-size: .7rem; color: var(--blue); }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-item i { color: var(--blue); margin-top: 2px; }
.footer-contact-item span, .footer-contact-item a {
  color: rgba(255,255,255,.65); font-size: .88rem;
}
.footer-contact-item a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,.45); font-size: .82rem; }

/* ── Floating Buttons ────────────────────────────────────── */
.float-btn {
  position: fixed; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
  transition: var(--transition);
}
.float-whatsapp {
  background: #25D366;
  bottom: 96px; right: 24px;
}
.float-call {
  background: var(--blue);
  bottom: 24px; right: 24px;
}
.float-btn:hover { transform: scale(1.1); box-shadow: 0 10px 28px rgba(0,0,0,.3); }
.float-tooltip {
  position: absolute; right: calc(100% + 12px);
  background: var(--navy); color: #fff;
  font-size: .78rem; font-weight: 600;
  white-space: nowrap; padding: 6px 14px;
  border-radius: 8px; pointer-events: none;
  opacity: 0; transition: var(--transition);
}
.float-tooltip::after {
  content: '';
  position: absolute; right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--navy); border-right: none;
}
.float-btn:hover .float-tooltip { opacity: 1; }

.back-to-top {
  position: fixed; bottom: 24px; left: 24px; z-index: 900;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden;
  transition: var(--transition);
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--blue); transform: translateY(-3px); }

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

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero-container { 
    grid-template-columns: 1fr; 
    text-align: center; 
    gap: 30px;
  }
  .hero-content { order: 1; }
  .hero-image { 
    display: block; 
    max-width: 480px; 
    margin: 0 auto;
  }

  .hero-features { justify-content: center; flex-wrap: wrap; }
  .hero-actions { justify-content: center; flex-wrap: wrap; }
  .hero-title { text-align: center; margin-left: auto; margin-right: auto; }
  .hero-desc { text-align: center; margin-left: auto; margin-right: auto; }
  .hero-badge { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .google-review-summary { grid-template-columns: auto 1fr; }
  .google-review-actions { grid-column: 1 / -1; justify-content: flex-start; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 0; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 90px 24px 40px;
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 998;
    gap: 4px;
    align-items: flex-start;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link, .nav-cta { width: 100%; }
  .nav-toggle { display: flex; z-index: 999; position: relative; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-large,
  .gallery-wide {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16 / 10;
  }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section-pad { padding: 72px 0; }
  .contact-form-wrap { padding: 28px 22px; }
  .google-review-summary { padding: 20px; gap: 16px; }
}

@media (max-width: 480px) {
  body { padding-top: 74px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2rem; }
  .lightbox-nav { display: none; }
  .offer-banner { font-size: .72rem; }
  .google-review-summary { grid-template-columns: 1fr; text-align: left; }
  .google-review-actions .btn { width: 100%; }
}

/* Design and responsive refinements */
body {
  background:
    radial-gradient(circle at top left, rgba(37,99,235,.08), transparent 34rem),
    var(--white);
}

.offer-banner {
  z-index: 1200;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#navbar {
  top: 34px;
  background: rgba(15,23,42,.88);
  backdrop-filter: blur(16px);
}

body.offer-hidden #navbar {
  top: 0;
}

#navbar,
.offer-banner,
.nav-links {
  will-change: transform;
}

.nav-container {
  gap: 20px;
}

.nav-logo {
  min-width: 0;
}

.logo-main {
  white-space: nowrap;
}

.nav-links {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link,
.nav-cta,
.btn,
.gallery-filter {
  min-height: 42px;
}

.hero {
  min-height: calc(100vh - 34px);
  background:
    linear-gradient(135deg, rgba(15,23,42,.98) 0%, rgba(17,39,84,.96) 48%, rgba(37,99,235,.78) 100%),
    #0F172A;
}

.hero-container {
  width: 100%;
}

.hero-title {
  letter-spacing: 0;
  max-width: 760px;
}

.hero-desc {
  max-width: 620px;
}

.hero-img-wrapper::before {
  content: '';
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(250,204,21,.42), rgba(37,99,235,.42));
  filter: blur(6px);
}

.section-pad {
  position: relative;
}

.service-card,
.why-card,
.review-card,
.contact-form-wrap {
  border-radius: 18px;
}

.service-card,
.review-card {
  box-shadow: 0 8px 28px rgba(15,23,42,.06);
}

.contact-form-wrap {
  border: 1px solid rgba(226,232,240,.85);
}

.contact-map iframe {
  display: block;
}

@media (max-width: 1100px) {
  .nav-link {
    padding-inline: 10px;
    font-size: .84rem;
  }

  .nav-cta {
    padding-inline: 16px;
  }
}

@media (max-width: 980px) {
  body.nav-open {
    overflow: hidden;
  }

  .nav-toggle {
    display: flex;
    z-index: 1301;
    position: relative;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255,255,255,.1);
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(86vw, 360px);
    min-height: 100vh;
    background:
      linear-gradient(180deg, rgba(15,23,42,.98), rgba(30,41,59,.98));
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    padding: 96px 22px 32px;
    transform: translateX(105%);
    transition: transform .35s ease;
    z-index: 1300;
    box-shadow: -22px 0 60px rgba(0,0,0,.38);
    border-left: 1px solid rgba(255,255,255,.08);
    flex-wrap: nowrap;
  }

  .nav-links::before {
    content: 'Menu';
    position: absolute;
    top: 34px;
    left: 22px;
    color: rgba(255,255,255,.45);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-link,
  .nav-cta {
    width: 100%;
    justify-content: flex-start;
    border-radius: 12px;
    padding: 13px 14px;
    font-size: .95rem;
  }

  .nav-link {
    background: rgba(255,255,255,.04);
  }

  .nav-link:hover,
  .nav-link.active {
    background: rgba(37,99,235,.24);
  }

  .hero {
    min-height: auto;
    padding: 72px 0 78px;
  }

  .hero-image {
    display: block;
    max-width: 560px;
    margin: 14px auto 0;
  }

  .hero-img-wrapper img {
    aspect-ratio: 16 / 10;
  }

  .about-grid {
    gap: 46px;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 92px;
  }

  .container,
  .nav-container,
  .hero-container {
    padding-inline: 16px;
  }

  .section-pad {
    padding: 64px 0;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .hero-container {
    gap: 32px;
  }

  .hero-content {
    text-align: left;
  }

  .hero-title {
    font-size: clamp(2.15rem, 11vw, 3.25rem);
  }

  .hero-desc {
    font-size: 1rem;
  }

  .hero-features,
  .hero-actions {
    justify-content: flex-start;
  }

  .hero-feat {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.08);
    padding: 8px 11px;
    border-radius: 999px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .stats-grid {
    border-radius: 18px;
    margin-top: 20px;
  }

  .stat-card {
    padding: 28px 14px;
  }

  .stat-num {
    font-size: 2.2rem;
  }

  .about-highlight {
    padding: 15px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .service-card {
    padding: 24px 18px;
  }

  .contact-card {
    padding: 26px 22px;
  }
}

@media (max-width: 540px) {
  body {
    padding-top: 88px;
  }

  .offer-banner {
    min-height: 38px;
    padding-inline: 12px;
    line-height: 1.35;
  }

  #navbar {
    top: 38px;
  }

  .nav-container {
    min-height: 58px;
  }

  .logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
  }

  .logo-main {
    font-size: .98rem;
    letter-spacing: .04em;
  }

  .logo-sub {
    font-size: .53rem;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-badge {
    max-width: 100%;
    white-space: normal;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-image {
    display: none;
  }

  .services-grid,
  .gallery-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .gallery-large,
  .gallery-wide {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }

  .float-btn {
    width: 52px;
    height: 52px;
    right: 16px;
  }

  .float-call {
    bottom: 18px;
  }

  .float-whatsapp {
    bottom: 82px;
  }

  .back-to-top {
    left: 16px;
    bottom: 18px;
  }
}

/* ── Custom Logo ────────────────────────────────────────────── */
.custom-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-image {
  height: 60px;
  width: auto;
  display: block;
  transition: var(--transition);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.custom-logo:hover .logo-image {
  transform: scale(1.05);
  filter: drop-shadow(0 6px 16px rgba(37, 99, 235, 0.3));
}