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

/* ==========================================
   CSS VARIABLES & DESIGN SYSTEM
   ========================================== */
:root {
  /* Color Palette */
  --color-primary: #0a1c36;       /* Rich Dark Navy Blue matching logo */
  --color-primary-light: #142b4d; /* Mid Navy Blue */
  --color-accent: #c59b27;        /* Premium Metallic Gold matching logo */
  --color-accent-hover: #aa811a;  /* Darker Gold */
  --color-accent-soft: #faf5e6;   /* Champagne background for tags */
  --color-accent-text: #84620f;   /* Gold text highlight */
  --color-success: #10b981;      /* emerald green */
  
  /* Neutral Colors */
  --color-bg-base: #ffffff;
  --color-bg-alt: #f8fafc;
  --color-text-main: #334155;     /* Slate-700 for body copy */
  --color-text-dark: #0f172a;     /* Slate-900 for headings */
  --color-text-muted: #64748b;    /* Slate-500 */
  --color-border: #e2e8f0;        /* Slate-200 */
  --color-border-hover: #cbd5e1;  /* Slate-300 */
  
  /* Typography */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Layout & Spacing */
  --max-width: 1200px;
  --header-height: 130px;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.1), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.05);
  --shadow-inset: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);

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

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-main);
  background-color: var(--color-bg-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  color: var(--color-text-dark);
  font-weight: 700;
  line-height: 1.25;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

/* Subtle line under h2 to denote trust & structure */
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--color-accent);
  border-radius: var(--radius-full);
}

/* Align section-title text center or left */
.section-title {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem auto;
}

.section-title p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

.text-left-title {
  text-align: left;
  margin: 0 0 2rem 0;
}

.text-left-title h2::after {
  left: 0;
  transform: none;
}

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

p {
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--color-accent-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

ul {
  list-style: none;
}

/* ==========================================
   LAYOUT CONTAINERS
   ========================================== */
.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: 5rem;
  padding-bottom: 5rem;
}

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

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

.bg-dark h2, .bg-dark h3, .bg-dark h4 {
  color: var(--color-bg-base);
}

/* Grid helper utilities */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.flex-align-center {
  display: flex;
  align-items: center;
}

.flex-justify-between {
  display: flex;
  justify-content: space-between;
}

/* ==========================================
   BUTTONS & CALLS TO ACTION (CTAs)
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-bg-base);
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  color: var(--color-bg-base);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-bg-base);
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--color-bg-base);
  color: var(--color-primary);
}

.btn-white:hover {
  background-color: var(--color-bg-alt);
  color: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-phone {
  background-color: var(--color-success);
  color: var(--color-bg-base);
  font-size: 1.1rem;
  padding: 1rem 2rem;
}

.btn-phone:hover {
  background-color: #047857;
  color: var(--color-bg-base);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-icon {
  margin-right: 8px;
}

/* Mobile sticky Call Now bar */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-primary);
  box-shadow: 0 -4px 10px rgba(0,0,0,0.15);
  z-index: 1000;
  padding: 0.75rem 1rem;
}

.mobile-call-bar .btn {
  width: 100%;
}

/* ==========================================
   HEADER / NAVIGATION
   ========================================== */
header {
  height: var(--header-height);
  background-color: var(--color-primary);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  border-bottom: 2px solid var(--color-accent);
  transition: var(--transition-smooth);
}

header.scrolled {
  background-color: rgba(10, 28, 54, 0.96);
  backdrop-filter: blur(12px);
  height: 95px;
}

.header-container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  height: 80%;
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-bg-base);
  letter-spacing: -0.5px;
}

.logo img {
  max-height: 100% !important;
  height: auto !important;
  width: auto;
  transition: max-height var(--transition-smooth);
}

.logo-accent {
  color: var(--color-accent);
  margin-left: 2px;
}

.logo svg {
  margin-right: 8px;
  fill: var(--color-accent);
}

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

