@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* --- Panthar Theme Tokens --- */
:root {
  --bg-dark-primary: #ffffff; /* White base */
  --bg-dark-secondary: #f8fafc; /* Very light slate-blue */
  --bg-dark-tertiary: #f1f5f9; /* Input field base */
  --accent-gold: #0ea5e9; /* Premier Light Blue */
  --accent-gold-hover: #0284c7; /* Blue hover */
  --accent-gold-dark: #0369a1;
  --accent-gold-rgb: 14, 165, 233;
  --text-white: #0f172a; /* Slate 900 for headings */
  --text-gray-light: #334155; /* Slate 700 for body text */
  --text-gray-muted: #64748b; /* Slate 500 for muted text */
  --text-gray-dark: #94a3b8;
  --border-color: #e2e8f0; /* Slate 200 border */
  --border-focus: var(--accent-gold);
  --success-color: #10b981;
  --danger-color: #ef4444;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --max-width: 1200px;
  --box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --gold-glow: 0 0 15px rgba(14, 165, 233, 0.2);
}

/* --- Base Reset & Setup --- */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark-primary);
  color: var(--text-gray-light);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: -0.01em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  color: inherit;
}

/* --- Layout Container --- */
.container {
  width: 92%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  padding: 6.5rem 0;
  position: relative;
}

.section-alt {
  background-color: var(--bg-dark-secondary);
}

/* --- Typography Helpers --- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-subtitle {
  color: var(--accent-gold);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
}

.section-title span {
  color: var(--accent-gold);
}

.section-desc {
  color: var(--text-gray-muted);
  margin-top: 1rem;
  font-size: 1rem;
}

/* --- Buttons System --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  letter-spacing: 0.05em;
  gap: 10px;
}

.btn-gold {
  background-color: var(--accent-gold);
  color: var(--bg-dark-primary);
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.25);
}

.btn-gold:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.btn-dark {
  background-color: var(--bg-dark-tertiary);
  color: var(--text-white);
  border: 1px solid var(--border-color);
}

.btn-dark:hover {
  background-color: var(--bg-dark-secondary);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
}

/* --- Top Info Bar --- */
.topbar {
  background-color: #0f172a;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.82rem;
  padding: 0.6rem 0;
  color: #94a3b8;
}

.topbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-item svg {
  color: var(--accent-gold);
  width: 14px;
  height: 14px;
}

.topbar-socials {
  display: flex;
  gap: 12px;
}

.topbar-socials a:hover {
  color: var(--accent-gold);
}

/* --- Navigation Header --- */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--bg-dark-primary);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
  position: relative;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-icon {
  color: var(--accent-gold);
}

