/* ==========================================================================
   VELLORE AUTO GARAGE - CORE DESIGN SYSTEM CSS (UPDATED)
   ========================================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Color Tokens */
  --bg-base: #FAF9F6;
  /* Warm Alabaster/Cream background */
  --bg-card: #FFFFFF;
  /* Pure White card surface */
  --color-primary: #005691;
  /* Classic Bosch Blue */
  --color-secondary: #D1121C;
  /* Crimson Red Highlight */
  --color-dark: #0F172A;
  /* Deep Slate/Charcoal text */
  --color-muted: #475569;
  /* Cool Gray */
  --border-light: rgba(15, 23, 42, 0.08);
  --border-focus: rgba(0, 86, 145, 0.3);

  /* Fonts */
  --font-headings: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  /* Shadows & Transitions */
  --shadow-sm: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -1px rgba(15, 23, 42, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -2px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
  --shadow-glow: 0 0 20px rgba(0, 86, 145, 0.15);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--color-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography scale */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.2;
}

h1 {
  font-size: 3.8rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 2.5rem;
  position: relative;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.6rem;
  letter-spacing: -0.01em;
}

p {
  color: var(--color-muted);
}

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

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

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 30px;
}

.section {
  padding: 100px 0;
}

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

/* Button Component */
.btn {
  display: inline-block;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 14px 32px;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

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

.btn-primary:hover {
  background-color: #A80E16;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(209, 18, 28, 0.25);
}

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

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 86, 145, 0.2);
}

/* Header & Navbar Styling - Glassmorphism */
header {
  background-color: rgba(250, 249, 246, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 4px 25px rgba(15, 23, 42, 0.1);
  transition: box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

header.scrolled {
  background-color: rgba(250, 249, 246, 0.9);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.15), 0 4px 12px -2px rgba(15, 23, 42, 0.03);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  padding: 0 10px;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.bosch-logo-header {
  height: 110px;
  width: auto;
  object-fit: contain;
  position: relative;
  top: 10px;
  /* Offset downward to align with header top and hang 20px below */
  z-index: 150;
  filter: drop-shadow(0 6px 12px rgba(15, 23, 42, 0.12));
  transition: var(--transition-smooth);
}

.bosch-logo-header:hover {
  transform: scale(1.04) translateY(2px);
}

.logo-group svg.logo-bosch-svg {
  height: 42px;
  width: auto;
}

.logo-group .divider {
  width: 1px;
  height: 40px;
  background-color: rgba(15, 23, 42, 0.1);
}

.logo-group .brand-text-wrapper {
  display: flex;
  flex-direction: column;
}

.logo-group .logo-title {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.logo-group .logo-subtitle {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-secondary);
}

.nav-links {
  display: none;
  list-style: none;
  gap: 30px;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

.nav-cta {
  display: none;
}

@media (min-width: 992px) {
  .nav-cta {
    display: flex;
    align-items: center;
    gap: 20px;
  }
}

/* Full-Width Background Hero Section */
.hero-fullwidth {
  position: relative;
  min-height: 700px;
  width: 100%;
  background-image: linear-gradient(90deg, rgba(250, 249, 246, 0.98) 35%, rgba(250, 249, 246, 0.9) 55%, rgba(250, 249, 246, 0.2) 100%), url('../images/hero_bg.png');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hero-content {
  width: 100%;
  max-width: 680px;
  padding: 80px 0;
  z-index: 2;
}

.hero-content h1 {
  margin-bottom: 25px;
  color: var(--color-dark);
}

.hero-content h1 span {
  color: var(--color-primary);
}

.hero-content p {
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 40px;
  color: var(--color-muted);
}

.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Continuous Brand Marquee Slider - Containerized Fixed Width */
.brand-marquee-section {
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 35px 0;
}

.marquee-container-fixed {
  max-width: 1360px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  padding: 0 30px;
}

/* Fade gradients on side of fixed marquee */
.marquee-container-fixed::before,
.marquee-container-fixed::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-container-fixed::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-card) 0%, transparent 100%);
}

.marquee-container-fixed::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-card) 0%, transparent 100%);
}

.marquee-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.marquee-row {
  display: flex;
  width: max-content;
  gap: 80px;
  align-items: center;
}