.nav-link {
  color: #ffffff;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  padding: 0.5rem 0;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-accent);
}

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

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

.header-phone-desktop {
  font-family: var(--font-headings);
  color: #ffffff;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(255, 255, 255, 0.25);
  transition: var(--transition-smooth);
}

.header-phone-desktop:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: #ffffff;
}

.header-phone-desktop svg {
  fill: currentColor;
}

/* Hamburger mobile button */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  border-radius: 3px;
  position: absolute;
  transition: var(--transition-smooth);
}

.hamburger.open span {
  background-color: var(--color-accent);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { top: 20px; }

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}

/* ==========================================
   HERO SECTIONS
   ========================================== */
.hero {
  position: relative;
  background: url('../images/hero-bg.png') no-repeat center center / cover;
  color: var(--color-bg-base);
  padding: 7rem 0 6rem 0;
  overflow: hidden;
}

/* Gradient overlay for high contrast readability of text on the left */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.95) 45%, rgba(15, 23, 42, 0.6) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 3rem;
}

.hero-title {
  font-size: 3.25rem;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--color-bg-base);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  max-width: 620px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-trust-indicators {
  display: flex;
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #94a3b8;
}

.trust-item svg {
  fill: var(--color-accent);
}

.trust-item-text strong {
  color: var(--color-bg-base);
  display: block;
}

.hero-badge-box {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.hero-badge-box h3 {
  color: var(--color-bg-base);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.75rem;
}

.hero-badge-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.4;
}

.hero-badge-list li:last-child {
  margin-bottom: 0;
}

.hero-badge-list svg {
  fill: var(--color-accent);
  margin-top: 3px;
  flex-shrink: 0;
}

/* Service Inner Pages Hero */
.page-hero {
  background-color: var(--color-primary-light);
  color: var(--color-bg-base);
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.9));
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  color: var(--color-bg-base);
}

.page-hero p {
  color: #cbd5e1;
  font-size: 1.15rem;
  margin-bottom: 0;
}

/* Breadcrumbs navigation */
.breadcrumbs {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #94a3b8;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.breadcrumbs a {
  color: #cbd5e1;
}

.breadcrumbs a:hover {
  color: var(--color-accent);
}

.breadcrumbs span {
  color: #64748b;
}

/* ==========================================
   ABOUT / TRUST SECTION
   ========================================== */
.about-brief-container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3.5rem;
  align-items: center;
}

.about-features {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.about-feature-item {
  background: var(--color-bg-base);
  border: 1px solid var(--color-border);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-feature-item svg {
  fill: var(--color-accent);
  flex-shrink: 0;
}

.about-feature-item span {
  font-family: var(--font-headings);
  font-weight: 600;
  color: var(--color-text-dark);
  font-size: 0.95rem;
}

.image-stack {
  position: relative;
}

.image-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--color-bg-base);
}

.image-badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background-color: var(--color-primary);
  color: var(--color-bg-base);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--color-accent);
  max-width: 240px;
}

.image-badge p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #cbd5e1;
}

.image-badge strong {
  display: block;
  font-size: 1.1rem;
  color: var(--color-bg-base);
  margin-bottom: 4px;
}

/* ==========================================
   SERVICES CARDS (HOMEPAGE & INNER PAGES)
   ========================================== */
.service-card {
  background-color: var(--color-bg-base);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-lg);
}

