/* ============================================================
   JEANNE FRANCIS & ASSOCIATES — Design System
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors */
  --clr-navy:        #1a2332;
  --clr-navy-light:  #243044;
  --clr-navy-dark:   #111827;
  --clr-gold:        #c9a84c;
  --clr-gold-light:  #d4b96a;
  --clr-gold-dark:   #b08f3a;

  /* Neutrals */
  --clr-white:       #ffffff;
  --clr-off-white:   #f8f6f3;
  --clr-light-gray:  #f1ede8;
  --clr-slate:       #64748b;
  --clr-dark-text:   #1e293b;
  --clr-body-text:   #475569;

  /* Typography */
  --ff-heading:      'Playfair Display', Georgia, 'Times New Roman', serif;
  --ff-body:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Font Sizes */
  --fs-hero:         clamp(2.2rem, 5vw, 3.5rem);
  --fs-h2:           clamp(1.8rem, 3.5vw, 2.5rem);
  --fs-h3:           clamp(1.3rem, 2.5vw, 1.75rem);
  --fs-h4:           1.25rem;
  --fs-body:         1rem;
  --fs-small:        0.875rem;

  /* Spacing */
  --section-py:      6rem;
  --section-px:      1.5rem;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s ease;
  --transition-slow: 0.6s ease;

  /* Shadows */
  --shadow-sm:       0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:       0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg:       0 8px 32px rgba(0,0,0,0.12);
  --shadow-gold:     0 4px 20px rgba(201,168,76,0.2);

  /* Border Radius */
  --radius-sm:       6px;
  --radius-md:       12px;
  --radius-lg:       20px;
}

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

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

body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  color: var(--clr-body-text);
  background-color: var(--clr-off-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  color: var(--clr-dark-text);
  line-height: 1.3;
  font-weight: 600;
}

a {
  color: var(--clr-gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--clr-gold-dark);
}

img {
  max-width: 100%;
  height: auto;
}

::selection {
  background: var(--clr-gold);
  color: var(--clr-white);
}

/* ---------- Utility Classes ---------- */
.section-padding {
  padding: var(--section-py) 0;
}

.section-title {
  font-size: var(--fs-h2);
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}

.section-subtitle {
  color: var(--clr-slate);
  font-size: 1.1rem;
  max-width: 600px;
}

.gold-accent {
  color: var(--clr-gold);
}

.text-gold {
  color: var(--clr-gold) !important;
}

.bg-navy {
  background-color: var(--clr-navy);
  color: var(--clr-white);
}

.bg-off-white {
  background-color: var(--clr-off-white);
}

.divider-gold {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold-light));
  border: none;
  margin: 1rem 0 1.5rem;
}

