/* UrbanCrew Services — Modern Stylesheet v2 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #1a3c6e;
  --navy2:   #112a52;
  --teal:    #0a7c6e;
  --teal2:   #09685c;
  --light:   #f5f7fb;
  --white:   #ffffff;
  --gray:    #5a6472;
  --lgray:   #e4e9f0;
  --blue-lt: #7eb8f7;
  --font:    'Inter', system-ui, -apple-system, sans-serif;
  --radius:  14px;
  --shadow:  0 4px 24px rgba(26,60,110,0.10);
  --shadow-lg: 0 12px 48px rgba(26,60,110,0.18);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--gray); line-height: 1.7; font-size: 16px; background: var(--white); overflow-x: hidden; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--teal); }
img { max-width: 100%; display: block; }

/* ── SCROLL ANIMATIONS ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }

/* ── NAV ─────────────────────────────────────────── */
nav {
  background: rgba(26,60,110,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 100;
  min-height: 64px;
  transition: box-shadow 0.3s, background 0.3s;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
nav.scrolled { background: rgba(17,42,82,0.98); box-shadow: 0 4px 24px rgba(0,0,0,0.2); }
.nav-brand { color: var(--white); font-size: 1.4rem; font-weight: 800; letter-spacing: -0.5px; }
.nav-brand span { color: var(--blue-lt); }
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a { color: rgba(255,255,255,0.82); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-phone { color: var(--white) !important; font-weight: 700 !important; }
.btn-nav {
  background: var(--teal); color: var(--white) !important;
  padding: 0.5rem 1.25rem; border-radius: 8px; font-weight: 700;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(10,124,110,0.35);
}
.btn-nav:hover { background: var(--teal2) !important; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(10,124,110,0.45); }

/* ── HERO ────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #112a52 0%, #1a3c6e 45%, #1d4d7a 100%);
  color: var(--white); padding: 5.5rem 2rem 5.5rem;
  text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(10,124,110,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(126,184,247,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 60px; background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero .container { position: relative; z-index: 1; }
.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.9); padding: 0.35rem 1rem; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 1.5rem; backdrop-filter: blur(8px);
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 900;
  line-height: 1.15; margin-bottom: 1.25rem; letter-spacing: -0.02em;
}
.hero h1 span { color: var(--blue-lt); }
.hero p { font-size: 1.12rem; opacity: 0.88; max-width: 600px; margin: 0 auto 2rem; }
.hero-badges { display: flex; gap: 0.65rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.badge {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: var(--white); padding: 0.4rem 1rem; border-radius: 100px;
  font-size: 0.82rem; font-weight: 600; backdrop-filter: blur(8px);
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--teal); color: var(--white);
  padding: 0.95rem 2.2rem; border-radius: 10px;
  font-size: 1.05rem; font-weight: 700;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(10,124,110,0.45);
}
.btn-primary:hover { background: var(--teal2); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(10,124,110,0.5); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.5);
  color: var(--white); padding: 0.9rem 2rem; border-radius: 10px;
  font-size: 1.05rem; font-weight: 600; transition: all 0.2s; backdrop-filter: blur(8px);
}
.btn-outline:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.8); color: var(--white); transform: translateY(-2px); }

/* ── STATS BAR ───────────────────────────────────── */
.stats-bar { background: var(--white); padding: 2.5rem 2rem; border-bottom: 1px solid var(--lgray); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; max-width: 900px; margin: 0 auto; text-align: center;
}
.stat-item { padding: 0.5rem 1rem; }
.stat-number {
  font-size: clamp(2rem, 3vw, 2.6rem); font-weight: 900;
  color: var(--navy); line-height: 1; letter-spacing: -0.02em;
}
.stat-number span { color: var(--teal); }
.stat-label { font-size: 0.83rem; color: var(--gray); font-weight: 500; margin-top: 0.35rem; }

/* ── SECTIONS ────────────────────────────────────── */
section { padding: 5rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.75rem; color: var(--teal); font-weight: 700; margin-bottom: 0.6rem; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--navy); margin-bottom: 0.85rem; line-height: 1.2; letter-spacing: -0.02em; }
.section-sub { color: var(--gray); max-width: 560px; margin-bottom: 3rem; font-size: 1.02rem; }
.bg-light { background: var(--light); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy .section-title { color: var(--white); }
.bg-navy .section-label { color: var(--blue-lt); }
.bg-navy p { opacity: 0.85; }

/* ── SERVICES GRID ───────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.service-card {
  background: var(--white); border: 1px solid var(--lgray);
  border-radius: var(--radius); padding: 2rem 1.75rem;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--teal), var(--blue-lt));
  transform: scaleX(0); transition: transform 0.3s ease; transform-origin: left;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  font-size: 2rem; margin-bottom: 1.1rem;
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(10,124,110,0.1), rgba(126,184,247,0.12));
  border-radius: 14px;
}
.service-card h3 { color: var(--navy); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; }
.service-card p { font-size: 0.95rem; line-height: 1.65; }
.service-card a { display: inline-flex; align-items: center; gap: 0.3rem; margin-top: 1.2rem; color: var(--teal); font-weight: 600; font-size: 0.9rem; transition: gap 0.2s; }
.service-card a:hover { gap: 0.6rem; }

/* ── WHY CHOOSE US ───────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.why-item {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--white); border: 1px solid var(--lgray);
  border-radius: var(--radius); padding: 1.5rem;
  transition: box-shadow 0.3s, transform 0.3s;
}
.why-item:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.why-check {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--teal), #0d9e8e);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 4px 12px rgba(10,124,110,0.3);
}
.why-check::after { content: '✓'; color: white; font-size: 1rem; font-weight: 800; }
.why-item h4 { color: var(--navy); font-weight: 700; margin-bottom: 0.3rem; font-size: 1rem; }
.why-item p { font-size: 0.9rem; }

/* ── HOW IT WORKS ────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.step-item {
  text-align: center; padding: 2rem 1.5rem;
  background: var(--white); border-radius: var(--radius); border: 1px solid var(--lgray);
  transition: box-shadow 0.3s, transform 0.3s;
}
.step-item:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.step-number {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--navy), #2a5298);
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  color: white; font-weight: 900; font-size: 1.15rem;
  margin-bottom: 1rem; box-shadow: 0 4px 16px rgba(26,60,110,0.3);
}
.step-item h4 { color: var(--navy); font-weight: 700; margin-bottom: 0.4rem; }
.step-item p { font-size: 0.9rem; }

/* ── TESTIMONIALS ────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.5rem; }
.testimonial {
  background: var(--white); border-radius: var(--radius); padding: 1.75rem;
  box-shadow: var(--shadow); border: 1px solid var(--lgray);
  transition: box-shadow 0.3s, transform 0.3s; position: relative;
}
.testimonial::before {
  content: '"'; position: absolute; top: 1rem; right: 1.5rem;
  font-size: 4rem; color: var(--teal); opacity: 0.12;
  font-family: Georgia, serif; line-height: 1;
}
.testimonial:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.testimonial p { font-style: italic; margin-bottom: 1rem; line-height: 1.7; }
.testimonial-footer { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
}
.testimonial cite { font-size: 0.88rem; color: var(--navy); font-weight: 700; font-style: normal; display: block; }
.testimonial .city { font-size: 0.8rem; color: var(--gray); }
.stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 0.75rem; letter-spacing: 1px; }

/* ── AREAS ───────────────────────────────────────── */
.areas-wrap { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.area-pill {
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  color: var(--white); padding: 0.45rem 1.1rem; border-radius: 100px;
  font-size: 0.875rem; font-weight: 500;
  transition: background 0.2s, border-color 0.2s;
}
.area-pill:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.5); }

/* ── BOOKING FORM ────────────────────────────────── */
.booking-form {
  background: var(--white); border-radius: 20px; padding: 2.5rem;
  max-width: 580px; margin: 0 auto;
  box-shadow: var(--shadow-lg); border: 1px solid var(--lgray);
}
.booking-form h3 { color: var(--navy); font-size: 1.4rem; font-weight: 800; margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--lgray); border-radius: 10px;
  font-size: 0.95rem; font-family: var(--font);
  transition: border-color 0.2s, box-shadow 0.2s;
  color: #1a202c; background: #fafbfc;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--teal); outline: none; background: var(--white);
  box-shadow: 0 0 0 3px rgba(10,124,110,0.12);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.btn-submit {
  width: 100%; background: linear-gradient(135deg, var(--teal), #0d9e8e);
  color: var(--white); border: none; padding: 1rem; border-radius: 10px;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
  font-family: var(--font); box-shadow: 0 4px 20px rgba(10,124,110,0.4);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(10,124,110,0.5); }
.btn-submit:active { transform: translateY(0); }

/* ── SERVICE PAGE ────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #112a52 0%, #1a3c6e 100%);
  color: var(--white); padding: 4rem 2rem 3.5rem; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(10,124,110,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 900; margin-bottom: 0.75rem; letter-spacing: -0.02em; }
.page-hero p { opacity: 0.88; max-width: 600px; }
.breadcrumb { font-size: 0.82rem; opacity: 0.65; margin-bottom: 0.85rem; }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.content-grid { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }
.content-body h2 { color: var(--navy); font-size: 1.4rem; font-weight: 700; margin: 2.5rem 0 0.85rem; letter-spacing: -0.01em; }
.content-body h2:first-child { margin-top: 0; }
.content-body p { margin-bottom: 1.1rem; }
.content-body ul { padding-left: 1.25rem; margin-bottom: 1.1rem; }
.content-body ul li { margin-bottom: 0.5rem; }
.pricing-box { background: var(--light); border-radius: var(--radius); padding: 1.75rem; margin: 1.75rem 0; border: 1px solid var(--lgray); }
.pricing-box h3 { color: var(--navy); font-weight: 800; margin-bottom: 1rem; }
.price-row { display: flex; justify-content: space-between; align-items: center; padding: 0.7rem 0; border-bottom: 1px solid var(--lgray); }
.price-row:last-child { border-bottom: none; }
.price-row .price { font-weight: 800; color: var(--teal); }
.sticky-card { position: sticky; top: 80px; background: var(--white); border-radius: 20px; padding: 2rem; box-shadow: var(--shadow-lg); border: 1px solid var(--lgray); }
.sticky-card h3 { color: var(--navy); font-size: 1.15rem; font-weight: 800; margin-bottom: 1.1rem; }

/* ── FOOTER ──────────────────────────────────────── */
footer { background: #0d1829; color: rgba(255,255,255,0.72); padding: 4rem 2rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2.5rem; max-width: 1100px; margin: 0 auto 2.5rem; }
.footer-brand { font-size: 1.35rem; font-weight: 800; color: var(--white); margin-bottom: 0.85rem; letter-spacing: -0.02em; }
.footer-brand span { color: var(--blue-lt); }
footer h4 { color: var(--white); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.55rem; }
footer ul li a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: color 0.2s; }
footer ul li a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; text-align: center; font-size: 0.82rem; opacity: 0.45; max-width: 1100px; margin: 0 auto; }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links .nav-phone, .nav-links a:not(.btn-nav):not(.nav-phone) { display: none; }
  .content-grid { grid-template-columns: 1fr; }
  .sticky-card { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  section { padding: 3.5rem 1.25rem; }
  .hero { padding: 4rem 1.25rem 4.5rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
}
