/* ===========================
   AZLEE MOVING SERVICES
   styles.css
=========================== */

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

:root {
  --brand:       #E84B1A;
  --brand-dark:  #C03B10;
  --brand-light: #FFF0EB;
  --dark:        #0F1217;
  --dark-2:      #1C2230;
  --text:        #1F2937;
  --muted:       #4B5563;
  --border:      #E5E7EB;
  --bg:          #F9FAFB;
  --white:       #FFFFFF;
  --accent-blue: #2A6FDB;
  --accent-green:#16A34A;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow:      0 4px 16px rgba(0,0,0,.09);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.13);
  --transition:  .25s ease;
  --font:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Utilities ---- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  background: var(--brand-light);
  color: var(--brand);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}
.btn--primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,75,26,.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--white {
  background: var(--white);
  color: var(--brand);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--brand-light);
  transform: translateY(-1px);
}

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

.btn--lg { padding: 14px 32px; font-size: 1rem; }
.btn--full { width: 100%; }

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.navbar--scrolled {
  background: rgba(255,255,255,.98);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.navbar__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 70px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon { display: flex; align-items: center; }

.logo-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: .04em;
}
.logo-text span { color: var(--brand); }

.navbar__links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.navbar__links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
}
.navbar__links a:hover { color: var(--brand); }

.navbar__cta { flex-shrink: 0; }

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.active span:nth-child(2) { opacity: 0; }
.navbar__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navbar__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
}
.navbar__mobile.open { display: flex; }
.navbar__mobile a {
  padding: 10px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.navbar__mobile a:last-child { border-bottom: none; margin-top: 12px; }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #0F1217 0%, #1C2230 60%, #2A1A14 100%);
  overflow: hidden;
}

.hero__bg-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: .08;
}
.shape-1 {
  width: 600px; height: 600px;
  background: var(--brand);
  top: -200px; right: -150px;
}
.shape-2 {
  width: 350px; height: 350px;
  background: #2A6FDB;
  bottom: -100px; left: -80px;
}
.shape-3 {
  width: 200px; height: 200px;
  background: var(--brand);
  bottom: 100px; right: 30%;
  opacity: .05;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}

.highlight {
  color: var(--brand);
  position: relative;
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-item strong {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
}
.trust-item span {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.15);
}

/* Hero Visual */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__card-stack {
  position: relative;
  width: 340px;
  height: 280px;
}

.hcard {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  min-width: 260px;
  transition: transform .3s ease;
}
.hcard:hover { transform: translateY(-4px) !important; }

.hcard__icon { font-size: 2rem; flex-shrink: 0; }
.hcard__label {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.hcard__desc {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
}

.hcard--back  { top: 0;   left: 0;  transform: rotate(-4deg); }
.hcard--front { top: 70px; left: 50px; transform: rotate(2deg); z-index: 2;
                background: rgba(232,75,26,.18); border-color: rgba(232,75,26,.4); }
.hcard--bottom { top: 170px; left: 10px; transform: rotate(-2deg); }

/* ---- Services ---- */
.services { background: var(--bg); }

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 2px solid var(--border);
}

.services-header__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.services-header__title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -.02em;
}

.services-header__right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.services-header__desc {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.75;
}

.services-header__stats {
  display: flex;
  gap: 32px;
  padding-top: 12px;
}

.mini-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mini-stat__number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
}

.mini-stat__label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card--featured {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-color: transparent;
  color: var(--white);
}
.service-card--featured h3,
.service-card--featured p,
.service-card--featured .service-features li { color: rgba(255,255,255,.9); }
.service-card--featured .service-features li::before { color: rgba(255,255,255,.7); }

.service-card__badge {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(255,255,255,.2);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}

.service-card__icon {
  width: 58px; height: 58px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-card p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-features { display: flex; flex-direction: column; gap: 6px; }
.service-features li {
  font-size: .85rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-features li::before {
  content: '→';
  color: var(--brand);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- Why Us ---- */
.why-us {
  background: var(--white);
}

.why-us__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-us__content .section-tag { display: inline-block; }
.why-us__content .section-title { text-align: left; }
.why-us__content .section-sub {
  text-align: left;
  max-width: 100%;
  margin-bottom: 36px;
}

.why-us__list { display: flex; flex-direction: column; gap: 24px; }

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-item__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.why-item p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
}

.why-us__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: sticky;
  top: 90px;
}

.stat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all var(--transition);
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.stat-card--accent {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-color: transparent;
}
.stat-card--accent .stat-number,
.stat-card--accent .stat-label { color: var(--white); }

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}
.stat-number sup {
  font-size: 1.2rem;
  vertical-align: super;
  font-weight: 700;
}
.stat-label {
  font-size: .82rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ---- Process ---- */
.process { background: var(--bg); }

.process__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}

