/* ─── HOME PAGE SPECIFIC STYLES ─── */

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh; min-height: 680px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,21,40,0.92) 0%,
    rgba(13,21,40,0.75) 50%,
    rgba(13,21,40,0.35) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding-top: 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(184,115,51,0.15);
  border: 1px solid rgba(184,115,51,0.4);
  color: #d4956a;
  padding: 8px 20px; border-radius: 30px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease both;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--copper);
  animation: pulse-dot 1.6s ease-in-out infinite;
}
.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900; color: var(--white); line-height: 1.0;
  margin-bottom: 24px; letter-spacing: 0.01em;
  animation: fadeInUp 0.9s ease 0.1s both;
}
.hero-title span { color: var(--copper); }
.hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.72); max-width: 560px; line-height: 1.8;
  margin-bottom: 36px;
  animation: fadeInUp 0.9s ease 0.2s both;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeInUp 0.9s ease 0.3s both;
}
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white); padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase;
  transition: var(--transition); background: transparent;
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 20px;
  animation: fadeInUp 0.9s ease 0.4s both;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.65); font-size: 0.82rem; font-weight: 500;
}
.hero-trust-item .icon { color: var(--copper); font-size: 0.9rem; }
.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  z-index: 2;
  animation: fadeIn 1.5s ease 1s both;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(184,115,51,0.8), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity:1; }
  50% { transform: scaleY(0.5); opacity:0.4; }
}
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(30px); }
  to { opacity:1; transform:translateY(0); }
}
@keyframes fadeInDown {
  from { opacity:0; transform:translateY(-20px); }
  to { opacity:1; transform:translateY(0); }
}
@keyframes fadeIn {
  from { opacity:0; } to { opacity:1; }
}

/* ─── INTRO SECTION ─── */
.intro-section { padding: 100px 0; background: var(--white); }
.intro-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.intro-body {
  color: var(--text-mid); font-size: 0.95rem; line-height: 1.8;
  margin: 16px 0 28px;
}
.intro-highlights { margin-bottom: 32px; display: flex; flex-direction: column; gap: 16px; }
.intro-highlight-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 16px; border-radius: var(--radius);
  background: var(--off-white); border-left: 3px solid var(--copper);
}
.ihi-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.ihi-text strong { display: block; color: var(--navy); font-size: 0.9rem; margin-bottom: 2px; }
.ihi-text span { color: var(--text-mid); font-size: 0.82rem; }

.intro-images { position: relative; }
.intro-img-main {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.intro-img-main img { width:100%; height:100%; object-fit:cover; }
.intro-img-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--copper);
  padding: 20px 24px; border-radius: var(--radius);
  text-align: center; box-shadow: var(--shadow);
}
.badge-number {
  font-family: var(--font-heading); font-size: 2.2rem; font-weight: 900;
  color: var(--white); line-height: 1;
}
.badge-text { color: rgba(255,255,255,0.85); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; }
.intro-img-secondary {
  position: absolute; top: -20px; right: -20px;
  width: 38%; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 3px solid var(--white);
  aspect-ratio: 1/1;
}
.intro-img-secondary img { width:100%; height:100%; object-fit:cover; }

/* ─── SERVICES SECTION ─── */
.services-section { padding: 100px 0; background: var(--off-white); }
.services-section .section-header-center { margin-bottom: 60px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-img-wrap { height: 200px; overflow: hidden; }
.service-img-wrap img { width:100%; height:100%; object-fit:cover; transition: transform 0.5s ease; }
.service-card:hover .service-img-wrap img { transform: scale(1.05); }
.service-card-body { padding: 24px; }
.service-icon { font-size: 1.5rem; margin-bottom: 12px; }
.service-card h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 10px; }
.service-card p { color: var(--text-mid); font-size: 0.88rem; line-height: 1.7; margin-bottom: 16px; }
.service-link {
  color: var(--copper); font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.05em; transition: var(--transition);
}
.service-link:hover { color: var(--copper-dark); letter-spacing: 0.09em; }
.service-card-featured { grid-column: span 1; }
.service-card-cta {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white);
}
.service-cta-body { padding: 32px 24px; display:flex; flex-direction:column; justify-content:center; height:100%; min-height:240px; }
.service-cta-body .service-icon { color: var(--copper-light); }
.service-cta-body h3 { color: var(--white); margin-bottom: 12px; }
.service-cta-body p { color: rgba(255,255,255,0.65); margin-bottom: 24px; }

