/* ===========================
   MANIGRAM CONNECTION — CSS
   =========================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #F7F8FA;
  color: #1A1A2E;
  line-height: 1.65;
  overflow-x: hidden;
}

/* --- Design Tokens --- */
:root {
  --navy:     #0B1F3A;
  --navy2:    #112944;
  --gold:     #F5A623;
  --gold2:    #E8961A;
  --white:    #FFFFFF;
  --offwhite: #F7F8FA;
  --gray:     #6B7280;
  --light:    #EEF1F6;
  --radius:   14px;
  --shadow:   0 4px 24px rgba(11,31,58,0.10);
}

/* --- Typography --- */
h1, h2, h3 { font-family: 'Syne', sans-serif; line-height: 1.15; }

/* --- Utility --- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.text-accent { color: var(--gold); }

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 30px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.4);
  transition: border-color 0.25s, background 0.25s;
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-full { width: 100%; text-align: center; }

/* --- Section shared --- */
.section-tag {
  display: inline-block;
  background: rgba(245,166,35,0.12);
  color: var(--gold2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-tag--light { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.section-desc { color: var(--gray); max-width: 560px; margin: 0 auto; font-size: 1rem; }
.section-header { text-align: center; margin-bottom: 52px; }

/* ===========================
   ✅ PAGE LOADER
   =========================== */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.loader-hide { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 24px;
  animation: loaderPulse 1.2s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.08); opacity: 0.8; }
}
.loader-bar {
  width: 180px;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
  margin: 20px auto 0;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 4px;
  animation: loaderProgress 1.8s ease forwards;
}
@keyframes loaderProgress { from { width: 0; } to { width: 100%; } }

/* ===========================
   ✅ SCROLL REVEAL
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav-scrolled { background: var(--navy); box-shadow: 0 2px 20px rgba(0,0,0,0.25); }
.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-text { font-family: 'Syne', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--white); }
.logo-accent { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 9px 20px;
  border-radius: 50px;
}
.nav-cta:hover { background: var(--gold2) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   LOGO IMAGE
   =========================== */
.logo-img { height: 70px; max-width: 200px; width: auto; object-fit: contain; display: block; }
.footer-logo-img { height: 80px; max-width: 220px; width: auto; object-fit: contain; display: block; margin-bottom: 14px; filter: brightness(0) invert(1); }

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(to bottom, rgba(6,14,28,0.72) 0%, rgba(11,31,58,0.80) 60%, rgba(6,14,28,0.92) 100%),
    url('https://images.unsplash.com/photo-1488085061387-422e29b40080?auto=format&fit=crop&w=1920&q=85')
    center center / cover no-repeat fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero-bg-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(245,166,35,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(245,166,35,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--gold);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em;
  padding: 7px 18px; border-radius: 50px; margin-bottom: 28px;
}
.hero-headline { font-size: clamp(2.8rem, 7vw, 5.2rem); font-weight: 800; color: var(--white); line-height: 1.08; margin-bottom: 24px; }
.headline-stroke { -webkit-text-stroke: 2px var(--gold); color: transparent; }
.hero-sub { color: rgba(255,255,255,0.70); font-size: clamp(0.95rem, 2vw, 1.1rem); max-width: 540px; margin: 0 auto 40px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 20px 40px;
  backdrop-filter: blur(8px);
  flex-wrap: wrap; justify-content: center;
}
.stat-card { display: flex; flex-direction: column; align-items: center; padding: 0 32px; }
.stat-num { font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--gold); }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.06em; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

/* ===========================
   SERVICES
   =========================== */
.services-section { padding: 96px 0; background: var(--offwhite); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  border-top: 3px solid transparent;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.service-card:hover { border-top-color: var(--gold); transform: translateY(-6px); box-shadow: 0 12px 36px rgba(11,31,58,0.14); }
.service-icon { font-size: 2.2rem; margin-bottom: 16px; display: block; }
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }

/* ===========================
   WHY US
   =========================== */
.why-section { padding: 96px 0; background: var(--navy); }
.why-section .section-tag { background: rgba(245,166,35,0.15); color: var(--gold); }
.why-section .section-title { color: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 40px 32px; text-align: center;
  transition: background 0.25s;
}
.why-card:hover { background: rgba(255,255,255,0.09); }
.why-card--highlight { background: var(--gold); border-color: var(--gold); }
.why-card--highlight h3, .why-card--highlight p { color: var(--navy) !important; }
.why-icon { font-size: 2.4rem; margin-bottom: 18px; display: block; }
.why-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.why-card p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.65; }

