/* ==========================================================
   ÁVILA DETAILING — styles.css
   Dark Luxury · Premium Automotive · Nashville, TN
   Fonts: Sora (titles/body) · Syncopate (display accents)
========================================================== */

/* ── Variables ─────────────────────────────────────────── */
:root {
  --cyan:        #2EC4FF;
  --teal:        #1AEBDE;
  --teal-dim:    #15CEC4;
  --cyan-dim:    #0A98EF;
  --cyan-soft:   #71DEFF;
  --teal-soft:   #74F7F0;
  --cyan-ghost:  #BDF1FF;
  --teal-ghost:  #A1FFFA;

  --bg-dark:     #11191F;
  --bg-dark-2:   #1C2B36;
  --bg-dark-3:   #253640;
  --bg-dark-4:   #314653;
  --bg-light:    #F2F2F2;
  --bg-light-2:  #E7E7E7;
  --bg-light-3:  #D3D3D3;

  --text-primary:   #F2F2F2;
  --text-secondary: rgba(242,242,242,0.65);
  --text-muted:     rgba(242,242,242,0.35);

  --accent-cyan: var(--cyan);
  --accent-teal: var(--teal);

  --font-display: 'Syncopate', sans-serif;
  --font-body:    'Sora', sans-serif;

  --nav-h: 76px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --glow-cyan: 0 0 40px rgba(46,196,255,0.18);
  --glow-teal: 0 0 40px rgba(26,235,222,0.18);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea {
  font-family: var(--font-body);
  font-size: 0.9375rem;
}

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

/* ── Typography ─────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(105deg, var(--cyan) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.body-large { font-size: 1.125rem; line-height: 1.75; color: var(--text-secondary); margin-bottom: 1rem; }
.body-text  { font-size: 0.9375rem; line-height: 1.75; color: var(--text-secondary); margin-bottom: 1.5rem; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  padding: 12px 24px;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(105deg, var(--cyan) 0%, var(--teal) 100%);
  color: var(--bg-dark);
  box-shadow: 0 4px 24px rgba(46,196,255,0.22);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(46,196,255,0.38);
}
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(242,242,242,0.2);
}
.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: var(--glow-cyan);
}
.btn-lg  { padding: 15px 32px; font-size: 0.9375rem; }
.btn-sm  { padding: 9px 18px; font-size: 0.8125rem; }

/* ── Section Helpers ─────────────────────────────────────── */
.section { padding: 120px 0; }
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 20px;
}
.label-line {
  flex: 1;
  max-width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan));
}
.label-line:last-child {
  background: linear-gradient(90deg, var(--accent-cyan), transparent);
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-label { justify-content: center; }
.section-title {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title.centered { text-align: center; }
.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
}

/* ── Scroll Reveal ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(17,25,31,0.92);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(242,242,242,0.06);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  display: flex;
  align-items: baseline;
  gap: 0;
}
.logo-accent { color: var(--accent-cyan); }
.logo-dot    { color: var(--accent-teal); margin: 0 2px; }
.logo-sub    { font-size: 0.65rem; font-weight: 400; color: var(--text-muted); letter-spacing: 0.14em; text-transform: uppercase; margin-left: 6px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent-cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: none; }
@media (min-width: 960px) { .nav-cta { display: inline-flex; } }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }
@media (min-width: 960px) { .hamburger { display: none; } }

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.mobile-link {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--accent-cyan); }
.mobile-cta { margin-top: 16px; }
@media (min-width: 960px) { .mobile-overlay { display: none !important; } }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  /* REPLACE: add background-image: url('assets/hero-car.jpg');
     background-size: cover; background-position: center; */
  background:
    radial-gradient(ellipse 70% 70% at 70% 50%, rgba(46,196,255,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 30% 80%, rgba(26,235,222,0.05) 0%, transparent 50%),
    linear-gradient(180deg, #0d151a 0%, var(--bg-dark) 60%, #0a1318 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17,25,31,0.9) 0%, rgba(17,25,31,0.5) 60%, transparent 100%);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46,196,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,196,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px 120px;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border: 1px solid rgba(46,196,255,0.2);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 32px;
  background: rgba(46,196,255,0.04);
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 8px var(--accent-cyan);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
.hero-headline {
  font-family: var(--font-body);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.hero-headline .line { display: block; }
.hero-subheadline {
  font-size: clamp(1rem, 2vw, 1.175rem);
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 540px;
}
.br-desktop { display: none; }
@media (min-width: 768px) { .br-desktop { display: block; } }
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: var(--font-body);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text-primary);
}
.stat-plus { color: var(--accent-cyan); }
.stat-label { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.08em; margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: rgba(242,242,242,0.1); }
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--accent-cyan), transparent);
  animation: scroll-anim 1.8s ease-in-out infinite;
}
@keyframes scroll-anim {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ============================================================
   ABOUT
============================================================ */
.about { background: var(--bg-dark); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}
.about-visual { position: relative; }
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid rgba(46,196,255,0.12);
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-dark-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.8125rem;
}
.about-img-accent {
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(46,196,255,0.1), transparent 50%, rgba(26,235,222,0.06));
  pointer-events: none;
}
.about-card-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg-dark-3);
  border: 1px solid rgba(46,196,255,0.18);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  box-shadow: var(--glow-cyan);
}
.badge-icon { color: var(--accent-cyan); font-size: 1.1rem; }
.about-text { padding-left: 0; }
@media (min-width: 900px) { .about-text { padding-left: 16px; } }
.about-text .section-label { margin-bottom: 16px; }
.about-tagline {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0 32px;
}
.tagline-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-teal), transparent);
}
.tagline-text {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--accent-teal);
  white-space: nowrap;
}

