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

:root {
  /* Premium Palette */
  --primary: #0f172a;       /* Deep Slate Navy */
  --primary-light: #1e293b;
  --accent: #dc2626;        /* Energetic Crimson Red */
  --accent-hover: #b91c1c;
  --secondary: #eab308;     /* Amber Gold */
  --secondary-hover: #ca8a04;
  --bg-main: #f8fafc;       /* Ultra-clean Slate Light Gray */
  --bg-card: #ffffff;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --text-light: #f1f5f9;
  --border: #e2e8f0;
  --border-focus: #cbd5e1;
  --success: #16a34a;
  --info: #2563eb;
  
  /* Shadows & Radius */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-premium: 0 20px 25px -5px rgb(15 23 42 / 0.05), 0 8px 10px -6px rgb(15 23 42 / 0.05);
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Inter', 'Noto Sans Thai', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-bottom: 76px; /* Space for mobile sticky CTA */
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

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

/* Header & Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition-normal);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

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

.brand-logo {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--accent);
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
}

.brand-subtitle {
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-menu {
  display: none;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-light);
  padding: 0.5rem 0.25rem;
  position: relative;
}

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

.nav-link:hover {
  color: var(--accent);
}

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

.header-cta {
  display: none;
}

@media (min-width: 768px) {
  .header-cta {
    display: block;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--primary);
}

.btn-secondary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(234, 179, 8, 0.25);
}

.btn-dark {
  background-color: var(--primary);
  color: var(--text-light);
}

.btn-dark:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.25);
}

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

.btn-outline:hover {
  background-color: rgba(15, 23, 42, 0.03);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  position: relative;
  background-color: var(--primary);
  color: var(--text-light);
  overflow: hidden;
  padding: 5rem 0;
  min-height: min(80vh, 720px);
  display: flex;
  align-items: center;
}

.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.7) 100%);
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 992px) {
  .hero-container {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }
}

.hero-content {
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  background-color: rgba(234, 179, 8, 0.1);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(234, 179, 8, 0.2);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.hero-desc {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(241, 245, 249, 0.85);
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 480px) {
  .hero-actions {
    flex-direction: row;
  }
}

.hero-info-pills {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  border-top: 1px solid rgba(241, 245, 249, 0.15);
  padding-top: 1.5rem;
}

.info-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.info-pill svg {
  color: var(--secondary);
}

.hero-badge-card {
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.badge-item {
  display: flex;
  gap: 1rem;
}

.badge-icon-box {
  background-color: rgba(220, 38, 38, 0.15);
  color: var(--accent);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.badge-text strong {
  display: block;
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.badge-text p {
  font-size: 0.85rem;
  color: rgba(241, 245, 249, 0.7);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-alt {
  background-color: #ffffff;
}

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

.section-eyebrow {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* Services Grid & Cards */
.services-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition-slow);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: var(--border-focus);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-num {
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--text-muted);
  opacity: 0.4;
  margin-bottom: 1.5rem;
}

.service-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-md);
  background-color: rgba(15, 23, 42, 0.04);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  transition: var(--transition-normal);
}

.service-card:hover .service-card-icon {
  background-color: rgba(220, 38, 38, 0.08);
  color: var(--accent);
}

.service-card-title {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.service-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  flex-grow: 1;
}

.service-card-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
}

.service-card-link svg {
  transition: var(--transition-fast);
}

.service-card-link:hover svg {
  transform: translateX(4px);
}

/* Carriers Band */
.carrier-band {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 2.5rem 0;
  border-bottom: 4px solid var(--accent);
}

.carrier-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .carrier-container {
    flex-direction: row;
    justify-content: space-between;
  }
}

.carrier-title {
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--secondary);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.carrier-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  width: 100%;
}

@media (min-width: 768px) {
  .carrier-list {
    justify-content: flex-end;
    width: auto;
  }
}

.carrier-item {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  opacity: 0.85;
  transition: var(--transition-fast);
}

.carrier-item:hover {
  opacity: 1;
  color: var(--secondary);
}