.divider-gold.center {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn-gold {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
  color: var(--clr-white);
  border: none;
  padding: 0.8rem 2rem;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  letter-spacing: 0.3px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold));
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline-gold {
  background: transparent;
  color: var(--clr-gold);
  border: 2px solid var(--clr-gold);
  padding: 0.75rem 2rem;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline-gold:hover {
  background: var(--clr-gold);
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline-light {
  background: transparent;
  color: var(--clr-white);
  border: 2px solid rgba(255,255,255,0.4);
  padding: 0.75rem 2rem;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  color: var(--clr-white);
  border-color: var(--clr-white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--clr-white);
  border: none;
  padding: 0.8rem 2rem;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-whatsapp:hover {
  background: #1ebe57;
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}

/* ---------- Navbar ---------- */
.navbar {
  padding: 1rem 0;
  transition: all var(--transition-base);
  z-index: 1050;
}

.navbar.scrolled {
  background: rgba(26, 35, 50, 0.97) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.6rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.navbar-brand {
  font-family: var(--ff-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--clr-white) !important;
  letter-spacing: 0.5px;
}

.navbar-brand .brand-accent {
  color: var(--clr-gold);
  font-weight: 400;
  font-size: 0.75rem;
  display: block;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: -2px;
}

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 1rem !important;
  transition: color var(--transition-fast);
  position: relative;
  letter-spacing: 0.3px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--clr-gold) !important;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--clr-gold);
  transform: scaleX(0);
  transition: transform var(--transition-base);
  transform-origin: center;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar .btn-gold {
  padding: 0.5rem 1.5rem;
  font-size: 0.85rem;
}

.navbar-toggler {
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.4rem 0.7rem;
}

.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%28201, 168, 76, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
    .navbar {
      /*position: relative;*/
      width: 100%;
      max-width: 100%;
      background: rgba(26, 35, 50, 0.97) !important;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 2px 20px rgba(0,0,0,0.15);
    }
    /*
    .hero-section {
      padding-top: 0;
      min-height: auto;
    }
    
    .page-banner {
      padding-top: 3rem;
    }
    */
}

/* ---------- Navbar Dropdown ---------- */
  .navbar .dropdown-toggle::after {
    border-top-color: rgba(255,255,255,0.7);
    vertical-align: middle;
    margin-left: 0.4em;
  }

  .navbar .nav-link.active.dropdown-toggle::after {
    border-top-color: var(--clr-gold);
  }

  .navbar-dropdown {
    background: var(--clr-navy);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 270px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    margin-top: 0.5rem;
  }

  .navbar-dropdown .dropdown-item {
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
    padding: 0.6rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .navbar-dropdown .dropdown-item:hover,
  .navbar-dropdown .dropdown-item:focus {
    background: rgba(201,168,76,0.1);
    color: var(--clr-gold);
  }
  
  .navbar-dropdown .dropdown-item i {
    color: var(--clr-gold);
    font-size: 0.85rem;
    width: 16px;
    flex-shrink: 0;
  }

  .navbar-dropdown .dropdown-divider {
    border-color: rgba(201,168,76,0.2);
    margin: 0.4rem 0;
  }

  .navbar-dropdown .dropdown-item-all {
    color: var(--clr-gold);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  
  .navbar-dropdown .dropdown-item-all:hover {
    background: rgba(201,168,76,0.15);
    color: var(--clr-gold);
  }
  
  @media (max-width: 991.98px) {
    .navbar-dropdown {
      background: rgba(255,255,255,0.04);
      border: none;
      border-left: 2px solid rgba(201,168,76,0.35);
      border-radius: 0;
      box-shadow: none;
      margin-top: 0;
      margin-left: 0.75rem;
      padding: 0.25rem 0;
      min-width: unset;
    }

    .navbar-dropdown .dropdown-item {
      font-size: 0.84rem;
      padding: 0.5rem 1rem;
    }
  }

/* ---------- Hero Section ---------- */
.hero-section {
  background: linear-gradient(135deg, var(--clr-navy) 0%, var(--clr-navy-light) 50%, var(--clr-navy) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(201,168,76,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,168,76,0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Decorative pattern */
.hero-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--clr-gold);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: var(--fs-hero);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-title .highlight {
  color: var(--clr-gold);
  display: inline-block;
  position: relative;
}

.hero-description {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-qualifications {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-qualifications .qual-tag {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Hero Image Side */
.hero-image-wrapper {
  position: relative;
  z-index: 2;
}

.hero-image-frame {
  position: relative;
  display: inline-block;
}

.hero-image-frame::before {
  content: '';
  position: absolute;
  top: -15px;
  right: -15px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--clr-gold);
  border-radius: var(--radius-md);
  z-index: -1;
  opacity: 0.5;
}

.hero-image-frame::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
  border-radius: var(--radius-sm);
  z-index: -1;
  opacity: 0.3;
}

.hero-image {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-md);
  object-fit: cover;
  object-position: top;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
}

/* ---------- Stats / Trust Bar ---------- */
.stats-section {
  background: var(--clr-white);
  padding: 3.5rem 0;
  position: relative;
  z-index: 3;
  box-shadow: var(--shadow-sm);
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--clr-gold), transparent);
}

.stat-number {
  font-family: var(--ff-heading);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--clr-navy);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-number .gold-accent {
  color: var(--clr-gold);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--clr-slate);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ---------- About Section ---------- */
.about-section {
  background: var(--clr-off-white);
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: var(--radius-md);
  width: 100%;
  object-fit: cover;
  object-position: top;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 180px;
  padding: 1.25rem;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
  border-radius: var(--radius-md);
  color: var(--clr-white);
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.about-image-accent .number {
  font-family: var(--ff-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.about-image-accent .label {
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 0.25rem;
  opacity: 0.9;
}

.about-text .lead {
  font-size: 1.15rem;
  color: var(--clr-dark-text);
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.about-features li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
  font-weight: 500;
  color: var(--clr-dark-text);
}

.about-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 10px;
  height: 10px;
  background: var(--clr-gold);
  border-radius: 50%;
}

/* ---------- Services Section ---------- */
.services-section {
  background: var(--clr-white);
}

.service-card {
  background: var(--clr-white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-md);
  padding: 2rem;
  height: 100%;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold-light));
  transform: scaleX(0);
  transition: transform var(--transition-base);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.05));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--clr-gold);
  font-size: 1.5rem;
  transition: all var(--transition-base);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
  color: var(--clr-white);
  transform: scale(1.05);
}