/* ============================================================
   VALUES
============================================================ */
.values {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px)  { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .values-grid { grid-template-columns: repeat(3, 1fr); } }
.value-card {
  background: var(--bg-dark-2);
  border: 1px solid rgba(46,196,255,0.09);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.value-card:hover {
  border-color: rgba(46,196,255,0.28);
  transform: translateY(-6px);
  box-shadow: var(--glow-cyan);
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.value-card:hover::before { opacity: 1; }
.value-icon-wrap { margin-bottom: 20px; }
.value-icon {
  width: 56px;
  height: 56px;
  background: rgba(46,196,255,0.07);
  border: 1px solid rgba(46,196,255,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-number {
  font-family: var(--font-display);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.value-title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.value-text { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }
.value-accent-line {
  position: absolute;
  bottom: 0;
  left: 32px;
  right: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-teal));
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.value-card:hover .value-accent-line { transform: scaleX(1); }

/* ============================================================
   SERVICES
============================================================ */
.services { background: var(--bg-dark); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 48px;
}
@media (min-width: 640px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  background: var(--bg-dark-2);
  border: 1px solid rgba(242,242,242,0.06);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}
.service-card:hover {
  border-color: rgba(46,196,255,0.22);
  transform: translateY(-4px);
  box-shadow: var(--glow-cyan);
}
.service-card-featured {
  border-color: rgba(26,235,222,0.22);
  background: linear-gradient(135deg, var(--bg-dark-2) 0%, rgba(26,235,222,0.04) 100%);
}
.service-card-featured:hover {
  border-color: rgba(26,235,222,0.45);
  box-shadow: var(--glow-teal);
}
.service-icon {
  margin-bottom: 20px;
  width: 56px;
  height: 56px;
  background: rgba(46,196,255,0.06);
  border: 1px solid rgba(46,196,255,0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-content { flex: 1; }
.service-title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; }
.service-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(46,196,255,0.12);
  color: var(--accent-cyan);
  border: 1px solid rgba(46,196,255,0.2);
}
.service-tag-teal { background: rgba(26,235,222,0.1); color: var(--accent-teal); border-color: rgba(26,235,222,0.2); }
.service-tag-featured { background: rgba(26,235,222,0.15); color: var(--accent-teal); border-color: rgba(26,235,222,0.3); }
.service-arrow {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 1.25rem;
  color: var(--text-muted);
  transition: color 0.25s, transform 0.25s;
}
.service-card:hover .service-arrow { color: var(--accent-cyan); transform: translateX(4px); }
.services-cta { text-align: center; }

/* ============================================================
   WHY US
============================================================ */
.why-us {
  background: linear-gradient(180deg, var(--bg-dark-2) 0%, var(--bg-dark) 100%);
}
.why-us-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: start;
}
@media (min-width: 900px) {
  .why-us-inner { grid-template-columns: 1fr 1.4fr; align-items: center; }
}
.why-us-left .btn { margin-top: 32px; }
.why-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(242,242,242,0.06);
}
.why-item:last-child { border-bottom: none; }
.why-icon {
  color: var(--accent-cyan);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 3px;
  filter: drop-shadow(0 0 6px rgba(46,196,255,0.5));
}
.why-content h4 { font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.why-content p  { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; }

/* ============================================================
   GALLERY
============================================================ */
.gallery { background: var(--bg-dark); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 260px 260px;
  gap: 16px;
}
@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 280px 280px;
  }
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(242,242,242,0.06);
}
.gallery-item-large {
  grid-column: span 2;
  grid-row: span 1;
}
@media (min-width: 900px) {
  .gallery-item-large { grid-column: span 2; }
}
.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-dark-2);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: transform 0.5s ease;
  /* REPLACE: background-image: url('assets/gallery-N.jpg');
     background-size: cover; background-position: center; */
}
.gallery-item:hover .gallery-placeholder { transform: scale(1.04); }
.gallery-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(17,25,31,0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.35s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.06em;
}