.logo span {
  color: var(--accent-gold);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-menu li {
  flex-shrink: 0;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-white);
  padding: 0.5rem 0;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* --- Mega Menu & Dropdowns --- */
.nav-item-dropdown {
  position: static;
}

.dropdown-arrow {
  margin-left: 5px;
  vertical-align: middle;
  transition: transform 0.3s ease;
  width: 10px;
  height: 10px;
}

.nav-item-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.mega-menu-panel {
  position: absolute;
  top: 100%;
  left: 15px;
  right: 15px;
  width: calc(100% - 30px);
  transform: translateY(15px);
  background-color: var(--bg-dark-secondary);
  border: 1px solid var(--border-color);
  border-top: 3px solid var(--accent-gold);
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item-dropdown:hover .mega-menu-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-areas {
  left: auto;
  right: 15px;
  width: calc(100% - 30px);
  max-width: 700px;
}

.mega-menu-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.mega-menu-areas .mega-menu-container {
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}

.mega-menu-column h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
  font-weight: 800;
}

.mega-menu-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mega-menu-column ul li a {
  font-size: 0.9rem;
  color: var(--text-gray-muted);
  font-weight: 500;
  display: block;
  transition: var(--transition);
}

.mega-menu-column ul li a:hover {
  color: var(--accent-gold);
  transform: translateX(3px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-phone-link {
  color: var(--accent-gold);
  font-weight: 800;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 10px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-phone-link:hover {
  color: var(--accent-gold-hover);
  transform: translateY(-1px);
}

.nav-phone-link svg {
  width: 16px;
  height: 16px;
  color: var(--accent-gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-white);
  border-radius: 3px;
  transition: var(--transition);
}

/* --- Hero Section & Sliders --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at top right, rgba(14, 165, 233, 0.2), transparent 60%),
              url('../assets/hero_security.png') no-repeat center center / cover;
  overflow: hidden;
  padding: 6rem 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 25%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0.0) 100%);
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.4rem 1.1rem;
  background-color: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.25);
  color: var(--accent-gold);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.hero-badge span {
  width: 8px;
  height: 8px;
  background-color: var(--accent-gold);
  border-radius: 50%;
  animation: pulse-glow-dot 2s infinite;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-title span {
  color: var(--accent-gold);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-gray-muted);
  margin-bottom: 2.2rem;
  max-width: 550px;
}

.hero-btns {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* --- Inline Lead Form Block --- */
.lead-form-card {
  background-color: var(--bg-dark-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 2.5rem;
  box-shadow: var(--box-shadow);
  position: relative;
  overflow: hidden;
}

.lead-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--accent-gold);
}

.form-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.form-subtitle {
  color: var(--text-gray-muted);
  font-size: 0.88rem;
  text-align: center;
  margin-bottom: 2rem;
}

.lead-form-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-gray-light);
}

.form-field input, .form-field select, .form-field textarea {
  background-color: var(--bg-dark-tertiary);
  border: 1px solid var(--border-color);
  padding: 0.8rem 1rem;
  border-radius: var(--border-radius-sm);
  color: var(--text-white);
  font-size: 0.92rem;
  transition: var(--transition);
  width: 100%;
}

.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--accent-gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.form-field textarea {
  resize: vertical;
  min-height: 80px;
}

/* --- Features / Why Choose Us Section --- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  gap: 1.2rem;
  background-color: var(--bg-dark-secondary);
  border: 1px solid var(--border-color);
  padding: 1.75rem;
  border-radius: var(--border-radius-md);
  transition: var(--transition);
}

.feature-item:hover {
  border-color: rgba(14, 165, 233, 0.3);
  transform: translateX(5px);
}

.feature-icon-box {
  width: 54px;
  height: 54px;
  border-radius: var(--border-radius-sm);
  background-color: rgba(14, 165, 233, 0.1);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon-box svg {
  width: 26px;
  height: 26px;
}

.feature-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.feature-info p {
  font-size: 0.92rem;
  color: var(--text-gray-muted);
}

.why-visual {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  border: 1px solid var(--border-color);
}

.why-visual-banner {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background-color: var(--accent-gold);
  color: var(--bg-dark-primary);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.why-visual-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
}

.why-visual-lbl {
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

/* --- Services Showcase Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--bg-dark-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: var(--accent-gold);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(14, 165, 233, 0.25);
  box-shadow: var(--box-shadow);
}

.service-card:hover::before {
  width: 100%;
}

.service-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-sm);
  background-color: rgba(14, 165, 233, 0.1);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background-color: var(--accent-gold);
  color: var(--bg-dark-primary);
  box-shadow: 0 0 15px rgba(14, 165, 233, 0.5);
  transform: scale(1.05);
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-gray-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-link {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
}

.service-link svg {
  width: 14px;
  height: 14px;
  transition: var(--transition);
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* --- Inline CTA Divider Strip --- */
.cta-strip {
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.45) 0%, rgba(255, 255, 255, 0.55) 100%),
              url('../assets/hero_security.png') no-repeat center center / cover;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-strip::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background-color: rgba(14, 165, 233, 0.03);
  border-radius: 50%;
  filter: blur(80px);
}

.cta-strip-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cta-strip-text h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.cta-strip-text p {
  color: var(--text-gray-muted);
}

.cta-strip-btns {
  display: flex;
  gap: 1.2rem;
  flex-shrink: 0;
  align-items: center;
}

.cta-strip-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.cta-strip-phone svg {
  width: 24px;
  height: 24px;
}

