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

:root {
  --navy:   #0096c7;
  --navy-dark: #0077b6;
  --red:    #c8222b;
  --red-dark: #a01920;
  --white:  #ffffff;
  --off-white: #f5f7fc;
  --text:   #1a1a2e;
  --muted:  #5a6480;
  --border: #dde3f0;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(27,46,107,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }

.btn-nav {
  background: var(--red);
  color: var(--white);
  padding: 10px 22px;
  font-size: 0.9rem;
}
.btn-nav:hover { background: var(--red-dark); }

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

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #0077b6;
  box-shadow: 0 2px 16px rgba(0,0,0,0.20);
  transition: background 0.3s;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 220px;
}

.logo-img {
  height: 210px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

/* ── Language toggle ── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  padding: 5px 12px;
  cursor: pointer;
  transition: background 0.2s;
}
.lang-toggle:hover { background: rgba(255,255,255,0.15); }

.lang-opt {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
  font-family: inherit;
}
.lang-opt.active { color: var(--white); }

.lang-divider {
  color: rgba(255,255,255,0.25);
  font-size: 0.75rem;
  font-family: inherit;
}

.mobile-lang {
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.lang-toggle-mobile { width: 100%; justify-content: center; }

.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: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 24px 20px;
  gap: 16px;
}
.mobile-menu a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 1rem;
}
.mobile-menu.open { display: flex; }

/* ── Section shared ── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; color: var(--navy); }
.section-sub { margin-top: 12px; color: var(--muted); font-size: 1.05rem; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0077b6 0%, #0096c7 50%, #48cae4 100%);
  padding-top: 220px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 80px 24px;
}

.hero-eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.hero-content h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 600;
  font-style: italic;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
}
.badge-icon { color: #5de85d; font-size: 1rem; }

/* ── Services ── */
.services {
  padding: 96px 0;
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(27,46,107,0.14); }

.service-icon { font-size: 2.2rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }

/* ── Why Us ── */
.why-us {
  padding: 96px 0;
  background: #0096c7;
  color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-text .section-eyebrow { color: #ff8c8c; }
.why-text h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); font-weight: 800; color: var(--white); margin-bottom: 28px; }

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: rgba(255,255,255,0.88);
}
.check {
  color: #5de85d;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stat {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.12);
}
.stat-number {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* ── Gallery ── */
.gallery {
  padding: 96px 0;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 20px;
}

.gallery-item { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

.gallery-photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.gallery-item:hover .gallery-photo { transform: scale(1.02); }

.gallery-caption {
  padding: 12px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--off-white);
}

.gallery-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
}