/* How It Works Timeline */
.timeline {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .timeline {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .timeline::after {
    content: '';
    position: absolute;
    top: 2.5rem;
    left: 15%;
    right: 15%;
    height: 2px;
    background-color: var(--border);
    z-index: 1;
  }
}

.timeline-step {
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-icon-box {
  width: 5rem;
  height: 5rem;
  border-radius: var(--radius-full);
  background-color: var(--bg-card);
  border: 3px solid var(--border);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.timeline-step:hover .timeline-icon-box {
  border-color: var(--accent);
  color: var(--accent);
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.timeline-num {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.timeline-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 260px;
}

/* Local SEO Content Zone */
.local-seo-section {
  background-color: var(--primary-light);
  color: var(--text-light);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.local-seo-section::after {
  content: '';
  position: absolute;
  right: -5rem;
  bottom: -5rem;
  width: 20rem;
  height: 20rem;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, rgba(0,0,0,0) 70%);
}

.local-container {
  display: grid;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .local-container {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }
}

.local-content h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.local-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(241, 245, 249, 0.8);
  margin-bottom: 1.5rem;
}

.local-content ul {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
  margin-top: 1.5rem;
}

@media (min-width: 480px) {
  .local-content ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

.local-content li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}

.local-content li svg {
  color: var(--accent);
  flex-shrink: 0;
}

.local-info-panel {
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.local-info-panel strong {
  display: block;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.local-info-panel span {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary);
}

.local-info-panel hr {
  margin: 1.5rem 0;
  border: 0;
  border-top: 1px solid rgba(241, 245, 249, 0.15);
}

/* Contact & Map Panel */
.contact-section-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 992px) {
  .contact-section-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: stretch;
  }
}

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

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
}

.contact-icon-box {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-md);
  background-color: rgba(15, 23, 42, 0.04);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
  letter-spacing: 0.05em;
}

.contact-text p {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}

.contact-text address {
  font-style: normal;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  min-height: 360px;
  position: relative;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
}

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

.faq-item {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition-normal);
}

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  outline: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: #fafbfc;
  border-top: 0 solid var(--border);
}

.faq-answer-content {
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  border-top-width: 1px;
}

.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--text-muted);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--accent);
}

/* Footer Section */
.site-footer {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.footer-brand-img {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--accent);
  object-fit: cover;
}

.footer-desc {
  font-size: 0.95rem;
  color: rgba(241, 245, 249, 0.7);
  max-width: 360px;
}

.footer-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: #ffffff;
  position: relative;
  padding-bottom: 0.5rem;
}

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

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(241, 245, 249, 0.7);
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 4px;
}

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(241, 245, 249, 0.7);
}

.footer-contact svg {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-contact a:hover {
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(241, 245, 249, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.copyright {
  font-size: 0.85rem;
  color: rgba(241, 245, 249, 0.5);
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: rgba(241, 245, 249, 0.5);
}

.footer-legal-links a:hover {
  color: var(--secondary);
}

/* Mobile Sticky Bottom CTA Navigation */
.mobile-sticky-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08);
}

@media (min-width: 768px) {
  .mobile-sticky-nav {
    display: none;
  }
}

.sticky-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.25rem;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 800;
}

.sticky-nav-item svg {
  width: 1.5rem;
  height: 1.5rem;
}

.sticky-nav-item-line {
  color: #16a34a; /* Line Green */
}

.sticky-nav-item-phone {
  background-color: var(--accent);
  color: #ffffff;
}

.sticky-nav-item-phone:hover {
  background-color: var(--accent-hover);
}

.sticky-nav-item-map {
  color: #2563eb; /* Map Blue */
}

/* Service Detail Page Layout Styles */
.page-header {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.8) 100%);
  z-index: 1;
}

.page-header-container {
  position: relative;
  z-index: 2;
}

.page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(241, 245, 249, 0.65);
}

.breadcrumbs a {
  color: rgba(241, 245, 249, 0.65);
}

.breadcrumbs a:hover {
  color: var(--secondary);
}

.breadcrumbs svg {
  width: 0.75rem;
  height: 0.75rem;
}

.page-content-grid {
  display: grid;
  gap: 3rem;
  padding: 5rem 0;
}

@media (min-width: 992px) {
  .page-content-grid {
    grid-template-columns: 1.3fr 0.7fr;
  }
}

.page-main-body h2 {
  font-size: 1.75rem;
  color: var(--primary);
  margin: 2rem 0 1rem;
}

.page-main-body h2:first-of-type {
  margin-top: 0;
}

.page-main-body p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.page-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.sidebar-widget {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.sidebar-widget-title {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
  border-left: 4px solid var(--accent);
  padding-left: 0.75rem;
}

/* Lists and pricing inside detail pages */
.price-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed var(--border);
  padding-bottom: 0.75rem;
}

.price-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.price-name {
  font-weight: 700;
  color: var(--primary);
}

.price-val {
  font-weight: 800;
  color: var(--accent);
}

/* Floating Actions on Scroll */
.floating-actions {
  display: none;
}

/* Responsive Grid/Flex Utilities */
.grid-2col {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-2col {
    grid-template-columns: repeat(2, 1fr);
  }
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.shadow-premium-box {
  box-shadow: var(--shadow-premium);
}