.step {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all var(--transition);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.step__number {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  color: var(--brand);
  background: var(--brand-light);
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: .08em;
  margin-bottom: 14px;
}

.step__icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.step p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.6;
}

.step__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  margin-top: 60px;
}
.step__connector::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--border), var(--brand), var(--border));
  border-radius: 2px;
}

/* ---- Testimonials ---- */
.testimonials { background: var(--white); }

.testimonials-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 2px solid var(--border);
}

.testimonials-header__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonials-header__title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -.02em;
}

.testimonials-header__right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.testimonials-header__desc {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.75;
}

.testimonials-header__rating {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 12px;
}

.rating-display {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rating-stars {
  color: #F59E0B;
  font-size: 1.4rem;
  letter-spacing: 2px;
}

.rating-score {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
}

.rating-source {
  font-size: .85rem;
  color: var(--muted);
  font-weight: 500;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tcard {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition);
}
.tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.tcard--highlight {
  background: linear-gradient(135deg, #FFF5F0 0%, #FFE8DC 100%);
  border: 2px solid var(--brand);
  box-shadow: 0 8px 24px rgba(232,75,26,.15);
}
.tcard--highlight .tcard__stars { color: var(--brand); }
.tcard--highlight p { color: var(--text); font-weight: 500; }
.tcard--highlight strong { color: var(--dark); }
.tcard--highlight span { color: var(--muted); }

.tcard__stars {
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: 2px;
}

.tcard p {
  font-size: .9rem;
  color: var(--text);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.tcard__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tcard__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tcard__author strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--dark);
}
.tcard__author span {
  font-size: .78rem;
  color: var(--muted);
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  padding: 72px 0;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-banner h2 {
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
}

.cta-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---- Contact ---- */
.contact { background: var(--bg); }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.contact__info .section-tag { display: inline-block; margin-bottom: 12px; }
.contact__info .section-title { text-align: left; font-size: 2rem; }
.contact__info > p {
  font-size: .95rem;
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.contact__details { display: flex; flex-direction: column; gap: 20px; }

.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-detail__icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }

.contact-detail strong {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 3px;
}
.contact-detail a,
.contact-detail span {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.5;
}
.contact-detail a:hover { color: var(--brand); }

/* Contact Form */
.contact__form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form { display: flex; flex-direction: column; gap: 18px; }

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: .02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: .9rem;
  color: var(--dark);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
  width: 100%;
}

.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(--brand);
  box-shadow: 0 0 0 3px rgba(232,75,26,.1);
  background: var(--white);
}

.form-note {
  font-size: .78rem;
  color: var(--muted);
  text-align: center;
  margin-top: -4px;
}

