/* ============================================================
   SwiftCapital Finance – style.css
   Color System:
   --navy:    #0A1628  (deep authority)
   --blue:    #1A3A6B  (primary brand)
   --sky:     #2563EB  (accent interactive)
   --gold:    #C9A84C  (premium accent)
   --gold-lt: #E8C96C  (hover gold)
   --light:   #F4F7FF  (section bg)
   --white:   #FFFFFF
   --text:    #1E2D44
   --muted:   #64748B
============================================================ */

:root {
  --navy:    #0A1628;
  --blue:    #1A3A6B;
  --sky:     #2563EB;
  --gold:    #C9A84C;
  --gold-lt: #E8C96C;
  --light:   #F4F7FF;
  --white:   #FFFFFF;
  --text:    #1E2D44;
  --muted:   #64748B;
  --radius:  14px;
  --shadow:  0 8px 32px rgba(26,58,107,0.10);
  --shadow-lg: 0 20px 60px rgba(10,22,40,0.18);
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

/* ── Utilities ─────────────────────────────────────────── */
.section-pad { padding: 90px 0; }
.bg-white { background: var(--white); }
.bg-light-blue { background: var(--light); }
.bg-navy { background: var(--navy); }

.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.section-eyebrow.light { color: var(--gold-lt); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-title.light { color: var(--white); }

.section-body { color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }
.section-sub-text { color: var(--muted); max-width: 580px; margin: 0 auto; }

/* ── Buttons ────────────────────────────────────────────── */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--navy);
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 0.7rem 2rem;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(201,168,76,0.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.45);
  color: var(--navy);
}

.btn-primary-sc {
  background: var(--blue);
  color: var(--white);
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 0.7rem 2rem;
  transition: var(--transition);
  display: inline-block;
}
.btn-primary-sc:hover {
  background: var(--sky);
  transform: translateY(-2px);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(37,99,235,0.35);
}

/* ── NAVBAR ─────────────────────────────────────────────── */
#mainNav {
  background: rgba(10,22,40,0.96);
  backdrop-filter: blur(14px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: padding var(--transition), background var(--transition);
  z-index: 1050;
}
#mainNav.scrolled {
  padding: 10px 0;
  background: rgba(10,22,40,0.99);
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white) !important;
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar-brand span { color: var(--gold); }
.brand-icon { color: var(--gold); font-size: 1.3rem; }

.nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 6px 14px !important;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-link:hover { color: var(--gold) !important; background: rgba(201,168,76,0.08); }

.navbar-toggler { border-color: rgba(201,168,76,0.4); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28201%2C168%2C76%2C1%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── HERO SECTION ───────────────────────────────────────── */
#hero { position: relative; }

.hero-swiper { height: 100vh; min-height: 620px; }

.hero-slide {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.88) 0%, rgba(26,58,107,0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 15px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero-ctas { margin-bottom: 2.5rem; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; }
.stat-num {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

/* Hero swiper controls */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  color: var(--gold);
  background: rgba(10,22,40,0.5);
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  transition: var(--transition);
}
.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after { font-size: 1rem; font-weight: 700; }
.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover { background: var(--gold); color: var(--navy); }
.hero-swiper .swiper-pagination-bullet { background: var(--white); opacity: 0.5; }
.hero-swiper .swiper-pagination-bullet-active { background: var(--gold); opacity: 1; }

/* ── ABOUT SECTION ──────────────────────────────────────── */
.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}
.about-img {
  border-radius: var(--radius);
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
}
.badge-num {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}
.badge-label { font-size: 0.8rem; font-weight: 600; }

.about-checks {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text);
}
.about-checks li i { color: var(--sky); font-size: 1rem; }