/* ============================================================
   APPOINTMENTS
============================================================ */
.appointments {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
}
.appt-wrapper { max-width: 820px; margin: 0 auto; }
.appt-form {
  background: var(--bg-dark-2);
  border: 1px solid rgba(46,196,255,0.1);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 640px) { .appt-form { padding: 28px 20px; } }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full-width { grid-column: 1 / -1; }
label {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
}
.required { color: var(--accent-cyan); }
input, select, textarea {
  background: rgba(17,25,31,0.8);
  border: 1px solid rgba(242,242,242,0.1);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
input::placeholder, textarea::placeholder { color: var(--text-muted); }
input:focus, select:focus, textarea:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(46,196,255,0.08);
}
select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232EC4FF' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
select option { background: var(--bg-dark-2); color: var(--text-primary); }
textarea { resize: vertical; min-height: 110px; }
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.5) sepia(1) saturate(2) hue-rotate(175deg);
}
.form-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.btn-submit { position: relative; min-width: 220px; justify-content: center; }
.btn-loader { }
.hidden { display: none !important; }
.form-success {
  background: rgba(26,235,222,0.06);
  border: 1px solid rgba(26,235,222,0.25);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
}
.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(26,235,222,0.12);
  border: 1px solid var(--accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-teal);
  margin: 0 auto 16px;
}
.form-success h4 { font-size: 1.125rem; margin-bottom: 8px; }
.form-success p { color: var(--text-secondary); font-size: 0.9rem; }

/* Calendly wrap (hidden by default, see HTML comments) */
.calendly-wrap {
  background: var(--bg-dark-2);
  border: 1px solid rgba(46,196,255,0.1);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
}
.calendly-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 24px; }

/* ============================================================
   CONTACT
============================================================ */
.contact { background: var(--bg-dark); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 640px)  { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 24px;
  border-bottom: 1px solid rgba(242,242,242,0.06);
  border-right: 1px solid rgba(242,242,242,0.06);
  transition: background 0.25s;
}
.contact-item:hover { background: rgba(46,196,255,0.03); }
.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(46,196,255,0.07);
  border: 1px solid rgba(46,196,255,0.14);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item h4 { font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.contact-item a, .contact-item span { font-size: 0.9375rem; color: var(--text-secondary); transition: color 0.2s; }
.contact-item a:hover { color: var(--accent-cyan); }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--bg-dark-2);
  border-top: 1px solid rgba(242,242,242,0.06);
  padding-bottom: 0;
}
.footer-divider-line {
  display: flex;
  align-items: center;
  gap: 0;
  height: 2px;
  overflow: hidden;
}
.divider-track {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(46,196,255,0.25), rgba(26,235,222,0.25), transparent);
}
.divider-node {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 10px var(--accent-cyan);
  flex-shrink: 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding: 64px 0 48px;
}
@media (min-width: 640px)  { .footer-inner { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .footer-inner { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer-logo { display: flex; margin-bottom: 12px; }
.footer-tagline { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.footer-nav h5, .footer-services h5, .footer-contact h5 {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-nav ul li, .footer-services ul li, .footer-contact p { margin-bottom: 10px; }
.footer-nav ul li a, .footer-services ul li a, .footer-contact a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.footer-nav ul li a:hover, .footer-services ul li a:hover, .footer-contact a:hover { color: var(--accent-cyan); }
.footer-contact span, .footer-contact p { font-size: 0.875rem; color: var(--text-secondary); }
.footer-bottom {
  border-top: 1px solid rgba(242,242,242,0.06);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.8125rem; color: var(--text-muted); }
.footer-sub { color: var(--text-muted) !important; font-size: 0.75rem !important; letter-spacing: 0.06em; }

/* ============================================================
   MISC GLOW / DECORATIVE
============================================================ */
.section-glow-separator {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(46,196,255,0.2) 30%, rgba(26,235,222,0.2) 70%, transparent 100%);
  position: relative;
}
.section-glow-separator::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-cyan);
}

/* ============================================================
   RESPONSIVE TWEAKS
============================================================ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .section { padding: 80px 0; }
}
@media (max-width: 640px) {
  .hero-content { padding: 48px 24px 80px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .about-card-badge { display: none; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-item-large { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
