/* 
   Honolulu Appliance - Master Stylesheet
   Brand Color: #f1ac0a
   Design: Modern, High-Converting Service Agency (Inspired by Webflow modern templates)
*/

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

:root {
  --primary: #f1ac0a;
  --primary-hover: #d99700;
  --primary-dark: #b87d00;
  --primary-light: rgba(241, 172, 10, 0.12);
  --primary-glow: rgba(241, 172, 10, 0.35);
  
  --dark-bg: #081220;
  --dark-surface: #0e1d33;
  --dark-card: #142844;
  --dark-border: rgba(255, 255, 255, 0.08);
  --dark-text: #f8fafc;
  --dark-muted: #94a3b8;
  
  --light-bg: #ffffff;
  --light-surface: #f8fafc;
  --light-card: #ffffff;
  --light-border: #e2e8f0;
  --light-text: #0f172a;
  --light-body: #334155;
  --light-muted: #64748b;
  
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 6px 18px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 14px 35px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 24px 50px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 10px 25px rgba(241, 172, 10, 0.3);
  
  --container-max: 1240px;
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--light-bg);
  color: var(--light-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

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

h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  letter-spacing: -0.02em;
  font-weight: 800;
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  letter-spacing: -0.015em;
  font-weight: 800;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
}

h4 {
  font-size: 1.15rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Section Spacing */
.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-padding-sm {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.bg-slate {
  background-color: var(--light-surface);
}

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

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

.bg-dark p {
  color: var(--dark-muted);
}

/* Section Headers */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.section-header.text-left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-light);
  color: #925800;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  border: 1px solid rgba(241, 172, 10, 0.3);
}

.bg-dark .section-subtitle {
  background: rgba(241, 172, 10, 0.15);
  color: var(--primary);
  border-color: rgba(241, 172, 10, 0.35);
}

.section-title {
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.1rem;
  color: var(--light-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  line-height: 1;
}

.btn-primary {
  background-color: var(--primary);
  color: #000000;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(241, 172, 10, 0.45);
}

.btn-dark {
  background-color: var(--dark-bg);
  color: #ffffff;
}

.btn-dark:hover {
  background-color: var(--dark-surface);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--light-text);
  border-color: var(--light-border);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: #925800;
  background-color: var(--primary-light);
}

.btn-outline-white {
  background-color: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff;
}

.btn-lg {
  padding: 1.1rem 2.2rem;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.875rem;
}

.btn-icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Top Announcement Bar */
.top-bar {
  background-color: var(--dark-bg);
  color: var(--dark-muted);
  font-size: 0.85rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--dark-border);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-item svg {
  width: 15px;
  height: 15px;
  fill: var(--primary);
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #4ade80;
  font-weight: 600;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

/* Main Header */
.main-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--light-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo img {
  height: 54px;
  width: auto;
  object-fit: contain;
}

.brand-name-group {
  display: flex;
  flex-direction: column;
}

.brand-name-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--light-text);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.brand-tagline-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: #925800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--light-text);
  padding: 0.4rem 0;
  position: relative;
}

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

.nav-link:hover, .nav-link.active {
  color: #925800;
}

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

.header-action {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-quick-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--primary);
  color: #000000;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}

.phone-quick-link:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(241, 172, 10, 0.45);
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--light-text);
}

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #091526 0%, #0e223d 50%, #152d4e 100%);
  color: #ffffff;
  padding: 5.5rem 0 6rem 0;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(241, 172, 10, 0.18) 0%, rgba(241, 172, 10, 0) 70%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

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

.hero-content h1 {
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.hero-highlight-word {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

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

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.hero-call-btn {
  background: var(--primary);
  color: #000000;
  font-weight: 800;
  font-size: 1.15rem;
  padding: 1.1rem 2.2rem;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(241, 172, 10, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-call-btn:hover {
  background: var(--primary-hover);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(241, 172, 10, 0.55);
}

.hero-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #e2e8f0;
  font-weight: 500;
}

.trust-pill svg {
  width: 18px;
  height: 18px;
  fill: var(--primary);
  flex-shrink: 0;
}

.hero-media-wrapper {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.hero-image-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-image-card:hover img {
  transform: scale(1.03);
}

.hero-floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(14, 29, 51, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(241, 172, 10, 0.4);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: var(--shadow-lg);
}

.badge-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
}

.badge-text-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.2;
}

.badge-text-subtitle {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
}

/* Quick Stats Bar */
.stats-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--light-border);
  box-shadow: var(--shadow-sm);
}

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

