@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ==========================================
   FAST LOCKSMITH BOXBOROUGH - OFFICIAL DESIGN SYSTEM
   Color Palette strictly derived from Logo:
   - Emerald Teal Green: #00b894 / #00C4A0
   - Dark Navy Blue: #0B192C / #060D17
   - Crisp White & Light Mint Surface: #F4F8F7
   ========================================== */

:root {
  /* Brand Colors from Logo */
  --color-primary: #0B192C;        /* Rich Deep Navy from Logo */
  --color-primary-light: #13253F;  /* Medium Dark Navy */
  --color-primary-dark: #060D17;   /* Midnight Navy */
  
  --color-secondary: #00b894;      /* Emerald Teal Green from attached Image 4 */
  --color-secondary-light: #00d2a6;/* Bright Teal */
  --color-secondary-dark: #008f73; /* Darker Teal */
  --color-accent: #00E0BD;         /* Glowing Cyan Accent */
  
  /* Button Colors matching attached Image 4 */
  --color-btn-bg: #00b894;
  --color-btn-hover: #00997b;
  --color-btn-text: #FFFFFF;

  /* Neutrals */
  --color-bg-base: #FFFFFF;
  --color-bg-alt: #F4F8F7;         /* Soft Mint Slate Tint */
  --color-text-main: #334155;
  --color-text-dark: #0F172A;
  --color-text-muted: #64748B;
  --color-border: #E2E8F0;

  /* Fonts - Uniform Poppins Typography */
  --font-headings: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Dimensions */
  --max-width: 1240px;
  --header-height: 90px;
  --header-scrolled-height: 72px;

  /* Border Radius */
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 6px rgba(11, 25, 44, 0.05);
  --shadow-md: 0 8px 20px -4px rgba(11, 25, 44, 0.08);
  --shadow-lg: 0 16px 36px -6px rgba(11, 25, 44, 0.16);

  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text-main);
  background-color: var(--color-bg-base);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  color: var(--color-text-dark);
  font-weight: 800;
  line-height: 1.2;
}

h1 {
  font-size: 2.85rem;
}

h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 0.65rem;
}

p {
  margin-bottom: 1.25rem;
}

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

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

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

ul {
  list-style: none;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-right: auto;
  margin-left: auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.section-padding {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

.bg-alt {
  background-color: var(--color-bg-alt);
}

.bg-dark {
  background-color: var(--color-primary);
  color: #F1F5F9;
}

.text-center {
  text-align: center;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.section-subtitle {
  display: inline-block;
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
}

/* ==========================================
   HEADER - TRANSPARENT OVER HERO & STICKY
   ========================================== */
header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: var(--transition-smooth);
}

header.scrolled {
  position: fixed;
  background: rgba(11, 25, 44, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-md);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  transition: var(--transition-smooth);
}

header.scrolled .header-container {
  height: var(--header-scrolled-height);
}

/* Logo Badge Card */
.logo-card {
  background-color: #FFFFFF;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: var(--transition-smooth);
}

.logo-card img {
  height: 48px;
  width: auto;
  transition: var(--transition-smooth);
}

header.scrolled .logo-card img {
  height: 40px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-link {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1rem;
  color: #FFFFFF;
  position: relative;
  padding: 0.5rem 0;
  opacity: 0.9;
}

.nav-link:hover, .nav-link.active {
  color: #FFFFFF;
  opacity: 1;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-secondary);
  transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-phone-desktop {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-secondary);
  color: #FFFFFF !important;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.65rem 1.3rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(0, 176, 148, 0.3);
}

.header-phone-desktop:hover {
  background: var(--color-secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 176, 148, 0.45);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #FFFFFF;
  border-radius: 3px;
  transition: var(--transition-smooth);
}

@media (max-width: 991px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background-color: var(--color-primary);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    border-bottom: 3px solid var(--color-secondary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-150%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .header-phone-desktop {
    display: none;
  }
}

/* ==========================================
   HERO SECTION - TRANSPARENT OVERLAY (Matching Attached Screenshot)
   ========================================== */
.hero {
  position: relative;
  background: linear-gradient(180deg, rgba(6, 13, 23, 0.8) 0%, rgba(11, 25, 44, 0.88) 100%), url('../images/hero-bg.jpg') center/cover no-repeat;
  color: #FFFFFF;
  padding: 8.5rem 0 5.5rem 0;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-container {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 176, 148, 0.18);
  border: 1px solid rgba(0, 176, 148, 0.4);
  color: var(--color-accent);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.25rem;
}

/* Service Page Badges - Visible & High Contrast on Light Backgrounds */
.service-anchor-section .hero-tag,
.bg-alt .hero-tag,
.service-tag {
  background-color: #E6F7F4 !important;
  border: 1.5px solid #00b894 !important;
  color: #006D5B !important;
  font-weight: 800 !important;
  font-size: 0.85rem !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  padding: 0.45rem 1.25rem !important;
  border-radius: var(--radius-full) !important;
  display: inline-block !important;
  box-shadow: 0 2px 8px rgba(0, 184, 148, 0.15) !important;
}

.hero-title {
  font-size: 3rem;
  color: #FFFFFF;
  line-height: 1.18;
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.35rem;
  }
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #CBD5E1;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.btn-yellow, .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--color-btn-bg);
  color: var(--color-btn-text) !important;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.9rem 2rem;
  border-radius: 12px;
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 184, 148, 0.4);
}

.btn-yellow:hover, .btn-primary:hover {
  background-color: var(--color-btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 184, 148, 0.55);
}

.hero-trust-indicators {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.25rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-item svg {
  color: var(--color-secondary);
  flex-shrink: 0;
}

.trust-item-text {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: #CBD5E1;
}

.trust-item-text strong {
  color: #FFFFFF;
  font-weight: 700;
  white-space: nowrap;
}

.trust-divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
  font-weight: 300;
}

/* Schedule Service Booking Card */
.hero-booking-card {
  background-color: var(--color-primary-light);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
}

.hero-booking-card h2 {
  color: #FFFFFF;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #CBD5E1;
  margin-bottom: 0.35rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  background-color: rgba(6, 17, 32, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(0, 176, 148, 0.25);
}

.btn-submit-booking {
  width: 100%;
  background-color: var(--color-btn-bg);
  color: var(--color-btn-text);
  border: none;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.95rem;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-smooth);
  margin-top: 0.5rem;
  box-shadow: 0 4px 18px rgba(0, 184, 148, 0.35);
}

.btn-submit-booking:hover {
  background-color: var(--color-btn-hover);
  box-shadow: 0 8px 24px rgba(0, 184, 148, 0.5);
}

.form-feedback {
  font-size: 0.85rem;
  margin-top: 0.75rem;
  text-align: center;
}

/* Subpage Hero Banner */
.page-hero {
  background: linear-gradient(180deg, rgba(6, 13, 23, 0.85) 0%, rgba(11, 25, 44, 0.95) 100%), url('../images/hero-bg.jpg') center/cover no-repeat;
  color: #FFFFFF;
  padding: 7rem 0 3.5rem 0;
  text-align: center;
  border-bottom: 3px solid var(--color-secondary);
}

.page-hero-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.page-hero h1 {
  font-size: 2.75rem;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.page-hero p {
  font-size: 1.15rem;
  color: #CBD5E1;
}

/* Grid Utilities */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.overview-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.25rem;
  margin-bottom: 1.75rem;
}

.overview-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--color-text-dark);
}

