/* ==========================================================================
   CoreCraft Solutions Ltd — Custom Stylesheet
   ========================================================================== */

/* ─── Google Fonts ─────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* ─── CSS Variables ─────────────────────────────────────────────────────────── */
:root {
  --primary:       #0d1b2a;
  --primary-mid:   #1a2d48;
  --accent:        #e07b22;
  --accent-hover:  #c4640e;
  --accent-blue:   #1a56db;
  --accent-blue-h: #1447ba;
  --light:         #f5f7fa;
  --light-border:  #e5e9ef;
  --text:          #1e293b;
  --text-muted:    #64748b;
  --white:         #ffffff;
  --success:       #16a34a;
  --danger:        #dc2626;

  --shadow-sm:     0 2px 8px rgba(0,0,0,.07);
  --shadow:        0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:     0 8px 40px rgba(0,0,0,.15);
  --shadow-card:   0 2px 12px rgba(0,0,0,.08);

  --radius:        10px;
  --radius-lg:     16px;
  --transition:    all .3s ease;
  --section-py:    90px;
}

/* ─── Base Reset ────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.25;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

img { max-width: 100%; }

/* ─── Custom Scrollbar ──────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 99px; }

/* ─── Section Helpers ───────────────────────────────────────────────────────── */
.section-py { padding: var(--section-py) 0; }
.section-dark { background: var(--primary); }
.section-dark h1, .section-dark h2,
.section-dark h3, .section-dark h4 { color: var(--white); }
.section-light { background: var(--light); }
.section-white { background: var(--white); }

.section-label {
  display: inline-block;
  background: rgba(224, 123, 34, .12);
  color: var(--accent);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title { margin-bottom: 56px; }
.section-title h2 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-title .lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}
.section-dark .section-title .lead { color: rgba(255,255,255,.65); }

.title-line {
  width: 56px;
  height: 4px;
  background: var(--accent);
  border-radius: 99px;
  margin: 12px auto 0;
}
.section-title.text-start .title-line { margin-left: 0; }

/* ─── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .3px;
  border-radius: var(--radius);
  padding: 13px 30px;
  transition: var(--transition);
}

.btn-primary-custom {
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
}
.btn-primary-custom:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224,123,34,.35);
}

.btn-outline-custom {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.7);
}
.btn-outline-custom:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-blue {
  background: var(--accent-blue);
  color: var(--white);
  border: 2px solid var(--accent-blue);
}
.btn-blue:hover {
  background: var(--accent-blue-h);
  border-color: var(--accent-blue-h);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,86,219,.3);
}

.btn-dark-custom {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
}
.btn-dark-custom:hover {
  background: var(--primary-mid);
  border-color: var(--primary-mid);
  color: var(--white);
  transform: translateY(-2px);
}

/* ─── Navbar ────────────────────────────────────────────────────────────────── */
.navbar {
  background: transparent;
  padding: 18px 0;
  transition: var(--transition);
  z-index: 1050;
}
.navbar.scrolled {
  background: rgba(13, 27, 42, .97) !important;
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
}
.navbar-brand-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.45rem;
  color: var(--white) !important;
  letter-spacing: -.3px;
}
.navbar-brand-text span { color: var(--accent); }
.navbar-brand-sub {
  display: block;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-top: -3px;
}

.navbar-nav .nav-link {
  color: rgba(255,255,255,.85) !important;
  font-family: 'Outfit', sans-serif;
  font-size: .88rem;
  font-weight: 500;
  padding: 8px 14px !important;
  letter-spacing: .2px;
  transition: var(--transition);
  white-space: nowrap;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent) !important;
}

