/* ============================================
   PERFECT TOUCH JANI TEAM — Global Stylesheet
   Brand: Orange #F26522 | Green #7ED957
   Font: Arial
   ============================================ */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #333333;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

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

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #F26522;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: #000000;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: #555;
  max-width: 620px;
  line-height: 1.65;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .03em;
  border: 2px solid transparent;
  transition: background .18s, color .18s, border-color .18s, transform .15s, box-shadow .18s;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }
.btn:active { transform: translateY(0); }

.btn-orange {
  background: #F26522;
  color: #fff;
  border-color: #F26522;
}
.btn-orange:hover { background: #d4541a; border-color: #d4541a; color: #fff; }

.btn-green {
  background: #7ED957;
  color: #000;
  border-color: #7ED957;
}
.btn-green:hover { background: #69c443; border-color: #69c443; color: #000; }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline-white:hover { background: #fff; color: #F26522; }

.btn-outline-orange {
  background: transparent;
  color: #F26522;
  border-color: #F26522;
}
.btn-outline-orange:hover { background: #F26522; color: #fff; }

/* ---- HEADER ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 3px solid #F26522;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  gap: 20px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header-logo img {
  height: 80px;
  width: auto;
}
.header-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.header-logo-name {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  letter-spacing: .01em;
}
.header-logo-tag {
  font-size: 12px;
  color: #F26522;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.header-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-nav a {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color .18s, border-color .18s;
}
.header-nav a:hover,
.header-nav a.active { color: #F26522; border-color: #F26522; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-phone {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color .18s;
}
.header-phone:hover { color: #F26522; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #333;
  transition: transform .25s, opacity .25s;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid #eee;
  padding: 8px 0 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.mobile-nav.open { max-height: 500px; }
.mobile-nav a {
  display: block;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  border-bottom: 1px solid #f5f5f5;
  transition: background .15s, color .15s;
}
.mobile-nav a:hover { background: #fff8f5; color: #F26522; }
.mobile-nav .mobile-nav-cta {
  padding: 16px 24px 0;
}

/* Mobile header rules consolidated at bottom of file */

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
  padding: 72px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #F26522, #7ED957);
}
.page-hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,.75);
  max-width: 580px;
  margin: 0 auto 28px;
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: #1a1a2e;
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.trust-item .ti-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #F26522;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

/* ---- HOME HERO ---- */
.home-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.home-hero-bg {
  position: absolute;
  inset: 0;
}
.home-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.home-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.55) 55%, rgba(0,0,0,.2) 100%);
}
.home-hero-content {
  position: relative;
  z-index: 1;
  max-width: 660px;
  padding: 60px 0;
}
.home-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242,101,34,.2);
  border: 1px solid rgba(242,101,34,.5);
  border-radius: 3px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  color: #ffb085;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.home-hero h1 {
  font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 20px;
}
.home-hero h1 span { color: #F26522; }
.home-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.82);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 540px;
}
.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}
.home-hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.2);
}
.hero-stat-num {
  font-size: 32px;
  font-weight: 700;
  color: #F26522;
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-top: 4px;
}

/* ---- ABOUT PREVIEW ---- */
.about-preview {
  padding: 80px 0;
  background: #fff;
}
.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-preview-img {
  position: relative;
}
.about-preview-img img {
  width: 100%;
  border-radius: 6px;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
}
.about-accent-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #F26522;
  color: #fff;
  border-radius: 6px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(242,101,34,.35);
}
.about-badge-num {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}
.about-badge-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .9;
  margin-top: 4px;
}
.about-preview-content .section-title { margin-bottom: 18px; }
.about-preview-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 14px;
}
.about-checklist {
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #333;
}
.check-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: #7ED957;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  color: #fff;
}

@media (max-width: 800px) {
  .about-preview-grid { grid-template-columns: 1fr; }
  .about-accent-badge { right: 12px; bottom: 12px; }
}

