/* =============================================
   GARAGE THEME - MAIN VANILLA CSS
   Premium Vehicle Detailing & Maintenance Theme
   ============================================= */

/* --- Custom Properties / CSS variables --- */
:root {
  --primary: #da3e1e;
  /* BJM Garage Red/Orange */
  --primary-rgb: 218, 62, 30;
  --primary-light: #fef2f0;
  /* Soft pink-orange background */
  --accent: #bf3418;
  /* Lighter Crimson for hover/badges */
  --accent-light: #fbe6e2;
  --dark: #111827;
  /* Dark Gray/Black for text and headings */
  --dark-light: #1F2937;
  --light: #F9FAFB;
  /* Light gray background */
  --gray: #4B5563;
  /* Text color */
  --gray-light: #9CA3AF;
  /* Muted text color */
  --white: #ffffff;
  --border: #E5E7EB;
  /* Light border */
  --success: #10B981;
  /* Green for WhatsApp / success */

  /* Borders & Shadows */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 20px -2px rgba(218, 62, 30, 0.08);
  --shadow-lg: 0 10px 30px -5px rgba(218, 62, 30, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Fonts */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

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

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

.site-main {
  /* padding-top removed because header is sticky */
}

body {
  font-family: var(--font-body);
  color: var(--gray);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button,
input,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

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

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h4 {
  font-size: 1.25rem;
}

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

.lead {
  font-size: 1.125rem;
  color: var(--gray);
}

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

.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-light {
  background-color: var(--light);
}

.section-primary-light {
  background-color: var(--primary-light);
}

/* Flexbox utilities */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

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

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-start {
  justify-content: flex-start;
}

.flex-1 {
  flex: 1 1 0%;
}

.shrink-0 {
  flex-shrink: 0;
}

/* Grid utilities */
.grid {
  display: grid;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

.grid-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

  .grid-md-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-md-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .grid-lg-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-lg-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-lg-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .grid-lg-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .col-span-lg-5 {
    grid-column: span 5 / span 5;
  }

  .col-span-lg-7 {
    grid-column: span 7 / span 7;
  }
}

/* Alignment and margins */
.text-center {
  text-align: center;
}

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

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.relative {
  position: relative;
}

.overflow-hidden {
  border-radius: inherit;
  overflow: hidden;
}

.z-10 {
  z-index: 10;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.p-12 {
  padding: 3rem;
}

/* Display and objects */
.hidden {
  display: none !important;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

.aspect-square {
  aspect-ratio: 1 / 1;
}

/* --- Section Headers --- */
.section-tag {
  display: inline-block;
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.section-title-wrapper {
  max-width: 650px;
  margin-bottom: 3.5rem;
}

.section-title-wrapper.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-heading);
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}

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

.btn-primary:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(218, 62, 30, 0.2);
}

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

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

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

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

.btn-success {
  background-color: var(--success);
  color: var(--white);
  border-color: var(--success);
}

.btn-success:hover {
  background-color: #059669;
  border-color: #059669;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn-full {
  width: 100%;
}

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  background-color: var(--white);
  border-b: 1px solid var(--border);
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.navbar {
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: auto;
  /* Push everything else to the right */
}

.logo-icon-zantrik {
  width: 2.25rem;
  height: 2.25rem;
  background-color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1.5rem;
  font-family: var(--font-heading);
  line-height: 1;
}

.logo-text-zantrik {
  font-size: 1.75rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--dark);
  letter-spacing: -0.5px;
}

.brand-red {
  color: var(--primary);
}

.btn-cta {
  border-radius: var(--radius-sm) !important;
  font-weight: 700 !important;
  padding: 0.65rem 1.75rem !important;
  font-size: 0.9rem !important;
}

.logo-image,
.custom-logo,
.custom-logo-link img {
  max-height: 2.5rem;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Desktop Menu */
.desktop-nav {
  display: none;
}

.desktop-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.desktop-menu>li {
  position: relative;
}

.desktop-menu a {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--dark-light);
  padding: 0.5rem 0;
  font-size: 0.95rem;
}

.desktop-menu a:hover,
.desktop-menu li.current-menu-item>a {
  color: var(--primary);
}

/* Submenu / Dropdowns */
.desktop-menu ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  min-width: 200px;
  padding: 0.75rem 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  display: none;
  flex-direction: column;
  z-index: 50;
  margin-top: 0.5rem;
}

.desktop-menu li:hover>ul.sub-menu {
  display: flex;
}

.desktop-menu ul.sub-menu a {
  padding: 0.5rem 1.5rem;
  display: block;
  font-weight: 500;
  font-size: 0.875rem;
}

.desktop-menu ul.sub-menu a:hover {
  background-color: var(--primary-light);
  color: var(--primary);
}

/* Mobile Toggle */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-sm);
  background-color: var(--primary-light);
  color: var(--primary);
  font-size: 1.25rem;
  transition: var(--transition);
}

.mobile-menu-toggle:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* Mobile Dropdown Navigation */
.mobile-navigation-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 99;
}

.mobile-navigation-dropdown.is-open {
  display: flex;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  display: block;
}

