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

/* ==========================================
   DESIGN SYSTEM & CUSTOM PROPERTIES
   ========================================== */
:root {
  /* Color Palette - Logo Colors */
  --color-primary: #0a1f33;       /* Rich Deep Navy from logo shield */
  --color-primary-light: #122d48; /* Medium Navy */
  --color-secondary: #1a5ea1;     /* Royal Blue from logo text */
  --color-secondary-light: #2873bb;
  --color-accent: #0ea5e9;        /* Vibrant sky blue for brand highlights */
  --color-accent-hover: #0284c7;  /* Darker accent */
  --color-accent-soft: #e0f2fe;   /* Light blue background for badges */
  --color-cta: #eab308;           /* High-contrast Gold/Amber for call-to-action buttons */
  --color-cta-hover: #ca8a04;
  --color-cta-soft: #fef9c3;
  
  /* Feedback Colors */
  --color-success: #10b981;
  --color-error: #ef4444;
  
  /* Neutrals */
  --color-bg-base: #ffffff;
  --color-bg-alt: #f8fafc;        /* Slate-50 background */
  --color-text-main: #334155;     /* Slate-700 for paragraphs */
  --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: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
  
  /* Spacing */
  --max-width: 1200px;
  --header-height: 120px;
  --header-scrolled-height: 70px;
  
  /* Border Radius */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --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 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
  --shadow-glow: 0 0 20px rgba(14, 165, 233, 0.35);
  
  /* 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.6;
  color: var(--color-text-main);
  background-color: var(--color-bg-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

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.75rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

h2 {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
  position: relative;
}

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

p {
  margin-bottom: 1.25rem;
}

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

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

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

ul {
  list-style: none;
}

/* ==========================================
   REUSABLE COMPONENTS & 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: 6rem;
  padding-bottom: 6rem;
}

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

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

.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 {
  color: #ffffff !important;
}

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

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

.section-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background-color: var(--color-secondary);
  border-radius: var(--radius-full);
}

.section-header p {
  color: var(--color-text-muted);
  font-size: 1.15rem;
  margin-top: 0.75rem;
}

.bg-dark .section-header p {
  color: #cbd5e1;
}

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

.text-left-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--color-secondary);
  border-radius: var(--radius-full);
}

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

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

/* ==========================================
   MOBILE STICKY CALL BAR
   ========================================== */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-top: 3px solid var(--color-cta);
  padding: 0.875rem 1.5rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  animation: slideUpBar 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideUpBar {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.mobile-call-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.mobile-call-bar-text {
  flex: 1;
}

.mobile-call-bar-text strong {
  display: block;
  font-family: var(--font-headings);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.mobile-call-bar-text span {
  display: block;
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 2px;
}

.mobile-call-bar-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-cta);
  color: var(--color-primary) !important;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.975rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(234, 179, 8, 0.35);
}

.mobile-call-bar-btn svg {
  fill: currentColor;
  flex-shrink: 0;
}

.mobile-call-bar-btn:hover {
  background-color: var(--color-cta-hover);
  color: var(--color-primary) !important;
  transform: scale(1.02);
}

/* Buttons and Links - Fixing Hover text color bug */
.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-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
  gap: 8px;
}

.btn-primary {
  background-color: var(--color-cta);
  color: var(--color-primary) !important;
  box-shadow: 0 4px 10px rgba(234, 179, 8, 0.2);
}

.btn-primary:hover {
  background-color: var(--color-cta-hover);
  color: var(--color-primary) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(202, 138, 4, 0.35);
}

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

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

.btn-accent {
  background-color: var(--color-secondary);
  color: #ffffff !important;
  box-shadow: 0 4px 10px rgba(26, 94, 161, 0.2);
}

.btn-accent:hover {
  background-color: var(--color-secondary-light);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(40, 115, 187, 0.3);
}

.btn-white {
  background-color: #ffffff;
  color: var(--color-primary) !important;
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background-color: var(--color-bg-alt);
  color: var(--color-primary) !important;
  transform: translateY(-2px);
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
header {
  position: fixed;
  top: 10px;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: transparent;
  z-index: 1000;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
}

header.scrolled {
  top: 0;
  height: var(--header-scrolled-height);
  background-color: rgba(10, 31, 51, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.logo img {
  height: 70px;
  width: auto;
  max-height: 100%;
  object-fit: contain;
  transition: height 0.3s ease, opacity 0.3s ease;
  display: block;
}

header.scrolled .logo img {
  height: 50px;
}

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

.nav-link {
  font-family: var(--font-headings);
  font-weight: 500;
  font-size: 1rem;
  color: #cbd5e1 !important; /* White/grey text on header overlay */
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition-fast);
}

header:not(.scrolled) .nav-link {
  color: #ffffff !important;
}

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

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

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

.header-phone-desktop {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-headings);
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-smooth);
}

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

