/* ============================================================
   SVD PACKERS AND MOVERS — style.css
   Theme: White + Royal Blue + Gold | Premium Logistics Website
   ============================================================ */

/* ── CSS Variables ── */
:root {
  --royal-blue: #1A4FA8;
  --royal-blue-dark: #133a82;
  --royal-blue-light: #2962CC;
  --blue-bg: #EEF3FD;
  --gold: #D4AF37;
  --gold-light: #F0D060;
  --gold-dark: #B8941A;
  --white: #FFFFFF;
  --off-white: #FAFBFF;
  --text-dark: #0D1B3E;
  --text-mid: #3A4A6B;
  --text-light: #6B7A9B;
  --border: #DDE4F0;
  --shadow-sm: 0 2px 12px rgba(26,79,168,0.08);
  --shadow-md: 0 8px 32px rgba(26,79,168,0.13);
  --shadow-lg: 0 20px 60px rgba(26,79,168,0.16);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --nav-h: 72px;
  --transition: 0.32s cubic-bezier(0.4,0,0.2,1);
}

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

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

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

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

/* ── Utility ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }
.bg-light-blue { background: var(--blue-bg); }
.gold { color: var(--gold); }
.highlight { color: var(--royal-blue-light); }
.mt-btn { margin-top: 32px; display: inline-flex; }
.mt-8 { margin-top: 12px; }
.full-btn { width: 100%; justify-content: center; }

/* ── Reveal Animation ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.18s; }
.reveal:nth-child(4) { transition-delay: 0.26s; }
.reveal:nth-child(5) { transition-delay: 0.34s; }
.reveal:nth-child(6) { transition-delay: 0.42s; }

/* ── Section Labels ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,79,168,0.08);
  color: var(--royal-blue);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.22;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 540px;
  margin: 0 auto;
}
.section-header { text-align: center; margin-bottom: 60px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.97rem;
  padding: 14px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--royal-blue-light), var(--royal-blue));
  color: var(--white);
  box-shadow: 0 6px 24px rgba(26,79,168,0.28);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(26,79,168,0.36);
  background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-dark));
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #1aad53);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,0.28);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37,211,102,0.36);
}
.btn-whatsapp-sm {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 11px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25D366, #1aad53);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-whatsapp-sm:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,0.3); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 999px;
  border: 2px solid var(--royal-blue);
  color: var(--royal-blue);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline:hover { background: var(--royal-blue); color: white; }

/* =============================================================
   PRELOADER
   ============================================================= */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.truck-wrap {
  font-size: 4rem;
  color: var(--royal-blue);
  animation: truckBounce 0.9s ease-in-out infinite alternate;
  display: inline-block;
}
@keyframes truckBounce {
  from { transform: translateY(0) scaleX(1); }
  to { transform: translateY(-14px) scaleX(1.05); }
}
.preloader-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--text-mid);
  margin: 14px 0 18px;
  font-weight: 600;
}
.preloader-bar {
  width: 160px;
  height: 4px;
  background: var(--blue-bg);
  border-radius: 999px;
  margin: 0 auto;
  overflow: hidden;
}
.preloader-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--royal-blue), var(--gold));
  border-radius: 999px;
  animation: barFill 2s ease forwards;
}
@keyframes barFill { from { width: 0; } to { width: 100%; } }

/* =============================================================
   NAVBAR
   ============================================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition), background var(--transition);
}
#navbar.scrolled {
  box-shadow: 0 4px 24px rgba(26,79,168,0.1);
  background: rgba(255,255,255,0.98);
}
.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-dark);
  flex-shrink: 0;
}
.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon img {
  height: 60px;   /* adjust based on navbar */
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--royal-blue);
  background: rgba(26,79,168,0.07);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 9px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--royal-blue-light), var(--royal-blue));
  color: white;
  flex-shrink: 0;
  transition: transform var(--transition), box-shadow var(--transition);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--text-dark);
  border-radius: 999px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =============================================================
   HERO
   ============================================================= */
.hero {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 60px) 24px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 70% 30%, rgba(41,98,204,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(212,175,55,0.06) 0%, transparent 50%),
              var(--off-white);
  gap: 48px;
  flex-wrap: wrap;
}

/* background shapes */
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.22;
}
.shape-1 {
  width: 520px; height: 520px;
  background: var(--royal-blue);
  top: -180px; right: -120px;
  animation: floatShape 9s ease-in-out infinite alternate;
}
.shape-2 {
  width: 360px; height: 360px;
  background: var(--gold);
  bottom: -100px; left: -80px;
  animation: floatShape 12s ease-in-out infinite alternate-reverse;
}
.shape-3 {
  width: 220px; height: 220px;
  background: var(--royal-blue-light);
  top: 30%; left: 38%;
  animation: floatShape 7s ease-in-out infinite alternate;
}
@keyframes floatShape {
  from { transform: translate(0,0) scale(1); }
  to { transform: translate(30px,-30px) scale(1.06); }
}