.service-icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: var(--color-bg-alt);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid var(--color-border);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.service-icon-wrapper svg {
  fill: var(--color-primary);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper svg {
  fill: var(--color-accent);
}

.service-card h3 {
  margin-bottom: 1rem;
}

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

.service-card-list {
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
}

.service-card-list li {
  font-size: 0.9rem;
  color: var(--color-text-main);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-card-list svg {
  fill: var(--color-accent);
}

.card-link {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.card-link svg {
  fill: currentColor;
  transition: transform 0.2s ease;
}

.card-link:hover svg {
  transform: translateX(4px);
}

/* ==========================================
   WHY CHOOSE US / VALUE PROPOSITION
   ========================================== */
.why-choose-us {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-feature-box {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: var(--transition-smooth);
}

.why-feature-box:hover {
  background-color: var(--color-bg-base);
  border-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.why-feature-icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-accent-soft);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-feature-icon svg {
  fill: var(--color-accent-text);
}

.why-feature-content h3, .why-feature-content h4 {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
}

.why-feature-content p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ==========================================
   SERVICE PROCESS STEPS
   ========================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

/* Connection line between steps (desktop only) */
.process-grid::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: dashed var(--color-border);
  z-index: 1;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.process-num {
  width: 60px;
  height: 60px;
  background-color: var(--color-bg-base);
  border: 3px solid var(--color-accent);
  color: var(--color-primary);
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.5rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.process-step:hover .process-num {
  background-color: var(--color-accent);
  color: var(--color-bg-base);
}

.process-step h3, .process-step h4 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.process-step p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ==========================================
   FAQ SECTION (ACCORDION)
   ========================================== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--color-bg-base);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--color-border-hover);
}

.faq-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-header h3, .faq-header h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
  color: var(--color-text-dark);
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--color-text-muted);
  transition: var(--transition-smooth);
}

/* Horizontal line */
.faq-icon::before {
  width: 14px;
  height: 2px;
}

/* Vertical line */
.faq-icon::after {
  width: 2px;
  height: 14px;
}

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

.faq-item.active .faq-header h3, .faq-item.active .faq-header h4 {
  color: var(--color-accent);
}

.faq-item.active .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  background-color: var(--color-bg-alt);
}

.faq-item.active .faq-content {
  max-height: 1000px;
  transition: max-height 0.4s ease-in-out;
}

.faq-content-inner {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================
   CONTACT PAGE DETAILS, FORMS, & MAPS
   ========================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3.5rem;
}

.contact-info-card {
  background-color: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
}

.contact-info-card h2, .contact-info-card h3 {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.75rem;
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

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

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background-color: var(--color-bg-base);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.contact-detail-icon svg {
  fill: var(--color-accent);
}

.contact-detail-text h3, .contact-detail-text h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-detail-text p, .contact-detail-text a {
  font-size: 0.95rem;
  color: var(--color-text-main);
  margin: 0;
}

.contact-hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.contact-hours-table tr {
  border-bottom: 1px solid var(--color-border);
}

.contact-hours-table tr:last-child {
  border-bottom: none;
}

.contact-hours-table td {
  padding: 0.5rem 0;
}

.contact-hours-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--color-text-dark);
}

/* Contact Form */
.contact-form-wrapper {
  background-color: var(--color-bg-base);
  border: 1px solid var(--color-border);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

.contact-form-wrapper > p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-label {
  display: block;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-dark);
  background-color: var(--color-bg-base);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  outline: none;
  transition: var(--transition-smooth);
}

.form-control:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-feedback {
  display: none;
  padding: 1rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  margin-top: 1.5rem;
}