/* --- Testimonials grid --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--bg-dark-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
}

.testi-stars {
  color: var(--accent-gold);
  display: flex;
  gap: 4px;
  margin-bottom: 1.2rem;
}

.testi-stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.testi-text {
  font-size: 0.95rem;
  color: var(--text-gray-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-color);
  padding-top: 1.2rem;
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--bg-dark-tertiary);
  color: var(--accent-gold);
  font-family: var(--font-heading);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
}

.testi-info h4 {
  font-size: 0.98rem;
  color: var(--text-white);
}

.testi-info p {
  font-size: 0.8rem;
  color: var(--text-gray-dark);
}

/* --- Inner Page Breadcrumbs & Hero --- */
.inner-hero {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.45) 0%, rgba(255, 255, 255, 0.55) 100%),
              url('../assets/security_detail.png') no-repeat center center / cover;
  border-bottom: 1px solid var(--border-color);
  padding: 5.5rem 0;
  position: relative;
}

.inner-hero.about-hero {
  background-image: linear-gradient(180deg, rgba(248, 250, 252, 0.45) 0%, rgba(255, 255, 255, 0.55) 100%),
                    url('../assets/about_security.png');
}

.inner-hero.services-hero {
  background-image: linear-gradient(180deg, rgba(248, 250, 252, 0.45) 0%, rgba(255, 255, 255, 0.55) 100%),
                    url('../assets/services_security.png');
}

.inner-hero.contact-hero {
  background-image: linear-gradient(180deg, rgba(248, 250, 252, 0.45) 0%, rgba(255, 255, 255, 0.55) 100%),
                    url('../assets/contact_security.png');
}

.inner-hero.california-hero {
  background-image: linear-gradient(180deg, rgba(248, 250, 252, 0.45) 0%, rgba(255, 255, 255, 0.55) 100%),
                    url('../assets/california_security.png');
}

.inner-hero.los-angeles-hero {
  background-image: linear-gradient(180deg, rgba(248, 250, 252, 0.45) 0%, rgba(255, 255, 255, 0.55) 100%),
                    url('../assets/los_angeles_security.png');
}

.inner-hero.san-diego-hero {
  background-image: linear-gradient(180deg, rgba(248, 250, 252, 0.45) 0%, rgba(255, 255, 255, 0.55) 100%),
                    url('../assets/san_diego_security.png');
}

.inner-hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.inner-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-gray-muted);
}

.breadcrumbs a:hover {
  color: var(--accent-gold);
}

.breadcrumbs svg {
  width: 12px;
  height: 12px;
}

/* --- Page Layouts (Split Grid for services/locations) --- */
.split-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 3.5rem;
  align-items: start;
}

.main-content h2, .main-content h3 {
  margin: 2rem 0 1rem 0;
}

.main-content p {
  margin-bottom: 1.25rem;
  color: var(--text-gray-light);
}

.main-content ul {
  list-style: none;
  margin-bottom: 2rem;
}

.main-content ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.main-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffb300' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center center / contain;
}

.sidebar {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.sidebar-widget {
  background-color: var(--bg-dark-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  box-shadow: var(--box-shadow);
}

.widget-title {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.75rem;
  position: relative;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent-gold);
}

.service-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-menu-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bg-dark-tertiary);
  border: 1px solid var(--border-color);
  padding: 0.9rem 1.25rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
}

.service-menu-list a:hover, .service-menu-list a.active {
  border-color: var(--accent-gold);
  background-color: rgba(14, 165, 233, 0.05);
  color: var(--accent-gold);
}

.service-menu-list svg {
  width: 14px;
  height: 14px;
}

/* --- Contact Page elements --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-card-box {
  background-color: var(--bg-dark-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 2.5rem;
  box-shadow: var(--box-shadow);
}

.contact-info-list {
  list-style: none;
  margin-top: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.contact-info-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-sm);
  background-color: rgba(14, 165, 233, 0.1);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon-box svg {
  width: 20px;
  height: 20px;
}

.contact-info-detail h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.contact-info-detail p, .contact-info-detail a {
  font-size: 0.92rem;
  color: var(--text-gray-muted);
}

.contact-info-detail a:hover {
  color: var(--accent-gold);
}

.map-container {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 380px;
  border: 1px solid var(--border-color);
  box-shadow: var(--box-shadow);
  margin-top: 4rem;
}

/* --- Legal / Policies Layout --- */
.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 0;
}

.legal-container h2, .legal-container h3 {
  margin: 2.2rem 0 1rem 0;
}

.legal-container p {
  color: var(--text-gray-muted);
  margin-bottom: 1.25rem;
}