/* ── SERVICE CARDS ──────────────────────────────────────── */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.sc-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.sc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .sc-img-wrap img { transform: scale(1.06); }
.sc-icon {
  position: absolute;
  bottom: -1px;
  right: 16px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
}
.sc-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.sc-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.sc-body p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; flex: 1; }
.sc-meta {
  display: flex;
  gap: 12px;
  margin: 12px 0;
}
.sc-meta span {
  background: var(--light);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid rgba(26,58,107,0.12);
}
.sc-link {
  color: var(--sky);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), color var(--transition);
}
.sc-link:hover { color: var(--gold); gap: 10px; }

/* ── WHY US CARDS ───────────────────────────────────────── */
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
  height: 100%;
}
.why-card:hover {
  transform: translateY(-6px);
  background: rgba(201,168,76,0.07);
  border-color: rgba(201,168,76,0.4);
}
.why-icon {
  width: 64px;
  height: 64px;
  background: rgba(201,168,76,0.12);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.4rem;
  color: var(--gold);
  transition: background var(--transition), color var(--transition);
}
.why-card:hover .why-icon { background: var(--gold); color: var(--navy); }
.why-card h4 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.why-card p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.75; }

/* ── GALLERY SLIDER ─────────────────────────────────────── */
.gallery-swiper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.gallery-swiper .swiper-slide {
  height: 460px;
  overflow: hidden;
}
.gallery-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: transform 0.6s ease;
}
.gallery-swiper .swiper-slide-active img { transform: scale(1.03); }
.gallery-swiper .swiper-button-prev,
.gallery-swiper .swiper-button-next {
  color: var(--white);
  background: rgba(10,22,40,0.55);
  width: 44px; height: 44px;
  border-radius: 50%;
  transition: var(--transition);
}
.gallery-swiper .swiper-button-prev::after,
.gallery-swiper .swiper-button-next::after { font-size: 1rem; }
.gallery-swiper .swiper-button-prev:hover,
.gallery-swiper .swiper-button-next:hover { background: var(--gold); color: var(--navy); }
.gallery-swiper .swiper-pagination-bullet { background: var(--white); opacity: 0.6; }
.gallery-swiper .swiper-pagination-bullet-active { background: var(--gold); opacity: 1; }

/* ── LOAN PROCESS ───────────────────────────────────────── */
.process-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.process-step {
  flex: 1;
  min-width: 220px;
  max-width: 260px;
  text-align: center;
  padding: 0 12px;
}
.ps-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(26,58,107,0.1);
  line-height: 1;
  margin-bottom: -12px;
}
.ps-icon {
  width: 72px;
  height: 72px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1rem;
  position: relative;
  box-shadow: 0 8px 24px rgba(26,58,107,0.25);
  transition: background var(--transition), transform var(--transition);
}
.process-step:hover .ps-icon {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.08);
}
.ps-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.ps-content p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

.process-connector {
  flex: 0 0 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  margin-top: 95px;
  border-radius: 2px;
}

/* ── TESTIMONIALS ───────────────────────────────────────── */
.testimonial-swiper { padding-bottom: 50px !important; }
.testi-card {
  background: var(--white);
  border: 1px solid rgba(26,58,107,0.1);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  margin: 10px;
}
.testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; }
.testi-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}
.testi-text::before {
  content: "\201C";
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--light);
  position: absolute;
  top: -18px;
  left: -8px;
  line-height: 1;
  z-index: 0;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-author img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
}
.testi-author strong { display: block; font-size: 0.95rem; color: var(--navy); }
.testi-author span { font-size: 0.82rem; color: var(--muted); }
.testi-pagination { bottom: 0 !important; }
.testi-pagination .swiper-pagination-bullet { background: var(--blue); opacity: 0.3; }
.testi-pagination .swiper-pagination-bullet-active { background: var(--gold); opacity: 1; }

