/* ============================================
   AUREX GROUP – pages.css
   Shared styles for inner pages
   (About, Services, Projects, Contact)
============================================ */

/* ============================================
   PAGE HERO (inner pages)
============================================ */
.page-hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 0 80px;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9,18,40,0.88) 0%, rgba(26,58,110,0.72) 60%, rgba(9,18,40,0.55) 100%);
}
.page-hero-content { max-width: 680px; }
.page-breadcrumb {
  margin-bottom: 20px;
}
.page-breadcrumb .breadcrumb-item a {
  color: rgba(255,255,255,0.65);
  font-size: 13px;
}
.page-breadcrumb .breadcrumb-item.active {
  color: var(--accent);
  font-size: 13px;
}
.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.4);
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  margin: 16px 0 18px;
}
.page-hero p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  font-weight: 300;
}

/* ============================================
   BG UTILITY
============================================ */
.bg-off-white { background: var(--off-white); }

/* ============================================
   ABOUT PAGE – STORY HIGHLIGHTS
============================================ */
.story-highlights { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.story-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--dark-text);
  font-weight: 500;
}
.story-point .bi {
  color: var(--success);
  font-size: 18px;
  flex-shrink: 0;
}

/* ============================================
   MISSION / VISION CARDS
============================================ */
.mv-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  height: 100%;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.mv-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
}
.mv-card:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-hover); }
.mv-card:hover::after { transform: scaleX(1); }
.mv-card.featured-mv {
  background: var(--primary);
  border-color: transparent;
  box-shadow: 0 20px 50px rgba(26,58,110,0.3);
}
.mv-card.featured-mv h4,
.mv-card.featured-mv p { color: rgba(255,255,255,0.92); }
.mv-card.featured-mv::after { background: var(--accent); transform: scaleX(1); }
.mv-icon {
  width: 58px;
  height: 58px;
  background: rgba(26,58,110,0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--primary);
  margin-bottom: 22px;
  transition: var(--transition);
}
.mv-icon.accent {
  background: rgba(245,166,35,0.15);
  color: var(--accent);
}
.featured-mv .mv-icon {
  background: rgba(255,255,255,0.12);
  color: var(--accent);
}
.mv-card h4 { font-size: 20px; font-weight: 700; margin-bottom: 14px; }
.mv-card p { font-size: 14px; color: var(--body-text); line-height: 1.75; }
.values-list { list-style: none; }
.values-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--body-text);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}
.values-list li:last-child { border-bottom: none; }
.values-list li .bi { color: var(--success); font-size: 15px; flex-shrink: 0; }

/* ============================================
   STAT BOX (stats section variant)
============================================ */
.stat-box.light {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  padding: 20px;
}
.stat-box.light .stat-num { color: var(--white); }
.stat-box.light .stat-plus { color: var(--accent); }
.stat-box.light .stat-label { color: rgba(255,255,255,0.65); }