.service-card h4 {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--clr-dark-text);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--clr-slate);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-sub-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-sub-list li {
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.88rem;
  color: var(--clr-body-text);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.service-sub-list li:last-child {
  border-bottom: none;
}

.service-sub-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--clr-gold);
  font-weight: 700;
  font-size: 1.1rem;
}

.service-card .collapse-toggle {
  background: none;
  border: none;
  color: var(--clr-gold);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0;
  transition: color var(--transition-fast);
}

.service-card .collapse-toggle:hover {
  color: var(--clr-gold-dark);
}

.service-card .collapse-toggle i {
  transition: transform var(--transition-fast);
}

.service-card .collapse-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

/* ---------- Why Choose Us ---------- */
.why-section {
  background: linear-gradient(135deg, var(--clr-navy) 0%, var(--clr-navy-light) 100%);
  color: var(--clr-white);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(201,168,76,0.06);
  border-radius: 50%;
  pointer-events: none;
}

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 2rem;
  height: 100%;
  transition: all var(--transition-base);
  backdrop-filter: blur(4px);
}

.why-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
}

.why-card .icon-circle {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--clr-white);
  font-size: 1.3rem;
}

.why-card h4 {
  color: var(--clr-white);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.why-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ---------- Testimonials Section ---------- */
.testimonials-section {
  background: var(--clr-off-white);
}

.testimonial-card {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  height: 100%;
  position: relative;
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.testimonial-card .quote-icon {
  font-size: 2.5rem;
  color: var(--clr-gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
  font-family: var(--ff-heading);
}

.testimonial-card .stars {
  color: var(--clr-gold);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.testimonial-card .testimonial-text {
  font-size: 0.95rem;
  color: var(--clr-body-text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-card .client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 1.25rem;
}

.client-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-navy), var(--clr-navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.client-name {
  font-weight: 600;
  color: var(--clr-dark-text);
  font-size: 0.95rem;
}

.client-case {
  font-size: 0.8rem;
  color: var(--clr-slate);
}

/* ---------- Contact Section ---------- */
.contact-section {
  background: var(--clr-white);
}

.contact-info-card {
  background: linear-gradient(135deg, var(--clr-navy) 0%, var(--clr-navy-light) 100%);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  color: var(--clr-white);
  height: 100%;
}

.contact-info-card h3 {
  color: var(--clr-white);
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item .icon-box {
  width: 44px;
  height: 44px;
  background: rgba(201,168,76,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item .contact-detail h6 {
  color: var(--clr-gold);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.contact-item .contact-detail p,
.contact-item .contact-detail a {
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.6;
}

.contact-item .contact-detail a:hover {
  color: var(--clr-gold);
}

.office-hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.office-hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.office-hours-list li:last-child {
  border-bottom: none;
}

.office-hours-list li span:last-child {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.06);
}

.contact-form-wrapper h3 {
  margin-bottom: 0.5rem;
}

.form-floating > .form-control {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-floating > .form-control:focus {
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

.form-floating > label {
  font-size: 0.9rem;
  color: var(--clr-slate);
}

.form-floating > .form-select {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: 0.95rem;
}

.form-floating > .form-select:focus {
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

/* Map */
.map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 3rem;
}

.map-wrapper iframe {
  width: 100%;
  height: 350px;
  border: none;
}

/* ---------- Footer ---------- */
.footer-section {
  background: var(--clr-navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}

.footer-brand {
  font-family: var(--ff-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 1rem;
}

.footer-brand .brand-accent {
  color: var(--clr-gold);
  font-weight: 400;
  font-size: 0.7rem;
  display: block;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.header-est,
.footer-est {
     display: flex;
     align-items: center;
     gap: 0.75rem;
     margin-top: 0.45rem;
 }

 .est-rule {
     height: 1px;
     width: 36px;
     background: rgba(201,168,76,0.4);
     flex-shrink: 0;
 }
 
 .est-text {
     font-size: 0.68rem;
     color: var(--clr-gold);
     letter-spacing: 0.2em;
     text-transform: uppercase;
     font-weight: 500;
     opacity: 0.8;
     white-space: nowrap;
 }

.footer-description {
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.55);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--clr-gold);
  color: var(--clr-white);
  transform: translateY(-2px);
}

.footer-section h5 {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-section h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--clr-gold);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a:hover {
  color: var(--clr-gold);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.footer-credit {
   font-size: 0.78rem;
   color: rgba(255,255,255,0.28);
   margin: 0;
   padding-right: 2rem;
   white-space: nowrap;
   letter-spacing: 0.3px;
 } 
 
 .credit-name {
   color: var(--clr-gold);
   opacity: 0.65;
   font-weight: 500 !important;
 }

/* ---------- WhatsApp Floating Button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  font-size: 1.75rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  z-index: 1000;
  transition: all var(--transition-base);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  color: var(--clr-white);
}

.whatsapp-float .pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  animation: pulse-ring 2s ease-out infinite;
  z-index: -1;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 34px;
  width: 44px;
  height: 44px;
  background: var(--clr-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  text-decoration: none;
  border: 1px solid rgba(201,168,76,0.2);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--clr-gold);
  color: var(--clr-white);
  transform: translateY(-3px);
}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  :root {
    --section-py: 4rem;
  }

  .hero-section {
    text-align: center;
    padding-top: 100px;
    padding-bottom: 3rem;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-qualifications {
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image-wrapper {
    margin-top: 3rem;
  }

  .hero-image {
    max-width: 320px;
    margin: 0 auto;
    display: block;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .about-image-accent {
    right: 10px;
    bottom: -10px;
  }

  .contact-info-card {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767.98px) {
  :root {
    --section-py: 3rem;
  }

  .hero-section {
    min-height: auto;
    padding-top: 150px;
    padding-bottom: 3rem;
  }

  .hero-image-frame::before {
    top: -8px;
    right: -8px;
  }

  .hero-image-frame::after {
    width: 50px;
    height: 50px;
    bottom: -8px;
    left: -8px;
  }

  .stats-section .row > div {
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  .stats-section .row > div:last-child {
    border-bottom: none;
  }

  .stat-number {
    font-size: 2.25rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }

  .testimonial-card {
    padding: 1.75rem;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }

  .back-to-top {
    bottom: 80px;
    right: 24px;
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 575.98px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .header-est {
      justify-content: left;
    }

  .footer-section {
    text-align: center;
  }
  
  .footer-est {
      justify-content: center;
    }

  .footer-section h5::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.4rem;
  }
  .footer-credit {
  	padding-right: 0;
  }
}

/* ---------- Preloader (optional) ---------- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--clr-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(201,168,76,0.2);
  border-top-color: var(--clr-gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================================
   MULTI-PAGE ADDITIONS
   ============================================================ */

/* ---------- Inner Page Banner ---------- */
.page-banner {
  background: linear-gradient(135deg, var(--clr-navy) 0%, var(--clr-navy-light) 60%, var(--clr-navy) 100%);
  padding: calc(80px + 4rem) 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 85%, rgba(201,168,76,0.07) 0%, transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(201,168,76,0.05) 0%, transparent 45%);
  pointer-events: none;
}

.page-banner::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(201,168,76,0.07);
  border-radius: 50%;
  pointer-events: none;
}

.page-banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--clr-gold);
  padding: 0.35rem 1.1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.page-banner-title {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.page-banner-title .gold-accent {
  color: var(--clr-gold);
}

.page-banner-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin: 0 auto 1.5rem;
  line-height: 1.8;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  position: relative;
  z-index: 2;
}

.page-breadcrumb a {
  color: var(--clr-gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.page-breadcrumb a:hover {
  color: var(--clr-gold-light);
}

.page-breadcrumb-sep {
  color: rgba(255,255,255,0.25);
}

.page-breadcrumb-current {
  color: rgba(255,255,255,0.5);
}

/* ---------- Home About Teaser ---------- */
.about-teaser-stats {
  display: flex;
  gap: 2.5rem;
  margin: 1.75rem 0 2rem;
  padding: 1.5rem;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(201,168,76,0.12);
  box-shadow: var(--shadow-sm);
}

.at-stat .num {
  font-family: var(--ff-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-navy);
  line-height: 1;
}

.at-stat .lbl {
  font-size: 0.78rem;
  color: var(--clr-slate);
  font-weight: 500;
  margin-top: 0.2rem;
  letter-spacing: 0.5px;
}

.cred-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}

.cred-tag {
  background: rgba(26,35,50,0.06);
  border: 1px solid rgba(26,35,50,0.1);
  color: var(--clr-dark-text);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.cred-tag i {
  color: var(--clr-gold);
  font-size: 0.85rem;
}

/* ---------- Home Services Teaser ---------- */
.services-teaser-sec {
  background: var(--clr-white);
}

.more-services-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin: 2rem 0 0.5rem;
}

.more-service-chip {
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--clr-body-text);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.more-service-chip i {
  color: var(--clr-gold);
  font-size: 0.8rem;
}

.more-service-chip:hover {
  background: rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.4);
  color: var(--clr-dark-text);
}

.sec-cta-center {
  text-align: center;
  margin-top: 2.5rem;
}

/* ---------- Home Testimonials Teaser ---------- */
.testi-teaser-sec {
  background: var(--clr-off-white);
}

.testi-rating-bar {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  margin: 0 auto 3rem;
  padding: 0.9rem 2rem;
  background: var(--clr-white);
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,168,76,0.15);
}

.testi-rating-stars {
  color: var(--clr-gold);
  letter-spacing: 3px;
  font-size: 0.95rem;
}

.testi-rating-divider {
  width: 1px;
  height: 20px;
  background: rgba(0,0,0,0.1);
}

.testi-rating-text {
  font-size: 0.9rem;
  color: var(--clr-slate);
  white-space: nowrap;
}

.testi-rating-text strong {
  color: var(--clr-dark-text);
}

/* ---------- Home Contact CTA ---------- */
.contact-cta-sec {
  background: linear-gradient(135deg, var(--clr-navy-dark) 0%, var(--clr-navy) 50%, var(--clr-navy-dark) 100%);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}

.contact-cta-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 50%, rgba(201,168,76,0.07) 0%, transparent 55%);
  pointer-events: none;
}

.contact-cta-sec::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -5%;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(201,168,76,0.06);
  border-radius: 50%;
  pointer-events: none;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.cta-eyebrow {
  display: inline-block;
  color: var(--clr-gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.cta-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.cta-title .gold-accent {
  color: var(--clr-gold);
}

.cta-desc {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 2rem;
}

.cta-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
}

.cta-contact-item i {
  color: var(--clr-gold);
  font-size: 1rem;
  width: 18px;
  flex-shrink: 0;
}

.cta-contact-item a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition-fast);
}

.cta-contact-item a:hover {
  color: var(--clr-gold);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 220px;
}

.cta-actions .btn {
  justify-content: center;
  padding: 0.9rem 2rem;
  font-size: 0.95rem;
}

/* ---------- Full Services Page ---------- */
.services-full-page {
  background: var(--clr-off-white);
}

.service-card-full {
  background: var(--clr-white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.service-card-full::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold-light));
  transform: scaleX(0);
  transition: transform var(--transition-base);
  transform-origin: left;
}

.service-card-full:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.2);
}

.service-card-full:hover::before {
  transform: scaleX(1);
}

.service-card-full .service-icon {
  margin-bottom: 1.25rem;
}

.service-card-full:hover .service-icon {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
  color: var(--clr-white);
}

.service-card-full h4 {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--clr-dark-text);
  margin-bottom: 0.6rem;
}

.service-card-full .svc-divider {
  width: 36px;
  height: 2px;
  background: var(--clr-gold);
  margin-bottom: 0.9rem;
  transition: width var(--transition-base);
}

.service-card-full:hover .svc-divider {
  width: 60px;
}

.service-card-full p {
  font-size: 0.92rem;
  color: var(--clr-slate);
  line-height: 1.7;
  margin-bottom: 1.1rem;
}

.svc-sub-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 1rem;
}