/* ── CONTACT SECTION ────────────────────────────────────── */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.sc-input {
  border: 1.5px solid rgba(26,58,107,0.15);
  border-radius: 10px;
  padding: 11px 16px;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.sc-input:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
  outline: none;
}
.form-success-msg {
  text-align: center;
  padding: 40px 20px;
}
.form-success-msg i { font-size: 3.5rem; color: #22c55e; margin-bottom: 1rem; }
.form-success-msg h4 { color: var(--navy); margin-bottom: 0.5rem; }
.form-success-msg p { color: var(--muted); }

.contact-info-wrap {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 40px;
  height: 100%;
}
.ci-title {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  margin-bottom: 2rem;
  font-size: 1.4rem;
}
.ci-item {
  display: flex;
  gap: 16px;
  margin-bottom: 1.8rem;
  align-items: flex-start;
}
.ci-icon {
  width: 42px;
  height: 42px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.ci-item strong { display: block; color: var(--gold); font-size: 0.85rem; margin-bottom: 4px; }
.ci-item p, .ci-item a { color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.7; }
.ci-item a:hover { color: var(--gold); }
.ci-item p { margin: 0; }

.ci-socials {
  display: flex;
  gap: 12px;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.ci-socials a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
}
.ci-socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* ── MAP ────────────────────────────────────────────────── */
.map-section { line-height: 0; }
.map-section iframe { display: block; }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer-top {
  background: var(--navy);
  padding: 70px 0 50px;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
}
.footer-brand span { color: var(--gold); }
.footer-about { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.8; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-socials a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.footer-heading {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  line-height: 1.6;
}
.footer-contact li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  background: rgba(0,0,0,0.4);
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom p {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  text-align: center;
  margin: 0;
}

/* ── FLOATING BUTTONS ───────────────────────────────────── */
/* Fix: overflow-x on html+body prevents wide elements from
   expanding scroll width and pushing fixed buttons off-screen on mobile */
html { overflow-x: hidden; }
body { overflow-x: hidden; max-width: 100%; }

.float-btn {
  position: fixed;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  z-index: 1000;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  /* env() keeps buttons inside safe area on notched phones */
  right: max(16px, env(safe-area-inset-right, 16px));
}
.float-btn:hover { transform: scale(1.12); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }

.whatsapp-btn {
  bottom: 150px;
  background: #25D366;
  color: var(--white) !important;
}
.call-btn {
  bottom: 88px;
  background: var(--sky);
  color: var(--white) !important;
}
.back-to-top {
  position: fixed;
  bottom: 26px;
  right: max(16px, env(safe-area-inset-right, 16px));
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(201,168,76,0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 1000;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--gold-lt); }

@media (max-width: 767px) {
  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
  .whatsapp-btn { bottom: 134px; }
  .call-btn    { bottom: 78px; }
  .back-to-top {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
    bottom: 22px;
  }
}

/* ── SCROLL REVEAL ANIMATIONS ───────────────────────────── */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--delay, 0s);
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 991px) {
  .section-pad { padding: 70px 0; }
  .hero-swiper { min-height: 560px; height: auto; aspect-ratio: unset; }
  .hero-slide { min-height: 560px; }
  .about-img { height: 360px; }
  .about-badge { right: 10px; bottom: -16px; }
  .process-connector { display: none; }
  .process-timeline { flex-direction: column; align-items: center; gap: 30px; }
  .process-step { max-width: 100%; }
}

@media (max-width: 767px) {
  .section-pad { padding: 55px 0; }
  .hero-swiper { min-height: 500px; }
  .hero-slide { min-height: 500px; }
  .hero-title { font-size: 1.9rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 1.3rem; }
  .hero-ctas .btn { font-size: 0.9rem; padding: 0.6rem 1.4rem; }
  .contact-form-wrap { padding: 24px; }
  .contact-info-wrap { padding: 28px; margin-top: 0; }
  .gallery-swiper .swiper-slide { height: 280px; }
  .hero-swiper .swiper-button-prev,
  .hero-swiper .swiper-button-next { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.65rem; }
  .section-title { font-size: 1.55rem; }
  .about-img { height: 280px; }
  .hero-ctas { display: flex; flex-direction: column; gap: 10px; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  .sc-meta { flex-direction: column; gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up, .reveal-left, .reveal-right { transition: none; opacity: 1; transform: none; }
  .hero-slide, .service-card, .why-card { transition: none; }
}