/* Kelly Auto Body LLC - Master Stylesheet */

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

/* CSS Reset & Variables */
:root {
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Color Palette - Premium Light Automotive Style */
  --color-bg-darkest: #f6f7fa;      /* Clean Ice White/Light Gray background */
  --color-bg-dark: #ffffff;         /* Pure White cards */
  --color-bg-light-dark: #f0f2f5;   /* Soft Gray sections */
  --color-border: #e2e8f0;          /* Light border */
  --color-border-glow: rgba(0, 119, 255, 0.15);
  
  --color-accent: #0077ff;          /* Premium Royal Blue */
  --color-accent-hover: #0056b3;
  --color-accent-rgb: 0, 119, 255;
  --color-primary: #0077ff;         /* Metallic Blue */
  --gradient-accent: linear-gradient(135deg, #0077ff 0%, #00e5ff 100%);
  --gradient-card: linear-gradient(145deg, #ffffff 0%, #f6f7fa 100%);
  --gradient-overlay: linear-gradient(rgba(10, 10, 12, 0.65), rgba(10, 10, 12, 0.65)); /* Dark Cinematic Overlay for Heroes */
  
  --color-text-primary: #1e293b;    /* Slate Dark headings */
  --color-text-secondary: #475569;  /* Muted Slate Grey body text */
  --color-text-muted: #94a3b8;      /* Lighter Slate Grey */
  
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 20px rgba(0, 119, 255, 0.1);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s ease;
  
  --header-height: 80px;
}

/* Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--color-bg-darkest);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-darkest);
}
::-webkit-scrollbar-thumb {
  background: #b0bec5;
  border-radius: var(--radius-sm);
  border: 2px solid var(--color-bg-darkest);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}

/* Accessibility: Focus States */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

/* Typography & Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.text-accent {
  color: var(--color-accent);
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-center { text-align: center; }
.section-padding { padding: 80px 0; }
@media (max-width: 768px) {
  .section-padding { padding: 50px 0; }
}

/* Hide before/after slider labels on mobile */
@media (max-width: 768px) {
  .slider-label { display: none !important; }
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 800;
}
@media (max-width: 768px) {
  .section-title { font-size: 2rem; }
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto 50px auto;
}

/* Button & Link Styles (Touch target friendly >44px) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all var(--transition-normal);
  min-height: 48px; /* Touch target size requirement */
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--color-bg-darkest);
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid var(--color-border);
  color: var(--color-text-primary);
  background: rgba(255, 255, 255, 0.02);
}
.btn-outline:hover {
  border-color: var(--color-accent);
  background: rgba(0, 229, 255, 0.05);
  color: var(--color-accent);
  transform: translateY(-2px);
}

/* Glassmorphism utility */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}
.glass-card:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* HEADER STYLES */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-text-primary);
}
.logo-accent {
  color: var(--color-accent);
}

.logo svg {
  width: 32px;
  height: 32px;
  fill: var(--color-accent);
}

.desktop-nav {
  display: flex;
  gap: 18px;
  list-style: none;
}

.desktop-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  position: relative;
  padding: 8px 0;
}
.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--color-text-primary);
}
.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-normal);
}
.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Dropdown Menu Styles (Desktop) */
.desktop-nav .nav-dropdown {
  position: relative;
}

.desktop-nav .nav-dropdown .arrow {
  font-size: 0.65rem;
  margin-left: 2px;
  vertical-align: middle;
  transition: transform var(--transition-fast);
  display: inline-block;
  color: var(--color-text-muted);
}
.desktop-nav .nav-dropdown:hover .arrow {
  transform: rotate(180deg);
  color: var(--color-accent);
}

.desktop-nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  min-width: 250px;
  list-style: none;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}
