/* ============================================
   BOSPHORE COURSIERS — Stylesheet
   ============================================ */

:root {
  --navy:        #0D1B2A;
  --navy-light:  #1B3A5C;
  --orange:      #E8420A;
  --orange-light:#FF6B3D;
  --orange-dark: #C43509;
  --white:       #FFFFFF;
  --light:       #F5F7FA;
  --light-2:     #EEF2F7;
  --text:        #1A202C;
  --text-light:  #4A5568;
  --text-muted:  #718096;
  --border:      #E2E8F0;
  --success:     #38A169;

  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.10);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.12);

  --radius-sm:   .375rem;
  --radius-md:   .5rem;
  --radius-lg:   .75rem;
  --radius-xl:   1rem;
  --radius-2xl:  1.5rem;
  --radius-full: 9999px;

  --transition: 250ms ease;
  --container:  1200px;
}

/* ── Reset ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
input, textarea, select { font-family: var(--font); }

/* ── Utilities ──────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--dark { background: var(--navy); color: var(--white); }
.section--light { background: var(--light); }
.section--accent { background: var(--orange); color: var(--white); }

.tag {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(232,66,10,.1); color: var(--orange);
  font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .35rem .9rem; border-radius: var(--radius-full);
  margin-bottom: 1rem;
}
.section--dark .tag { background: rgba(232,66,10,.2); color: var(--orange-light); }

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800; line-height: 1.2; letter-spacing: -.02em;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem; color: var(--text-light); max-width: 560px; line-height: 1.7;
}
.section--dark .section-subtitle { color: #94a3b8; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ── Buttons ────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .9rem; font-weight: 700; letter-spacing: .02em;
  padding: .85rem 1.8rem; border-radius: var(--radius-full);
  transition: all var(--transition);
  cursor: pointer;
}
.btn--primary {
  background: var(--orange); color: var(--white);
  box-shadow: 0 4px 20px rgba(232,66,10,.35);
}
.btn--primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 6px 28px rgba(232,66,10,.45);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.35);
}
.btn--outline:hover {
  border-color: var(--white); background: rgba(255,255,255,.08);
}
.btn--outline-dark {
  background: transparent; color: var(--text);
  border: 2px solid var(--border);
}
.btn--outline-dark:hover { border-color: var(--navy); }
.btn--white {
  background: var(--white); color: var(--orange);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn--white:hover { background: var(--light); transform: translateY(-1px); }

/* ── Navigation ─────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 1.5rem 0;
}
.nav.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  padding: 1rem 0;
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--container); margin: 0 auto; padding: 0 1.5rem;
}
.nav__logo {
  display: flex; align-items: center; gap: .6rem;
}
.nav__logo-icon {
  width: 40px; height: 40px;
  background: var(--orange); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav__logo-icon svg { width: 22px; height: 22px; fill: var(--white); }
.nav__logo-text { font-size: 1.25rem; font-weight: 800; letter-spacing: -.02em; color: var(--white); }
.nav.scrolled .nav__logo-text { color: var(--navy); }

.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__link {
  font-size: .875rem; font-weight: 600; color: rgba(255,255,255,.85);
  transition: color var(--transition); position: relative;
}
.nav__link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px;
  background: var(--orange); transform: scaleX(0); transition: transform var(--transition);
}
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); }
.nav__link:hover, .nav__link.active { color: var(--white); }
.nav.scrolled .nav__link { color: var(--text-light); }
.nav.scrolled .nav__link:hover, .nav.scrolled .nav__link.active { color: var(--navy); }

.nav__cta { display: flex; align-items: center; gap: 1rem; }
.nav__tel {
  font-size: .85rem; font-weight: 700; color: rgba(255,255,255,.9);
  display: flex; align-items: center; gap: .4rem;
}
.nav.scrolled .nav__tel { color: var(--navy); }

.nav__burger {
  display: none; flex-direction: column; gap: 5px; padding: .5rem; cursor: pointer;
}
.nav__burger span {
  display: block; height: 2px; width: 24px; background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}
.nav.scrolled .nav__burger span { background: var(--navy); }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ───────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #162940 50%, var(--navy-light) 100%);
  display: flex; align-items: center; position: relative; overflow: hidden;
  padding: 8rem 0 5rem;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(232,66,10,.12) 0%, transparent 60%);
}
.hero__grid {
  position: absolute; inset: 0; opacity: .04;
  background-image: linear-gradient(var(--white) 1px, transparent 1px),
                    linear-gradient(90deg, var(--white) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(232,66,10,.15); border: 1px solid rgba(232,66,10,.3);
  color: var(--orange-light); font-size: .75rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .4rem 1rem; border-radius: var(--radius-full); margin-bottom: 1.5rem;
}
.hero__badge-dot {
  width: 6px; height: 6px; background: var(--orange-light);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900; line-height: 1.1; letter-spacing: -.03em; color: var(--white);
  margin-bottom: 1.5rem;
}
.hero__title span { color: var(--orange); }
.hero__desc {
  font-size: 1.1rem; color: rgba(255,255,255,.7); line-height: 1.75;
  margin-bottom: 2.5rem; max-width: 520px;
}
.hero__cta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero__trust {
  display: flex; align-items: center; gap: 1.5rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero__trust-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .85rem; color: rgba(255,255,255,.6);
}
.hero__trust-item svg { flex-shrink: 0; }

.hero__visual {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.hero__img-wrap {
  width: 100%; max-width: 480px; aspect-ratio: 4/3;
  background: rgba(255,255,255,.06); border-radius: var(--radius-2xl);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; margin: 0 auto;
}
.hero__img-placeholder {
  text-align: center; color: rgba(255,255,255,.3);
  font-size: .85rem; font-weight: 500;
}
.hero__img-placeholder svg { margin: 0 auto 1rem; opacity: .4; }

.hero__stat-card {
  position: absolute; background: var(--white); border-radius: var(--radius-xl);
  padding: 1rem 1.25rem; box-shadow: var(--shadow-xl);
  display: flex; align-items: center; gap: .75rem;
}
.hero__stat-card:first-of-type { top: -1rem; left: -1.5rem; }
.hero__stat-card:last-of-type { bottom: -1rem; right: -1.5rem; }
.hero__stat-icon {
  width: 40px; height: 40px; border-radius: var(--radius-md); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.hero__stat-icon--orange { background: rgba(232,66,10,.1); }
.hero__stat-icon--green { background: rgba(56,161,105,.1); }
.hero__stat-value { font-size: 1.25rem; font-weight: 800; color: var(--navy); line-height: 1; }
.hero__stat-label { font-size: .72rem; color: var(--text-muted); font-weight: 500; }

/* ── Services ───────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem;
}
.service-card {
  background: var(--white); border-radius: var(--radius-xl); padding: 2rem;
  border: 1px solid var(--border); transition: all var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--orange); transform: scaleX(0); transition: transform var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px; background: rgba(232,66,10,.08);
  border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; transition: background var(--transition);
}
.service-card:hover .service-icon { background: rgba(232,66,10,.15); }
.service-icon svg { width: 26px; height: 26px; color: var(--orange); }
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .6rem; color: var(--navy); }
.service-card p { font-size: .9rem; color: var(--text-light); line-height: 1.65; }
.service-link {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .85rem; font-weight: 700; color: var(--orange);
  margin-top: 1rem; transition: gap var(--transition);
}
.service-link:hover { gap: .6rem; }

/* ── Stats ──────────────────────────────── */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem;
}
.stat-item { text-align: center; }
.stat-value {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900; color: var(--orange); line-height: 1; letter-spacing: -.03em;
}
.stat-unit { font-size: 1.5rem; font-weight: 900; color: var(--orange); }
.stat-label {
  font-size: .9rem; color: rgba(255,255,255,.6); margin-top: .5rem; line-height: 1.4;
}
.stat-divider {
  width: 1px; height: 60px; background: rgba(255,255,255,.1); align-self: center;
}