.marquee-row.left {
  animation: scrollLeft 35s linear infinite;
}

.marquee-row.right {
  animation: scrollRight 35s linear infinite;
}

.marquee-item-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: auto;
  opacity: 0.45;
  transition: var(--transition-smooth);
}

.marquee-item-svg:hover {
  opacity: 0.95;
  transform: scale(1.08);
}

.marquee-item-svg svg {
  height: 100%;
  width: auto;
  fill: var(--color-primary);
}

.marquee-item-img {
  height: 60px;
  width: auto;
  max-width: 150px;
  opacity: 1;
  object-fit: contain;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* VAG Intro & Owner Quote Section */
.intro-section {
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border-light);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

@media (min-width: 992px) {
  .intro-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }
}

.intro-content h2 {
  margin-bottom: 20px;
  padding-bottom: 15px;
}

.intro-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--color-primary);
}

.intro-content p {
  margin-bottom: 20px;
  font-size: 1rem;
}

/* Owner Quote Card */
.owner-quote-card {
  background-color: var(--bg-base);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--color-primary);
  border-radius: 12px;
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow-md);
}

.owner-quote-card::before {
  content: '“';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 7rem;
  font-family: serif;
  color: rgba(0, 86, 145, 0.06);
  line-height: 1;
}

.owner-quote-card p.quote-text {
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.owner-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.owner-details h4 {
  font-size: 1.05rem;
  color: var(--color-dark);
}

.owner-details p {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-secondary);
}

/* NEW: Dedicated Trust Badges Section (Attractive Design Cards) */
.trust-badges-section {
  background-color: var(--bg-base);
  padding: 80px 0;
}

.trust-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

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

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

.trust-card-styled {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
}

.trust-card-styled:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: rgba(0, 86, 145, 0.2);
}

.trust-image-wrapper {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
}

.trust-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.trust-card-styled:hover .trust-image-wrapper img {
  transform: scale(1.06);
}

.trust-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 40%, rgba(15, 23, 42, 0.6) 100%);
}

.trust-card-icon-badge {
  position: absolute;
  top: 158px; /* positioned on the boundary of the 180px image wrapper */
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(209, 18, 28, 0.3);
  z-index: 10;
}

.trust-card-icon-badge i {
  color: #FFFFFF;
  font-size: 1.2rem;
}

.trust-card-icon-badge svg {
  width: 20px;
  height: 20px;
  fill: #FFFFFF;
}

.trust-card-content {
  padding: 30px 20px 25px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.trust-card-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.trust-card-content p {
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.5;
}

/* Services Section */
.services-section-title {
  text-align: center;
  margin-bottom: 60px;
}

.services-section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--color-primary);
  margin: 15px auto 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

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

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

.service-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: rgba(0, 86, 145, 0.2);
}

.service-image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.service-card:hover .service-image-wrapper img {
  transform: scale(1.06);
}

.service-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 40%, rgba(15, 23, 42, 0.5) 100%);
}

.service-icon-badge-mini {
  position: absolute;
  top: 178px; /* positioned on the boundary of the 200px image wrapper */
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 86, 145, 0.3);
  z-index: 10;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-badge-mini {
  background-color: var(--color-secondary);
  box-shadow: 0 4px 12px rgba(209, 18, 28, 0.4);
  transform: scale(1.05);
}

.service-icon-badge-mini i {
  color: #FFFFFF;
  font-size: 1.25rem;
}

.service-card-content {
  padding: 30px 25px 25px 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card-content h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--color-dark);
}

.service-card-content p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.service-link {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-link svg {
  width: 14px;
  height: 14px;
  fill: var(--color-primary);
  transition: var(--transition-smooth);
}

.service-card:hover .service-link {
  color: var(--color-secondary);
}

.service-card:hover .service-link svg {
  fill: var(--color-secondary);
  transform: translateX(5px);
}

/* Modernized Process Section (Timeline) */
.process-section {
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.process-grid-modern {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 60px;
  position: relative;
}

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

  /* Timeline connecting line */
  .process-grid-modern::before {
    content: '';
    position: absolute;
    top: 55px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary) 0%, rgba(209, 18, 28, 0.4) 100%);
    z-index: 1;
  }
}

.process-step-modern {
  background: var(--bg-base);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.process-step-modern:hover {
  transform: translateY(-5px);
  background-color: #FFFFFF;
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 86, 145, 0.15);
}