.overview-list svg {
  color: var(--color-secondary);
  flex-shrink: 0;
}

/* ==========================================
   SERVICES GRID - SIMPLE REAL SERVICES & NO EXTRA FOOTER LABELS
   ========================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 176, 148, 0.4);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  background-color: rgba(0, 176, 148, 0.12);
  color: var(--color-secondary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.services-list-column {
  list-style: none;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.services-list-column li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
}

.service-bullet-icon {
  color: var(--color-secondary);
  flex-shrink: 0;
}

.service-card-action {
  text-align: right;
  padding-top: 1rem;
  border-top: 1px solid #F1F5F9;
}

.service-card-action a {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-secondary);
}

.service-card-action a:hover {
  color: var(--color-secondary-dark);
}

/* Service Anchor Sections */
.service-anchor-section {
  scroll-margin-top: 100px;
}

.service-anchor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .service-anchor-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
  .service-anchor-grid.reverse {
    grid-template-columns: 0.9fr 1.1fr;
  }
  .service-anchor-grid.reverse .service-anchor-text {
    order: 2;
  }
  .service-anchor-grid.reverse .service-anchor-image {
    order: 1;
  }
}

/* Why Choose Us Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.why-card {
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  padding: 2rem;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 176, 148, 0.4);
}

.why-card-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 176, 148, 0.12);
  color: var(--color-secondary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.why-card p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* Service Area Grid */
.towns-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.town-pill {
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-primary);
}

.town-pill svg {
  color: var(--color-secondary);
}

