/* ── VARIABLES ── */
:root {
  --red: #e8001d;
  --red-dark: #b5001a;
  --red-glow: rgba(232, 0, 29, 0.25);
  --black: #0a0a0a;
  --black-2: #111111;
  --black-3: #1a1a1a;
  --black-4: #242424;
  --white: #ffffff;
  --grey: #a0a0a0;
  --grey-light: #d0d0d0;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --nav-h: 70px;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  --shadow-red: 0 0 30px rgba(232, 0, 29, 0.3);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

.hidden { display: none !important; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black-2); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232, 0, 29, 0.4);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232, 0, 29, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.btn-nav {
  background: var(--red);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.btn-nav:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  border-radius: 4px;
}

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

.nav-link {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grey-light);
  padding: 8px 14px;
  border-radius: 6px;
  transition: color var(--transition);
  letter-spacing: 0.03em;
}
.nav-link:hover { color: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(10, 0, 0, 0.65) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  max-width: 860px;
  animation: fadeUp 1s ease both;
}


.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.text-red { color: var(--red); }

.hero-sub {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--grey-light);
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.hero-stat strong {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-head);
  font-weight: 600;
}

.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.2);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.hero-social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.hero-social-icon svg { width: 22px; height: 22px; }
.hero-social-icon:hover { transform: translateY(-3px) scale(1.1); }

.hero-wa {
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #25D366;
}
.hero-wa:hover {
  background: #25D366;
  border-color: #25D366;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
}

.hero-ig {
  background: rgba(225, 48, 108, 0.12);
  border: 1px solid rgba(225, 48, 108, 0.35);
  color: #E1306C;
}
.hero-ig:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(225, 48, 108, 0.45);
}
.hero-google {
  background: rgba(66, 133, 244, 0.1);
  border: 1px solid rgba(66, 133, 244, 0.3);
}
.hero-google:hover {
  background: rgba(66, 133, 244, 0.2);
  border-color: #4285F4;
  box-shadow: 0 4px 16px rgba(66, 133, 244, 0.35);
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255, 255, 255, 0.5);
  animation: bounce 2s infinite;
}
.scroll-cue svg { width: 36px; height: 36px; }

/* ── SECTION COMMON ── */
.section { padding: 96px 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}

.section-header p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--grey);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ── EVENTS SECTION ── */
.events-section { background: var(--black-2); }

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 20px;
}

.event-card {
  background: var(--black-3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}

.event-card:hover {
  border-color: var(--red);
  background: var(--black-4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-red);
}

.event-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  line-height: 1;
}

.event-card h3 {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--grey-light);
}

/* ── SERVICES SECTION ── */
.services-section { background: var(--black); }

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

.service-card {
  position: relative;
  background: var(--black-3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  border-color: rgba(232, 0, 29, 0.3);
  background: var(--black-4);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-num {
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(232, 0, 29, 0.12);
  line-height: 1;
  pointer-events: none;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  line-height: 1;
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.6;
}

/* ── GALLERY ── */
.gallery-section { background: var(--black-2); }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item--tall {
  grid-row: span 2;
  aspect-ratio: unset;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  background: var(--red);
  border-radius: 50px;
}

/* ── WHY US ── */
.why-section { background: var(--black); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.why-card {
  background: var(--black-3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
}

.why-card:hover {
  border-color: rgba(232, 0, 29, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-red);
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1;
}

.why-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.7;
}

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--black-2); }

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

.testimonial-card {
  background: var(--black-3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(232, 0, 29, 0.3);
  transform: translateY(-3px);
}

.stars { color: #f4c430; font-size: 1.1rem; letter-spacing: 2px; }

.testimonial-card p {
  font-size: 0.92rem;
  color: var(--grey-light);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.9rem;
  color: var(--white);
}
.testimonial-author span {
  font-size: 0.78rem;
  color: var(--grey);
}

/* ── CONTACT ── */
.contact-section { background: var(--black); }

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--grey-light);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 12px;
  transition: all var(--transition);
}
.contact-link svg { width: 22px; height: 22px; flex-shrink: 0; }
.contact-link:hover { color: var(--white); border-color: var(--red); background: rgba(232, 0, 29, 0.08); }
.icon-wa { color: #25D366; }
.icon-ig { color: #E1306C; }

.contact-note {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.6;
}

/* Form */
.contact-form {
  background: var(--black-3);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--black-4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a0a0a0' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(160, 160, 160, 0.5); }

.form-group textarea { resize: vertical; min-height: 110px; }

/* Date input color fix */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.6);
  cursor: pointer;
}

/* ── SERVICE PILLS ── */
.label-hint {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(160, 160, 160, 0.6);
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 4px 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  background: var(--black-4);
  color: var(--grey);
  font-family: var(--font-body);
  font-size: 0.83rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  white-space: nowrap;
}

.pill:hover {
  border-color: rgba(232, 0, 29, 0.5);
  color: var(--white);
  background: rgba(232, 0, 29, 0.08);
}

.pill.selected {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: 0 0 12px rgba(232, 0, 29, 0.35);
}

/* ── FOOTER ── */
.footer {
  background: var(--black-2);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px; height: 38px;
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  transition: all var(--transition);
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.footer-google-review:hover { background: rgba(66,133,244,0.15) !important; border-color: #4285F4 !important; }

.footer-map {
  margin-bottom: 28px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
}
.footer-map iframe { height: 220px; }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li,
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--grey);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(160,160,160,0.5); }

/* ── FLOATING WA BUTTON ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
}
.wa-float svg { width: 30px; height: 30px; color: var(--white); }
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── RESPONSIVE ── */

/* Tablet */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(16px);
    padding: 20px 24px 32px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .nav-links.open .nav-link {
    padding: 13px 16px;
    font-size: 1rem;
    border-radius: 8px;
  }
  .nav-links.open .btn-nav {
    margin-top: 8px;
    text-align: center;
    justify-content: center;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item--tall { aspect-ratio: 4/3; grid-row: span 1; }
}

/* Mobile */
@media (max-width: 600px) {
  .section { padding: 48px 0; }

  .section-header { margin-bottom: 32px; }

  .hero-logo { width: 100px; height: 100px; }
  .hero-headline { font-size: 1.8rem; }

  /* Events: 4-per-row compact grid */
  .events-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  .event-card { padding: 14px 6px; border-radius: 8px; }
  .event-icon { font-size: 1.4rem; margin-bottom: 6px; }
  .event-card h3 { font-size: 0.65rem; }

  /* Services: 2-per-row compact cards */
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .service-card { padding: 20px 14px; border-radius: 8px; }
  .service-icon { font-size: 1.5rem; margin-bottom: 8px; }
  .service-card h3 { font-size: 0.85rem; margin-bottom: 6px; }
  .service-card p { font-size: 0.78rem; }
  .service-num { font-size: 1.8rem; top: 10px; right: 10px; }

  .form-row { grid-template-columns: 1fr; }

  .contact-form { padding: 24px 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }

  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Pills wrap tightly on small screens */
  .service-pills { gap: 7px; }
  .pill { font-size: 0.78rem; padding: 6px 12px; }

  /* Floating WA button — smaller on mobile */
  .wa-float { width: 44px; height: 44px; bottom: 18px; right: 18px; }
  .wa-float svg { width: 22px; height: 22px; }
}