.navbar-toggler {
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 8px;
  padding: 6px 10px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Mobile nav */
@media (max-width: 1199px) {
  .navbar-collapse {
    background: rgba(13,27,42,.97);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-top: 12px;
    border: 1px solid rgba(255,255,255,.08);
  }
  .navbar .btn { width: 100%; text-align: center; margin-top: 8px; }
}

/* ─── Hero ──────────────────────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 60px;
  /*
     Replace the gradient below with a real construction-site photo:
     background: linear-gradient(rgba(13,27,42,.82), rgba(13,27,42,.72)),
                 url('../images/hero-bg.jpg') center/cover no-repeat;
  */
  background:
    linear-gradient(160deg, rgba(13,27,42,.95) 0%, rgba(26,45,72,.88) 60%, rgba(13,27,42,.92) 100%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,.012) 40px,
      rgba(255,255,255,.012) 80px
    );
  background-color: var(--primary);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(224,123,34,.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224,123,34,.15);
  border: 1px solid rgba(224,123,34,.35);
  color: var(--accent);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-section h1 {
  font-size: clamp(2.3rem, 5.5vw, 4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 22px;
}
.hero-section h1 .highlight {
  color: var(--accent);
  position: relative;
}

.hero-section .lead {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.75);
  max-width: 580px;
  margin-bottom: 38px;
}

.hero-cta-group { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat-item {}
.hero-stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  letter-spacing: .5px;
  margin-top: 3px;
}

.hero-image-block {
  position: relative;
}
.hero-image-block .main-img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 500px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-float-card.card-bottom {
  bottom: -20px;
  left: -30px;
}
.hero-float-card.card-top {
  top: 24px;
  right: -24px;
}
.hero-float-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(224,123,34,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
  flex-shrink: 0;
}
.hero-float-card h6 {
  font-size: .92rem;
  font-weight: 500;
  color: var(--primary);
  margin: 0 0 2px;
}
.hero-float-card p {
  font-size: .78rem;
  color: var(--text-muted);
  margin: 0;
}

/* ─── Stats Bar ─────────────────────────────────────────────────────────────── */
.stats-bar {
  background: var(--accent);
  padding: 32px 0;
}
.stat-item {
  text-align: center;
  padding: 8px 0;
}
.stat-item .stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  display: block;
}
.stat-item .stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.8);
  font-weight: 500;
  margin-top: 4px;
  display: block;
}

/* ─── Service Cards ─────────────────────────────────────────────────────────── */
.service-card {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px 30px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: var(--transition);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: rgba(224,123,34,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent);
  margin: 0 auto 22px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--accent);
  color: var(--white);
  transform: rotate(-5deg) scale(1.05);
}

.service-card h5 {
  font-size: 1.07rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--primary);
}
.service-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}
.service-link {
  color: var(--accent);
  font-size: .88rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-link:hover { color: var(--accent-hover); gap: 10px; }

/* ─── About Section ─────────────────────────────────────────────────────────── */
.about-img-wrap { position: relative; }
.about-img-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 500px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-experience-badge .number {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  display: block;
}
.about-experience-badge .label {
  font-size: .85rem;
  font-weight: 600;
  opacity: .9;
  margin-top: 4px;
}

.about-feature {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  align-items: flex-start;
}
.about-feature-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(224,123,34,.1);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-feature-text h6 {
  font-size: .97rem;
  font-weight: 500;
  margin-bottom: 2px;
  color: var(--primary);
}
.about-feature-text p {
  font-size: .87rem;
  color: var(--text-muted);
  margin: 0;
}

/* ─── Why Choose Us ─────────────────────────────────────────────────────────── */
.why-card {
  text-align: center;
  padding: 40px 28px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  height: 100%;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,.06);
  border-color: var(--accent);
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}
.why-card-icon {
  width: 72px; height: 72px;
  border-radius: 20px;
  background: rgba(224,123,34,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: var(--accent);
  margin: 0 auto 22px;
  transition: var(--transition);
  transform: rotate(-5deg);
}
.why-card:hover .why-card-icon {
  background: var(--accent);
  color: var(--white);
  transform: rotate(0deg) scale(1.1);
}
.why-card h5 {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card p {
  font-size: .87rem;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
  margin: 0;
}

/* ─── Project / Gallery ─────────────────────────────────────────────────────── */
.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.project-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.project-card:hover img { transform: scale(1.07); }
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,.88) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 22px;
  opacity: 0;
  transition: var(--transition);
}
.project-card:hover .project-overlay { opacity: 1; }
.project-overlay h5 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.project-overlay span {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
}
.project-zoom {
  position: absolute;
  top: 16px; right: 16px;
  width: 42px; height: 42px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
  opacity: 0;
  transition: var(--transition);
}
.project-card:hover .project-zoom { opacity: 1; }