/* ---- Footer ---- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.65);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 64px;
  padding: 72px 24px 48px;
  max-width: 1180px;
  margin: 0 auto;
}

.footer__brand .navbar__logo .logo-text { color: var(--white); }

.footer__brand p {
  font-size: .88rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 320px;
}

.footer__reg {
  font-size: .75rem;
  color: rgba(255,255,255,.3) !important;
  margin-top: 12px !important;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col h4 {
  font-size: .82rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}

.footer__col a,
.footer__col span {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
  line-height: 1.6;
}
.footer__col a:hover { color: var(--brand); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.footer__bottom span {
  font-size: .82rem;
  color: rgba(255,255,255,.3);
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.footer__social a:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---- Scroll Animations ---- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.service-card:nth-child(1) { transition-delay: .05s; }
.service-card:nth-child(2) { transition-delay: .1s; }
.service-card:nth-child(3) { transition-delay: .15s; }
.service-card:nth-child(4) { transition-delay: .2s; }
.service-card:nth-child(5) { transition-delay: .25s; }
.service-card:nth-child(6) { transition-delay: .3s; }

.step:nth-child(1) { transition-delay: .05s; }
.step:nth-child(3) { transition-delay: .15s; }
.step:nth-child(5) { transition-delay: .25s; }
.step:nth-child(7) { transition-delay: .35s; }

.tcard:nth-child(1) { transition-delay: .05s; }
.tcard:nth-child(2) { transition-delay: .1s; }
.tcard:nth-child(3) { transition-delay: .15s; }
.tcard:nth-child(4) { transition-delay: .2s; }
.tcard:nth-child(5) { transition-delay: .25s; }
.tcard:nth-child(6) { transition-delay: .3s; }

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 1024px) {
  .services-header { gap: 48px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why-us__inner { gap: 48px; }
  .contact__inner { gap: 48px; }

  .process__steps {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .step__connector { display: none; }
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero__sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__visual { justify-content: center; }

  .why-us__inner { grid-template-columns: 1fr; }
  .why-us__content .section-title,
  .why-us__content .section-sub { text-align: center; }
  .why-us__content .section-tag { display: block; text-align: center; }
  .why-us__stats { grid-template-columns: repeat(4, 1fr); position: static; }

  .contact__inner { grid-template-columns: 1fr; }
  .contact__info .section-title { text-align: center; }
  .contact__info .section-tag { display: block; text-align: center; }
  .contact__info > p { text-align: center; }
  .contact__details { max-width: 420px; margin: 0 auto; }

  .testimonials-header { gap: 48px; }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }

  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__brand p { max-width: 100%; }

  .cta-banner__inner { flex-direction: column; text-align: center; }
  .cta-banner__actions { justify-content: center; }
}

@media (max-width: 768px) {
  .navbar__links,
  .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }

  .section { padding: 64px 0; }

  .services-header { 
    grid-template-columns: 1fr; 
    gap: 32px;
    margin-bottom: 48px;
    padding-bottom: 32px;
  }

  .services-header__title { font-size: 2rem; }

  .services__grid { grid-template-columns: 1fr; }

  .process__steps { grid-template-columns: 1fr; }

  .testimonials-header { 
    grid-template-columns: 1fr; 
    gap: 32px;
    margin-bottom: 48px;
    padding-bottom: 32px;
  }

  .testimonials-header__title { font-size: 2rem; }

  .testimonials__grid { grid-template-columns: 1fr; }

  .why-us__stats { grid-template-columns: 1fr 1fr; }

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

  .contact__form-wrap { padding: 28px 20px; }

  .footer__links { grid-template-columns: 1fr 1fr; }

  .footer__bottom-inner { flex-direction: column; gap: 12px; text-align: center; }

  .hero__card-stack { width: 280px; height: 240px; }
  .hcard { min-width: 220px; padding: 16px 18px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .why-us__stats { grid-template-columns: 1fr 1fr; }
  .footer__links { grid-template-columns: 1fr; }
  .cta-banner__actions { flex-direction: column; width: 100%; }
  .cta-banner__actions .btn { width: 100%; }
}

/* ---- Hero Image Frame ---- */
.hero__img-frame {
  position: relative;
  flex-shrink: 0;
}

.hero__photo {
  width: 480px;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 28px 70px rgba(0,0,0,.5);
}

.hero__img-frame .hero__card-stack {
  position: absolute;
  bottom: -50px;
  left: -10px;
  width: 340px;
  height: 280px;
}

/* ---- Gallery Strip ---- */
.gallery-strip {
  background: var(--dark);
  overflow: hidden;
}

.gallery-strip__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 4px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.gallery-item--tall {
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item__label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: .04em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ---- Why Us Photo ---- */
.why-us__img-wrap {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.why-us__img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.why-us__img-wrap:hover .why-us__img { transform: scale(1.03); }

/* ---- Responsive: Images ---- */
@media (max-width: 900px) {
  .hero__photo { width: 100%; max-width: 440px; height: 320px; }
  .hero__img-frame .hero__card-stack { bottom: -40px; left: 0; }
  .gallery-strip__grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--tall { grid-row: span 2; }
}

@media (max-width: 768px) {
  .hero__photo { max-width: 340px; height: 260px; }
  .gallery-strip__grid { grid-template-columns: 1fr; }
  .gallery-item--tall { aspect-ratio: 4 / 3; grid-row: auto; }
  .why-us__img { height: 160px; }
}