.step-num-modern {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 4px solid var(--color-primary);
  color: var(--color-primary);
  font-family: var(--font-headings);
  font-weight: 900;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.process-step-modern:hover .step-num-modern {
  background-color: var(--color-primary);
  color: #FFFFFF;
  transform: scale(1.05);
}

.process-step-modern h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.process-step-modern p {
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Call to Action Banner Section (Replacing Testimonials) */
.cta-banner-section {
  background-color: var(--bg-base);
  padding: 80px 0;
}

.cta-box {
  background: linear-gradient(135deg, var(--color-primary) 0%, #002D54 100%);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  color: #FFFFFF;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-color: rgba(209, 18, 28, 0.05);
  pointer-events: none;
}

.cta-box h2 {
  color: #FFFFFF;
  font-size: 2.3rem;
  margin-bottom: 15px;
}

.cta-box p {
  color: #E2E8F0;
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 30px auto;
}

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

.cta-box .btn-primary:hover {
  background-color: #FFFFFF;
  color: var(--color-secondary);
  border-color: #FFFFFF;
}

.cta-box .btn-secondary {
  border-color: #FFFFFF;
  color: #FFFFFF;
  background-color: transparent;
}

.cta-box .btn-secondary:hover {
  background-color: #FFFFFF;
  color: var(--color-primary);
  border-color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Floating Actions Panel (Bottom Right) */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 90;
}

.floating-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
}

.floating-btn:hover {
  transform: scale(1.1) rotate(5deg);
}

.floating-whatsapp {
  background-color: #25D366;
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: #FFFFFF;
}

.floating-booking {
  background-color: var(--color-secondary);
}

.floating-booking svg {
  width: 24px;
  height: 24px;
  fill: #FFFFFF;
}

/* Modal Popup Window Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 26, 0.4);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-window {
  background-color: var(--bg-card);
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-window {
  transform: scale(1);
}

.modal-header {
  background-color: var(--color-primary);
  color: #FFFFFF;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  color: #FFFFFF;
  font-size: 1.3rem;
}

.modal-close {
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.8;
  transition: var(--transition-smooth);
}

.modal-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.modal-body {
  padding: 30px;
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background-color: var(--bg-base);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  outline: none;
  color: var(--color-dark);
  transition: var(--transition-smooth);
}

.form-control:focus {
  border-color: var(--color-primary);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px var(--border-focus);
}

/* Footer Section */
footer {
  background-color: var(--color-dark);
  color: #E2E8F0;
  padding: 60px 0 30px 0;
  font-size: 0.9rem;
}

footer a {
  color: #94A3B8;
}

footer a:hover {
  color: #FFFFFF;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

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

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 0.8fr 1.06fr 1.06fr 1.06fr;
  }
}

.footer-col h3 {
  color: #FFFFFF;
  font-size: 1.15rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-col p {
  color: #94A3B8;
  margin-bottom: 12px;
}

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

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  color: #94A3B8;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--color-secondary);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  color: #64748B;
}

/* ==========================================================================
   SUB-PAGES & FAQ ACCORDION STYLES
   ========================================================================== */

/* Breadcrumbs navigation link block */
.breadcrumb-container {
  background-color: var(--bg-base);
  border-bottom: 1px solid var(--border-light);
  padding: 15px 0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  list-style: none;
  font-size: 0.85rem;
  font-family: var(--font-headings);
  font-weight: 600;
  color: var(--color-muted);
}

.breadcrumb-list li a {
  color: var(--color-primary);
}

.breadcrumb-list li a:hover {
  color: var(--color-secondary);
}

.breadcrumb-list li .separator {
  margin: 0 10px;
  color: #cbd5e1;
}

.breadcrumb-list li.active {
  color: var(--color-dark);
  font-weight: 700;
}

/* Service Detail Banner Hero */
.service-detail-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, #002D54 100%);
  color: #FFFFFF;
  padding: 85px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--color-secondary);
}

.service-detail-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 2px, transparent 0);
  background-size: 20px 20px;
  pointer-events: none;
}

.service-detail-hero h1 {
  color: #FFFFFF;
  font-size: 3rem;
  margin-bottom: 15px;
}