/* ---- SERVICES GRID ---- */
.services-section {
  padding: 80px 0;
  background: #f7f7f7;
}
.services-section-header {
  text-align: center;
  margin-bottom: 48px;
}
.services-section-header .section-sub { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  padding: 32px 28px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, #F26522, #7ED957);
  transform: scaleX(0);
  transition: transform .25s ease;
  transform-origin: left;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  transform: translateY(-4px);
  border-color: #F26522;
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon-wrap {
  width: 56px; height: 56px;
  background: #fff5f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #F26522;
  transition: background .2s;
}
.service-card:hover .service-icon-wrap { background: #F26522; color: #fff; }
.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
}
.service-card ul {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-card ul li {
  font-size: 13px;
  color: #666;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}
.service-card ul li::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #7ED957;
  margin-top: .45em;
}

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ---- WHY CHOOSE US ---- */
.why-section {
  padding: 80px 0;
  background: #fff;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.why-card {
  text-align: center;
  padding: 28px 16px;
  border: 1px solid #ececec;
  border-radius: 6px;
  transition: box-shadow .2s, transform .2s;
}
.why-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.09); transform: translateY(-3px); }
.why-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #fff5f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: #F26522;
  transition: background .2s;
}
.why-card:hover .why-icon { background: #F26522; color: #fff; }
.why-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
}

@media (max-width: 960px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---- CTA BAND ---- */
.cta-band {
  background: #F26522;
  padding: 64px 24px;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.cta-band p {
  font-size: 17px;
  color: rgba(255,255,255,.85);
  max-width: 540px;
  margin: 0 auto 32px;
}
.cta-band-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- INDUSTRIES ---- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.industry-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  padding: 28px 22px;
  text-align: center;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.industry-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.09);
  transform: translateY(-3px);
  border-color: #F26522;
}
.industry-icon {
  font-size: 36px;
  margin-bottom: 12px;
}
.industry-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #000;
}
.industry-card p {
  font-size: 13px;
  color: #666;
  margin-top: 6px;
  line-height: 1.5;
}
@media (max-width: 900px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .industries-grid { grid-template-columns: 1fr; } }