/* ===========================
   ✅ WORKING HOURS
   =========================== */
.hours-section { padding: 96px 0; background: var(--offwhite); }
.hours-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.hours-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  border-top: 4px solid var(--light);
  transition: transform 0.25s;
}
.hours-card:hover { transform: translateY(-4px); }
.hours-card--open  { border-top-color: #22c55e; }
.hours-card--always { border-top-color: var(--gold); }
.hours-card--closed { border-top-color: #ef4444; opacity: 0.75; }
.hours-day { font-family: 'Syne', sans-serif; font-weight: 700; color: var(--navy); font-size: 1rem; }
.hours-time { font-size: 1.3rem; font-weight: 700; color: var(--navy); font-family: 'Syne', sans-serif; }
.hours-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #dcfce7; color: #16a34a;
}
.hours-badge--limited  { background: #fef9c3; color: #ca8a04; }
.hours-badge--closed   { background: #fee2e2; color: #dc2626; }
.hours-badge--always   { background: rgba(245,166,35,0.15); color: var(--gold2); }

/* ===========================
   ABOUT
   =========================== */
.about-section { padding: 96px 0; background: var(--offwhite); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-text .section-tag { display: block; margin-bottom: 14px; }
.about-text .section-title { text-align: left; margin-bottom: 18px; }
.about-text p { color: var(--gray); margin-bottom: 16px; font-size: 0.97rem; }
.about-text .btn-primary { margin-top: 10px; }
.about-stats-box { background: var(--navy); border-radius: 20px; padding: 40px 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.about-stat { text-align: center; }
.about-stat-num { font-family: 'Syne', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--gold); display: inline-block; line-height: 1; margin-bottom: 6px; }
.about-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.07em; display: block; }

/* ===========================
   ✅ TESTIMONIALS
   =========================== */
.testimonials-section { padding: 96px 0; background: var(--navy); }
.testimonials-section .section-tag { background: rgba(245,166,35,0.15); color: var(--gold); }
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-desc { color: rgba(255,255,255,0.55); }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 32px;
  transition: background 0.25s, transform 0.25s;
}
.testimonial-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); }
.t-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 16px; }
.t-text { color: rgba(255,255,255,0.80); font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 14px; }
.t-avatar {
  width: 46px; height: 46px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 0.85rem;
  color: var(--navy);
  flex-shrink: 0;
}
.t-author strong { display: block; color: var(--white); font-size: 0.92rem; font-weight: 700; }
.t-author span { color: rgba(255,255,255,0.45); font-size: 0.8rem; }

/* ===========================
   GALLERY
   =========================== */
.gallery-section { padding: 96px 0; background: var(--offwhite); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; gap: 16px; }
.gallery-item--large { grid-row: span 2; }
.gallery-item--wide  { grid-column: span 2; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: var(--light); cursor: pointer; }
.gallery-item--large { aspect-ratio: unset; }
.gallery-item--wide  { aspect-ratio: 16/7; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.45s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,31,58,0.75) 0%, transparent 55%);
  display: flex; align-items: flex-end;
  padding: 18px 20px; opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--white); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  border: 3px solid var(--gold); border-radius: var(--radius);
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }

/* ===========================
   MAP
   =========================== */
.map-section { padding: 96px 0 0; background: var(--offwhite); }
.map-wrapper { overflow: hidden; box-shadow: 0 -4px 40px rgba(11,31,58,0.10); }
.map-wrapper iframe { display: block; width: 100%; height: 420px; border: 0; filter: grayscale(15%) contrast(1.02); }

/* ===========================
   CONTACT
   =========================== */
.contact-section { padding: 96px 0; background: linear-gradient(135deg, var(--navy) 0%, #163560 100%); }
.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 48px; }
.contact-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px 20px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
  cursor: default;
}
a.contact-card { cursor: pointer; }
a.contact-card:hover { background: rgba(255,255,255,0.13); transform: translateY(-4px); }
.contact-card--whatsapp:hover { background: rgba(37,211,102,0.18) !important; }
.contact-card-icon { font-size: 2rem; margin-bottom: 4px; }
.contact-card strong { color: var(--white); font-size: 0.95rem; font-weight: 700; font-family: 'Syne', sans-serif; }
.contact-card span { color: rgba(255,255,255,0.60); font-size: 0.83rem; }

