/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-radius: 0;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 57, 47, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-ghost-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border-sky);
}

.btn-ghost-navy:hover {
  border-color: var(--sky-blue);
  color: var(--sky-blue);
}

.btn-sm {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 20px;
  border-radius: 5px;
}

.btn-lg { font-size: 16px; padding: 16px 32px; }

/* ═══ NAVBAR ═══ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: all var(--transition);
  display: flex;
  align-items: center;
}

.navbar.transparent {
  background: transparent;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

.navbar-logo {
  z-index: 1001;
  display: flex;
  align-items: center;
}


.navbar-logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0.08em;
  transition: opacity var(--transition);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar-links a {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.navbar-links a:hover { color: var(--white); }
.navbar.scrolled .navbar-links a { color: rgba(255, 255, 255, 0.7); }
.navbar.scrolled .navbar-links a:hover { color: var(--white); }

.navbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

.navbar-rating .star { color: var(--sky-blue); }

.navbar-cta .btn-nav-outline {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 24px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: transparent;
  border: 2px solid rgba(255,255,255,0.35);
  transition: all 0.3s;
}

.navbar-cta .btn-nav-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.navbar-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.navbar-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
  border-radius: 2px;
}

.navbar-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar-hamburger.active span:nth-child(2) { opacity: 0; }
.navbar-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu.active { opacity: 1; pointer-events: all; }

.mobile-menu a {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--navy);
  opacity: 0;
  transform: translateY(20px);
}

.mobile-menu a:hover { color: var(--accent); }

.mobile-menu .btn {
  margin-top: 20px;
  opacity: 0;
  transform: translateY(20px);
}

/* ═══ FORMS ═══ */
.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--sky-light);
  border-radius: 0;
  padding: 14px;
  font-size: 14px;
  color: var(--navy);
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

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

.form-group select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236B7280'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

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

.form-submit {
  width: 100%;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 0;
  padding: 16px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(196, 57, 47, 0.3);
}

.form-note {
  text-align: center;
  margin-top: 14px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--gray-light);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--sky-blue);
}

.form-checkbox label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0;
}

.form-checkbox label a {
  color: var(--sky-blue-text);
  text-decoration: underline;
}

/* ═══ CARDS ═══ */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-sky);
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(43, 168, 224, 0.12);
  border-color: rgba(43, 168, 224, 0.4);
}

.service-card-featured { border-top: 4px solid var(--sky-blue); }

.service-card-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.service-card-body { padding: 28px; }
.service-card-body .label { margin-bottom: 8px; display: block; }

.service-card-body h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card-body > p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-features { margin-bottom: 20px; }

.service-features li {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--gray);
  padding: 4px 0;
}

.service-features li::before {
  content: '\2713\0020';
  color: var(--sky-blue);
  font-weight: 600;
}

/* ═══ PILLS ═══ */
.about-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }

.about-pill {
  background: var(--sky-pale);
  border: 1px solid var(--border-sky);
  border-radius: 8px;
  padding: 8px 16px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: var(--navy);
}

.booking-pills { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }

.booking-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sky-pale);
  border: 1px solid var(--border-sky);
  border-radius: 8px;
  padding: 10px 16px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--navy);
  width: fit-content;
}

.booking-pill .check { color: var(--accent); font-weight: 600; }

.link-arrow {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--accent);
  transition: gap 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.link-arrow:hover { gap: 10px; }

/* ═══ FOOTER ═══ */
.footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .footer-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand > p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 280px;
}

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

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  transition: all 0.3s;
  font-size: 14px;
}

.footer-social a:hover {
  background: var(--white);
  color: var(--navy);
}

.footer h4 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  padding: 5px 0;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--white); }

.footer-contact p,
.footer-contact a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  line-height: 2;
  display: block;
  transition: color 0.3s;
}

.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  margin-top: 48px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}

.footer-bottom a:hover { color: var(--white); }

/* ═══ STICKY MOBILE CTA BAR ═══ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 56px;
  background: var(--accent);
  z-index: 2400;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
  align-items: center;
  justify-content: center;
  gap: 0;
}

.mobile-cta-bar.hidden { transform: translateY(100%); }

.mobile-cta-call,
.mobile-cta-quote {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s;
}

.mobile-cta-call {
  color: var(--white);
  background: transparent;
}

.mobile-cta-call:hover { background: rgba(255,255,255,0.1); }

.mobile-cta-quote {
  color: var(--navy);
  background: var(--white);
}

.mobile-cta-quote:hover { background: var(--sky-pale); }

@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 56px; }
  .cookie-bar { bottom: 56px; }
}

/* ═══ NAVBAR DROPDOWN ═══ */
.navbar-dropdown { position: relative; }

.navbar-dropdown-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.navbar-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.16);
  padding: 8px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1050;
}

.navbar-dropdown:hover .navbar-dropdown-menu,
.navbar-dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.navbar-dropdown-menu a {
  display: block;
  padding: 10px 24px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6) !important;
  transition: all 0.2s ease;
}

.navbar-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white) !important;
  padding-left: 28px;
}

.navbar-dropdown-menu a::after { display: none !important; }

.navbar-social {
  display: flex;
  gap: 8px;
  align-items: center;
}

.navbar-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.25s ease, background 0.25s ease;
}

.navbar-social a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}