/* ---- SERVICE AREAS ---- */
.areas-section {
  padding: 60px 0;
  background: #f7f7f7;
}
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  justify-content: center;
}
.area-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  transition: background .18s, border-color .18s, color .18s;
}
.area-pill:hover { background: #F26522; border-color: #F26522; color: #fff; }

/* ---- TESTIMONIALS ---- */
.testimonials-section {
  padding: 80px 0;
  background: #fff;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  padding: 28px;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
  transition: box-shadow .2s;
}
.testimonial-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.1); }
.t-stars {
  color: #F26522;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.t-body {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 18px;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #fff5f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #F26522;
  flex-shrink: 0;
}
.t-name { font-weight: 700; font-size: 14px; color: #000; }
.t-role { font-size: 12px; color: #999; margin-top: 2px; }

@media (max-width: 900px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ---- CONTACT SECTION ---- */
.contact-section {
  padding: 80px 0;
  background: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-info-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 28px;
}
.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.cd-icon {
  width: 44px; height: 44px;
  background: #fff5f0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F26522;
  flex-shrink: 0;
}
.cd-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 3px;
}
.cd-value {
  font-size: 16px;
  font-weight: 700;
  color: #000;
}
.cd-value a { color: #F26522; transition: color .18s; }
.cd-value a:hover { color: #d4541a; }

/* Form */
.contact-form-box {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
}
.form-box-title {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f0f0f0;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-family: Arial, sans-serif;
  color: #333;
  background: #fafafa;
  transition: border-color .18s, box-shadow .18s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #F26522;
  box-shadow: 0 0 0 3px rgba(242,101,34,.12);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; padding: 15px; font-size: 16px; margin-top: 6px; }
#form-success {
  display: none;
  text-align: center;
  padding: 14px;
  background: #f0fce8;
  border: 1px solid #7ED957;
  border-radius: 4px;
  color: #2a7a00;
  font-weight: 700;
  margin-top: 14px;
  font-size: 14px;
}

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .contact-form-box { padding: 24px; }
}

/* ---- ABOUT PAGE ---- */
.about-story {
  padding: 80px 0;
  background: #fff;
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 800px) { .about-story-grid { grid-template-columns: 1fr; } }

.about-story-img img {
  width: 100%;
  border-radius: 6px;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
}
.about-story-text .section-title { margin-bottom: 20px; }
.about-story-text p {
  color: #555;
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: 15px;
}

/* Mission Box */
.mission-box {
  background: linear-gradient(135deg, #F26522 0%, #e05510 100%);
  border-radius: 6px;
  padding: 40px;
  margin: 40px 0;
  text-align: center;
}
.mission-box h2 {
  font-size: 20px;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 14px;
}
.mission-box p {
  font-size: 20px;
  color: #fff;
  line-height: 1.6;
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
}

/* Values grid */
.values-section {
  padding: 60px 0;
  background: #f7f7f7;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.value-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  padding: 28px;
  text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.value-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.09); transform: translateY(-3px); }
.value-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F26522, #e05510);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #fff;
}
.value-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}
.value-card p { font-size: 13px; color: #666; line-height: 1.6; }
@media (max-width: 700px) { .values-grid { grid-template-columns: 1fr; } }

/* ---- SERVICES PAGE ---- */
.service-block {
  padding: 72px 0;
}
.service-block:nth-child(even) { background: #f7f7f7; }
.service-block-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-block-grid.reverse { direction: rtl; }
.service-block-grid.reverse > * { direction: ltr; }
.service-block-img img {
  width: 100%;
  border-radius: 6px;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
}
.service-block-content .section-title { margin-bottom: 16px; }
.service-block-content p { color: #555; line-height: 1.7; margin-bottom: 16px; font-size: 15px; }
.service-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.service-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #333;
}
.sf-check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #7ED957;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  color: #fff;
}
@media (max-width: 800px) {
  .service-block-grid { grid-template-columns: 1fr; direction: ltr; }
  .service-block-grid.reverse { direction: ltr; }
}

/* ---- FOOTER ---- */
.site-footer {
  background: #1a1a2e;
  color: rgba(255,255,255,.75);
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo-area img {
  height: 60px;
  width: auto;
  margin-bottom: 14px;
}
.footer-brand-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.footer-brand-tag {
  font-size: 12px;
  color: #F26522;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-brand-desc {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  max-width: 280px;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 18px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  transition: color .18s;
}
.footer-links a:hover { color: #F26522; }
.footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  margin-bottom: 10px;
}
.footer-contact-line a { color: rgba(255,255,255,.65); transition: color .18s; }
.footer-contact-line a:hover { color: #F26522; }
.footer-contact-line svg { flex-shrink: 0; margin-top: 2px; color: #F26522; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,.3); }
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,.3);
  transition: color .18s;
}
.footer-legal a:hover { color: rgba(255,255,255,.7); }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================
   MOBILE — Consolidated (v6)
   ============================================ */
@media (max-width: 900px) {
  html, body { overflow-x: hidden !important; width: 100% !important; max-width: 100% !important; }

  /* Force the .container inside site-header to go full-width */
  .site-header { width: 100% !important; overflow: hidden !important; }
  .site-header .container,
  .site-header > .container { max-width: 100% !important; width: 100% !important; padding: 0 !important; margin: 0 !important; box-sizing: border-box !important; }

  /* Header inner row */
  .header-inner {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 16px !important;
    height: 72px !important;
    gap: 8px !important;
    overflow: hidden !important;
  }

  /* Logo: keep icon only, hide text block */
  .header-logo img { height: 52px !important; }
  .header-logo-text { display: none !important; }
  .header-logo-name { display: none !important; }
  .header-logo-tag { display: none !important; }

  /* Hide desktop nav, phone, and CTA */
  .header-nav { display: none !important; }
  .header-phone { display: none !important; }
  .header-cta { display: none !important; }

  /* Show hamburger */
  .nav-toggle { display: flex !important; margin-left: auto !important; flex-shrink: 0 !important; }

  /* Mobile nav dropdown — always flex so max-height animation works */
  .mobile-nav { display: flex !important; flex-direction: column !important; }

  /* Hero — full width */
  .home-hero { width: 100% !important; max-width: 100% !important; }
  .home-hero-bg, .home-hero-bg img { width: 100% !important; }
  .home-hero-content { padding: 40px 0 60px !important; max-width: 100% !important; }
  .home-hero h1 { font-size: clamp(24px, 7vw, 38px) !important; }
  .home-hero-actions { flex-direction: column !important; gap: 12px !important; }
  .home-hero-actions a { width: 100% !important; text-align: center !important; justify-content: center !important; }
  .home-hero-stats { flex-wrap: wrap !important; gap: 20px !important; }

  /* Full-width containers */
  .container, .container--narrow { width: 100% !important; padding: 0 16px !important; box-sizing: border-box !important; }
}

@media (max-width: 480px) {
  .header-logo img { height: 44px !important; }
}