/* ── Testimonials ── */
.testimonials {
  padding: 96px 0;
  background: var(--off-white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.stars { color: #f5a623; font-size: 1.1rem; margin-bottom: 14px; }
.review-card p { color: var(--text); font-size: 0.97rem; line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.reviewer { font-size: 0.88rem; font-weight: 600; color: var(--muted); }

/* ── Contact ── */
.contact {
  padding: 96px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.contact-info .section-eyebrow { color: var(--red); }
.contact-info h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.contact-info > p { color: var(--muted); margin-bottom: 36px; line-height: 1.7; }

.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-icon { font-size: 1.4rem; margin-top: 1px; }
.contact-item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-item strong { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.contact-item a, .contact-item span { font-size: 1rem; font-weight: 600; color: var(--navy); }
.contact-item a:hover { color: var(--red); }

/* ── Form ── */
.contact-form {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 40px 36px;
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); }

.form-section-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 2px solid var(--border);
  padding-bottom: 6px;
  margin: 20px 0 14px;
}
.form-section-title:first-child { margin-top: 0; }

.form-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 4px;
}

.check-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--text);
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: var(--white);
  transition: border-color 0.2s, background 0.2s;
}
.check-option:hover { border-color: var(--navy); background: #f0f4ff; }
.check-option input[type="checkbox"] { accent-color: var(--navy); width: 16px; height: 16px; flex-shrink: 0; }

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 10px;
}

.form-success {
  margin-top: 16px;
  padding: 14px 18px;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: 8px;
  color: #2e7d32;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, #c8222b 0%, #a01920 100%);
  padding: 64px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}
.cta-text p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
}
.cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.btn-cta-primary {
  background: var(--white);
  color: var(--red);
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1rem;
  border: 2px solid var(--white);
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-cta-primary:hover { background: var(--off-white); transform: translateY(-2px); }
.btn-cta-outline {
  background: transparent;
  color: var(--white);
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.6);
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-cta-outline:hover { background: rgba(255,255,255,0.1); }

/* ── Sticky mobile CTA bar ── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.mobile-cta-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--navy-dark);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px;
  text-align: center;
}
.mobile-cta-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px;
  text-align: center;
}

/* Only show sticky bar on mobile */
@media (min-width: 769px) {
  .mobile-cta-bar { display: none !important; }
}
@media (max-width: 768px) {
  .mobile-cta-bar { display: grid; }
  /* Push WhatsApp button above the sticky bar */
  .whatsapp-float { bottom: 80px; }
  /* Add padding so footer isn't hidden behind sticky bar */
  .footer { padding-bottom: 80px; }
  /* CTA banner stacks on mobile */
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { width: 100%; flex-direction: column; }
  .btn-cta-primary, .btn-cta-outline { width: 100%; text-align: center; justify-content: center; display: flex; }
}

/* ── Floating WhatsApp ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #25d366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.65);
}

/* ── Footer ── */
.footer {
  background: var(--navy-dark);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
}
.footer-tagline {
  color: rgba(255,255,255,0.6);
  font-style: italic;
  font-size: 0.9rem;
}

.footer-copy {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

/* ── Tablet (max 768px) ── */
@media (max-width: 768px) {

  /* Nav — shrink logo for mobile */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-inner { height: 80px; }
  .logo-img  { height: 68px; }
  .hero      { padding-top: 80px; }

  /* Hero */
  .hero-content { padding: 48px 20px 60px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-badges { gap: 12px; }

  /* Sections */
  .services    { padding: 56px 0; }
  .why-us      { padding: 56px 0; }
  .gallery     { padding: 56px 0; }
  .testimonials{ padding: 56px 0; }
  .contact     { padding: 56px 0; }
  .section-header { margin-bottom: 36px; }

  /* Services grid — 1 column on tablet */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card  { padding: 24px 20px; }

  /* Why Us */
  .why-grid  { grid-template-columns: 1fr; gap: 40px; }
  .why-stats { grid-template-columns: 1fr 1fr; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; gap: 16px; }
  .gallery-photo { height: 220px; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row     { grid-template-columns: 1fr; }
  .form-checks  { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 16px; }

  /* Footer */
  .footer-inner  { flex-direction: column; text-align: center; }
  .footer-brand  { flex-direction: column; align-items: center; gap: 8px; }
  .footer-links  { justify-content: center; }

  /* WhatsApp button — smaller on mobile */
  .whatsapp-float { width: 52px; height: 52px; bottom: 20px; right: 16px; }
}

/* ── STR teaser banner ── */
.str-teaser {
  background: #003f5c;
  padding: 32px 0;
  border-bottom: 3px solid var(--red);
}
.str-teaser-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.str-teaser-icon { font-size: 2.4rem; flex-shrink: 0; }
.str-teaser-text { flex: 1; min-width: 200px; }
.str-teaser-text h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.str-teaser-text p  { font-size: 0.92rem; color: rgba(255,255,255,0.65); line-height: 1.55; }
.btn-teaser {
  background: var(--red);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}
.btn-teaser:hover { background: var(--red-dark); transform: translateY(-1px); }

@media (max-width: 768px) {
  .str-teaser-inner { flex-direction: column; text-align: center; }
  .btn-teaser { width: 100%; text-align: center; justify-content: center; display: flex; }
}

/* ── Subscribe section ── */
.subscribe-section {
  padding: 72px 0;
  background: linear-gradient(135deg, #0077b6 0%, #0096c7 60%, #48cae4 100%);
  position: relative;
  overflow: hidden;
}
.subscribe-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.sub-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.sub-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,0.3);
}
.sub-text h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.25;
}
.sub-text p {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  line-height: 1.7;
}
.sub-text p strong { color: var(--white); }

.sub-form { position: relative; }
.sub-fields {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  align-items: start;
}
.sub-fields input {
  padding: 13px 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  font-size: 1rem; /* 1rem prevents iOS zoom on focus */
  font-family: inherit;
  color: var(--white);
  -webkit-text-fill-color: var(--white);
  background: rgba(255,255,255,0.12);
  -webkit-appearance: none;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.sub-fields input::placeholder { color: rgba(255,255,255,0.55); }
.sub-fields input:focus { border-color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.18); }
.btn-sub-submit {
  background: var(--red);
  color: var(--white);
  padding: 13px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}
.btn-sub-submit:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-sub-submit:disabled { opacity: 0.6; cursor: default; transform: none; }
.sub-note {
  color: rgba(255,255,255,0.45);
  font-size: 0.78rem;
  margin-top: 10px;
}
.sub-success {
  margin-top: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 8px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
}

/* ── Subscribe popup ── */
.sub-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0,0,0,0.55);
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(3px);
}
.sub-popup-overlay.open { display: flex; animation: fadeIn 0.25s ease; align-items: flex-start; padding-top: 40px; }
@media (min-width: 600px) { .sub-popup-overlay.open { align-items: center; padding-top: 20px; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.sub-popup {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 36px 32px;
  max-width: 440px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  animation: slideUp 0.28s ease;
}
@keyframes slideUp { from { transform: translateY(24px); opacity:0; } to { transform: translateY(0); opacity:1; } }

.sub-popup-close {
  position: absolute;
  top: 12px; right: 14px;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--muted);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.sub-popup-close:hover { color: var(--text); background: var(--off-white); }

.sub-popup-tag {
  display: inline-block;
  background: #fff0f0;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid rgba(200,34,43,0.2);
}
.sub-popup-icon { font-size: 2.4rem; margin-bottom: 10px; }
.sub-popup h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.25;
}
.sub-popup > p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 22px;
  line-height: 1.65;
}
.sub-popup-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sub-popup-form input {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 1rem; /* 1rem prevents iOS zoom on focus */
  font-family: inherit;
  color: var(--text);
  background: var(--off-white);
  -webkit-appearance: none;
  outline: none;
  transition: border-color 0.2s;
}
.sub-popup-form input:focus { border-color: var(--navy); background: var(--white); }
.btn-sub-popup-submit {
  width: 100%;
  justify-content: center;
  background: var(--red);
  color: var(--white);
  padding: 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 4px;
}
.btn-sub-popup-submit:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-sub-popup-submit:disabled { opacity: 0.6; cursor: default; transform: none; }
.sub-popup-note {
  color: var(--muted);
  font-size: 0.76rem;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .sub-inner { grid-template-columns: 1fr; gap: 28px; }
  .sub-fields {
    grid-template-columns: 1fr;
  }
  .btn-sub-submit { width: 100%; }
  .subscribe-section { padding: 56px 0; }
}

/* ── Mobile (max 480px) ── */
@media (max-width: 480px) {
  .sub-popup { padding: 32px 20px 24px; }
  .sub-popup h3 { font-size: 1.25rem; }

  /* Nav */
  .nav-inner { height: 70px; }
  .logo-img  { height: 58px; }
  .hero      { padding-top: 70px; }

  /* Container padding */
  .container { padding: 0 16px; }

  /* Hero */
  .hero-content { padding: 36px 16px 52px; }
  .hero-sub { font-size: 1rem; }
  .badge { font-size: 0.8rem; }

  /* Stats */
  .why-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat { padding: 18px 12px; }
  .stat-number { font-size: 1.8rem; }

  /* Gallery */
  .gallery-photo { height: 200px; }

  /* Form */
  .contact-form { padding: 20px 14px; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 1rem; padding: 12px; }
  .btn { padding: 14px 20px; font-size: 0.9rem; }

  /* Footer */
  .footer-logo { height: 60px; }
  .footer-copy { font-size: 0.76rem; }
}