.contact-form-simple { background: var(--white); border-radius: 20px; padding: 40px 44px; max-width: 680px; margin: 0 auto; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.contact-form-simple h3 { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 24px; text-align: center; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid #DDE3EE; border-radius: 10px;
  font-family: 'DM Sans', sans-serif; font-size: 0.93rem; color: var(--navy);
  background: #F9FAFB; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
  background: var(--white);
}
.form-group textarea { resize: vertical; }
#form-status { font-size: 0.85rem; margin-top: 12px; min-height: 20px; text-align: center; }

/* ===========================
   FOOTER
   =========================== */
.footer { background: #060E1C; padding: 60px 24px 0; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand p { margin-top: 14px; color: rgba(255,255,255,0.45); font-size: 0.88rem; line-height: 1.6; max-width: 280px; }
.footer-links strong { display: block; color: var(--white); font-weight: 600; margin-bottom: 18px; font-size: 0.95rem; }
.footer-links ul { list-style: none; }
.footer-links ul li { color: rgba(255,255,255,0.45); font-size: 0.88rem; margin-bottom: 10px; }
.footer-links ul li a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-links ul li a:hover { color: var(--gold); }
.footer-bottom { text-align: center; padding: 20px 0; }
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.82rem; }

/* ✅ Footer Social Icons */
.footer-socials { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.footer-social {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 800;
  text-decoration: none; color: var(--white);
  transition: transform 0.2s, opacity 0.2s;
}
.footer-social:hover { transform: scale(1.15); opacity: 0.9; }
.footer-social.facebook  { background: #1877F2; }
.footer-social.instagram { background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4); }
.footer-social.whatsapp  { background: #25D366; }
.footer-social.call      { background: #ff6b00; }

/* ===========================
   ✅ BACK TO TOP
   =========================== */
.back-to-top {
  position: fixed;
  bottom: 140px;
  right: 28px;
  width: 46px; height: 46px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
  z-index: 9998;
  box-shadow: 0 4px 16px rgba(245,166,35,0.4);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.2s;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: scale(1.1) translateY(-2px); }

/* ===========================
   FLOATING BUTTONS
   =========================== */
.float-buttons { position: fixed; bottom: 28px; right: 28px; display: flex; flex-direction: column; gap: 12px; z-index: 9999; }
.float-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 0 22px 0 16px; height: 52px;
  border-radius: 50px; text-decoration: none;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.9rem;
  color: var(--white);
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
  transition: transform 0.25s, box-shadow 0.25s;
  white-space: nowrap;
}
.float-btn:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 8px 28px rgba(0,0,0,0.30); }
.float-btn--whatsapp { background: #25D366; }
.float-btn--call     { background: #ff6b00; }
.float-btn span { font-size: 0.88rem; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .about-grid     { grid-template-columns: 1fr; gap: 40px; }
  .about-stats-box { max-width: 480px; }
  .footer-inner   { grid-template-columns: 1fr 1fr; }
  .footer-brand   { grid-column: 1 / -1; }
  .hours-grid     { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none; position: fixed; top: 0; left: 0; right: 0;
    height: 100vh; background: var(--navy);
    flex-direction: column; justify-content: center; align-items: center;
    gap: 32px; z-index: 998;
  }
  .nav-links.nav-open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .why-grid          { grid-template-columns: 1fr; }
  .contact-cards     { grid-template-columns: repeat(2, 1fr); }
  .hero-stats        { padding: 18px 20px; }
  .stat-card         { padding: 0 16px; }
  .stat-divider      { display: none; }
  .footer-inner      { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid      { grid-template-columns: 1fr 1fr; }
  .gallery-item--large { grid-row: span 1; aspect-ratio: 4/3; }
  .gallery-item--wide  { grid-column: span 2; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hours-grid        { grid-template-columns: repeat(2, 1fr); }
  .back-to-top       { bottom: 200px; }
}

@media (max-width: 500px) {
  .services-grid    { grid-template-columns: 1fr; }
  .about-stats-box  { grid-template-columns: 1fr 1fr; }
  .contact-form-simple { padding: 28px 20px; }
  .hero-headline    { font-size: 2.4rem; }
  .gallery-grid     { grid-template-columns: 1fr; }
  .gallery-item--large, .gallery-item--wide { grid-column: span 1; grid-row: span 1; aspect-ratio: 4/3; }
  .hours-grid       { grid-template-columns: 1fr; }
  .contact-cards    { grid-template-columns: 1fr 1fr; }
  .form-row         { grid-template-columns: 1fr; }
  .float-btn span   { display: none; }
  .float-btn        { width: 52px; padding: 0; justify-content: center; border-radius: 50%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