/* ─── WHY SECTION ─── */
.why-section {
  padding: 100px 0; position: relative; overflow: hidden;
}
.why-bg-img {
  position: absolute; inset: 0;
}
.why-bg-img img { width:100%; height:100%; object-fit:cover; object-position: center; }
.why-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(13,21,40,0.97) 50%,
    rgba(13,21,40,0.70) 100%
  );
}
.why-inner { position: relative; z-index: 1; }
.why-content { max-width: 600px; }
.why-features { display: flex; flex-direction: column; gap: 24px; }
.why-feature {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 20px; border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,115,51,0.15);
  transition: var(--transition);
}
.why-feature:hover { background: rgba(184,115,51,0.08); border-color: rgba(184,115,51,0.3); }
.why-feature-num {
  font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800;
  color: var(--copper); line-height: 1; flex-shrink: 0;
}
.why-feature-text h4 { color: var(--white); font-size: 1rem; margin-bottom: 6px; }
.why-feature-text p { color: rgba(255,255,255,0.55); font-size: 0.85rem; line-height: 1.65; }

/* ─── INDUSTRIES ─── */
.industries-section { padding: 100px 0; background: var(--white); }
.industries-section .section-header-center { margin-bottom: 56px; }
.industries-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.industry-card {
  padding: 32px 24px; border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
  text-align: center; transition: var(--transition);
  background: var(--white);
}
.industry-card:hover { border-color: var(--copper); transform: translateY(-4px); box-shadow: var(--shadow); }
.industry-icon { font-size: 2rem; margin-bottom: 14px; }
.industry-card h4 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.industry-card p { color: var(--text-mid); font-size: 0.83rem; }

/* ─── PROCESS ─── */
.process-section { padding: 100px 0; position: relative; background: var(--off-white); }
.process-bg {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b87333' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.process-grid {
  position: relative; display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center;
}
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(26,36,71,0.1);
  transition: var(--transition);
}
.process-step:last-child { border-bottom: none; }
.process-step:hover .process-step-number { color: var(--copper); }
.process-step-number {
  font-family: var(--font-heading); font-size: 2rem; font-weight: 900;
  color: rgba(26,36,71,0.15); line-height: 1; flex-shrink: 0;
  transition: var(--transition);
}
.process-step-content h4 { color: var(--navy); font-size: 1rem; margin-bottom: 8px; }
.process-step-content p { color: var(--text-mid); font-size: 0.88rem; line-height: 1.7; }

/* ─── BANNER SECTION ─── */
.banner-section { position: relative; }
.banner-img-wrap { position: relative; height: 480px; overflow: hidden; }
.banner-img-wrap > img { width:100%; height:100%; object-fit:cover; object-position: center 30%; }
.banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,21,40,0.5), rgba(13,21,40,0.85));
}
.banner-content {
  position: absolute; inset: 0; display: flex; align-items: center;
}
.banner-inner { max-width: 620px; }
.banner-tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--copper); border: 1px solid var(--copper);
  padding: 4px 14px; border-radius: 20px; margin-bottom: 16px;
}
.banner-inner h2 { font-size: clamp(1.8rem,3.5vw,3rem); color: var(--white); margin-bottom: 16px; }
.banner-inner p { color: rgba(255,255,255,0.7); margin-bottom: 28px; line-height: 1.75; }