.form-feedback.success {
  display: block;
  background-color: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-feedback.error {
  display: block;
  background-color: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Map area */
.map-section {
  width: 100%;
  margin-top: 3.5rem;
}

.map-placeholder {
  width: 100%;
  height: 400px;
  background-color: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

/* SVG grid backdrop for map placeholder to look highly professional */
.map-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  background-image: radial-gradient(#0f172a 1px, transparent 0);
  background-size: 24px 24px;
}

.map-placeholder-content {
  position: relative;
  z-index: 2;
  max-width: 480px;
}

.map-placeholder-icon {
  width: 64px;
  height: 64px;
  background-color: var(--color-accent-soft);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}

.map-placeholder-icon svg {
  fill: var(--color-accent-text);
}

.map-placeholder-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.map-placeholder-content p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* Coverage indicators on map placeholder */
.coverage-badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background-color: rgba(5, 150, 105, 0.1);
  border: 1px solid rgba(5, 150, 105, 0.2);
  color: #047857;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: var(--radius-full);
  font-family: var(--font-headings);
}

/* ==========================================
   ABOUT PAGE DETAILS (MISSION & TIMELINE)
   ========================================== */
.about-detailed-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.about-rich-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.about-rich-content ul {
  margin-bottom: 1.5rem;
}

.about-rich-content li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}

.about-rich-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-box {
  background-color: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
}

.stat-number {
  font-family: var(--font-headings);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

/* Service page sub-services breakdown */
.service-subsection {
  margin-top: 3.5rem;
}

.service-subsection:first-of-type {
  margin-top: 0;
}

.sub-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.sub-service-span-all {
  grid-column: span 3;
}

.sub-service-box {
  background: var(--color-bg-base);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition-smooth);
}

.sub-service-box:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-border-hover);
}

.sub-service-box h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sub-service-box h4 svg {
  fill: var(--color-accent);
  flex-shrink: 0;
}

.sub-service-box p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ==========================================
   CALL-TO-ACTION SECTION
   ========================================== */
.cta-banner {
  background-color: var(--color-primary-light);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 90% 10%, rgba(217, 119, 6, 0.12) 0%, transparent 40%);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.cta-content h3 {
  font-size: 2rem;
  color: var(--color-bg-base);
  margin-bottom: 0.75rem;
}

.cta-content p {
  color: #cbd5e1;
  font-size: 1.05rem;
  margin: 0;
}