.legal-container ul {
  padding-left: 20px;
  margin-bottom: 1.5rem;
  color: var(--text-gray-muted);
}

.legal-container li {
  margin-bottom: 0.5rem;
}

/* --- Footer --- */
.footer {
  background-color: #0f172a;
  border-top: 1px solid var(--border-color);
  padding: 6rem 0 2rem 0;
  color: #94a3b8;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1.30fr;
  gap: 3.5rem;
  margin-bottom: 4.5rem;
}

.footer-logo {
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-title {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-gold);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 6px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: var(--border-radius-sm);
  background-color: var(--bg-dark-secondary);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray-light);
}

.footer-socials a:hover {
  background-color: var(--accent-gold);
  color: var(--bg-dark-primary);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.footer-newsletter p {
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  padding: 0.75rem 1rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  max-width: 400px;
  background-color: var(--bg-dark-secondary);
  border: 1px solid var(--accent-gold);
  box-shadow: var(--box-shadow);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  z-index: 1050;
  display: none;
  animation: slide-up-cookie 0.4s forwards;
}

.cookie-banner p {
  font-size: 0.88rem;
  color: var(--text-gray-light);
  margin-bottom: 1rem;
}

.cookie-btns {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  border: none;
}

/* --- Sticky CTA Footer Bar (Mobile-first CRO) --- */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: var(--bg-dark-secondary);
  border-top: 2px solid var(--accent-gold);
  display: none;
  grid-template-columns: 1fr 1fr;
  z-index: 999;
}

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-white);
  height: 100%;
}

.mobile-cta-btn:first-child {
  border-right: 1px solid var(--border-color);
  background-color: var(--bg-dark-primary);
}

.mobile-cta-btn:last-child {
  background-color: var(--accent-gold);
  color: var(--bg-dark-primary);
}

/* --- FAQ Accordion System --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-dark-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.75rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  color: var(--accent-gold);
}

.faq-question svg {
  width: 18px;
  height: 18px;
  transition: var(--transition);
  color: var(--accent-gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 1.75rem;
}

.faq-answer-content {
  padding-bottom: 1.25rem;
  color: var(--text-gray-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

/* --- Toast Notification System --- */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background-color: var(--bg-dark-secondary);
  border-left: 4px solid var(--accent-gold);
  box-shadow: var(--box-shadow);
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  animation: slide-in-toast 0.3s forwards;
}

.toast-success {
  border-left-color: var(--success-color);
}

.toast-danger {
  border-left-color: var(--danger-color);
}

/* --- Animations --- */
@keyframes pulse-glow-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.4);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(14, 165, 233, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(14, 165, 233, 0);
  }
}

@keyframes slide-in-toast {
  from {
    transform: translateX(120%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slide-up-cookie {
  from {
    transform: translateY(120%);
  }
  to {
    transform: translateY(0);
  }
}

/* --- Responsive Breakpoints --- */
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .lead-form-card {
    max-width: 550px;
    margin: 0 auto;
  }
  
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .section {
    padding: 5rem 0;
  }
  
  .split-layout, .why-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .sidebar {
    position: static;
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-strip-container {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-strip-btns {
    flex-direction: column;
  }
}

@media (max-width: 1100px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    height: 100vh;
    width: 280px;
    background-color: var(--bg-dark-secondary);
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    padding: 7rem 2.5rem 2.5rem 2.5rem;
    align-items: flex-start;
    gap: 1.5rem;
    transition: var(--transition);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .mega-menu-panel {
    display: none !important;
  }
  
  .nav-actions {
    display: none;
  }
  
  .topbar {
    display: none;
  }
  
  body {
    padding-bottom: 60px; /* Offset for sticky mobile bar */
  }
  
  .mobile-sticky-cta {
    display: grid;
  }
}

@media (min-width: 1101px) and (max-width: 1250px) {
  .nav-menu {
    gap: 0.9rem;
  }
  .nav-phone-link {
    margin-right: 5px;
    font-size: 0.88rem;
  }
  .logo {
    font-size: 1.35rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .section-title {
    font-size: 2.1rem;
  }
}

@media (max-width: 600px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
  }
  
  .cookie-banner {
    left: 1rem;
    right: 1rem;
    max-width: none;
    bottom: 1rem;
  }
}