.svc-sub-list li {
  padding: 0.3rem 0 0.3rem 1.25rem;
  position: relative;
  font-size: 0.87rem;
  color: var(--clr-body-text);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.svc-sub-list li:last-child {
  border-bottom: none;
}

.svc-sub-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--clr-gold);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.4;
}

/* ---------- Full About Page ---------- */
.about-full-sec {
  background: var(--clr-off-white);
}

.about-why-sec {
  background: linear-gradient(135deg, var(--clr-navy) 0%, var(--clr-navy-light) 100%);
  color: var(--clr-white);
  position: relative;
  overflow: hidden;
}

.about-why-sec::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(201,168,76,0.06);
  border-radius: 50%;
  pointer-events: none;
}

/* ---------- Full Testimonials Page ---------- */
.testi-full-sec {
  background: var(--clr-off-white);
}

.testi-rating-summary {
  text-align: center;
  margin-bottom: 3.5rem;
}

.trs-stars {
  font-size: 1.8rem;
  color: var(--clr-gold);
  letter-spacing: 4px;
  display: block;
  margin-bottom: 0.5rem;
}

.trs-score {
  font-family: var(--ff-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--clr-navy);
  line-height: 1;
}

.trs-label {
  font-size: 0.9rem;
  color: var(--clr-slate);
  margin-top: 0.35rem;
}