/* ─── TESTIMONIALS ─── */
.testimonials-section { padding: 100px 0; background: var(--white); }
.testimonials-section .section-header-center { margin-bottom: 60px; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.testimonial-card {
  background: var(--off-white); border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--light-gray);
  position: relative; transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial-card-featured {
  background: var(--navy);
  border-color: var(--navy);
}
.testimonial-quote {
  font-size: 4rem; font-family: Georgia, serif; line-height: 0.6;
  color: var(--copper); margin-bottom: 16px; display: block;
}
.testimonial-text {
  color: var(--text-mid); font-size: 0.9rem; line-height: 1.75; margin-bottom: 24px;
  font-style: italic;
}
.testimonial-card-featured .testimonial-text { color: rgba(255,255,255,0.7); }
.testimonial-author {
  display: flex; align-items: center; gap: 14px;
}
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--copper), var(--copper-dark));
  color: var(--white); font-weight: 700; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--navy); }
.testimonial-author span { font-size: 0.78rem; color: var(--mid-gray); }
.testimonial-card-featured .testimonial-author strong { color: var(--white); }
.testimonial-card-featured .testimonial-author span { color: rgba(255,255,255,0.5); }

/* ─── COVERAGE ─── */
.coverage-section { padding: 100px 0; background: var(--off-white); }
.coverage-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.coverage-regions {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin: 28px 0;
}
.coverage-region {
  display: flex; align-items: center; gap: 8px;
  color: var(--text-mid); font-size: 0.88rem; font-weight: 500;
}
.coverage-img-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3; position: relative; box-shadow: var(--shadow-lg);
}
.coverage-img-wrap img { width:100%; height:100%; object-fit:cover; }
.coverage-img-overlay {
  position: absolute; bottom: 24px; left: 24px;
  display: flex; align-items: center; gap: 12px;
}
.coverage-ping {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--copper); box-shadow: 0 0 0 6px rgba(184,115,51,0.3);
  animation: ping 1.8s ease-in-out infinite;
}
@keyframes ping {
  0%,100% { box-shadow: 0 0 0 4px rgba(184,115,51,0.4); }
  50% { box-shadow: 0 0 0 10px rgba(184,115,51,0.1); }
}
.coverage-ping-label {
  background: rgba(13,21,40,0.88); backdrop-filter: blur(8px);
  color: var(--white); padding: 8px 14px; border-radius: 6px;
  font-size: 0.8rem; font-weight: 600;
}
.coverage-ping-label small { color: var(--copper); font-weight: 700; }

/* ─── CREDENTIALS ─── */
.credentials-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
}
.credentials-inner {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: center;
}
.credentials-inner .section-title { color: var(--white); }
.credentials-inner .section-subtitle { color: rgba(255,255,255,0.6); }
.credentials-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
}
.credential-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,115,51,0.2);
  border-radius: var(--radius); padding: 20px 16px;
  text-align: center; transition: var(--transition);
}
.credential-badge:hover { background: rgba(184,115,51,0.1); border-color: var(--copper); transform: translateY(-3px); }
.credential-icon { font-size: 1.8rem; margin-bottom: 10px; }
.credential-name { color: rgba(255,255,255,0.75); font-size: 0.78rem; font-weight: 600; line-height: 1.4; letter-spacing: 0.02em; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .intro-images { display: none; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: 1fr; gap: 48px; }
  .coverage-grid { grid-template-columns: 1fr; gap: 40px; }
  .credentials-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .intro-section, .services-section, .why-section,
  .industries-section, .process-section, .testimonials-section,
  .coverage-section, .credentials-section { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: repeat(2,1fr); }
  .hero-actions { flex-direction: column; }
  .hero-trust { gap: 12px; }
  .coverage-regions { grid-template-columns: 1fr; }
  .banner-img-wrap { height: 360px; }
}
@media (max-width: 480px) {
  .industries-grid { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 2.4rem; }
}