.hero-content {
  max-width: 560px;
  flex: 1;
  min-width: 300px;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(26,79,168,0.09);
  border: 1px solid rgba(26,79,168,0.18);
  color: var(--royal-blue);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.14;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.hero-sub {
  font-size: 1.12rem;
  color: var(--text-mid);
  margin-bottom: 32px;
  font-weight: 400;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 3px;
  text-align: center;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero Visual */
.hero-visual {
  flex: 1;
  min-width: 300px;
  max-width: 540px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-illustration img {
  width: 100%;
  max-width: 500px;   /* control size */
  height: auto;
  border-radius: 20px;
  display: block;
}
.truck-svg { width: 100%; max-width: 520px; display: block; }
.smoke { animation: smokeRise 2.5s ease-in-out infinite; }
.smoke-1 { animation-delay: 0s; }
.smoke-2 { animation-delay: 0.4s; }
.smoke-3 { animation-delay: 0.8s; }
@keyframes smokeRise {
  0% { opacity: 0.7; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(-20px) scale(1.5); }
}
.hero-card-float {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  padding: 10px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.84rem;
  color: var(--text-dark);
  border: 1px solid var(--border);
  white-space: nowrap;
  animation: floatCard 3s ease-in-out infinite alternate;
}
.hero-card-float i { color: var(--royal-blue); font-size: 1.1rem; }
.card-float-1 { top: -16px; left: -10px; animation-delay: 0s; }
.card-float-2 { bottom: 8px; right: -10px; animation-delay: 1.2s; }
.card-float-2 i { color: var(--gold); }
@keyframes floatCard {
  from { transform: translateY(0px); }
  to { transform: translateY(-10px); }
}
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-light);
  animation: scrollBounce 2.2s ease-in-out infinite;
}
.hero-scroll-hint i { font-size: 1.3rem; color: var(--royal-blue); }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* =============================================================
   ABOUT
   ============================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-wrap { position: relative; margin-bottom: 20px; }
.about-img-bg {
  position: absolute;
  top: 20px; left: 20px;
  right: -20px; bottom: -20px;
  background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-light));
  border-radius: var(--radius-lg);
  opacity: 0.12;
}
.about-img-card {
  background: linear-gradient(135deg, #EEF3FD 0%, #dce8ff 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 48px 32px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow-md);
}
.about-big-icon {
  font-size: 6rem;
  color: var(--royal-blue);
  opacity: 0.85;
}
.about-owner-tag {
  background: white;
  border-radius: var(--radius-md);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  width: 100%;
}
.about-owner-tag i {
  font-size: 1.8rem;
  color: var(--royal-blue);
}
/* .about-big-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
} */

.about-img-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.about-big-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tag-name { display: block; font-weight: 700; color: var(--text-dark); }
.tag-role { display: block; font-size: 0.8rem; color: var(--text-light); }
.trust-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--royal-blue);
  box-shadow: var(--shadow-sm);
}
.trust-badge i { color: var(--gold); }

.about-desc {
  color: var(--text-mid);
  font-size: 1rem;
  margin-bottom: 12px;
}
.trust-lines { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.97rem;
  color: var(--text-mid);
}
.trust-icon {
  width: 38px; height: 38px;
  background: rgba(26,79,168,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--royal-blue);
  font-size: 1rem;
  flex-shrink: 0;
}

/* =============================================================
   SERVICES
   ============================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--royal-blue-light), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26,79,168,0.2);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon-wrap {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--royal-blue-light), var(--royal-blue));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.55rem;
  color: white;
  margin-bottom: 20px;
  transition: transform var(--transition);
}
.service-card:hover .service-icon-wrap { transform: scale(1.1) rotate(-4deg); }
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.service-card p { font-size: 0.92rem; color: var(--text-light); line-height: 1.6; }
.card-arrow {
  margin-top: 20px;
  color: var(--royal-blue);
  font-size: 1.1rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity var(--transition), transform var(--transition);
}
.service-card:hover .card-arrow { opacity: 1; transform: translateX(0); }

/* CTA card */
.service-cta-card {
  background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-dark));
  border: none;
}
.service-cta-card::before { display: none; }
.cta-card-inner { display: flex; flex-direction: column; align-items: flex-start; height: 100%; }
.cta-icon { font-size: 2.2rem; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.service-cta-card h3 {
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.service-cta-card p { color: rgba(255,255,255,0.75); font-size: 0.93rem; }
.service-cta-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(26,79,168,0.4);
}

/* =============================================================
   WHY CHOOSE US
   ============================================================= */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.why-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--royal-blue-light), var(--royal-blue));
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: white;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-item strong { display: block; color: var(--text-dark); font-weight: 700; margin-bottom: 3px; }
.why-item p { font-size: 0.9rem; color: var(--text-light); }