.cta-actions {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cta-actions .btn {
  min-width: 200px;
}

/* ==========================================
   FOOTER SECTION
   ========================================== */
footer {
  background-color: var(--color-primary);
  color: #cbd5e1;
  padding: 4.5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-col h4 {
  color: var(--color-bg-base);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

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

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  color: #94a3b8;
}

.footer-about-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.footer-about-info li {
  display: flex;
  gap: 8px;
}

.footer-about-info svg {
  fill: var(--color-accent);
  flex-shrink: 0;
  margin-top: 3px;
}

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

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: #94a3b8;
}

.footer-bottom-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.footer-bottom-links a {
  color: #94a3b8;
}

.footer-bottom-links a:hover {
  color: var(--color-bg-base);
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */

/* Large screens and desktops */
@media (max-width: 1200px) {
  :root {
    --header-height: 95px;
  }
  .container {
    max-width: 960px;
  }
  .hero-title {
    font-size: 2.75rem;
  }
}

/* Tablet screen layouts */
@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .sub-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sub-service-span-all {
    grid-column: span 2;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-badge-box {
    max-width: 500px;
    margin: 0 auto;
  }
  .about-brief-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .image-stack {
    max-width: 500px;
    margin: 0 auto;
  }
  .why-choose-us {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid::before {
    display: none; /* Hide timeline line since steps wrap */
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-detailed-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 2rem;
  }
  .cta-actions {
    flex-direction: row;
    justify-content: center;
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Screen Layouts */
@media (max-width: 768px) {
  body {
    padding-bottom: 60px; /* Offset space for sticky call bar */
  }
  .container {
    max-width: 100%;
  }
  .section-padding {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .hero-title {
    font-size: 2.25rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .page-hero h1 {
    font-size: 2.2rem;
  }
  
  /* Mobile menu and Hamburger styles */
  .hamburger {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--color-primary-light);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 3rem 1.5rem;
    gap: 2rem;
    transition: var(--transition-smooth);
    z-index: 1000;
  }
  .nav-menu.open {
    left: 0;
  }
  .header-phone-desktop {
    display: none;
  }
  .mobile-call-bar {
    display: block;
  }
  
  .nav-menu .nav-link {
    color: rgba(255, 255, 255, 0.85);
  }
  
  .nav-menu .nav-link:hover, .nav-menu .nav-link.active {
    color: var(--color-bg-base);
  }
  
  .sub-service-grid {
    grid-template-columns: 1fr;
  }
  .sub-service-span-all {
    grid-column: span 1;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .cta-actions {
    flex-direction: column;
  }
}

/* ==========================================
   CURVED LAYOUT BLOCKS & BOOKING FORMS
   ========================================== */
.curved-section {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.curved-bg-navy {
  background-color: var(--color-primary-light);
  color: var(--color-bg-base);
}

.curved-bg-navy h2, .curved-bg-navy h3, .curved-bg-navy h4 {
  color: var(--color-bg-base);
}

.curved-block-right {
  border-top-right-radius: 80px;
}

.curved-block-left {
  border-top-left-radius: 80px;
}

.curved-img-right {
  border-top-right-radius: 80px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 420px;
}

.curved-img-left {
  border-top-left-radius: 80px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 420px;
}

.curved-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  padding: 4rem 3.5rem;
}

.curved-container-white {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  padding: 4rem 0;
}

.curved-text-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.curved-text-content h2 {
  font-size: 2.25rem;
  margin-bottom: 0;
}

.curved-text-content h2::after {
  display: none;
}

.curved-text-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin: 0;
}

.curved-text-content-white p {
  color: var(--color-text-main);
}

.curved-subheading {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--color-accent) !important;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.btn-pill-white {
  background-color: #ffffff;
  color: var(--color-primary);
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-headings);
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  transition: var(--transition-smooth);
  width: fit-content;
  border: 1px solid var(--color-border);
}

.btn-pill-white:hover {
  background-color: var(--color-accent-soft);
  color: var(--color-accent-text);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.btn-pill-white svg {
  fill: currentColor;
}

/* Service Showcase Grid */
.service-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.service-showcase-card {
  background-color: var(--color-bg-base);
  border: 1px solid rgba(197, 155, 39, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.service-showcase-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-accent);
  box-shadow: 0 12px 28px rgba(10, 28, 54, 0.12), 0 8px 16px rgba(197, 155, 39, 0.08);
}

.service-showcase-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.service-showcase-card:hover img {
  transform: scale(1.08);
}

.service-showcase-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-showcase-card h3 {
  font-size: 1.45rem;
  margin-bottom: 1rem;
  color: var(--color-text-dark);
}

.service-showcase-card p {
  font-size: 0.95rem;
  color: var(--color-text-main);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-showcase-card .btn {
  width: 100%;
  border-radius: var(--radius-full);
}

/* Timeline Process Flow */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--color-accent) 0, var(--color-accent) 6px, transparent 6px, transparent 12px);
  z-index: 1;
}

.process-step {
  position: relative;
  z-index: 2;
  background-color: var(--color-bg-base);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.process-step:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.process-num {
  width: 60px;
  height: 60px;
  background-color: var(--color-primary);
  color: var(--color-accent);
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.4rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
  border: 2px solid var(--color-accent);
  box-shadow: var(--shadow-md);
}

@media (max-width: 992px) {
  .service-showcase-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .process-grid::before {
    display: none;
  }
}

/* Hero Booking Card Styles */
.hero-booking-card {
  background: rgba(10, 28, 54, 0.88);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  color: #ffffff;
}

.hero-booking-card h2 {
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.75rem;
}

.hero-booking-card .form-group {
  margin-bottom: 0.95rem;
}

.hero-booking-card .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.95rem;
}

.hero-booking-card .form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 0.25rem;
}

.hero-booking-card .form-control {
  padding: 0.65rem 0.85rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: #ffffff;
  transition: var(--transition-smooth);
}

.hero-booking-card .form-control::placeholder {
  color: #94a3b8;
}

.hero-booking-card .form-control:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-accent);
  outline: none;
  box-shadow: 0 0 0 2px rgba(197, 155, 39, 0.2);
}

.hero-booking-card .btn-submit-booking {
  width: 100%;
  background-color: var(--color-accent);
  color: var(--color-primary);
  border: none;
  padding: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  font-family: var(--font-headings);
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.hero-booking-card .btn-submit-booking:hover {
  background-color: var(--color-accent-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(197, 155, 39, 0.3);
}

.hero-booking-card .form-feedback {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}

/* Adjust curves for mobile viewports */
@media (max-width: 992px) {
  .curved-container, .curved-container-white {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 2rem;
  }
  .curved-container-white {
    padding: 3rem 0;
  }
  .curved-block-right, .curved-block-left {
    border-radius: var(--radius-lg);
  }
  .curved-img-right, .curved-img-left {
    border-radius: var(--radius-md);
    max-height: 320px;
  }
}

/* ==========================================
   ACTIVE CARD HIGHLIGHT & REVIEWS STYLES
   ========================================== */
.why-feature-box.active {
  background-color: var(--color-bg-base);
  border-color: var(--color-border);
  box-shadow: var(--shadow-md);
}

.reviews-section {
  padding: 5rem 0;
  background-color: var(--color-bg-base);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.review-card {
  background-color: #f8fafc; /* Very light cool grey */
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background-color: var(--color-bg-base);
  border: 1px solid var(--color-border);
}

.review-author {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
}

.review-rating {
  margin-bottom: 1.25rem;
}

.star-icon {
  color: #fbbf24; /* Golden star color */
  font-size: 1.2rem;
  margin: 0 2px;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-main);
  margin: 0;
}

@media (max-width: 991px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ==========================================
   NEW FOOTER LAYOUT (MATCHING SCREENSHOT)
   ========================================== */
.site-footer {
  background-color: #000000;
  color: #ffffff;
  padding: 4rem 0 2rem 0;
  font-family: var(--font-body);
}

.footer-new-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 3rem;
  align-items: flex-start;
}

.footer-new-col h3 {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-family: var(--font-headings);
}

/* Col 1 Brand styling */
.footer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.footer-logo {
  height: 85px;
  width: auto;
  object-fit: contain;
  background-color: #ffffff;
  padding: 4px;
  border-radius: var(--radius-sm);
}

.footer-brand-name {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.2;
  color: #ffffff;
}

.footer-contact-details p {
  margin: 0 0 0.75rem 0;
  font-size: 0.95rem;
  color: #d1d5db; /* Light grey */
  line-height: 1.5;
}

.footer-contact-details .footer-company-name {
  font-weight: 600;
  color: #ffffff;
}

.footer-contact-details .footer-phone a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-contact-details .footer-phone a:hover {
  color: var(--color-accent);
}

/* Col 2 Hours styling */
.footer-hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-hours-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #d1d5db;
}

.footer-hours-list svg {
  color: #ffffff;
  flex-shrink: 0;
}

/* Col 3 Map styling */
.footer-map-container {
  border: 1px solid #4b5563; /* grey outline */
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 240px;
}

.footer-new-bottom {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #1f2937;
  text-align: left;
  font-size: 0.9rem;
  color: #9ca3af;
}

.footer-new-bottom p {
  margin: 0;
}

/* Responsive Footer rules */
@media (max-width: 991px) {
  .footer-new-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .map-col {
    grid-column: span 2;
  }
}

@media (max-width: 767px) {
  .footer-new-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .map-col {
    grid-column: span 1;
  }
}

/* ==========================================
   DETAILED SERVICES LISTS (COLUMNS WITH KEYS)
   ========================================== */
.services-lists-section {
  background-color: var(--color-bg-base);
  padding: 5rem 0;
}

.services-lists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.services-list-column {
  background-color: #f6ecea; /* Soft warmth pinkish/beige background */
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.services-list-column h3 {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-top: 0;
  margin-bottom: 1.75rem;
  text-align: center;
  border-bottom: 2px solid rgba(15, 23, 42, 0.05);
  padding-bottom: 1rem;
}

.services-list-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.services-list-column li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--color-text-main);
  line-height: 1.4;
  font-weight: 500;
}

.key-icon-bullet {
  color: #111827; /* Dark charcoal/black color like in screenshot */
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  transform: rotate(45deg);
}

.service-bullet-icon {
  color: #111827;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
}


@media (max-width: 991px) {
  .services-lists-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ==========================================
   SERVICES HERO & GALLERIES (PHASE 3)
   ========================================== */
.services-hero {
  background-image: url('../images/services-hero-bg.png');
  background-size: cover;
  background-position: center;
  padding: 6rem 0;
  text-align: left;
}

.services-hero::before {
  background: rgba(15, 23, 42, 0.75); /* overlay to highlight text */
}

.services-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-left: 5%;
  padding: 0 1.5rem;
}

.services-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-align: left;
}