.header-phone-desktop:hover {
  background-color: var(--color-accent);
  color: #ffffff !important;
  border-color: var(--color-accent);
  box-shadow: var(--shadow-glow);
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

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

.hamburger.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 4rem;
  background: radial-gradient(circle at top right, rgba(26, 94, 161, 0.15), transparent),
              linear-gradient(135deg, rgba(10, 31, 51, 0.78) 0%, rgba(3, 10, 18, 0.85) 100%);
  display: flex;
  align-items: center;
  color: #ffffff;
  overflow: hidden;
}

/* Hero Background Image overlay */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  mix-blend-mode: normal;
  z-index: 1;
}

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

.hero-text-content {
  max-width: 650px;
}

/* Fix Hero Heading/Text visibility bug */
.hero-title, .hero h1, .hero h2, .hero h3, .hero h4 {
  color: #ffffff !important;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(14, 165, 233, 0.15);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: var(--color-accent);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title {
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-title span {
  color: var(--color-accent);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

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

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.trust-item svg {
  fill: var(--color-accent);
  margin-top: 2px;
  flex-shrink: 0;
}

.trust-item-text strong {
  display: block;
  font-family: var(--font-headings);
  font-size: 1.05rem;
  color: #ffffff;
}

.trust-item-text span {
  color: #94a3b8;
  font-size: 0.95rem;
}

/* Glassmorphism Booking Card */
.hero-booking-card {
  background: rgba(15, 32, 53, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg), 0 20px 40px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 480px;
  justify-self: center;
  position: relative;
}

.hero-booking-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.4), transparent, rgba(26, 94, 161, 0.4));
  border-radius: calc(var(--radius-md) + 2px);
  z-index: -1;
  opacity: 0.5;
}

.hero-booking-card h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: #ffffff !important;
  text-align: center;
}

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

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

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  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-accent);
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.25);
}

.form-control::placeholder {
  color: #64748b;
}

textarea.form-control {
  resize: vertical;
}

.btn-submit-booking {
  width: 100%;
  padding: 0.9rem 1.75rem;
  background-color: var(--color-cta);
  color: var(--color-primary) !important;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  margin-top: 0.5rem;
}

.btn-submit-booking:hover {
  background-color: var(--color-cta-hover);
  color: var(--color-primary) !important;
  box-shadow: 0 4px 15px rgba(234, 179, 8, 0.3);
}

.form-feedback {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: none;
}

.form-feedback.success {
  background-color: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: block;
}

.form-feedback.error {
  background-color: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
  display: block;
}

/* ==========================================
   ABOUT BRIEF SECTION
   ========================================== */
.about-brief-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.image-stack {
  position: relative;
  padding: 1.5rem;
}

.image-card {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
  border: 4px solid #ffffff;
}

.image-stack::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 80%;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  border-radius: var(--radius-md);
  z-index: 1;
  transform: rotate(-3deg);
  opacity: 0.15;
}

.image-badge {
  position: absolute;
  bottom: -1rem;
  right: -0.5rem;
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  max-width: 280px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  border-left: 5px solid var(--color-accent);
}

.image-badge strong {
  display: block;
  font-family: var(--font-headings);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.image-badge p {
  font-size: 0.875rem;
  color: #cbd5e1;
  margin-bottom: 0;
  line-height: 1.5;
}

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

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--color-bg-alt);
  padding: 1rem;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--color-secondary);
}

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

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

/* ==========================================
   SERVICES SHOWCASE
   ========================================== */
.service-showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

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

.service-showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26, 94, 161, 0.2);
}

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

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

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

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

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

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

.service-showcase-card-body .btn {
  width: 100%;
}

/* ==========================================
   DETAILED SERVICES LISTS
   ========================================== */
.services-lists-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.services-list-column {
  background-color: var(--color-bg-base);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition-smooth);
}

.services-list-column:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(26, 94, 161, 0.15);
}

.services-list-column h3 {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 1.75rem;
  border-bottom: 2px solid var(--color-border);
  padding-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.services-list-column h3::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 20px;
  background-color: var(--color-secondary);
  border-radius: var(--radius-full);
}