.service-detail-hero p {
  color: #E2E8F0;
  font-size: 1.2rem;
  max-width: 850px;
  line-height: 1.5;
}

/* Service details layout content */
.service-content-section {
  padding: 80px 0;
  background-color: var(--bg-base);
}

.service-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

@media (min-width: 992px) {
  .service-content-grid {
    grid-template-columns: 1.25fr 0.75fr;
  }
}

.service-details-text {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.service-details-text h3 {
  margin: 35px 0 20px 0;
  font-size: 1.4rem;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border-light);
  color: var(--color-primary);
}

.service-details-text h3:first-of-type {
  margin-top: 0;
}

.service-details-text p {
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-details-text ul {
  margin: 20px 0;
  padding-left: 20px;
}

.service-details-text li {
  margin-bottom: 12px;
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* Sidebar Callout Card */
.sidebar-booking-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  text-align: center;
  position: sticky;
  top: 115px;
  height: fit-content;
}

.sidebar-booking-card h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.sidebar-booking-card p {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 25px;
  line-height: 1.5;
}

.sidebar-booking-card .contact-phone-box {
  background-color: var(--bg-base);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 15px;
  margin-top: 25px;
}

.sidebar-booking-card .contact-phone-box h5 {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 5px;
}

.sidebar-booking-card .contact-phone-box a {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--color-secondary);
}

/* FAQ Accordion Section */
.faq-section {
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 90px 0;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 10px;
}

.faq-section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--color-primary);
  margin: 15px auto 0 auto;
}

.faq-container {
  max-width: 800px;
  margin: 50px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

details.faq-item {
  background-color: var(--bg-base);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 18px 22px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

details.faq-item[open] {
  border-color: var(--color-primary);
  background-color: #FFFFFF;
  box-shadow: var(--shadow-sm);
}

summary.faq-question {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-dark);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  outline: none;
}

summary.faq-question::-webkit-details-marker {
  display: none;
  /* Hide default Webkit marker */
}

summary.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

details.faq-item[open] summary.faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  padding-top: 15px;
  font-size: 0.9rem;
  color: var(--color-muted);
  border-top: 1px solid var(--border-light);
  margin-top: 12px;
  line-height: 1.6;
}

/* ==========================================================================
   WORKSHOP GALLERY & LIGHTBOX STYLES
   ========================================================================== */

.gallery-section {
  background-color: var(--bg-card);
  padding: 90px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid var(--border-light);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
  display: block;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  z-index: 2;
}

.gallery-overlay i {
  color: #FFFFFF;
  font-size: 2rem;
  transform: scale(0.8);
  transition: var(--transition-smooth);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: rgba(0, 86, 145, 0.25);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* Lightbox Styles */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 85%;
  max-height: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: #FFFFFF;
  font-size: 2.2rem;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.8;
  transition: var(--transition-smooth);
}

.lightbox-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #FFFFFF;
  font-size: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.7;
  transition: var(--transition-smooth);
  padding: 10px;
  z-index: 1010;
}

.lightbox-prev {
  left: -70px;
}

.lightbox-next {
  right: -70px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
  color: var(--color-secondary);
}

@media (max-width: 992px) {
  .lightbox-prev {
    left: -50px;
  }
  .lightbox-next {
    right: -50px;
  }
}

@media (max-width: 768px) {
  .lightbox-prev {
    left: 10px;
  }
  .lightbox-next {
    right: 10px;
  }
  .lightbox-close {
    right: 10px;
    top: -40px;
  }
}

/* ==========================================================================
   MOBILE MENU & HAMBURGER STYLES
   ========================================================================== */

.mobile-menu-trigger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 160;
  padding: 0;
}

@media (min-width: 992px) {
  .mobile-menu-trigger {
    display: none;
  }
}

.mobile-menu-trigger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-dark);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* Transform hamburger to X when active */
.mobile-menu-trigger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-trigger.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-trigger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 991px) {
  .nav-links {
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background-color: rgba(250, 249, 246, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
    flex-direction: column;
    gap: 0 !important;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex !important;
    z-index: 99;
  }

  .nav-links.active {
    max-height: 300px;
  }

  .nav-links li {
    width: 100%;
    margin: 0;
  }

  .nav-links li a {
    display: block;
    padding: 18px 30px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.03);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }
}