/* =========================================================
   NOEL REPAIRS — Light, calm, trustworthy
   ========================================================= */

:root {
  --blue-50:  #f6faff;
  --blue-100: #e8f2ff;
  --blue-200: #cfe4ff;
  --blue-400: #6aa8ff;
  --blue-600: #2b6fd6;
  --blue-700: #1f57ac;
  --orange:   #ff8a1e;
  --orange-d: #e8770f;
  --ink:      #16324a;
  --ink-soft: #4a6785;
  --line:     #d9e6f5;
  --white:    #ffffff;
  --shadow:   0 12px 30px rgba(43,111,214,0.10);
  --shadow-lg:0 24px 60px rgba(43,111,214,0.16);
  --radius:   18px;
  --radius-sm:12px;
  --font: 'Segoe UI', system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--blue-50);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.accent { color: var(--orange); }

/* ---------- DRIFT ---------- */
.drift { animation: drift 5s ease-in-out infinite alternate; }
@keyframes drift {
  from { transform: translateX(0); }
  to   { transform: translateX(-8px); }
}

/* ---------- BUTTONS ---------- */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: transform .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn-sm { padding: 9px 18px; font-size: 13.5px; }
.btn-primary {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  color: #fff;
  box-shadow: 0 10px 24px rgba(43,111,214,0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(43,111,214,0.38); }
.btn-primary:active { transform: scale(.97); }

.btn-ghost {
  background: var(--white);
  color: var(--blue-700);
  border: 2px solid var(--blue-200);
}
.btn-ghost:hover { border-color: var(--blue-400); transform: translateY(-2px); }
.btn-block { width: 100%; }

.ripple::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  transform: scale(0);
  pointer-events: none;
}
.ripple.rippling::after {
  left: var(--rx, 50%);
  top:  var(--ry, 50%);
  width: 10px; height: 10px;
  margin-left: -5px; margin-top: -5px;
  animation: ripple .6s ease-out forwards;
}
@keyframes ripple {
  to { transform: scale(28); opacity: 0; }
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: #f6faff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 18px rgba(43,111,214,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 16px;
  overflow: visible;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-size: 22px; font-weight: 900; color: var(--blue-700); letter-spacing: -0.5px; }
.brand-sub  { font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--orange); }

.logo-wrap { display: flex; align-items: center; cursor: pointer; user-select: none; }
.brand-logo {
  width: 52px; height: 52px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  transition: transform .4s ease;
}
.brand-logo:hover { transform: rotate(-6deg) scale(1.06); }

/* =========================================================
   NAV + DROPDOWN (always visible)
   ========================================================= */
.nav {
  display: flex;
  gap: 2px;
  align-items: center;
  position: relative;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 9px 10px;
  border-radius: 10px;
  transition: background .2s ease, color .2s ease;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
}
.nav-link:hover { background: var(--blue-100); color: var(--blue-700); }
.caret { font-size: 11px; margin-left: 5px; transition: transform .25s ease; }

.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown.open .caret,
.dropdown:hover .caret { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 6px;
  min-width: 280px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(43,111,214,0.25);
  border: 1px solid var(--line);
  padding: 8px;
  display: none;
  flex-direction: column;
  z-index: 99999;
}
.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu { display: flex; }

.dropdown-menu a {
  display: flex;
  flex-direction: column;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  transition: background .2s ease;
  line-height: 1.35;
}
.dropdown-menu a small {
  font-size: 11px;
  color: var(--ink-soft);
  font-weight: 500;
  margin-top: 2px;
}
.dropdown-menu a:hover { background: var(--blue-100); }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; padding: 160px 0 100px; overflow: hidden; }
.hero-blob {
  position: absolute; border-radius: 50%;
  filter: blur(70px); z-index: 0;
  animation: blobMove 14s ease-in-out infinite alternate;
}
.blob-1 { width: 480px; height: 480px; background: rgba(106,168,255,0.35); top: -140px; left: -100px; }
.blob-2 { width: 420px; height: 420px; background: rgba(255,138,30,0.18); bottom: -140px; right: -80px; animation-delay: -5s; }
@keyframes blobMove {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(30px,-20px) scale(1.12); }
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 1fr;
  align-items: center; gap: 60px;
}
.badge {
  display: inline-block;
  background: var(--white);
  color: var(--blue-700);
  border: 1px solid var(--blue-200);
  padding: 8px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 700;
  margin-bottom: 22px;
  box-shadow: var(--shadow);
}
.hero h1 {
  font-size: clamp(2rem, 4.6vw, 3.3rem);
  line-height: 1.15; letter-spacing: -1px;
  font-weight: 900; color: var(--ink);
  margin-bottom: 20px;
}
.lead { font-size: 1.08rem; color: var(--ink-soft); max-width: 520px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-trust { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-trust div { display: flex; flex-direction: column; }
.hero-trust strong { font-size: 1.25rem; color: var(--blue-700); font-weight: 900; }
.hero-trust span { font-size: 13px; color: var(--ink-soft); }

.hero-art { position: relative; display: flex; justify-content: center; }
.hero-photo {
  width: 100%; max-width: 440px;
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-14px); }
}
.hero-card {
  position: absolute; bottom: 22px; left: -10px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: var(--ink-soft);
}
.hero-card strong { color: var(--ink); display: block; font-size: 14px; }
.hero-card .dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: #34c77b;
  box-shadow: 0 0 0 4px rgba(52,199,123,0.18);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(52,199,123,0.18); }
  50%     { box-shadow: 0 0 0 10px rgba(52,199,123,0.05); }
}
.floating { animation: floaty 5s ease-in-out infinite reverse; }