.mobile-menu ul.sub-menu {
  padding-left: 1rem;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-left: 2px solid var(--border);
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
  }

  .mobile-menu-toggle {
    display: none;
  }
}

/* =============================================
   HERO SECTION (FULL WIDTH GRADIENT)
   ============================================= */
.hero-full-bg {
  background-color: var(--white);
  padding: 6rem 0;
  position: relative;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0) 100%);
}

@media (max-width: 768px) {
  .hero-gradient-overlay {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 60%, rgba(255, 255, 255, 0) 100%);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
}

.hero-text-area {
  max-width: 600px;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--accent-light);
  color: var(--primary);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.825rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--dark);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

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

.hero-description {
  font-size: 1.125rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

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

.hero-rating-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 3rem;
}

.rating-avatar-group {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.125rem;
}

.rating-text {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--dark);
  font-size: 0.95rem;
}

.rating-text span {
  color: var(--primary);
}



/* =============================================
   ABOUT US SECTION (ZANTRIK STYLE)
   ============================================= */
.about-section {
  padding: 6rem 0;
}

.about-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
  transform: translateY(-3px);
}

.stat-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray);
  font-weight: 500;
}

.about-text-content {
  max-width: 650px;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray);
}

.about-description p {
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .about-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: center;
    gap: 5rem;
  }

  .about-stats-grid {
    grid-column: span 5;
  }

  .about-text-content {
    grid-column: span 7;
  }
}

/* =============================================
   WHY CHOOSE US SECTION
   ============================================= */
.choose-grid {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.choose-cards-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.choose-cards-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.choose-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  flex: 1;
}

.choose-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.choose-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--primary);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.choose-card-title {
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.choose-card-desc {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--gray);
}

.choose-image-area {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.choose-image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 640px) {
  .choose-cards-row {
    flex-direction: row;
  }

  .choose-cards-row .choose-card {
    flex: 1;
  }

  .choose-cards-row:last-child .choose-card {
    max-width: calc(50% - 0.75rem);
  }
}

@media (min-width: 1024px) {
  .choose-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 4rem;
  }
}

/* =============================================
   IN-BETWEEN CONTACT BANNER
   ============================================= */
/* Question Dashboard Banner */
.question-banner-section {
  width: 100%;
  height: 250px;
  background-image: url('../images/zantrik-dashboard.png');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 4rem 0;
}

.question-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.question-capsule {
  position: relative;
  z-index: 2;
  background-color: var(--white);
  border-radius: var(--radius-full);
  padding: 1.25rem 3rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
}

.question-capsule-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.question-capsule-phone {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.question-capsule-phone i {
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .question-capsule {
    flex-direction: row;
    gap: 2rem;
  }
}

/* =============================================
   SERVICES SECTION (ZANTRIK 5-COLUMN STYLE)
   ============================================= */
.services-section {
  padding: 6rem 0;
}

.services-special-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: stretch;
}

.services-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.service-special-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.service-special-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.service-special-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  align-self: flex-start;
}

.service-special-title {
  margin-bottom: 0.25rem;
  color: var(--dark);
  font-size: 1.1rem;
}

.service-special-desc {
  font-size: 0.825rem;
  line-height: 1.5;
  color: var(--gray);
}

.services-center-media {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.5rem 0;
}

.services-center-image {
  max-width: 250px;
  height: auto;
  object-fit: contain;
  transition: var(--transition);
}

.services-special-layout:hover .services-center-image {
  transform: scale(1.03);
}

@media (min-width: 768px) {
  .services-special-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .services-center-media {
    grid-column: span 2;
    margin: 2rem 0;
  }
}

@media (min-width: 1024px) {
  .services-special-layout {
    grid-template-columns: 1fr 1fr 260px 1fr 1fr;
    align-items: center;
    gap: 1rem;
  }

  .services-center-media {
    grid-column: span 1;
    margin: 0;
  }
}

/* =============================================
   GALLERY SECTION (ZANTRIK STYLE)
   ============================================= */
.gallery-section {
  padding: 5rem 0;
}

.gallery-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.gallery-tab-btn {
  padding: 0.65rem 1.75rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  font-weight: 600;
  font-family: var(--font-heading);
  background-color: var(--white);
  color: var(--gray);
  transition: var(--transition);
}

.gallery-tab-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.gallery-tab-btn.active {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(122, 12, 46, 0.15);
}

/* Grid & Items */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: block;
}

.gallery-item.gallery-hidden {
  display: none !important;
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(122, 12, 46, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  padding: 1.5rem;
  text-align: center;
  color: var(--white);
}

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

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.08);
}