/* ============================================
   TEAM SWIPER
============================================ */
.team-swiper { padding-bottom: 60px !important; padding-top: 10px !important; }
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-hover); }
.team-img {
  position: relative;
  overflow: hidden;
  height: 260px;
}
.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}
.team-card:hover .team-img img { transform: scale(1.05); }
.team-social {
  position: absolute;
  bottom: -50px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: linear-gradient(0deg, rgba(26,58,110,0.92) 0%, transparent 100%);
  transition: var(--transition);
}
.team-card:hover .team-social { bottom: 0; }
.team-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 15px;
  border: 1px solid rgba(255,255,255,0.25);
  transition: var(--transition);
}
.team-social a:hover { background: var(--accent); border-color: var(--accent); }
.team-body { padding: 22px; }
.team-body h5 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.team-role {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.team-body p { font-size: 13px; color: var(--body-text); margin: 0; }

/* Team swiper nav */
.team-prev, .team-next {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--card-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  transition: var(--transition);
  border: 1px solid var(--border);
  top: 35% !important;
}
.team-prev::after, .team-next::after { display: none; }
.team-prev { left: -12px !important; }
.team-next { right: -12px !important; }
.team-prev:hover, .team-next:hover { background: var(--primary); color: white; }
.team-pagination .swiper-pagination-bullet { background: var(--border); opacity: 1; }
.team-pagination .swiper-pagination-bullet-active { background: var(--primary); }

/* ============================================
   TIMELINE (About milestones)
============================================ */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 40px);
  margin-bottom: 40px;
  position: relative;
}
.timeline-item.right {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 40px);
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 24px;
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateX(-50%);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--accent);
  z-index: 1;
}
.timeline-year {
  position: absolute;
  left: 50%;
  top: 14px;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
  margin-top: 0;
  z-index: 2;
}
.timeline-item::before { top: 30px; }
.timeline-content {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  border: 1px solid var(--border);
  max-width: 380px;
  width: 100%;
  box-shadow: var(--card-shadow);
  margin-top: 52px;
  transition: var(--transition);
}
.timeline-content:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-2px); }
.timeline-content h5 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.timeline-content p { font-size: 14px; color: var(--body-text); margin: 0; }

/* ============================================
   PAGE CTA BOX
============================================ */
.page-cta-box {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius);
  padding: 48px 44px;
  box-shadow: 0 20px 60px rgba(15,36,72,0.25);
}
.page-cta-box h3 {
  color: var(--white);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  margin-bottom: 10px;
}
.page-cta-box p { color: rgba(255,255,255,0.75); margin: 0; }
.btn-outline-primary-custom {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 50px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}
.btn-outline-primary-custom:hover { background: rgba(255,255,255,0.12); color: var(--white); border-color: white; }
.btn-whatsapp-custom {
  background: #25D366;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}
.btn-whatsapp-custom:hover { background: #1DB954; color: var(--white); transform: translateY(-2px); }

/* ============================================
   SERVICES PAGE – INTRO BADGES
============================================ */
.intro-badge {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-text);
  transition: var(--transition);
}
.intro-badge:hover { border-color: var(--primary); color: var(--primary); }
.intro-badge .bi { color: var(--accent); font-size: 18px; }

/* SERVICE DETAIL IMAGES */
.service-detail-img {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}
.service-detail-img img {
  border-radius: var(--radius);
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(15,36,72,0.18);
}
.service-detail-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 70px;
  height: 70px;
  background: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  box-shadow: 0 10px 30px rgba(26,58,110,0.35);
  border: 4px solid var(--white);
}
.service-detail-badge.accent { background: var(--accent); }

/* SERVICE FEATURE LIST */
.service-feature-list {
  list-style: none;
  margin: 20px 0 0;
}
.service-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  font-size: 15px;
  color: var(--body-text);
  border-bottom: 1px solid var(--border);
}
.service-feature-list li:last-child { border-bottom: none; }
.service-feature-list li .bi { color: var(--success); font-size: 17px; flex-shrink: 0; }
.service-feature-list.compact li { padding: 7px 0; font-size: 14px; }

/* SPECIALIST CARDS */
.specialist-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  height: 100%;
  transition: var(--transition);
}
.specialist-card:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-hover); }
.specialist-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.specialist-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.specialist-card:hover .specialist-img img { transform: scale(1.06); }
.specialist-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,58,110,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.specialist-card:hover .specialist-overlay { opacity: 1; }
.specialist-icon {
  width: 60px;
  height: 60px;
  background: rgba(245,166,35,0.9);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
}
.specialist-body { padding: 28px; }
.specialist-body h4 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.specialist-body > p { font-size: 14px; color: var(--body-text); margin-bottom: 16px; }

