/*
 * Pakistan Hybrid Battery Specialists
 * Main Stylesheet - Pure Vanilla CSS
 */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --font-primary: 'Plus Jakarta Sans', sans-serif;
  
  /* Color Palette */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-dark: #0f172a;
  --bg-dark-accent: #1e293b;
  
  --text-main: #334155;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --text-dark: #0f172a;
  
  --color-primary: #1e293b;
  --color-primary-light: #38bdf8;
  --color-success: #059669; /* Safe Eco Green */
  --color-success-light: #34d399;
  --color-accent: #ea580c; /* High-converting Orange */
  --color-accent-hover: #c2410c;
  --color-whatsapp: #25d366;
  
  --border-color: #e2e8f0;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-premium: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
  
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

h1 { font-size: 2.5rem; letter-spacing: -0.03em; }
h2 { font-size: 2rem; letter-spacing: -0.02em; }
h3 { font-size: 1.5rem; letter-spacing: -0.01em; }
p { margin-bottom: 1rem; }

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.section {
  padding: 4.5rem 0;
}

.section-bg {
  background-color: var(--bg-secondary);
}

.section-title {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem auto;
}

.section-title h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--color-success);
  border-radius: 2px;
}

.section-title p {
  color: var(--text-muted);
  font-size: 1.125rem;
}

/* Grid layout */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}

/* Flex Utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

/* Buttons & CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  gap: 0.5rem;
  text-align: center;
}

.btn-primary {
  background-color: var(--color-accent);
  color: white !important;
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

.btn-whatsapp {
  background-color: var(--color-whatsapp);
  color: white !important;
}

.btn-whatsapp:hover {
  background-color: #1ebd5d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-dark) !important;
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: white !important;
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

/* Floating Actions (Mobile sticky conversion points) */
.floating-actions {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  color: white !important;
}

.float-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.float-whatsapp {
  background-color: var(--color-whatsapp);
}

.float-whatsapp:hover {
  background-color: #1ebd5d;
  transform: scale(1.1);
}

.float-phone {
  background-color: var(--color-accent);
}

.float-phone:hover {
  background-color: var(--color-accent-hover);
  transform: scale(1.1);
}

/* Mobile persistent footer bar (highly recommended for Pakistani audience) */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.08);
  z-index: 999;
  padding: 0.5rem 1rem;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  border-top: 1px solid var(--border-color);
}

@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: grid;
  }
  .floating-actions {
    bottom: 75px;
  }
}

/* Header & Top Bar */
.top-bar {
  background-color: var(--color-primary);
  color: var(--text-light);
  padding: 0.5rem 0;
  font-size: 0.875rem;
  font-weight: 500;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-bar-right a {
  color: var(--color-primary-light);
  font-weight: 700;
}

.top-bar-right a:hover {
  color: white;
}

.header {
  background-color: white;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
}

.logo-icon {
  color: var(--color-success);
}

.logo-text span {
  color: var(--color-success);
}

.nav {
  display: none;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  font-weight: 600;
  color: var(--text-main);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-success);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-success);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  border-radius: 3px;
  transition: var(--transition);
}

/* Mobile Nav Styles */
.mobile-nav {
  display: none;
  background-color: white;
  border-top: 1px solid var(--border-color);
  padding: 1rem 1.5rem;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  display: block;
  font-weight: 600;
  font-size: 1.125rem;
  padding: 0.5rem 0;
}

@media (min-width: 1024px) {
  .nav {
    display: block;
  }
  .menu-toggle {
    display: none;
  }
  .mobile-nav {
    display: none !important;
  }
}

/* Hero Section */
.hero {
  background-color: var(--bg-dark);
  color: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 60%);
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.hero-content h1 {
  color: white;
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-content h1 span {
  color: var(--color-success-light);
}

.hero-subtitle {
  color: #94a3b8;
  font-size: 1.25rem;
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero-bullet-list {
  list-style: none;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-bullet-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
}

.hero-bullet-list li svg {
  color: var(--color-success-light);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Beautiful Custom Battery SVG container instead of generic placeholder */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.battery-visual-container {
  width: 100%;
  max-width: 320px;
  background-color: var(--bg-dark-accent);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-premium);
  position: relative;
  text-align: center;
}

.battery-indicator {
  position: relative;
  width: 120px;
  height: 200px;
  border: 6px solid #475569;
  border-radius: var(--radius-md);
  margin: 0 auto 1.5rem auto;
}

.battery-indicator::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 10px;
  background-color: #475569;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.battery-charge {
  position: absolute;
  bottom: 6px;
  left: 6px;
  right: 6px;
  background: linear-gradient(180deg, var(--color-success-light) 0%, var(--color-success) 100%);
  height: 80%;
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
  animation: pulse-charge 3s infinite ease-in-out;
}

@keyframes pulse-charge {
  0%, 100% { opacity: 0.85; filter: brightness(1); }
  50% { opacity: 1; filter: brightness(1.2); }
}

.battery-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.25rem;
}

.battery-subtext {
  font-size: 0.875rem;
  color: #94a3b8;
}

/* Trust Badges Bar */
.trust-bar {
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem 0;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .trust-bar-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-badge-icon {
  color: var(--color-success);
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.trust-badge-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
}

.trust-badge-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Services section / Feature Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-success-light);
}