/* =========================================================
   SECTIONS
   ========================================================= */
.section { padding: 100px 0; position: relative; scroll-margin-top: 90px; }
.section-soft { background: linear-gradient(180deg, var(--blue-50) 0%, var(--blue-100) 100%); }
.section-title {
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  font-weight: 900; letter-spacing: -0.8px;
  color: var(--ink); margin-bottom: 14px;
  text-align: center;
}
.section-sub {
  text-align: center; color: var(--ink-soft);
  max-width: 620px; margin: 0 auto 56px;
  font-size: 1.02rem;
}

/* =========================================================
   ISSUE CARDS
   ========================================================= */
.issue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}
.issue-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 22px;
  box-shadow: var(--shadow);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  display: flex; flex-direction: column; gap: 18px;
}
.issue-card:hover {
  transform: translateY(-8px);
  border-color: var(--blue-200);
  box-shadow: var(--shadow-lg);
}
.issue-body { flex: 1; }
.issue-icon {
  font-size: 32px;
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-100);
  border-radius: 16px;
  margin-bottom: 16px;
  transition: transform .4s ease;
}
.issue-card:hover .issue-icon { transform: rotate(-8deg) scale(1.08); }
.issue-card h3 { font-size: 1.1rem; color: var(--ink); margin-bottom: 6px; }
.issue-card p  { color: var(--ink-soft); font-size: 0.93rem; }

.issue-actions {
  display: flex;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.issue-actions .btn { flex: 1; }

/* =========================================================
   ABOUT / TRUST
   ========================================================= */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-photo img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
}
.image-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  justify-content: center;
}
.image-actions .btn { flex: 1; max-width: 140px; }

.about-lead { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 30px; }
.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about-point { display: flex; gap: 12px; }
.tick {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--blue-600); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900;
  margin-top: 2px;
}
.about-point h4 { font-size: 1rem; color: var(--ink); margin-bottom: 4px; }
.about-point p  { color: var(--ink-soft); font-size: 0.9rem; }

/* =========================================================
   HELP
   ========================================================= */
.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.help-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--blue-400);
  transition: transform .3s ease, box-shadow .3s ease;
}
.help-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.help-icon { font-size: 28px; margin-bottom: 12px; }
.help-card h3 { font-size: 1.05rem; color: var(--ink); margin-bottom: 8px; }
.help-card p  { color: var(--ink-soft); font-size: 0.94rem; }

/* =========================================================
   BOOKING
   ========================================================= */