/* ─── Areas Section ─────────────────────────────────────────────────────────── */
.area-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: 50px;
  padding: 9px 18px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
  margin: 5px;
}
.area-badge i { color: var(--accent); font-size: 1rem; }
.area-badge:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(224,123,34,.3);
}
.area-badge:hover i { color: var(--white); }

/* ─── Testimonials ──────────────────────────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--light-border);
  height: 100%;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
  z-index: 1;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.testimonial-quote {
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 8rem;
  color: rgba(224,123,34,.08);
  line-height: 1;
  font-family: Georgia, serif;
  z-index: -1;
  pointer-events: none;
}
.testimonial-text {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-stars { color: #f59e0b; font-size: .95rem; margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-name {
  font-family: 'Outfit', sans-serif;
  font-size: .95rem;
  font-weight: 500;
  color: var(--primary);
  margin: 0 0 2px;
}
.testimonial-loc {
  font-size: .8rem;
  color: var(--text-muted);
  margin: 0;
}

/* ─── Trust Badges ──────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--light);
  padding: 48px 0;
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 16px;
}
.trust-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--light-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 10px;
  box-shadow: var(--shadow-sm);
}
.trust-item h6 {
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: 2px;
  color: var(--primary);
}
.trust-item p {
  font-size: .78rem;
  color: var(--text-muted);
  margin: 0;
}

/* ─── Quote / CTA Form ──────────────────────────────────────────────────────── */
.quote-section {
  background:
    linear-gradient(rgba(13,27,42,.93), rgba(13,27,42,.90)),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 30px,
      rgba(255,255,255,.01) 30px,
      rgba(255,255,255,.01) 60px
    );
  background-color: var(--primary);
}

.quote-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 42px 40px;
  box-shadow: var(--shadow-lg);
}

.form-label {
  font-family: 'Outfit', sans-serif;
  font-size: .83rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}
.form-control, .form-select {
  border: 1.5px solid var(--light-border);
  border-radius: var(--radius);
  padding: 11px 16px;
  font-size: .92rem;
  color: var(--text);
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(224,123,34,.15);
}
textarea.form-control { resize: vertical; min-height: 130px; }

/* ─── CTA Banner ────────────────────────────────────────────────────────────── */
.cta-banner {
  background: var(--accent);
  padding: 60px 0;
}
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  font-weight: 600;
}
.cta-banner p { color: rgba(255,255,255,.82); font-size: 1.05rem; }

/* ─── Page Hero (inner pages) ───────────────────────────────────────────────── */
.page-hero {
  background:
    linear-gradient(rgba(13,27,42,.88), rgba(13,27,42,.80)),
    url('../images/page-hero-bg.jpg') center/cover no-repeat;
  background-color: var(--primary-mid);
  padding: 130px 0 80px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}
.page-hero .breadcrumb {
  justify-content: center;
  background: transparent;
  margin: 0;
}
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.5); }
.page-hero .breadcrumb-item a { color: var(--accent); }
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,.7); }