.gallery-item-overlay i.fa-magnifying-glass-plus,
.gallery-item-overlay i.fa-circle-play {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  transform: translateY(10px);
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay i {
  transform: translateY(0);
}

.gallery-item-caption {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
}

.gallery-load-more {
  text-align: center;
  margin-top: 3.5rem;
}

/* =============================================
   BLOG SECTION (MODERN HORIZONTAL CARD STYLE)
   ============================================= */
.blog-section {
  padding: 5rem 0;
}

.blog-modern-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .blog-modern-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.blog-modern-card {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.blog-modern-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.blog-modern-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-modern-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-modern-card:hover .blog-modern-media img {
  transform: scale(1.05);
}

.blog-modern-content {
  padding: 0rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-modern-category {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.blog-modern-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-modern-title a:hover {
  color: var(--primary);
}

.blog-modern-excerpt {
  color: var(--gray);
  margin-bottom: 1.5rem;
  flex: 1;
}

.blog-modern-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
}

.blog-modern-link:hover {
  color: var(--primary);
}



font-family: var(--font-heading);
font-weight: 700;
font-size: 0.875rem;
color: var(--primary);
display: inline-flex;
align-items: center;
gap: 0.35rem;
}

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

/* =============================================
   CALL TO ACTION (CTA) BANNER
   ============================================= */
/* =============================================
   ARTIFICIAL INTELLIGENCE SOLUTIONS
   ============================================= */
.ai-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .ai-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.ai-card {
  background-color: #F6ECEE;
  /* Soft beige-maroon matching Zantrik */
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: var(--transition);
  text-align: left;
}

.ai-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.ai-card-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  align-self: flex-start;
}

.ai-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.ai-card-desc {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.6;
}

/* =============================================
   CALL TO ACTION (CTA) BANNER (ZANTRIK OVERHAUL)
   ============================================= */
.cta-section {
  padding-bottom: 5rem;
}

.promo-banner {
  background-color: var(--primary);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: left;
}

.promo-content {
  max-width: 500px;
  position: relative;
  z-index: 2;
}

.promo-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--white) !important;
  margin-bottom: 2rem;
}

.promo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  color: var(--primary);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-family: var(--font-heading);
  transition: var(--transition);
}

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

.promo-car-img {
  position: absolute;
  bottom: 0;
  right: -5%;
  max-width: 45%;
  height: auto;
  object-fit: contain;
  z-index: 1;
  display: none;
}

@media (min-width: 768px) {
  .promo-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 5rem 4rem;
  }

  .promo-car-img {
    display: block;
  }
}

/* =============================================
   FOOTER SECTION
   ============================================= */
.site-footer {
  background-color: var(--white);
  color: var(--gray);
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid var(--border);
}

.footer-top {
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: flex-start;
}

.footer-logo-area {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  margin-top: -0.25rem;
  /* Align perfectly with other headings */
}

.footer-description {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--gray);
}

.footer-newsletter {
  position: relative;
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-color: var(--white);
}

.footer-newsletter input {
  padding: 0.875rem 1rem;
  width: 100%;
  font-size: 0.875rem;
  color: var(--dark);
  background-color: transparent;
}

.footer-newsletter input::placeholder {
  color: var(--gray-light);
}

.footer-newsletter input:focus {
  outline: none;
}

.footer-newsletter button {
  background-color: var(--primary);
  color: var(--white);
  padding: 0 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-newsletter button:hover {
  background-color: var(--accent);
}

.footer-heading {
  color: var(--dark);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

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

.footer-links a {
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray);
}

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

.footer-links li {
  margin-bottom: 0;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links li a {
  color: var(--gray) !important;
}

.footer-links li a:hover {
  color: var(--primary) !important;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.footer-contact-item i {
  color: var(--primary);
  margin-top: 0.25rem;
}

.footer-social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.footer-social-icons a {
  width: 2.25rem;
  height: 2.25rem;
  background-color: var(--primary);
  color: var(--white) !important;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social-icons a:hover {
  background-color: var(--accent);
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  color: var(--gray-light);
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--gray-light);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.75rem;
  color: var(--gray-light);
}

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

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

/* =============================================
   LIGHTBOX OVERLAY
   ============================================= */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1.5rem;
}

.lightbox-overlay.flex {
  display: flex;
}

.lightbox-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-close {
  position: absolute;
  top: -3.5rem;
  right: 0;
  color: var(--white);
  font-size: 2.25rem;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--primary-light);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition);
  z-index: 10;
}

.lightbox-arrow:hover {
  background-color: var(--primary);
}

.lightbox-prev {
  left: 0.5rem;
}

.lightbox-next {
  right: 0.5rem;
}

@media (min-width: 1024px) {
  .lightbox-prev {
    left: -4.5rem;
  }

  .lightbox-next {
    right: -4.5rem;
  }
}

.lightbox-media {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  color: var(--white);
  margin-top: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.125rem;
  text-align: center;
}

/* =============================================
   AUTO TOC STYLING
   ============================================= */
.post-toc-box {
  background-color: var(--primary-light);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  margin-bottom: 2rem;
}

.toc-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  font-size: 1.125rem;
}

.toc-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toc-list a {
  color: var(--dark-light);
  font-size: 0.95rem;
}

.toc-list a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.toc-h3 {
  padding-left: 1.25rem;
}

/* --- Floating WhatsApp Button --- */
.floating-wa-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--success);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
  z-index: 99;
  transition: var(--transition);
}

.floating-wa-btn:hover {
  transform: scale(1.1) rotate(10deg);
  background-color: #059669;
}