/* ============================================
   PROCESS STEPS
============================================ */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  overflow-x: auto;
  padding-bottom: 12px;
}
.process-step {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.step-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: rgba(26,58,110,0.08);
  line-height: 1;
  margin-bottom: -10px;
}
.step-icon {
  width: 64px;
  height: 64px;
  background: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  margin: 0 auto 18px;
  box-shadow: 0 8px 24px rgba(26,58,110,0.25);
  transition: var(--transition);
  position: relative;
  z-index: 2;
}
.process-step:hover .step-icon { background: var(--accent); transform: scale(1.08); }
.process-step h5 { font-size: 15px; font-weight: 700; margin-bottom: 10px; }
.process-step p { font-size: 13px; color: var(--body-text); }
.process-connector {
  flex-shrink: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin-top: 72px;
  border-radius: 1px;
}

/* ============================================
   FAQ ACCORDION
============================================ */
.faq-accordion { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  overflow: hidden;
  background: var(--white);
}
.faq-btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--dark-text);
  background: var(--white);
  padding: 18px 20px;
  box-shadow: none !important;
}
.faq-btn:not(.collapsed) {
  background: var(--off-white);
  color: var(--primary);
}
.faq-btn::after {
  filter: none;
}
.faq-btn:not(.collapsed)::after {
  transform: rotate(-180deg);
}
.faq-body {
  padding: 0 20px 20px;
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.75;
  background: var(--off-white);
}

/* ============================================
   PROJECTS PAGE – FEATURED SWIPER
============================================ */
.featured-projects-swiper { padding-bottom: 50px !important; }
.featured-project-slide {
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
}
.fp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9,18,40,0.92) 0%, rgba(9,18,40,0.4) 50%, rgba(9,18,40,0.15) 100%);
}
.fp-content {
  position: relative;
  z-index: 2;
  padding: 44px 40px;
}
.fp-cat {
  display: inline-block;
  background: rgba(245,166,35,0.2);
  border: 1px solid rgba(245,166,35,0.5);
  color: var(--accent);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.fp-content h3 {
  color: var(--white);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 12px;
  max-width: 600px;
}
.fp-content p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  max-width: 540px;
  margin-bottom: 20px;
}
.fp-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}
.fp-meta span {
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.fp-meta .bi { color: var(--accent); }
.fp-prev, .fp-next {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.3);
}
.fp-prev::after, .fp-next::after { display: none; }
.fp-prev:hover, .fp-next:hover { background: var(--accent); }
.fp-pagination .swiper-pagination-bullet { background: rgba(255,255,255,0.4); opacity: 1; }
.fp-pagination .swiper-pagination-bullet-active { background: var(--accent); }

