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

:root {
  --black:      #111111;
  --dark:       #1a1a1a;
  --darker:     #131313;
  --orange:     #f97316;
  --orange-dk:  #ea6c0a;
  --white:      #ffffff;
  --gray:       #6b7280;
  --light:      #f3f4f6;
  --text:       #374151;
  --radius:     8px;
  --shadow:     0 4px 24px rgba(0,0,0,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  color: var(--text);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── Buttons ───────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249,115,22,0.35);
}

.btn-outline {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.88rem;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 700;
  transition: all 0.2s;
}
.btn-sm:hover { background: var(--orange-dk); }

.btn-full { width: 100%; text-align: center; display: block; }

/* ─── Nav ───────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--darker);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.logo { display: flex; flex-direction: column; line-height: 1.3; }

.logo-main {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.3px;
}

.logo-sub {
  font-size: 0.72rem;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.93rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-mobile-call {
  display: none;
  padding: 0.5rem 1.1rem;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.88rem;
}

/* ─── Hero ──────────────────────────────────────── */
.hero {
  background-color: var(--dark);
  background-image:
    linear-gradient(to right, rgba(15,15,15,0.93) 40%, rgba(15,15,15,0.65) 100%),
    url('https://images.unsplash.com/photo-1693019108329-1889fb170f2e?w=1920&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  padding: 6rem 0 5.5rem;
  color: var(--white);
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.hero-inner { max-width: 680px; }

.hero-tag {
  display: inline-block;
  background: rgba(249,115,22,0.15);
  color: var(--orange);
  border: 1px solid rgba(249,115,22,0.3);
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -1.5px;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 510px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ─── Section shared ────────────────────────────── */
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.section-sub {
  color: var(--gray);
  font-size: 1.02rem;
  margin-bottom: 3rem;
  max-width: 560px;
}

/* ─── Services ──────────────────────────────────── */
.services {
  padding: 5.5rem 0;
  background: var(--light);
}

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

.card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.13);
}

.card-img {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
}

.card-body { padding: 1.75rem; }

.card-icon { font-size: 2rem; margin-bottom: 0.75rem; }

.card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.6rem;
}

.card p {
  color: var(--gray);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ─── Photo Banner ──────────────────────────────── */
.photo-banner { width: 100%; }

.photo-banner-img {
  width: 100%;
  height: 340px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.photo-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
  padding: 2rem;
}

.photo-banner-text {
  color: var(--white);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 700;
  max-width: 600px;
  line-height: 1.4;
}

/* ─── Why Us ────────────────────────────────────── */
.why {
  padding: 5.5rem 0;
  background: var(--white);
}

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

.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-icon { font-size: 1.75rem; flex-shrink: 0; line-height: 1; }

.why-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.3rem;
}

.why-item p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ─── Contact ───────────────────────────────────── */
.contact {
  padding: 5.5rem 0;
  background: var(--light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-emoji { font-size: 1.5rem; flex-shrink: 0; line-height: 1.3; }

.contact-item div {
  display: flex;
  flex-direction: column;
}

.contact-item strong {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--gray);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.contact-item a,
.contact-item span {
  font-size: 1rem;
  color: var(--text);
  font-weight: 600;
}

.contact-item a:hover { color: var(--orange); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--white);
  padding: 2rem;
  border-radius: 14px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.05);
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #e5e7eb;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #9ca3af; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}

.form-group textarea { resize: vertical; }

/* ─── Footer ────────────────────────────────────── */
.footer {
  background: var(--darker);
  color: rgba(255,255,255,0.6);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer strong {
  color: var(--white);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.25rem;
}

.footer p { font-size: 0.82rem; }

.footer-links {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ─── Responsive ────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-call { display: block; }

  .hero { padding: 3.5rem 0 3rem; min-height: auto; }
  .hero h1 { letter-spacing: -0.5px; }

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

  .footer-inner { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .btn { text-align: center; }
}