.desktop-nav .nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.desktop-nav .dropdown-menu a {
  display: block;
  padding: 8px 20px;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  font-weight: 500;
  transition: all var(--transition-fast);
}
.desktop-nav .dropdown-menu a::after {
  display: none;
}
.desktop-nav .dropdown-menu a:hover {
  background: rgba(0, 229, 255, 0.05);
  color: var(--color-accent);
  padding-left: 24px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.phone-link-header-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  border: 1px solid var(--color-accent);
  padding: 8px 18px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  min-height: 44px;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.05);
}
.phone-link-header-btn:hover {
  background: rgba(0, 229, 255, 0.08);
  box-shadow: var(--shadow-glow);
  color: var(--color-accent);
  transform: translateY(-2px);
  border-color: var(--color-accent);
}
.phone-link-header-btn svg {
  width: 18px;
  height: 18px;
  fill: var(--color-accent);
}

/* Hamburger Menu Button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 1100;
  background: none;
  border: none;
  padding: 0;
}
.hamburger span {
  display: block;
  height: 2.5px;
  width: 100%;
  background-color: var(--color-text-primary);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

/* Mobile Nav Drawer */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}
.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-menu {
  position: fixed;
  top: 0;
  right: -100vw;
  width: 100vw;
  height: 100vh;
  background: var(--color-bg-dark);
  z-index: 1060;
  padding: 80px 30px 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  transition: right var(--transition-normal);
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
}
.mobile-nav-menu.active {
  right: 0;
}

/* Mobile Nav Close Button (full-width drawer) */
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-bg-light-dark);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 1070;
}
.mobile-nav-close:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}
.mobile-nav-close svg {
  width: 22px;
  height: 22px;
  fill: var(--color-text-primary);
  transition: fill var(--transition-fast);
}
.mobile-nav-close:hover svg {
  fill: #ffffff;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-nav-links a {
  font-size: 1.2rem;
  font-weight: 600;
  font-family: var(--font-heading);
  display: block;
  padding: 8px 0;
}
.mobile-nav-links a.active {
  color: var(--color-accent);
}

/* Mobile Dropdown Accordion Styles */
.mobile-nav-links .mob-nav-dropdown {
  width: 100%;
}

.mobile-nav-links .mob-dropdown-toggle {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.mobile-nav-links .mob-dropdown-toggle .arrow {
  font-size: 0.8rem;
  transition: transform var(--transition-fast);
  color: var(--color-text-muted);
}

.mobile-nav-links .mob-dropdown-toggle.active .arrow {
  transform: rotate(180deg);
  color: var(--color-accent);
}

.mobile-nav-links .mob-dropdown-menu {
  list-style: none;
  padding-left: 15px;
  margin-top: 10px;
  display: none;
  flex-direction: column;
  gap: 12px;
  border-left: 1px solid var(--color-border);
}

.mobile-nav-links .mob-dropdown-menu.active {
  display: flex;
}

.mobile-nav-links .mob-dropdown-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  padding: 4px 0;
}

.mobile-nav-links .mob-dropdown-menu a:hover,
.mobile-nav-links .mob-dropdown-menu a.active {
  color: var(--color-accent);
}

/* Responsive Header */
@media (max-width: 991px) {
  .desktop-nav,
  .header-cta .btn {
    display: none;
  }
  .header-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  /* Active states for Hamburger transform */
  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

/* HERO SECTION WITH APPOINTMENT FORM */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 80px);
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  background-image: var(--gradient-overlay), url('../images/hero_bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: scroll; /* parallax or smooth mobile scrolling */
}
/* Ensure dark tinting and high readability */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, transparent 20%, rgba(20, 24, 33, 0.85) 85%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 45px;
    text-align: center;
  }
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 60px;
  }
  .hero-ctas {
    margin-bottom: 30px;
  }
}

.hero-content h1 {
  font-size: 3.1rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
}

.hero-content p {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  margin-bottom: 35px;
  max-width: 550px;
}
@media (max-width: 991px) {
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-ctas {
  display: flex;
  gap: 15px;
}
@media (max-width: 991px) {
  .hero-ctas {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
  }
}

/* Appointment Form Glassmorphism style */
.appointment-card {
  padding: 35px;
  border-radius: var(--radius-lg);
}

.appointment-card h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}
.appointment-card p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  min-height: 48px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  color: var(--color-text-primary);
  font-family: var(--font-body);
  transition: all var(--transition-fast);
}
.form-control:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--color-accent);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.15);
  outline: none;
}

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

