/* ==========================================================================
   Shree Radha Cargo Packers & Movers — Main Stylesheet
   ========================================================================== */

:root {
  /* Colors */
  --navy: #0a1f44;
  --navy-2: #0f2a5c;
  --navy-3: #13336e;
  --red: #e21c21;
  --red-dark: #b91419;
  --blue: #1a56db;
  --blue-light: #eaf1ff;
  --white: #ffffff;
  --off-white: #f6f8fb;
  --gray-100: #eef1f6;
  --gray-300: #cdd5e0;
  --gray-500: #6b7686;
  --gray-700: #3a4356;
  --text: #1d2433;

  /* Typography */
  --font-heading: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5rem;

  /* Layout */
  --container: 1200px;
  --radius: 8px;
  --shadow: 0 10px 30px rgba(10, 31, 68, 0.12);
  --transition: 0.25s ease;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.25;
  margin: 0 0 var(--space-sm);
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 var(--space-sm); color: var(--gray-700); }
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-sm);
}
section { padding: var(--space-xl) 0; }
.section-tight { padding: var(--space-lg) 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   Utility
   ========================================================================== */
.eyebrow {
  display: inline-block;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: var(--space-xs);
}
.section-head { max-width: 720px; margin: 0 auto var(--space-lg); text-align: center; }
.section-head p { max-width: 620px; margin-inline: auto; }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy h2, .bg-navy h3, .bg-navy .eyebrow { color: var(--white); }
.bg-navy p { color: #c7d0e3; }
.bg-off { background: var(--off-white); }
.text-center { text-align: center; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 0; top: -50px; background: var(--red); color: #fff;
  padding: 10px 16px; z-index: 2000; transition: top var(--transition);
}
.skip-link:focus { top: 0; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

/* Angular / diagonal accents */
.diagonal-top {
  position: relative;
}
.diagonal-top::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 60px;
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
  transform: translateY(-59px);
}
.angled-card {
  clip-path: polygon(0 12px, 12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.6rem;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-red { background: var(--red); color: var(--white); box-shadow: 0 8px 20px rgba(226,28,33,0.35); }
.btn-red:hover { background: var(--red-dark); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-2); }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1ebc59; }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.85rem; }

/* ==========================================================================
   Top Info Bar
   ========================================================================== */
.topbar {
  background: var(--navy);
  color: #cfd8ea;
  font-size: 0.85rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
  padding-block: 8px;
}
.topbar-left { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar a { color: #cfd8ea; transition: color var(--transition); }
.topbar a:hover { color: var(--white); }
.topbar-left span, .topbar-left a { display: inline-flex; align-items: center; gap: 6px; }
.topbar-social { display: flex; gap: 10px; }
.topbar-social a {
  width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,0.1);
  display: inline-flex; align-items: center; justify-content: center;
}
.topbar-social a:hover { background: var(--red); }
@media (max-width: 640px) {
  .topbar-social { display: none; }
  .topbar .container { justify-content: center; text-align: center; }
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 14px rgba(10,31,68,0.08);
  position: sticky;
  top: 0;
  z-index: 900;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 12px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  color: var(--navy);
}
.logo-mark {
  width: 46px; height: 46px; border-radius: 8px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 800; font-size: 1.1rem;
  flex-shrink: 0;
}
.logo-text { line-height: 1.15; }
.logo-text strong { display: block; font-size: 1.05rem; font-weight: 800; }
.logo-text span { display: block; font-size: 0.72rem; color: var(--red); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }

/* Real logo image */
.logo-img { width: 350px; height: auto; display: block; }
.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  padding: 12px 18px;
  border-radius: 8px;
  margin-bottom: 16px;
}
.footer-logo-wrap .logo-img { width: 220px; }
@media (max-width: 900px) {
  .logo-img { width: 260px; }
}
@media (max-width: 640px) {
  .logo-img { width: 200px; }
  .footer-logo-wrap .logo-img { width: 180px; }
}
@media (max-width: 400px) {
  .logo-img { width: 160px; }
}

.main-nav ul { display: flex; align-items: center; gap: 2rem; }
.main-nav a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--red); transition: width var(--transition);
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--red); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span { width: 26px; height: 3px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85%);
    height: 100vh;
    background: var(--navy);
    padding: 90px 28px 28px;
    transition: right var(--transition);
    z-index: 950;
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 1.4rem; }
  .main-nav a { color: var(--white); font-size: 1.1rem; }
  .header-actions .btn-red.header-cta { display: none; }
  .hamburger { display: flex; }
  .nav-overlay {
    display: none; position: fixed; inset: 0; background: rgba(10,31,68,0.5); z-index: 940;
  }
  .nav-overlay.open { display: block; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
  min-height: clamp(320px, 56vh, 560px);
  display: flex;
  align-items: center;
}
.hero-slider {
  position: absolute; inset: 0; z-index: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(6,15,36,0.96) 0%, rgba(6,15,36,0.84) 40%, rgba(6,15,36,0.38) 70%, rgba(6,15,36,0.15) 100%);
}
.hero-shape {
  position: absolute; right: -10%; top: -20%; width: 60%; height: 140%;
  background: rgba(226,28,33,0.10);
  clip-path: polygon(30% 0, 100% 0, 70% 100%, 0% 100%);
  z-index: 1;
}
.hero-dots {
  position: absolute; left: 0; right: 0; bottom: 20px; z-index: 3;
  display: flex; justify-content: center; gap: 10px;
}
.hero-dots::before {
  content: "";
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: calc(100% + 40px); max-width: 140px; height: 34px;
  background: rgba(6,15,36,0.35); border-radius: 20px; z-index: -1;
}
.hero-dots button {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.55); border: none; padding: 0; cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.hero-dots button.is-active { background: var(--red); transform: scale(1.25); }
.hero-dots button:hover { background: rgba(255,255,255,0.85); }
.hero .container {
  position: relative; z-index: 2;
  padding-block: var(--space-xl);
  max-width: 760px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 14px; border-radius: 30px; font-size: 0.8rem; margin-bottom: 18px;
}
.hero h1 { color: var(--white); }
.hero .lead { font-size: 1.1rem; color: #dbe3f3; max-width: 560px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: var(--space-md); }
.hero-trust {
  margin-top: var(--space-lg);
  display: flex; gap: 10px; flex-wrap: wrap;
  font-size: 0.85rem; color: #cfd8ea;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--red); }

/* ==========================================================================
   Enquiry form (horizontal)
   ========================================================================== */
.quote-strip {
  background: var(--white);
  margin-top: -56px;
  position: relative;
  z-index: 5;
}
.quote-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 5px solid var(--red);
  padding: var(--space-md);
}
.quote-card h2 { font-size: 1.3rem; margin-bottom: 4px; }
.quote-card .quote-sub { margin-bottom: var(--space-sm); font-size: 0.9rem; }
.quote-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.quote-form .field-full { grid-column: 1 / -1; }
.quote-form label {
  display: block; font-size: 0.8rem; font-weight: 600; color: var(--navy); margin-bottom: 5px;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1.5px solid var(--gray-300);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  background: var(--off-white);
  transition: border-color var(--transition);
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  border-color: var(--blue); outline: none; background: var(--white);
}
.quote-form textarea { resize: vertical; min-height: 70px; }
.consent-row { display: flex; align-items: flex-start; gap: 8px; font-size: 0.82rem; color: var(--gray-700); }
.consent-row input { width: auto; margin-top: 3px; }
.quote-form .form-msg { font-size: 0.88rem; padding: 10px 12px; border-radius: 6px; display: none; }
.quote-form .form-msg.success { display: block; background: #e6f7ec; color: #146c2e; }
.quote-form .form-msg.error { display: block; background: #fdeceb; color: #9c1c1c; }
.field-error { color: var(--red); font-size: 0.75rem; margin-top: 4px; display: none; }
.has-error input, .has-error select, .has-error textarea { border-color: var(--red); }
.has-error .field-error { display: block; }
.hp-field { position: absolute; left: -9999px; top: -9999px; }

@media (max-width: 980px) {
  .quote-form { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .quote-form { grid-template-columns: 1fr; }
  .quote-strip { margin-top: -30px; }
  .quote-card { padding: var(--space-sm); }
}

/* ==========================================================================
   About / feature blocks
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.split-media .accent-block {
  position: absolute; width: 90px; height: 90px; background: var(--red);
  bottom: -18px; left: -18px; z-index: -1; border-radius: 8px;
}
.check-list li {
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; color: var(--gray-700);
}
.check-list li svg { flex-shrink: 0; margin-top: 3px; color: var(--red); }

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
}

/* ==========================================================================
   Cards: services, why-choose, process, testimonials
   ========================================================================== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(10,31,68,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
  border-bottom: 4px solid transparent;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--red); }
.service-card .media { aspect-ratio: 4/3; overflow: hidden; }
.service-card .media img { width: 100%; height: 100%; object-fit: cover; }
.service-card .body { padding: 1.4rem; display: flex; flex-direction: column; flex: 1; }
.service-card h3 { font-size: 1.1rem; }
.service-card p { font-size: 0.92rem; flex: 1; }
.service-card .card-actions { display: flex; gap: 10px; margin-top: 10px; flex-wrap: wrap; }

.icon-box {
  width: 54px; height: 54px; border-radius: 10px;
  background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.feature-card { background: var(--white); padding: 1.6rem; border-radius: var(--radius); box-shadow: 0 6px 18px rgba(10,31,68,0.07); }
.feature-card h3 { font-size: 1.05rem; }
.feature-card p { font-size: 0.9rem; margin-bottom: 0; }

.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; counter-reset: step; }
.process-step { position: relative; text-align: center; padding: 0 8px; }
.process-step .num {
  width: 56px; height: 56px; border-radius: 50%; background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-heading);
  font-weight: 800; font-size: 1.2rem; margin: 0 auto 14px;
}
.process-step h3 { font-size: 1rem; }
.process-step p { font-size: 0.88rem; }

.testimonial-card {
  background: var(--white); border-radius: var(--radius); padding: 1.6rem;
  box-shadow: 0 6px 18px rgba(10,31,68,0.07); border-left: 4px solid var(--red);
}
.testimonial-card p { font-style: italic; color: var(--gray-700); }
.testimonial-name { font-weight: 700; color: var(--navy); font-size: 0.92rem; }

@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-3, .grid-4, .grid-2, .process-steps { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-item {
  border-bottom: 1px solid var(--gray-100);
}
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 1.1rem 0; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-heading); font-weight: 600; color: var(--navy); font-size: 1rem; gap: 14px;
}
.faq-q .icon { flex-shrink: 0; transition: transform var(--transition); color: var(--red); }
.faq-q[aria-expanded="true"] .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--transition); font-size: 0.92rem; }
.faq-a p { padding-bottom: 1.1rem; }

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final-cta { text-align: center; position: relative; }
.final-cta .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: var(--space-md); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy); color: #cfd8ea; }
.site-footer p,
.site-footer li,
.site-footer a,
.site-footer span { color: #cfd8ea; }
.footer-top { padding: var(--space-xl) 0 var(--space-lg); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.4fr 1.4fr; gap: 2.5rem; }
.footer-grid h4 { color: var(--white) !important; font-size: 1rem; margin-bottom: 1.1rem; }
.footer-grid ul li { margin-bottom: 10px; font-size: 0.9rem; }
.footer-grid a:hover { color: var(--white) !important; }
.footer-about p { font-size: 0.9rem; color: #cfd8ea; }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a {
  width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--red); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.1rem 0;
  font-size: 0.82rem;
}
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: #b9c4dc; }
.footer-bottom a:hover { color: var(--white); }

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

/* ==========================================================================
   Inner page banner / breadcrumb
   ========================================================================== */
.page-banner {
  background: linear-gradient(120deg, var(--navy) 60%, var(--navy-2) 100%);
  color: var(--white);
  padding: var(--space-lg) 0;
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: ""; position: absolute; right: -5%; top: -30%; width: 40%; height: 200%;
  background: rgba(226,28,33,0.1);
  clip-path: polygon(30% 0, 100% 0, 70% 100%, 0% 100%);
}
.page-banner h1 { color: var(--white); margin-bottom: 6px; }
.breadcrumb { font-size: 0.85rem; color: #c7d0e3; position: relative; z-index: 1; }
.breadcrumb a { color: #c7d0e3; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span[aria-current] { color: var(--white); }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-info-card {
  background: var(--white); border-radius: var(--radius); box-shadow: 0 6px 18px rgba(10,31,68,0.07);
  padding: 1.4rem; display: flex; gap: 14px; align-items: flex-start; margin-bottom: 1rem;
}
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }

/* ==========================================================================
   Legal pages
   ========================================================================== */
.legal-content h2 { margin-top: var(--space-lg); }
.legal-content ul { list-style: disc; padding-left: 1.4rem; margin-bottom: var(--space-sm); }
.legal-content ul li { margin-bottom: 6px; color: var(--gray-700); }

/* ==========================================================================
   Thank-you page
   ========================================================================== */
.thankyou-box {
  max-width: 560px; margin: 0 auto; text-align: center;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: var(--space-lg); border-top: 6px solid var(--red);
}
.success-icon {
  width: 84px; height: 84px; border-radius: 50%; background: #e6f7ec; color: #1a9b4a;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.thankyou-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: var(--space-md); }

/* ==========================================================================
   Floating WhatsApp + Mobile sticky bar
   ========================================================================== */
.whatsapp-float {
  position: fixed; right: 20px; bottom: 90px; z-index: 800;
  width: 56px; height: 56px; border-radius: 50%; background: #25d366;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.08); }
.mobile-cta-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 800;
  background: var(--navy); padding: 10px; gap: 10px;
}
@media (max-width: 760px) {
  .mobile-cta-bar { display: flex; }
  .whatsapp-float { bottom: 78px; right: 14px; width: 50px; height: 50px; }
  body { padding-bottom: 62px; }
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(10,31,68,0.1);
  aspect-ratio: 5/4;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(10,31,68,0.85), transparent);
  color: var(--white); font-size: 0.85rem; font-weight: 600;
  padding: 24px 14px 10px;
}
@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* Image placeholder (for local dev before real photos are added) */
.img-placeholder {
  width: 100%; height: 100%; min-height: 220px;
  background: linear-gradient(135deg, var(--gray-100), var(--gray-300));
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-500); font-size: 0.82rem; text-align: center; padding: 10px;
}