/* ─── Footer ────────────────────────────────────────────────────────────────── */
.site-footer {
  background: #080f1a;
  padding: 72px 0 0;
  color: rgba(255,255,255,.65);
}
.footer-brand-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--white);
}
.footer-brand-text span { color: var(--accent); }
.site-footer p { font-size: .9rem; line-height: 1.7; }
.footer-title {
  font-family: 'Outfit', sans-serif;
  font-size: .95rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 3px;
  background: var(--accent);
  border-radius: 99px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-links a i { color: var(--accent); font-size: .95rem; }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.footer-contact-item i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-item span { font-size: .88rem; color: rgba(255,255,255,.65); }

.footer-bottom {
  background: rgba(0,0,0,.3);
  padding: 18px 0;
  margin-top: 52px;
  text-align: center;
  font-size: .84rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: var(--accent); }

/* ─── WhatsApp Floating Button ──────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 62px;
  height: 62px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  z-index: 9999;
  box-shadow: 0 4px 22px rgba(37,211,102,.45);
  transition: transform .3s ease, box-shadow .3s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  color: var(--white);
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,.55);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: wa-pulse 2.2s ease-out infinite;
  z-index: -1;
}
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: .8; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  white-space: nowrap;
  background: var(--primary);
  color: var(--white);
  font-size: .82rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease;
  font-family: 'Outfit', sans-serif;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -7px; top: 50%;
  transform: translateY(-50%);
  border: 7px solid transparent;
  border-right-width: 0;
  border-left-color: var(--primary);
}

/* ─── Back to Top ───────────────────────────────────────────────────────────── */
#backToTop {
  position: fixed;
  bottom: 104px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 9998;
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  border: none;
}
#backToTop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#backToTop:hover { background: var(--accent); }

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

/* ─── Team Card ─────────────────────────────────────────────────────────────── */
.team-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--light-border);
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.team-card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: var(--light);
}
.team-card-body { padding: 22px; }
.team-card-body h5 { font-size: 1rem; font-weight: 500; margin-bottom: 3px; }
.team-card-body span { font-size: .83rem; color: var(--accent); font-weight: 600; }

/* ─── Accordion (FAQ) ───────────────────────────────────────────────────────── */
.accordion-item {
  border: 1px solid var(--light-border);
  border-radius: var(--radius) !important;
  margin-bottom: 10px;
  overflow: hidden;
}
.accordion-button {
  font-family: 'Outfit', sans-serif;
  font-size: .97rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--white);
}
.accordion-button:not(.collapsed) {
  color: var(--accent);
  background: rgba(224,123,34,.05);
  box-shadow: none;
}
.accordion-button::after {
  filter: brightness(0) saturate(100%) invert(50%) sepia(80%) saturate(500%) hue-rotate(2deg) brightness(98%);
}

/* ─── Contact Info Cards ────────────────────────────────────────────────────── */
.contact-card {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  height: 100%;
  transition: var(--transition);
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.contact-card-icon {
  width: 66px; height: 66px;
  border-radius: 50%;
  background: rgba(224,123,34,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: var(--accent);
  margin: 0 auto 18px;
}
.contact-card h5 {
  font-size: 1rem; font-weight: 500;
  margin-bottom: 6px;
}
.contact-card p, .contact-card a {
  font-size: .9rem;
  color: var(--text-muted);
  margin: 0;
}
.contact-card a:hover { color: var(--accent); }

/* ─── Misc Utilities ────────────────────────────────────────────────────────── */
.text-accent { color: var(--accent) !important; }
.bg-accent { background: var(--accent) !important; }
.bg-primary-custom { background: var(--primary) !important; }
.border-accent { border-color: var(--accent) !important; }

.divider {
  width: 56px; height: 4px;
  background: var(--accent);
  border-radius: 99px;
  margin: 16px 0;
}

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .93rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.check-list li i {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
  :root { --section-py: 64px; }
  .hero-image-block { margin-top: 40px; }
  .hero-float-card { display: none; }
  .about-experience-badge { bottom: 10px; right: 10px; }
  .quote-form-wrap { padding: 30px 24px; }
}
@media (max-width: 767px) {
  :root { --section-py: 52px; }
  .about-img-wrap img, .hero-image-block .main-img { height: 300px; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 54px; height: 54px; font-size: 1.6rem; }
  #backToTop { bottom: 86px; right: 22px; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { text-align: center; }
  .stats-bar .col-6 { border-bottom: 1px solid rgba(255,255,255,.15); padding-bottom: 16px; margin-bottom: 4px; }
}