.services-hero p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #f3f4f6;
  margin-bottom: 2.5rem;
  max-width: 700px;
  text-align: left;
}

.btn-hero-phone {
  background-color: #8b0000; /* Dark red button like in screenshot */
  color: #ffffff;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 0.85rem 2.25rem;
  border-radius: var(--radius-sm);
  display: inline-block;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.btn-hero-phone:hover {
  background-color: #a80000;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.services-images-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0 2rem 0;
}

.service-gallery-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.service-gallery-img:hover {
  transform: scale(1.015);
  box-shadow: var(--shadow-md);
}

@media (max-width: 991px) {
  .services-hero-content {
    margin-left: 0;
  }
  .services-hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .services-images-gallery {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .service-gallery-img {
    height: 220px;
  }
}

/* ==========================================
   ABOUT PAGE UPGRADES (PHASE 4)
   ========================================== */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-intro-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-intro-text h2 {
  font-family: var(--font-headings);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0;
}

.about-intro-text p {
  margin: 0;
  line-height: 1.6;
}

.about-intro-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.about-intro-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: var(--transition-smooth);
}

.about-intro-img:hover {
  transform: scale(1.02);
}

/* Community Callout Banner */
.about-community-banner {
  background-color: #f6ecea; /* Soft warmth background matching style.css */
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  margin-bottom: 4rem;
  border-left: 4px solid var(--color-accent);
}

.about-community-content h3 {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-top: 0;
  margin-bottom: 1rem;
}

.about-community-content p {
  margin-top: 0;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.about-community-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.about-stat-card {
  background-color: #fff;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.about-stat-value {
  font-family: var(--font-headings);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-accent);
  margin-bottom: 0.35rem;
}

.about-stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-main);
}