/* ---------- Contact Page ---------- */
.contact-full-sec {
  background: var(--clr-white);
}

/* ---------- Responsive Multi-page ---------- */
@media (max-width: 991.98px) {
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cta-actions .btn {
    flex: 1;
    min-width: 160px;
  }

  .about-teaser-stats {
    gap: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .page-banner {
    padding: calc(80px + 2.5rem) 0 2.5rem;
  }

  .about-teaser-stats {
    gap: 1rem;
  }

  .at-stat .num {
    font-size: 1.6rem;
  }

  .testi-rating-bar {
    flex-wrap: wrap;
    justify-content: center;
    border-radius: var(--radius-md);
    padding: 0.8rem 1.25rem;
    gap: 0.75rem;
  }

  .testi-rating-divider {
    display: none;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .about-teaser-stats {
    gap: 0.75rem;
    padding: 1rem;
  }

  .more-services-row {
    gap: 0.5rem;
  }
}

/* ---------- Expandable Sub-Service Items ---------- */
.svc-sub-list .svc-sub-item {
  padding: 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  background: none;
}

.svc-sub-list .svc-sub-item:last-child {
  border-bottom: none;
}

.svc-sub-list .svc-sub-item::before {
  display: none;
}

.svc-sub-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.65rem 0;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--clr-dark-text);
  transition: color var(--transition-fast);
  line-height: 1.4;
}