/* ── Why us ─────────────────────────────── */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem;
}
.why-card {
  display: flex; gap: 1.25rem; padding: 1.75rem;
  background: var(--white); border-radius: var(--radius-xl); border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-md); }
.why-icon {
  width: 48px; height: 48px; border-radius: var(--radius-lg); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(232,66,10,.08);
}
.why-icon svg { width: 24px; height: 24px; color: var(--orange); }
.why-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .4rem; }
.why-card p { font-size: .875rem; color: var(--text-light); line-height: 1.65; }

/* ── Testimonials ───────────────────────── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem;
}
.testimonial-card {
  background: var(--white); border-radius: var(--radius-xl); padding: 2rem;
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
}
.testimonial-stars { color: #F59E0B; font-size: 1rem; letter-spacing: .1em; margin-bottom: 1rem; }
.testimonial-text {
  font-size: .9rem; color: var(--text-light); line-height: 1.75; margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: .875rem; flex-shrink: 0;
}
.testimonial-name { font-size: .875rem; font-weight: 700; color: var(--navy); }
.testimonial-role { font-size: .78rem; color: var(--text-muted); }

/* ── CTA Banner ─────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 5rem 0; text-align: center;
}
.cta-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 900;
  color: var(--white); margin-bottom: 1rem;
}
.cta-section p { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 2.5rem; }
.cta-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── Blog ───────────────────────────────── */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem;
}
.blog-card {
  background: var(--white); border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--border); transition: all var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card__img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.blog-card__img-placeholder {
  text-align: center; color: rgba(255,255,255,.35); font-size: .8rem;
}
.blog-card__category {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--orange); color: var(--white);
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  padding: .3rem .8rem; border-radius: var(--radius-full);
}
.blog-card__content { padding: 1.5rem; }
.blog-card__date { font-size: .78rem; color: var(--text-muted); margin-bottom: .75rem; }
.blog-card h3 {
  font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.45; margin-bottom: .75rem;
  transition: color var(--transition);
}
.blog-card:hover h3 { color: var(--orange); }
.blog-card p { font-size: .875rem; color: var(--text-light); line-height: 1.65; margin-bottom: 1rem; }
.blog-card__link {
  font-size: .85rem; font-weight: 700; color: var(--orange);
  display: inline-flex; align-items: center; gap: .35rem; transition: gap var(--transition);
}
.blog-card:hover .blog-card__link { gap: .6rem; }