.form-submit-btn {
  width: 100%;
  margin-top: 10px;
}

/* TRUST BAR */
.trust-bar {
  background: var(--color-bg-dark);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 30px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.trust-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 229, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--color-accent);
}

.trust-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-primary);
}
.trust-item p {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card-icon {
  margin-bottom: 25px;
  width: 60px;
  height: 60px;
  background: rgba(0, 229, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.service-card:hover .service-card-icon {
  background: var(--color-accent);
  border-color: var(--color-accent);
}
.service-card-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--color-accent);
  transition: fill var(--transition-fast);
}
.service-card:hover .service-card-icon svg {
  fill: var(--color-bg-darkest);
}

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

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

.service-card-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card-link svg {
  width: 14px;
  height: 14px;
  fill: var(--color-accent);
  transition: transform var(--transition-fast);
}
.service-card:hover .service-card-link svg {
  transform: translateX(4px);
}

/* BEFORE/AFTER INTERACTIVE SLIDER */
.before-after-slider {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 500px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  user-select: none;
}
@media (max-width: 768px) {
  .before-after-slider {
    height: 320px;
  }
}

.slider-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.slider-before {
  /* This image will be clipped dynamically */
  background-image: url('../images/collision_repair.png'); 
}

.slider-after {
  background-image: url('../images/paint_correction.png');
}

.slider-resize {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%; /* JS will control this */
  height: 100%;
  overflow: hidden;
}

/* Labels */
.slider-label {
  position: absolute;
  bottom: 20px;
  padding: 6px 14px;
  background: rgba(10, 10, 12, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 5;
  color: #ffffff !important;
}
.slider-label.before {
  left: 20px;
}
.slider-label.after {
  right: 20px;
}

/* Handle line and button */
.slider-handle {
  position: absolute;
  top: 0;
  left: 50%; /* JS will control this */
  width: 4px;
  height: 100%;
  background: var(--color-accent);
  cursor: ew-resize;
  z-index: 10;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
  transform: translateX(-50%);
}

.slider-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--color-bg-darkest);
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md), var(--shadow-glow);
  pointer-events: none; /* Mouse moves the handle bar */
}

.slider-handle-button svg {
  width: 20px;
  height: 20px;
  fill: var(--color-accent);
}

/* WHY CHOOSE US */
.why-choose-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 991px) {
  .why-choose-us-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.why-choose-us-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.why-choose-us-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .why-choose-us-image img {
    height: 300px;
  }
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.why-feature-item {
  display: flex;
  gap: 20px;
}

.why-feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(0, 229, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-feature-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--color-accent);
}

.why-feature-text h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.why-feature-text p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

/* REVIEWS CAROUSEL */
.reviews-section {
  background: linear-gradient(180deg, var(--color-bg-darkest) 0%, var(--color-bg-dark) 100%);
  overflow: hidden;
}

.reviews-slider-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 0 40px;
}
@media (max-width: 576px) {
  .reviews-slider-container {
    padding: 0 10px;
  }
}

.review-slide {
  text-align: center;
  padding: 40px;
  display: none; /* JS controls visible slide */
  animation: fadeIn var(--transition-slow);
}
.review-slide.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.stars {
  display: inline-flex;
  gap: 4px;
  margin-bottom: 20px;
}
.stars svg {
  width: 24px;
  height: 24px;
  fill: #ffd700;
}

.review-text {
  font-size: 1.35rem;
  line-height: 1.6;
  font-style: italic;
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .review-text {
    font-size: 1.1rem;
  }
}