.feature-icon-wrapper {
  background-color: #ecfdf5;
  color: var(--color-success);
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Model Cards Grid */
.models-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .models-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .models-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.model-card {
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.model-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.model-card-image {
  height: 180px;
  background-color: #f1f5f9;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-color);
}

.model-card-image svg {
  width: 70px;
  height: 70px;
  opacity: 0.3;
}

.model-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--color-success);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}

.model-card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.model-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.model-features {
  list-style: none;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.model-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.model-features li svg {
  color: var(--color-success);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.model-card-cta {
  margin-top: auto;
}

/* Service Areas Grid */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .areas-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.area-card {
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 1rem;
  text-align: center;
  font-weight: 700;
  color: var(--text-dark);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.area-card:hover {
  background-color: var(--color-success);
  color: white;
  border-color: var(--color-success);
  transform: translateY(-2px);
}

/* Workshop Locations & Maps (Tabs) */
.map-tabs {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.tab-btn {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-main);
}

.tab-btn.active {
  background-color: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.map-container {
  height: 450px;
  background-color: #e2e8f0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-tab-content {
  display: none;
  width: 100%;
  height: 100%;
}

.map-tab-content.active {
  display: block;
}

.map-tab-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Model specific page details */
.model-hero {
  background-color: var(--bg-dark);
  color: white;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.model-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%, rgba(16, 185, 129, 0.1) 0%, transparent 60%);
  z-index: 1;
}

.model-hero .container {
  position: relative;
  z-index: 2;
}

.breadcrumbs {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  color: #94a3b8;
}

.breadcrumbs a {
  color: #94a3b8;
}

.breadcrumbs a:hover {
  color: var(--color-success-light);
}

.breadcrumbs li:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  color: #475569;
}

.model-hero-title {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
  color: white;
}

.model-hero-sub {
  font-size: 1.125rem;
  color: #94a3b8;
}

.model-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

@media (min-width: 1024px) {
  .model-layout {
    grid-template-columns: 1.4fr 0.8fr;
  }
}

.model-info-block {
  margin-bottom: 2.5rem;
}

.model-info-block h3 {
  font-size: 1.5rem;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 0.5rem;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}

.bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.bullet-list li svg {
  color: var(--color-success);
  width: 20px;
  height: 20px;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.tech-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.tech-specs-table th, .tech-specs-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-color);
  text-align: left;
}

.tech-specs-table th {
  background-color: var(--bg-secondary);
  font-weight: 700;
  color: var(--text-dark);
  width: 40%;
}

.sidebar-card {
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}

.sidebar-title {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}

/* Contact Form UI */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-method {
  display: flex;
  gap: 1rem;
}

.contact-method-icon {
  background-color: #ecfdf5;
  color: var(--color-success);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-icon svg {
  width: 24px;
  height: 24px;
}

.contact-method-details h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-method-details p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.contact-form {
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  font-family: var(--font-primary);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: var(--bg-secondary);
  color: var(--text-dark);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-success);
  background-color: white;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Footer styling */
.footer {
  background-color: var(--bg-dark);
  color: #94a3b8;
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer h4 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  }
}

.footer-brand p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #94a3b8;
}

.footer-links a:hover {
  color: var(--color-success-light);
  padding-left: 5px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-list li {
  display: flex;
  gap: 0.75rem;
}

.footer-contact-list li svg {
  color: var(--color-success-light);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
}

/* Callout Box / Banner */
.cta-banner {
  background-color: var(--color-primary);
  color: white;
  border-radius: var(--radius-md);
  padding: 3rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 90%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-banner h2 {
  color: white;
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: #cbd5e1;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

/* Dropdown Menus */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 240px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1000;
  list-style: none;
  padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.5rem 1.25rem;
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.dropdown-item:hover {
  background-color: var(--bg-secondary);
  color: var(--color-success);
  padding-left: 1.5rem;
}

/* Mobile Dropdown styles */
.mobile-dropdown-menu {
  list-style: none;
  padding-left: 1.5rem;
  display: none;
  border-left: 2px solid var(--color-success-light);
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.mobile-dropdown:hover .mobile-dropdown-menu,
.mobile-dropdown:active .mobile-dropdown-menu,
.mobile-dropdown:focus-within .mobile-dropdown-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-dropdown-menu .mobile-nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.mobile-dropdown-menu .mobile-nav-link:hover {
  color: var(--color-success);
}


/* --- Global Mobile Responsiveness Fixes --- */
@media (max-width: 768px) {
  /* Prevent horizontal scrolling */
  body, html {
    overflow-x: hidden;
  }

  /* Top bar layout fix */
  .top-bar-content {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
  }
  
  .top-bar-left {
    justify-content: center;
    flex-wrap: wrap;
    line-height: 1.4;
  }

  /* Header & Logo resizing */
  .logo {
    font-size: 1.25rem;
  }
  .header-container {
    padding: 0 1rem;
  }

  /* Breadcrumbs wrapping */
  .breadcrumbs {
    flex-wrap: wrap;
    line-height: 1.5;
  }

  /* Hero section adjustments */
  .model-hero-title, .hero h1 {
    font-size: 1.75rem !important;
    line-height: 1.25;
  }
  
  .model-hero-sub, .hero-subtitle {
    font-size: 1rem;
    line-height: 1.5;
  }

  /* Hero CTAs stacking and full width */
  .hero-ctas {
    flex-direction: column !important;
    width: 100%;
    align-items: stretch;
    gap: 0.75rem !important;
  }
  
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* Hide floating buttons to avoid overlap on mobile */
  /* The mobile-sticky-bar handles persistent CTAs instead */
  .floating-actions {
    display: none !important;
  }
}