.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px; align-items: start;
}
.booking-copy .section-title { text-align: left; }
.booking-copy .section-sub { text-align: left; margin-left: 0; }
.booking-points { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.booking-points li { color: var(--ink-soft); font-size: 1rem; }

.booking-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.field { margin-bottom: 18px; display: flex; flex-direction: column; }
.field label {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue-700);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  background: var(--blue-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--ink);
  font-size: 15px;
  font-family: inherit;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  width: 100%;
}
.field textarea { resize: vertical; margin-top: 8px; font-size: 14px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--blue-400);
  box-shadow: 0 0 0 4px rgba(106,168,255,0.18);
}
.field input::placeholder,
.field textarea::placeholder { color: #9db3ca; }
.field select { cursor: pointer; }
.form-note { margin-top: 14px; font-size: 12px; color: var(--ink-soft); text-align: center; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--blue-100);
  border-top: 1px solid var(--line);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand p { color: var(--ink-soft); margin-top: 14px; max-width: 340px; font-size: .95rem; }
.footer-col h4 {
  color: var(--blue-700);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.footer-col p { margin-bottom: 8px; }
.footer-col a { color: var(--ink-soft); transition: color .2s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 20px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
}

/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 62px; height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 200;
  box-shadow: 0 12px 30px rgba(37,211,102,0.45);
  transition: transform .3s ease, box-shadow .3s ease;
}
.whatsapp-float:hover { transform: scale(1.1) rotate(-6deg); box-shadow: 0 16px 40px rgba(37,211,102,0.65); }
.whatsapp-float svg { width: 34px; height: 34px; }
.whatsapp-pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: pulse 2s ease-out infinite;
  z-index: -1;
}
@keyframes pulse {
  0%   { transform: scale(1);   opacity: .7; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* =========================================================
   POPUP + SEND MODAL
   ========================================================= */
.popup-overlay,
.send-overlay {
  position: fixed; inset: 0;
  background: rgba(22,50,74,0.45);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  z-index: 300;
  opacity: 0; pointer-events: none;
  transition: opacity .4s ease;
}
.popup-overlay.show,
.send-overlay.show { opacity: 1; pointer-events: auto; }

.popup-card,
.send-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px 30px;
  max-width: 440px; width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(20px) scale(.96);
  transition: transform .4s cubic-bezier(.2,.9,.3,1.4);
}
.popup-overlay.show .popup-card,
.send-overlay.show .send-card { transform: translateY(0) scale(1); }

.popup-close {
  position: absolute; top: 12px; right: 16px;
  font-size: 26px; color: var(--ink-soft); line-height: 1;
  transition: color .2s, transform .2s;
}
.popup-close:hover { color: var(--orange); transform: rotate(90deg); }
.popup-icon { font-size: 40px; margin-bottom: 10px; animation: floaty 3s ease-in-out infinite; }
.popup-card h3,
.send-card h3 { font-size: 1.4rem; color: var(--ink); margin-bottom: 10px; }
.popup-card p,
.send-card p  { color: var(--ink-soft); margin-bottom: 22px; font-size: .98rem; }
.popup-note { margin-top: 14px !important; font-size: 12px !important; color: var(--ink-soft); }
.send-sub { margin-bottom: 18px !important; }

.send-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 6px;
}
.send-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.send-btn:hover { transform: translateY(-2px); }
.send-btn.wa  { background: #25D366; color: #fff; box-shadow: 0 8px 20px rgba(37,211,102,0.35); }
.send-btn.em  { background: var(--blue-600); color: #fff; box-shadow: 0 8px 20px rgba(43,111,214,0.35); }
.send-btn.sms { background: var(--orange); color: #fff; box-shadow: 0 8px 20px rgba(255,138,30,0.35); }

/* =========================================================
   STAR BURST
   ========================================================= */
.star-burst {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99999;
  overflow: hidden;
}
.star-burst .star {
  position: absolute;
  font-size: 24px;
  color: #ffb300;
  text-shadow: 0 0 12px rgba(255,179,0,0.7);
  animation: starFly 1.6s ease-out forwards;
  will-change: transform, opacity;
}
@keyframes starFly {
  0%   { transform: translate(0, 0) scale(0.4) rotate(0deg);   opacity: 0; }
  15%  { opacity: 1; }
  100% { transform: translate(var(--dx), var(--dy)) scale(1.4) rotate(var(--rot)); opacity: 0; }
}

/* =========================================================
   FADE-UP
   ========================================================= */
.fade-up { opacity: 0; transform: translateY(30px); animation: fadeUp .9s ease forwards; }
.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .3s; }
.delay-3 { animation-delay: .45s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  /* Header stays, but stacked smaller */
  .header-inner { height: 68px; gap: 8px; }
  .brand-name { font-size: 18px; }
  .brand-sub  { font-size: 9px; letter-spacing: 3px; }
  .nav { gap: 0; }
  .nav-link { font-size: 13px; padding: 8px 8px; }
  .caret { margin-left: 3px; }
  .brand-logo { width: 42px; height: 42px; }

  .hero { padding: 120px 0 70px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-actions, .hero-trust { justify-content: center; }
  .lead { margin-left: auto; margin-right: auto; }
  .hero-card { left: 10px; right: 10px; }
  .about-wrap { grid-template-columns: 1fr; }
  .about-points { grid-template-columns: 1fr; }
  .booking-wrap { grid-template-columns: 1fr; gap: 40px; }
  .booking-copy .section-title,
  .booking-copy .section-sub { text-align: center; margin-left: auto; margin-right: auto; }
  .booking-points { align-items: center; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand p { margin-left: auto; margin-right: auto; }
}
@media (max-width: 500px) {
  .section { padding: 70px 0; }
  .booking-form { padding: 24px; }
  .brand-logo { width: 40px; height: 40px; }
  .brand-name { font-size: 16px; }
  .brand-sub  { font-size: 8px; }
  .nav-link { font-size: 12px; padding: 8px 6px; }
  .whatsapp-float { width: 56px; height: 56px; bottom: 18px; right: 18px; }
  .issue-actions { flex-direction: column; }
}