.review-author {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.review-author-title {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  margin-top: 4px;
}

.reviews-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.reviews-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.reviews-nav-btn:hover {
  border-color: var(--color-accent);
  background: rgba(0, 229, 255, 0.05);
}
.reviews-nav-btn svg {
  width: 16px;
  height: 16px;
  fill: var(--color-text-primary);
}
.reviews-nav-btn:hover svg {
  fill: var(--color-accent);
}

/* SERVICE AREAS LIST SECTION */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media (max-width: 991px) {
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 576px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.area-card {
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.area-card svg {
  width: 32px;
  height: 32px;
  fill: var(--color-accent);
}
.area-card h3 {
  font-size: 1.15rem;
}
.area-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-top: auto;
}

/* CTA BANNER - Light Premium Style */
.cta-banner {
  background: linear-gradient(135deg, #eef2f7 0%, #e3eaf4 100%);
  background-image: none !important;
  border-top: 2px solid var(--color-border);
  border-bottom: 2px solid var(--color-border);
  position: relative;
  padding-left: 24px;
  padding-right: 24px;
}
.cta-banner::before {
  display: none;
}

.cta-banner-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  margin: 0 auto;
}
.cta-banner-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--color-text-primary) !important;
}
.cta-banner-content p {
  font-size: 1.1rem;
  color: var(--color-text-secondary) !important;
  margin-bottom: 35px;
}
.cta-banner-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .cta-banner-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-banner-buttons .btn {
    width: 100%;
    max-width: 320px;
  }
  .cta-banner-content h2 {
    font-size: 1.8rem;
  }
  .cta-banner-content p {
    font-size: 1rem;
  }
}
.cta-banner .btn-outline {
  border-color: var(--color-accent) !important;
  color: var(--color-accent) !important;
}

/* REVIEWS PAGE (Star Reputation Funnel) */
.reviews-funnel-card {
  max-width: 600px;
  margin: 50px auto;
  padding: 40px;
  text-align: center;
}

.reviews-funnel-stars {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 30px 0;
}
.funnel-star {
  font-size: 3rem;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: color var(--transition-fast), transform var(--transition-fast);
}
@media (max-width: 480px) {
  .funnel-star {
    font-size: 2.2rem;
  }
}
.funnel-star:hover,
.funnel-star.active {
  color: #ffd700;
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

.feedback-form-container {
  display: none;
  animation: fadeIn var(--transition-normal);
  text-align: left;
  border-top: 1px solid var(--color-border);
  padding-top: 30px;
}
.feedback-form-container.active {
  display: block;
}

.feedback-success {
  display: none;
  animation: fadeIn var(--transition-normal);
  text-align: center;
  padding: 30px 0;
}
.feedback-success.active {
  display: block;
}
.feedback-success svg {
  width: 64px;
  height: 64px;
  fill: var(--color-accent);
  margin-bottom: 20px;
}

/* MASONRY GALLERY */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--color-border);
  transition: all var(--transition-fast);
  background: rgba(255, 255, 255, 0.02);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--color-accent);
  color: var(--color-bg-darkest);
  border-color: var(--color-accent);
}

.gallery-masonry {
  columns: 3 320px;
  column-gap: 20px;
  width: 100%;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  position: relative;
  cursor: pointer;
  background: var(--color-bg-dark);
}
.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform var(--transition-slow);
}
.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 12, 0.75);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition-normal);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  font-size: 1.15rem;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}
.gallery-overlay p {
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 600;
  text-transform: uppercase;
}

/* LIGHTBOX POPUP */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 6, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lightbox-close svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  position: relative;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
}

.lightbox-caption {
  text-align: center;
  margin-top: 15px;
  font-size: 1.1rem;
  color: var(--color-text-primary);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  transform: translateY(-50%);
  pointer-events: none;
}
.lightbox-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transition: background var(--transition-fast);
}
.lightbox-nav-btn:hover {
  background: rgba(0, 229, 255, 0.2);
}
.lightbox-nav-btn svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

/* CONTACT PAGE STYLING */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-card {
  padding: 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 229, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--color-accent);
}

.contact-info-text h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.contact-info-text p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}
.contact-info-text a {
  color: var(--color-accent);
  font-weight: 600;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.9) contrast(1.2); /* Custom dark high contrast map aesthetic */
}

/* FLOATING WIDGETS & MOBILE STICKY CTA */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}
@media (max-width: 768px) {
  .floating-actions {
    bottom: 30px;
    right: 20px;
  }
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md), var(--shadow-glow);
  cursor: pointer;
  transition: transform var(--transition-fast), background-color var(--transition-fast);
}
.floating-btn:hover {
  transform: scale(1.1);
}