/* Services We Provide Grid */
.about-services-section {
  margin-bottom: 4rem;
}

.about-section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.about-section-header h2 {
  font-family: var(--font-headings);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0 0 0.5rem 0;
}

.about-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.about-service-card {
  background-color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition-smooth);
}

.about-service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.about-card-icon-wrapper {
  background-color: #f6ecea;
  color: var(--color-accent);
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.about-card-icon-wrapper svg {
  width: 28px;
  height: 28px;
}

.about-service-card h3 {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-top: 0;
  margin-bottom: 1rem;
}

.about-service-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-text-main);
  margin-bottom: 1.5rem;
}

.about-service-card .btn-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.about-service-card .btn-link:hover {
  color: var(--color-primary);
}

/* Why Trust Us Grid */
.about-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.about-why-card {
  background-color: #fff;
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition-smooth);
}

.about-why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.about-why-icon-wrapper {
  color: var(--color-accent);
  margin-bottom: 1.25rem;
  display: inline-block;
}

.about-why-icon-wrapper svg {
  width: 32px;
  height: 32px;
}

.about-why-card h3, .about-why-card h4 {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.about-why-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-text-main);
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .about-intro-img {
    height: 300px;
  }
  .about-services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .about-why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .about-community-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  .about-why-grid {
    grid-template-columns: 1fr;
  }
  .about-community-banner {
    padding: 2rem 1.5rem;
  }
}