/* FAQ Accordion Section */
.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.faq-item {
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item.active {
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-icon {
  width: 22px;
  height: 22px;
  color: var(--color-secondary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  max-height: 300px;
}

.faq-answer p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Contact Grid & Map */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.contact-info-card {
  background-color: var(--color-primary);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-detail-item {
  display: flex;
  gap: 1rem;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 176, 148, 0.15);
  color: var(--color-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-text h4 {
  color: #FFFFFF;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.contact-detail-text p, .contact-detail-text a {
  color: #CBD5E1;
  font-size: 0.92rem;
}

/* FOOTER - EXACT ATTACHED SCREENSHOT LAYOUT */
footer {
  background-color: #060D17;
  color: #94A3B8;
  padding: 4.5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.9fr 1.1fr;
  }
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  position: relative;
  font-family: var(--font-headings);
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: var(--color-secondary);
}

.footer-nap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-nap-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #CBD5E1;
}

.footer-nap-item svg {
  color: var(--color-secondary);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: #94A3B8;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

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

.footer-map-box {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

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

.footer-policy-links {
  display: flex;
  gap: 1.5rem;
}

.footer-policy-links a {
  color: #94A3B8;
}

.footer-policy-links a:hover {
  color: #FFFFFF;
}

/* Mobile Fixed Phone Bar */
.mobile-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-primary);
  border-top: 2px solid var(--color-secondary);
  padding: 10px 16px;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

@media (min-width: 992px) {
  .mobile-call-bar {
    display: none;
  }
}

.mobile-call-info {
  display: flex;
  flex-direction: column;
}

.mobile-call-title {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.88rem;
}

.mobile-call-sub {
  color: var(--color-accent);
  font-size: 0.75rem;
}

.btn-mobile-call {
  background-color: var(--color-btn-bg);
  color: var(--color-btn-text);
  font-family: var(--font-headings);
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 12px;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(0, 184, 148, 0.4);
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background-color: var(--color-primary);
  color: #FFFFFF;
  border: 1px solid var(--color-secondary);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  z-index: 10000;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition-smooth);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================
   OUR SERVICES SECTION (EXACT IMAGE 1 DESIGN)
   ========================================== */
.our-services-section {
  background-color: #FFFFFF;
  padding: 5rem 0;
}

.our-services-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.our-services-header h2 {
  font-size: 2.6rem;
  color: #0B192C;
  font-weight: 800;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
  letter-spacing: -0.5px;
}

.our-services-header h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background-color: #00b894;
  border-radius: 2px;
  margin: 10px auto 0 auto;
}

.our-services-header p {
  color: #64748B;
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0.85rem auto 0 auto;
  line-height: 1.5;
}

.our-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.our-service-card {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 2.5rem 2.25rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
  transition: var(--transition-smooth);
}

.our-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 184, 148, 0.4);
}

.our-service-card-title {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1.75rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #F1F5F9;
}

.our-service-card-title .bar {
  width: 4px;
  height: 32px;
  background-color: #00b894;
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 2px;
}

.our-service-card-title h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: #0B192C;
  line-height: 1.25;
  margin: 0;
}

.our-service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 0;
  margin: 0;
}

.our-service-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #475569;
  font-size: 0.96rem;
  font-weight: 500;
}

.our-service-list li svg {
  color: #00b894;
  flex-shrink: 0;
}

/* ==========================================
   OUR CLIENT REVIEWS SECTION (EXACT IMAGE 1 DESIGN)
   ========================================== */
.reviews-section {
  background-color: #FFFFFF;
  padding: 5.5rem 0;
}

.reviews-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.reviews-header h2 {
  font-size: 2.6rem;
  color: #0B192C;
  font-weight: 700;
  font-family: var(--font-headings);
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
  letter-spacing: -0.5px;
}

.reviews-header h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background-color: #00b894;
  border-radius: 2px;
  margin: 10px auto 0 auto;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 2rem;
}

.review-card {
  background-color: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 2.75rem 2.25rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
  border-color: rgba(0, 184, 148, 0.4);
}

.review-author {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  font-weight: 700;
  color: #0B192C;
  margin-bottom: 0.6rem;
}

.review-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #F59E0B;
  margin-bottom: 1.25rem;
}

.review-stars svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.review-text {
  font-family: var(--font-body);
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* ==========================================
   BOTTOM CTA BANNER SECTION (EXACT IMAGE)
   ========================================== */
.bottom-cta-section {
  background-color: #FFFFFF;
  padding: 3.5rem 0 5.5rem 0;
}

.bottom-cta-banner {
  background-color: #1E2D3D; /* Sleek Dark Slate Blue from the user's image */
  border-radius: 20px;
  padding: 3rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  box-shadow: 0 10px 30px rgba(11, 25, 44, 0.15);
}

.bottom-cta-text {
  flex: 1;
}

.bottom-cta-text h2 {
  font-family: var(--font-headings);
  font-size: 2.1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 0.75rem 0;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.bottom-cta-text p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: #E2E8F0;
  margin: 0;
  max-width: 680px;
}

.bottom-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-width: 250px;
}

.btn-banner-accent {
  background-color: var(--color-secondary); /* Brand Teal Green */
  color: #FFFFFF;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.96rem;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(0, 184, 148, 0.2);
  border: none;
}

.btn-banner-accent:hover {
  background-color: var(--color-secondary-dark) !important;
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

.btn-banner-accent:hover svg,
.btn-banner-accent:hover span {
  color: #FFFFFF !important;
}

.btn-banner-outline {
  background-color: transparent;
  color: #FFFFFF;
  border: 1.5px solid #FFFFFF;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.96rem;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-banner-outline:hover {
  background-color: rgba(255, 255, 255, 0.08) !important;
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

/* Responsive adjustment for CTA banner */
@media (max-width: 991px) {
  .bottom-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 2rem;
  }
  .bottom-cta-text p {
    margin: 0 auto;
  }
  .bottom-cta-actions {
    width: 100%;
    max-width: 320px;
  }
}