/* Why visual side */
.why-visual {
  background: linear-gradient(135deg, #EEF3FD, #dce8ff);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 40px 36px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.why-big-number {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  font-weight: 900;
  color: var(--royal-blue);
  line-height: 1;
}
.why-big-label {
  font-size: 1rem;
  color: var(--text-mid);
  font-weight: 500;
  margin: 8px 0 32px;
}
.why-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.why-stat-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 18px 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  transition: transform var(--transition);
}
.why-stat-card:hover { transform: translateY(-3px); }
.why-stat-card i { font-size: 1.4rem; color: var(--royal-blue); }
.why-stat-card strong { font-size: 1.4rem; font-weight: 800; color: var(--text-dark); }
.why-stat-card span { font-size: 0.78rem; color: var(--text-light); }

/* =============================================================
   GALLERY
   ============================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.gallery-item:hover { box-shadow: var(--shadow-lg); }
.gi-large { grid-column: span 2; }
.gi-tall { grid-row: span 2; }
.gallery-placeholder {
  width: 100%;
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: transform var(--transition);
}
.gi-large .gallery-placeholder { height: 260px; }
.gi-tall .gallery-placeholder { height: 100%; min-height: 460px; }
.gallery-item:hover .gallery-placeholder { transform: scale(1.06); }
.gallery-placeholder i { font-size: 3.5rem; color: white; opacity: 0.85; }
.gallery-placeholder span { font-size: 0.95rem; font-weight: 600; color: rgba(255,255,255,0.9); }
.gp-blue { background: linear-gradient(135deg, #1A4FA8, #2962CC); }
.gp-navy { background: linear-gradient(135deg, #0D1B3E, #1A4FA8); }
.gp-gold { background: linear-gradient(135deg, #B8941A, #D4AF37); }
.gp-teal { background: linear-gradient(135deg, #0D5A7A, #1A8AAB); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,62,0.6);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-overlay span {
  color: white;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Playfair Display', serif;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* =============================================================
   CONTACT
   ============================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 22px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--royal-blue-light), var(--royal-blue));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.wa-icon { background: linear-gradient(135deg, #25D366, #1aad53); }
.contact-details h4 {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.contact-details p { font-size: 0.9rem; color: var(--text-light); line-height: 1.5; }
.contact-link {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--royal-blue);
  transition: color var(--transition);
}
.contact-link:hover { color: var(--gold-dark); }
.availability {
  display: inline-block;
  margin-top: 4px;
  background: rgba(37,211,102,0.1);
  color: #1aad53;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 999px;
}

/* Map */
.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.map-header {
  background: linear-gradient(135deg, var(--royal-blue-light), var(--royal-blue));
  color: white;
  padding: 14px 20px;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.map-cta {
  background: white;
  padding: 16px 20px;
  text-align: center;
  border-top: 1px solid var(--border);
}

/* =============================================================
   FOOTER
   ============================================================= */
.footer { background: var(--text-dark); color: rgba(255,255,255,0.8); }
.footer-top { padding: 72px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
}
.footer-logo .logo-icon { background: rgba(255,255,255,0.12); }
.footer-logo .logo-text { color: white; }
.footer-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 14px 0 20px;
  color: rgba(255,255,255,0.6);
}
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: white;
  transition: transform var(--transition), opacity var(--transition);
}
.social-btn:hover { transform: translateY(-2px); opacity: 0.85; }
.social-btn.wa { background: #25D366; }
.social-btn.ph { background: var(--royal-blue-light); }

.footer-col h4 {
  font-weight: 700;
  color: white;
  font-size: 0.95rem;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(212,175,55,0.4);
  display: inline-block;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.footer-contact-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  transition: color var(--transition);
}
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  text-align: center;
}
.footer-bottom .container {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-bottom strong { color: rgba(255,255,255,0.7); }

/* =============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================= */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #25D366, #1aad53);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: floatWaPop 3.5s ease-in-out infinite;
}
.float-wa:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 36px rgba(37,211,102,0.5);
}
@keyframes floatWaPop {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 32px rgba(37,211,102,0.6), 0 0 0 10px rgba(37,211,102,0.1); }
}
.float-wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: rgba(13,27,62,0.9);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 8px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.2s, transform 0.2s;
}
.float-wa:hover .float-wa-tooltip { opacity: 1; transform: translateX(0); }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section-pad { padding: 64px 0; }

  /* nav */
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: white;
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border);
    gap: 4px;
    transform: translateY(-110%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-link { padding: 12px 16px; font-size: 1rem; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* hero */
  .hero { flex-direction: column; gap: 36px; padding-top: calc(var(--nav-h) + 40px); text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .card-float-1 { top: -10px; left: 0; }
  .card-float-2 { bottom: 0; right: 0; }
  .hero-visual { max-width: 100%; }

  /* services */
  .services-grid { grid-template-columns: 1fr; }

  /* gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gi-large { grid-column: span 2; }
  .gi-tall { grid-row: span 1; }
  .gi-tall .gallery-placeholder { min-height: 220px; }

  /* footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-top { padding: 48px 0 32px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .btn { padding: 13px 22px; font-size: 0.9rem; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gi-large { grid-column: span 1; }
  .why-stats-grid { grid-template-columns: 1fr 1fr; }
  .float-wa { width: 52px; height: 52px; font-size: 1.5rem; bottom: 20px; right: 20px; }
}