.stat-item {
  text-align: center;
  padding: 0.5rem 1rem;
  border-right: 1px solid var(--light-border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--light-text);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.stat-number span {
  color: #925800;
}

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

/* Services Grid (10 Sub Services) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: transparent;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(241, 172, 10, 0.4);
}

.service-card:hover::before {
  background: var(--primary);
}

.service-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: #925800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
  border: 1px solid rgba(241, 172, 10, 0.25);
}

.service-icon-wrap svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.service-card:hover .service-icon-wrap {
  background: var(--primary);
  color: #000000;
  transform: scale(1.08);
}

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

.service-card p {
  color: var(--light-body);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.service-features-list {
  margin-bottom: 1.75rem;
}

.service-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--light-body);
  margin-bottom: 0.5rem;
}

.service-features-list svg {
  width: 16px;
  height: 16px;
  fill: #925800;
  flex-shrink: 0;
  margin-top: 3px;
}

.service-card-footer {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--light-border);
}

.card-call-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: var(--light-surface);
  color: var(--light-text);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.75rem 1.2rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--light-border);
  transition: var(--transition);
}

.card-call-btn:hover {
  background: var(--primary);
  color: #000000;
  border-color: var(--primary);
}

/* Process Section (3 Steps) */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
}

.process-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: var(--transition);
}

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

.step-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(241, 172, 10, 0.25);
  line-height: 1;
  margin-bottom: 1rem;
}

.process-card h3 {
  margin-bottom: 0.75rem;
}

/* Why Choose Us Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.feature-box {
  background: #ffffff;
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(241, 172, 10, 0.4);
}

.feature-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-icon-circle svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Split Showcase Section */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.showcase-media {
  position: relative;
}

.showcase-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 2px solid var(--light-border);
}

.showcase-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.showcase-badge-box {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--primary);
  color: #000000;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 800;
  box-shadow: var(--shadow-gold);
  text-align: center;
}

.showcase-badge-box .big-num {
  font-size: 1.75rem;
  line-height: 1;
  display: block;
}

.showcase-badge-box .small-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Brands Grid */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 1.25rem;
}

.brand-card-item {
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--light-text);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.brand-card-item:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  color: #925800;
  transform: translateY(-3px);
}

/* Service Areas Grid */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.area-pill {
  background: #ffffff;
  border: 1px solid var(--light-border);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--light-text);
  transition: var(--transition);
}

.area-pill svg {
  width: 16px;
  height: 16px;
  fill: #925800;
  flex-shrink: 0;
}

.area-pill:hover {
  background: var(--primary);
  color: #000000;
  border-color: var(--primary);
  transform: translateY(-2px);
}

.area-pill:hover svg {
  fill: #000000;
}

/* Testimonials / Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.review-card {
  background: #ffffff;
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.review-stars svg {
  width: 18px;
  height: 18px;
  fill: #f1ac0a;
}

.review-text {
  font-size: 1rem;
  color: var(--light-body);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--light-border);
}

.author-name {
  font-weight: 700;
  color: var(--light-text);
}

.author-location {
  font-size: 0.85rem;
  color: var(--light-muted);
}

.verified-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: #059669;
  font-weight: 700;
}

/* FAQ Accordion */
.faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: rgba(241, 172, 10, 0.5);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.35rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--light-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 1rem;
}

.faq-icon-arrow {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--light-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(180deg);
  background: var(--primary);
  color: #000000;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 1.75rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.75rem 1.5rem 1.75rem;
}