/* ============================================
   CASE STUDY
============================================ */
.cs-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}
.cs-meta span {
  background: var(--light-gray);
  color: var(--body-text);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.cs-meta .bi { color: var(--primary); }
.case-study-content h4 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.cs-stats {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin: 20px 0;
}
.cs-stat {
  flex: 1;
  padding: 18px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.cs-stat:last-child { border-right: none; }
.cs-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}
.cs-stat span { font-size: 12px; color: var(--mid-gray); font-weight: 500; }

/* ============================================
   CONTACT PAGE
============================================ */
.contact-hero { min-height: 400px; }

/* Quick contact strip */
.quick-contact-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(15,36,72,0.06);
}
.quick-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  border-right: 1px solid var(--border);
  color: var(--dark-text);
  transition: var(--transition);
  cursor: pointer;
}
.quick-contact-item:last-child { border-right: none; }
.quick-contact-item:hover { background: var(--off-white); color: var(--primary); }
.quick-contact-item.whatsapp:hover { color: #25D366; }
.qc-icon {
  width: 46px;
  height: 46px;
  background: rgba(26,58,110,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
  flex-shrink: 0;
  transition: var(--transition);
}
.qc-icon.green { background: rgba(37,211,102,0.1); color: #25D366; }
.quick-contact-item > div span { display: block; font-size: 12px; color: var(--mid-gray); font-weight: 500; margin-bottom: 2px; }
.quick-contact-item > div strong { display: block; font-size: 15px; font-weight: 700; }

/* Contact detail items (sidebar) */
.contact-details { display: flex; flex-direction: column; }
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail-item:last-child { border-bottom: none; }
.contact-detail-item .contact-icon {
  width: 46px;
  height: 46px;
  background: rgba(26,58,110,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-detail-item .contact-icon.accent { background: rgba(37,211,102,0.1); color: #25D366; }
.contact-detail-item h6 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--mid-gray); margin-bottom: 4px; }
.contact-detail-item a, .contact-detail-item p { font-size: 15px; color: var(--body-text); margin: 0; }
.contact-detail-item a:hover { color: var(--primary); }

.contact-socials { display: flex; gap: 10px; }
.contact-socials a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--light-gray);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--body-text);
  font-size: 16px;
  transition: var(--transition);
}
.contact-socials a:hover { background: var(--primary); color: white; border-color: var(--primary); }

/* Contact Form Card (full page) */
.contact-form-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
}
.form-card-header { margin-bottom: 28px; }
.form-card-header h4 { font-weight: 800; font-size: 22px; margin-bottom: 8px; }
.form-card-header p { color: var(--body-text); font-size: 14px; margin: 0; }
.req { color: var(--accent); }

.form-check-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-check-custom {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
}
.form-check-group label {
  font-size: 14px;
  color: var(--body-text);
  cursor: pointer;
}
.form-note {
  font-size: 12px;
  color: var(--mid-gray);
  margin: 0;
  text-align: center;
}
.form-note .bi { color: var(--success); }

/* Map */
.map-section { padding: 0 0 80px; }
.map-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15,36,72,0.15);
}
.map-wrapper iframe { display: block; }
.map-pin-card {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 30px rgba(15,36,72,0.15);
  max-width: 280px;
}
.map-pin-icon {
  width: 44px;
  height: 44px;
  background: rgba(245,166,35,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent);
  flex-shrink: 0;
}
.map-pin-card strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.map-pin-card span { display: block; font-size: 12px; color: var(--body-text); margin-bottom: 6px; }
.map-pin-card a { font-size: 12px; font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 5px; }
.map-pin-card a:hover { color: var(--accent); }

/* ============================================
   RESPONSIVE ADJUSTMENTS
============================================ */
@media (max-width: 991px) {
  .page-hero { min-height: 380px; padding: 100px 0 60px; }
  .page-hero h1 { font-size: 2rem; }
  .process-steps { gap: 0; }
  .process-connector { width: 24px; }
  .timeline::before { left: 20px; }
  .timeline-item { padding-right: 0; padding-left: 60px; justify-content: flex-start; }
  .timeline-item.right { padding-left: 60px; }
  .timeline-item::before { left: 20px; transform: none; }
  .timeline-year { left: 20px; transform: none; top: -30px; }
  .timeline-content { margin-top: 0; max-width: 100%; }
  .service-detail-img img { height: 300px; }
  .page-cta-box { padding: 32px 24px; }
  .page-cta-box .text-lg-end { text-align: left !important; margin-top: 8px; }
}
@media (max-width: 767px) {
  .page-hero { background-attachment: scroll; min-height: 340px; padding: 90px 0 50px; }
  .quick-contact-item { padding: 16px 20px; }
  .contact-form-card { padding: 24px; }
  .fp-content { padding: 28px 20px; }
  .featured-project-slide { min-height: 380px; }
  .cs-stats { flex-direction: column; }
  .cs-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .cs-stat:last-child { border-bottom: none; }
  .process-steps { flex-direction: column; align-items: center; }
  .process-connector { width: 2px; height: 30px; margin: 0; }
  .map-pin-card { display: none; }
  .team-prev { left: -4px !important; }
  .team-next { right: -4px !important; }
}