/* ── Blog article ───────────────────────── */
.article-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 9rem 0 4rem; color: var(--white);
}
.article-meta { display: flex; gap: 1.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.article-meta span { font-size: .85rem; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: .4rem; }
.article-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 900;
  line-height: 1.2; letter-spacing: -.025em; max-width: 750px;
}
.article-body { max-width: 760px; margin: 0 auto; padding: 3rem 1.5rem; }
.article-body h2 { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin: 2.5rem 0 1rem; }
.article-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin: 2rem 0 .75rem; }
.article-body p { font-size: 1rem; line-height: 1.8; color: var(--text-light); margin-bottom: 1.25rem; }
.article-body ul { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.article-body ul li { font-size: 1rem; line-height: 1.8; color: var(--text-light); margin-bottom: .4rem; list-style: disc; }
.article-body strong { color: var(--text); }
.article-cta {
  background: var(--light); border-radius: var(--radius-xl); padding: 2rem;
  margin: 3rem 0; text-align: center; border: 1px solid var(--border);
}
.article-cta h3 { font-size: 1.25rem; font-weight: 800; color: var(--navy); margin-bottom: .5rem; }
.article-cta p { color: var(--text-light); margin-bottom: 1.5rem; }

/* ── Services page ──────────────────────── */
.services-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 9rem 0 5rem; color: var(--white); text-align: center;
}
.services-detail { padding: 5rem 0; }
.service-detail-item {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  padding: 4rem 0; border-bottom: 1px solid var(--border);
}
.service-detail-item:last-child { border-bottom: none; }
.service-detail-item.reverse { direction: rtl; }
.service-detail-item.reverse > * { direction: ltr; }
.service-detail-img {
  background: linear-gradient(135deg, var(--light) 0%, var(--light-2) 100%);
  border-radius: var(--radius-2xl); aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); color: var(--text-muted); font-size: .85rem; text-align: center;
}
.service-detail-tag {
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--orange); margin-bottom: .75rem;
}
.service-detail-title { font-size: 1.75rem; font-weight: 800; color: var(--navy); margin-bottom: 1rem; }
.service-detail-desc { font-size: 1rem; color: var(--text-light); line-height: 1.75; margin-bottom: 1.5rem; }
.service-features { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 2rem; }
.service-feature {
  display: flex; align-items: center; gap: .6rem;
  font-size: .9rem; color: var(--text-light);
}
.service-feature svg { flex-shrink: 0; color: var(--success); }

/* ── About page ─────────────────────────── */
.about-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 9rem 0 5rem; color: var(--white); text-align: center;
}
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem;
}
.value-card {
  text-align: center; padding: 2.5rem 1.5rem;
  background: var(--white); border-radius: var(--radius-xl); border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-md); }
.value-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(232,66,10,.08);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem;
}
.value-icon svg { width: 30px; height: 30px; color: var(--orange); }
.value-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: .6rem; }
.value-card p { font-size: .875rem; color: var(--text-light); line-height: 1.65; }

.timeline { position: relative; padding: 2rem 0; max-width: 700px; margin: 3rem auto 0; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
  background: var(--border); transform: translateX(-50%);
}
.timeline-item {
  display: flex; gap: 2rem; margin-bottom: 2.5rem; position: relative;
}
.timeline-item:nth-child(odd) { flex-direction: row; text-align: right; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; text-align: left; }
.timeline-dot {
  position: absolute; left: 50%; top: .25rem; transform: translateX(-50%);
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--orange); border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--orange);
  z-index: 1;
}
.timeline-content { flex: 1; padding: 1.25rem; background: var(--white); border-radius: var(--radius-xl); border: 1px solid var(--border); }
.timeline-year { font-size: .8rem; font-weight: 700; color: var(--orange); margin-bottom: .35rem; }
.timeline-content h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .35rem; }
.timeline-content p { font-size: .85rem; color: var(--text-light); }