.faq-answer p {
  color: var(--light-body);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* Full Width CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #091526 0%, #0e223d 100%);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 4.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 2px solid rgba(241, 172, 10, 0.3);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(241, 172, 10, 0.2) 0%, rgba(241, 172, 10, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner h2 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: #cbd5e1;
  font-size: 1.15rem;
  max-width: 680px;
  margin: 0 auto 2.25rem auto;
}

/* Rich SEO Content Blocks */
.seo-content-block {
  background: #ffffff;
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2.5rem;
}

.seo-content-block h2 {
  font-size: 1.85rem;
  margin-bottom: 1.25rem;
  color: var(--light-text);
}

.seo-content-block h3 {
  font-size: 1.35rem;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--light-text);
}

.seo-content-block p {
  font-size: 1.02rem;
  color: var(--light-body);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.seo-content-block ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  list-style-type: disc;
}

.seo-content-block li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: var(--light-body);
}

.seo-content-block a {
  color: #925800;
  text-decoration: underline;
  font-weight: 600;
}

.seo-content-block a:hover {
  color: #000000;
}

/* Global Footer */
.main-footer {
  background: #060e18;
  color: #94a3b8;
  padding-top: 4.5rem;
  border-top: 1px solid var(--dark-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

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

.footer-about p {
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.footer-phone-box {
  background: var(--dark-surface);
  border: 1px solid rgba(241, 172, 10, 0.3);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-phone-box .call-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.footer-phone-box .call-num {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
}

.footer-phone-box:hover {
  border-color: var(--primary);
  background: var(--dark-card);
}

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

.footer-links-list a {
  font-size: 0.92rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links-list a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
  font-size: 0.92rem;
  line-height: 1.5;
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-disclaimer-bar {
  background: #040910;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  line-height: 1.65;
  color: #64748b;
}

.disclaimer-text {
  margin-bottom: 1.25rem;
  text-align: center;
}

.footer-bottom-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-bottom-links a {
  color: #94a3b8;
  font-size: 0.85rem;
}

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

/* Floating Mobile Call Bar */
.mobile-sticky-callbar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(9, 21, 38, 0.98);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1rem;
  z-index: 9999;
  border-top: 2px solid var(--primary);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.35);
}

.mobile-callbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
}

.mobile-callbar-text {
  display: flex;
  flex-direction: column;
}

.mobile-callbar-text .label {
  font-size: 0.72rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
}

.mobile-callbar-text .number {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
}

.mobile-callbar-btn {
  background: var(--primary);
  color: #000000;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-gold);
}

/* Breadcrumb Navigation */
.breadcrumb-wrap {
  padding: 1rem 0;
  background: var(--light-surface);
  border-bottom: 1px solid var(--light-border);
  font-size: 0.88rem;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--light-muted);
}

.breadcrumb-list a {
  color: var(--light-text);
  font-weight: 500;
}

.breadcrumb-list a:hover {
  color: #925800;
}

.breadcrumb-separator {
  color: #cbd5e1;
}

/* Page Header Banner for Inner Pages */
.inner-page-hero {
  background: linear-gradient(135deg, #091526 0%, #0f233e 100%);
  color: #ffffff;
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
}

.inner-page-hero h1 {
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.inner-page-hero p {
  color: #cbd5e1;
  font-size: 1.15rem;
  max-width: 680px;
  margin: 0 auto;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-image-card img {
    height: 380px;
  }
  
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--light-border);
    gap: 1.25rem;
  }
  
  .main-nav.active {
    display: flex;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .header-action .phone-quick-link {
    display: none;
  }
  
  .top-bar-right {
    display: none;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  
  .stat-item:nth-child(2) {
    border-right: none;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .mobile-sticky-callbar {
    display: block;
  }
  
  body {
    padding-bottom: 70px;
  }
  
  .cta-banner {
    padding: 3rem 1.5rem;
  }
  
  .seo-content-block {
    padding: 1.75rem;
  }
}

@media (max-width: 480px) {
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta-group .btn {
    width: 100%;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--light-border);
    padding-bottom: 1rem;
  }
  
  .stat-item:last-child {
    border-bottom: none;
  }
}