.svc-sub-toggle:hover {
  color: var(--clr-gold);
}

.svc-sub-toggle[aria-expanded="true"] {
  color: var(--clr-gold);
}

.svc-sub-name {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.svc-sub-name::before {
  content: '›';
  color: var(--clr-gold);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.45;
  flex-shrink: 0;
}

.svc-sub-chevron {
  color: var(--clr-gold);
  font-size: 0.7rem;
  flex-shrink: 0;
  transition: transform var(--transition-base);
  margin-top: 2px;
}

.svc-sub-toggle[aria-expanded="true"] .svc-sub-chevron {
  transform: rotate(180deg);
}

.svc-sub-body {
  padding: 0 0.5rem 0.85rem 1.2rem;
  border-left: 2px solid rgba(201,168,76,0.25);
  margin: 0 0 0.1rem 0.15rem;
}

.svc-sub-body p {
  font-size: 0.845rem;
  color: var(--clr-slate);
  line-height: 1.8;
  margin: 0;
}

/* ---------- About page — CSR Tagline ---------- */
.csr-tagline {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  margin: 1.75rem 0;
  padding: 0.85rem 1.5rem;
  border-top: 1px solid rgba(201,168,76,0.35);
  border-bottom: 1px solid rgba(201,168,76,0.35);
}

.csr-word {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.csr-divider {
  width: 1px;
  height: 1.05rem;
  background: rgba(201,168,76,0.4);
  flex-shrink: 0;
}