/* ── Contact page ───────────────────────── */
.contact-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 9rem 0 5rem; color: var(--white); text-align: center;
}
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; padding: 5rem 0;
}
.contact-info h2 { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 1.5rem; }
.contact-info-item {
  display: flex; gap: 1rem; margin-bottom: 1.5rem;
}
.contact-info-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md); flex-shrink: 0;
  background: rgba(232,66,10,.08);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-icon svg { width: 20px; height: 20px; color: var(--orange); }
.contact-info-text strong { font-size: .9rem; color: var(--navy); display: block; margin-bottom: .2rem; }
.contact-info-text span { font-size: .875rem; color: var(--text-light); }
.contact-info-text a { color: var(--text-light); transition: color var(--transition); }
.contact-info-text a:hover { color: var(--orange); }

.contact-form { background: var(--white); border-radius: var(--radius-2xl); padding: 2.5rem; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: .85rem; font-weight: 600; color: var(--navy);
  margin-bottom: .5rem;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: .85rem 1rem; border-radius: var(--radius-md);
  border: 1.5px solid var(--border); background: var(--light);
  font-size: .9rem; color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--orange); background: var(--white);
  box-shadow: 0 0 0 3px rgba(232,66,10,.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group.full { grid-column: 1/-1; }
.form-checkbox { display: flex; align-items: flex-start; gap: .75rem; }
.form-checkbox input { width: auto; margin-top: .2rem; accent-color: var(--orange); }
.form-checkbox label { font-size: .82rem; color: var(--text-light); }
.form-success {
  display: none; text-align: center; padding: 2rem;
  background: rgba(56,161,105,.08); border-radius: var(--radius-lg);
  color: var(--success); font-weight: 600;
}

/* ── Footer ─────────────────────────────── */
.footer {
  background: var(--navy); color: rgba(255,255,255,.7);
  padding: 5rem 0 2rem;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem;
}
.footer__brand-desc { font-size: .875rem; line-height: 1.75; margin: 1.25rem 0 1.5rem; color: rgba(255,255,255,.5); }
.footer__social { display: flex; gap: .75rem; }
.footer__social-link {
  width: 36px; height: 36px; border-radius: var(--radius-md);
  background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.footer__social-link:hover { background: var(--orange); }
.footer__social-link svg { width: 16px; height: 16px; fill: var(--white); }
.footer__col-title {
  font-size: .8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--white); margin-bottom: 1.25rem;
}
.footer__links { display: flex; flex-direction: column; gap: .65rem; }
.footer__link {
  font-size: .875rem; color: rgba(255,255,255,.5); transition: color var(--transition);
}
.footer__link:hover { color: var(--white); }
.footer__contact-item {
  display: flex; align-items: flex-start; gap: .75rem; margin-bottom: .9rem;
}
.footer__contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--orange); }
.footer__contact-text { font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.55; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer__legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer__legal a { font-size: .8rem; color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer__legal a:hover { color: var(--white); }
.footer__copy { font-size: .8rem; color: rgba(255,255,255,.35); }

/* ── Scroll reveal ──────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ── Page header ────────────────────────── */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 9rem 0 4rem; color: var(--white);
}
.page-header .tag { background: rgba(232,66,10,.2); color: var(--orange-light); }
.breadcrumb { display: flex; align-items: center; gap: .5rem; margin-top: 1.5rem; }
.breadcrumb a { font-size: .82rem; color: rgba(255,255,255,.5); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { font-size: .82rem; color: rgba(255,255,255,.3); }
.breadcrumb-sep { color: rgba(255,255,255,.3); font-size: .8rem; }

/* ── Responsive ─────────────────────────── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-divider { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .why-grid { grid-template-columns: 1fr; }
  .hero__inner { gap: 2.5rem; }
  .service-detail-item { grid-template-columns: 1fr; gap: 2rem; }
  .service-detail-item.reverse { direction: ltr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__links, .nav__tel { display: none; }
  .nav__burger { display: flex; }
  .nav__links.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); padding: 1.5rem;
    box-shadow: var(--shadow-lg); gap: 1rem;
  }
  .nav__links.open .nav__link { color: var(--text); }
  .nav__links.open .nav__cta { flex-direction: column; align-items: flex-start; width: 100%; }
  .nav__links.open .nav__tel { display: flex; color: var(--navy); }

  .hero { padding: 7rem 0 4rem; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .hero__stat-card { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }

  .timeline::before { left: 1rem; }
  .timeline-item, .timeline-item:nth-child(odd), .timeline-item:nth-child(even) {
    flex-direction: column; text-align: left; padding-left: 2.5rem;
  }
  .timeline-dot { left: 1rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .stat-divider { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