.floating-btn-call {
  background: var(--gradient-accent);
}
.floating-btn-call svg {
  width: 24px;
  height: 24px;
  fill: var(--color-bg-darkest);
}

.floating-btn-sms {
  background: #25d366; /* SMS/WhatsApp green */
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}
.floating-btn-sms svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

/* SUBPAGES & SEO TEMPLATE STYLING */
.page-hero {
  padding: 140px 0 60px 0;
  background: linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-bg-darkest) 100%);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}
.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 2.2rem;
  }
}
.page-hero p {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}
.breadcrumbs a {
  transition: color var(--transition-fast);
}
.breadcrumbs a:hover {
  color: var(--color-accent);
}
.breadcrumbs span {
  color: var(--color-text-muted);
}

.content-block {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
}
.content-block p {
  margin-bottom: 20px;
}
.content-block h2 {
  color: var(--color-text-primary);
  font-size: 1.8rem;
  margin: 40px 0 20px 0;
}
.content-block h3 {
  color: var(--color-text-primary);
  font-size: 1.4rem;
  margin: 30px 0 15px 0;
}
.content-block ul {
  margin-bottom: 20px;
  padding-left: 20px;
  list-style-type: square;
}
.content-block li {
  margin-bottom: 10px;
}

.sidebar-card {
  padding: 30px;
  margin-bottom: 30px;
}
.sidebar-card h4 {
  font-size: 1.25rem;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 10px;
}

.sidebar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sidebar-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--color-text-secondary);
}
.sidebar-list a:hover {
  color: var(--color-accent);
}
.sidebar-list a svg {
  width: 14px;
  height: 14px;
  fill: var(--color-accent);
}

/* FOOTER */
footer {
  background: var(--color-bg-darkest);
  border-top: 1px solid var(--color-border);
  padding: 60px 0 30px 0;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
  }
}
@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-text-primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-logo svg {
  width: 32px;
  height: 32px;
  fill: var(--color-accent);
}

.footer-logo-accent {
  color: var(--color-accent);
}

.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-accent);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a:hover {
  color: var(--color-text-primary);
  padding-left: 4px;
}
.footer-links a {
  transition: all var(--transition-fast);
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer-contact-list li {
  display: flex;
  gap: 12px;
}
.footer-contact-list svg {
  width: 18px;
  height: 18px;
  fill: var(--color-accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.footer-copy {
  font-size: 0.85rem;
}
.footer-designer {
  font-size: 0.85rem;
}
.footer-designer a {
  color: var(--color-accent);
  font-weight: 600;
}

/* Micro-animations */
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.4); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(0, 229, 255, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 229, 255, 0); }
}

.pulse-button {
  animation: pulse 2s infinite;
}

/* ==========================================================================
   LIGHT MODE & COMPONENT REVISION EXTENSIONS
   ========================================================================== */

/* Hero Text Contrast Safeguards */
.hero-content h1 {
  color: #ffffff;
}
.hero-content p {
  color: rgba(255, 255, 255, 0.85) !important;
}
/* "Our Services" outline button inside hero — white on dark bg */
.hero .btn-outline {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
  background: rgba(255, 255, 255, 0.06) !important;
}
.hero .btn-outline:hover {
  color: #ffffff !important;
  border-color: #ffffff !important;
  background: rgba(255, 255, 255, 0.15) !important;
}
/* Appointment card inside hero has dark background - force white text */
.hero .appointment-card {
  background: rgba(15, 23, 42, 0.65) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
}
.hero .appointment-card h3 {
  color: #ffffff;
}
.hero .appointment-card p {
  color: rgba(255, 255, 255, 0.75) !important;
}
.hero .appointment-card label {
  color: rgba(255, 255, 255, 0.85);
}
.hero .appointment-card .form-control {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
}
.hero .appointment-card .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}
.hero .appointment-card .form-control:focus {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: var(--color-accent) !important;
}
.hero .appointment-card select.form-control option {
  background: #121215;
  color: #ffffff;
}