.services-list-column ul {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.services-list-column li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.service-bullet-icon {
  fill: var(--color-accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.services-list-column li span {
  font-size: 1rem;
  color: var(--color-text-main);
  line-height: 1.4;
}

/* ==========================================
   WHY CUSTOMERS CHOOSE US SECTION
   ========================================== */
.why-choose-us {
  display: grid;
  grid-template-columns: 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, .why-feature-box.active {
  background-color: var(--color-bg-alt);
  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;
  color: var(--color-secondary);
}

.why-feature-icon svg {
  fill: currentColor;
}

.why-feature-content h3 {
  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;
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-box {
  background-color: var(--color-bg-alt);
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  border-top: 4px solid var(--color-secondary);
  flex: 1;
}

.stat-number {
  font-family: var(--font-headings);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-secondary);
  margin-bottom: 0.25rem;
}

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

/* ==========================================
   SERVICE PROCESS STEPS
   ========================================== */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  position: relative;
}

.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 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

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

/* ==========================================
   CLIENT REVIEWS SECTION
   ========================================== */
.reviews-section {
  padding: 6rem 0;
  background-color: var(--color-bg-base);
}

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

.review-card {
  background-color: var(--color-bg-alt);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background-color: var(--color-bg-base);
  border-color: 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;
}

/* ==========================================
   FAQ SECTION (ACCORDION)
   ========================================== */
.faq-container {
  max-width: 850px;
  margin: 0 auto;
}

.faq-list {
  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-sm);
  overflow: hidden;
  transition: var(--transition-smooth);
}

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

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

.faq-header h3 {
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 0;
  color: var(--color-text-dark);
  padding-right: 1.5rem;
}

.faq-icon-wrapper {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

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

/* Horizontal line */
.faq-icon-wrapper::before {
  top: 9px;
  left: 0;
  width: 100%;
  height: 2px;
}

/* Vertical line */
.faq-icon-wrapper::after {
  top: 0;
  left: 9px;
  width: 2px;
  height: 100%;
}

.faq-item.active {
  border-color: rgba(26, 94, 161, 0.3);
  box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-header {
  background-color: var(--color-bg-alt);
}

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

.faq-item.active .faq-icon-wrapper::before {
  background-color: var(--color-secondary);
}

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

.faq-item.active .faq-content {
  max-height: 1000px;
  transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

.faq-content-inner {
  padding: 1.5rem;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-main);
  font-size: 0.975rem;
  line-height: 1.6;
  background-color: #ffffff;
}

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

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

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-content h3 {
  font-size: 2rem;
  color: #ffffff !important;
  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;
  width: 100%;
}

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

/* ==========================================
   PAGES SPECIFIC STYLING
   ========================================== */

/* Subpage Hero Banner */
.page-hero {
  position: relative;
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 6rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, #030a12 100%);
  color: #ffffff;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/services-hero-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  mix-blend-mode: overlay;
  z-index: 1;
}

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

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #ffffff !important;
}

.page-hero p {
  font-size: 1.15rem;
  color: #cbd5e1 !important;
  line-height: 1.6;
}

/* Contact Info Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.contact-info-card {
  background-color: var(--color-bg-base);
  border: 1px solid var(--color-border);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-title {
  margin-bottom: 0.5rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-detail-icon {
  background-color: var(--color-bg-alt);
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  color: var(--color-secondary);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-detail-icon svg {
  fill: currentColor;
}

.contact-detail-text {
  min-width: 0;
}

.contact-detail-text strong {
  display: block;
  font-family: var(--font-headings);
  font-size: 1.05rem;
  color: var(--color-text-dark);
  margin-bottom: 0.25rem;
}

.contact-detail-text p, .contact-detail-text a {
  margin-bottom: 0;
  color: var(--color-text-main);
  font-size: 0.975rem;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-all;
  display: inline-block;
  max-width: 100%;
}

.contact-detail-text a:hover {
  color: var(--color-accent);
}

.contact-form-wrapper {
  background-color: var(--color-bg-base);
  border: 1px solid var(--color-border);
  padding: 3rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.contact-form-wrapper h2 {
  font-size: 1.85rem;
  margin-bottom: 2rem;
}

.contact-form-wrapper .form-control {
  background-color: var(--color-bg-alt);
  border-color: var(--color-border);
  color: var(--color-text-dark);
}

.contact-form-wrapper .form-control:focus {
  background-color: #ffffff;
  border-color: var(--color-secondary);
}

.contact-form-wrapper .form-label {
  color: var(--color-text-dark);
  font-weight: 600;
}

.contact-form-wrapper button[type="submit"] {
  background-color: var(--color-secondary);
  color: #ffffff !important;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  width: 100%;
}

.contact-form-wrapper button[type="submit"]:hover {
  background-color: var(--color-secondary-light);
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(26, 94, 161, 0.25);
}

/* Legal Pages Styling */
.legal-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section h2 {
  font-size: 1.65rem;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.5rem;
}

.legal-section p, .legal-section li {
  font-size: 1rem;
  color: var(--color-text-main);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-section ul {
  list-style: disc;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

.legal-section li {
  margin-bottom: 0.5rem;
}

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

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

.service-anchor-grid.reverse {
  direction: ltr;
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
  background-color: #030d17;
  color: #94a3b8;
  font-size: 0.95rem;
  border-top: 4px solid var(--color-secondary);
}

.footer-top {
  padding-top: 5rem;
  padding-bottom: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.footer-brand h2 {
  color: #ffffff !important;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.footer-logo img {
  height: 70px;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-title {
  color: #ffffff !important;
  font-size: 1.15rem;
  font-family: var(--font-headings);
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

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

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-link {
  color: #94a3b8 !important;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-link::before {
  content: '→';
  color: var(--color-accent);
  font-weight: bold;
  opacity: 0;
  transform: translateX(-5px);
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: #ffffff !important;
  padding-left: 8px;
}

.footer-link:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1.25rem;
}

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

.footer-contact-item span, .footer-contact-item a {
  color: #94a3b8 !important;
  line-height: 1.4;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-all;
  min-width: 0;
  display: inline-block;
  max-width: 100%;
}

.footer-contact-item a:hover {
  color: #ffffff !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem 0;
  text-align: center;
  background-color: #02080f;
}

.footer-bottom-flex {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

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

.footer-legal-links a {
  color: #64748b !important;
  font-size: 0.875rem;
}

.footer-legal-links a:hover {
  color: #cbd5e1 !important;
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #64748b;
}

/* ==========================================
   RESPONSIVENESS & MEDIA QUERIES
   ========================================== */

/* Tablet & Up (768px) */
@media (min-width: 768px) {
  h1 {
    font-size: 3.5rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
  
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-container {
    grid-template-columns: 1.2fr 0.8fr;
  }
  
  .hero {
    padding-top: var(--header-height);
    padding-bottom: 0;
  }
  
  .about-brief-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-lists-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-choose-us {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom-flex {
    flex-direction: row;
  }
  
  /* Hide mobile sticky bar on tablet+ */
  .mobile-call-bar {
    display: none !important;
  }
}

/* Desktop & Up (992px) */
@media (min-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .service-showcase-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .services-lists-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  /* 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;
  }
  
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .cta-banner {
    flex-direction: row;
    padding: 3.5rem 4rem;
    text-align: left;
    gap: 3rem;
  }
  
  .cta-content {
    text-align: left;
  }
  
  .cta-actions {
    width: auto;
  }
  
  .cta-actions .btn {
    min-width: 220px;
  }
  
  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  }
  
  .service-anchor-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
  }
  
  .service-anchor-grid.reverse {
    grid-template-columns: 0.9fr 1.1fr;
  }
  
  .service-anchor-grid.reverse .service-anchor-text {
    grid-column: 2;
  }
  
  .service-anchor-grid.reverse .service-anchor-image {
    grid-column: 1;
    grid-row: 1;
  }
}

/* Mobile Nav Styles (Below 768px) */
@media (max-width: 767px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 290px;
    height: 100vh;
    background-color: #051321;
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--header-height) + 2rem) 2.5rem 3rem 2.5rem;
    gap: 1.75rem;
    box-shadow: -5px 0 25px rgba(0,0,0,0.4);
    transition: var(--transition-smooth);
    z-index: 1050;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .nav-menu.open {
    right: 0;
  }
  
  .nav-link {
    color: #ffffff !important;
    font-size: 1.15rem;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 0.75rem;
  }
  
  .header-phone-desktop {
    display: none; /* Hide standard phone on header */
  }
  
  /* Show mobile sticky call bar on small screens */
  .mobile-call-bar {
    display: block;
  }
  
  /* Add bottom padding to body so content isn't hidden behind sticky bar */
  body {
    padding-bottom: 80px;
  }

  /* Mobile Grid & Card Padding Adjustments for Contact Page */
  .contact-grid {
    gap: 2.5rem;
  }
  
  .contact-info-card {
    padding: 1.75rem 1.5rem;
    gap: 1.5rem;
  }
  
  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }
  
  .contact-form-wrapper h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
}