/* Spacing between adjacent cards in layouts (e.g. sidebar and booking form on subpages) */
.appointment-card + .sidebar-card,
.sidebar-card + .appointment-card {
  margin-top: 30px !important;
}
/* Sidebar Dark Style Overrides */
.sidebar-card {
  background: #1e293b !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: var(--shadow-sm) !important;
}
.sidebar-card h4 {
  color: #ffffff !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.sidebar-list a {
  color: rgba(255, 255, 255, 0.85) !important;
}
.sidebar-list a:hover {
  color: var(--color-accent) !important;
}
.sidebar-list a svg {
  fill: rgba(255, 255, 255, 0.7) !important;
}
.sidebar-list a:hover svg {
  fill: var(--color-accent) !important;
}

/* Page Hero Adjustments */
.page-hero {
  padding: 200px 0 120px 0 !important;
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
  color: #ffffff !important;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 12, 0.45);
  z-index: 1;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  color: #ffffff !important;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.8) !important;
}
.page-hero .breadcrumbs {
  color: rgba(255, 255, 255, 0.5) !important;
}
.page-hero .breadcrumbs a {
  color: rgba(255, 255, 255, 0.85) !important;
}
.page-hero .breadcrumbs a:hover {
  color: var(--color-accent) !important;
}
.page-hero .breadcrumbs span {
  color: rgba(255, 255, 255, 0.4) !important;
}

/* Testimonials Layout updates (Row instead of Slider) */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
@media (max-width: 991px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
.testimonial-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
  border-radius: var(--radius-md) !important;
  padding: 40px 30px !important;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal) !important;
  position: relative !important;
  overflow: hidden !important;
}
.testimonial-card::before {
  content: '“' !important;
  position: absolute !important;
  top: -10px !important;
  right: 15px !important;
  font-size: 8rem !important;
  color: rgba(0, 119, 255, 0.08) !important;
  font-family: Georgia, serif !important;
  line-height: 1 !important;
  pointer-events: none !important;
  font-weight: 900 !important;
}
.testimonial-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 40px rgba(0, 119, 255, 0.08) !important;
  border-color: rgba(0, 119, 255, 0.25) !important;
}
.testimonial-card p {
  position: relative !important;
  z-index: 2 !important;
  color: var(--color-text-secondary) !important;
  font-size: 1rem !important;
  line-height: 1.7 !important;
}
.testimonial-card .stars {
  margin-bottom: 15px !important;
  position: relative !important;
  z-index: 2 !important;
}
.testimonial-card .stars svg {
  fill: #ffd700 !important;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.15));
}
.testimonial-card .testimonial-author {
  font-weight: 700 !important;
  color: var(--color-text-primary) !important;
  margin-top: 20px !important;
  border-top: 1px solid #f1f5f9 !important;
  padding-top: 15px !important;
  font-family: var(--font-heading) !important;
  font-size: 1rem !important;
  position: relative !important;
  z-index: 2 !important;
}

/* Before/After slider fix */
.slider-before {
  width: 800px; /* modified by JS dynamically */
  max-width: none !important;
  height: 100%;
}
.before-after-slider {
  max-width: 800px;
  margin: 0 auto;
}

/* Reviews funnel star hover */
.funnel-star.hover-active {
  color: #ffd700 !important;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
  transform: scale(1.08);
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.35));
}

/* Mobile Nav Drawer Light Mode compatibility */
.mobile-nav-menu {
  background: var(--color-bg-dark) !important;
}
.mobile-nav-links a {
  color: var(--color-text-primary) !important;
}
.mobile-nav-links a.active {
  color: var(--color-accent) !important;
}
.mobile-nav-links .mob-dropdown-menu a {
  color: var(--color-text-secondary) !important;
}
.mobile-nav-links .mob-dropdown-menu a.active {
  color: var(--color-accent) !important;
}
.hamburger span {
  background-color: var(--color-text-primary) !important;
}

/* Form Styling corrections for light mode */
.form-control {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid #d1d5db;
  color: var(--color-text-primary);
}
.form-control:focus {
  background: #ffffff;
  border-color: var(--color-accent);
}
.form-control::placeholder {
  color: var(--color-text-muted);
}
select.form-control option {
  background: #ffffff;
  color: var(--color-text-primary);
}
