/* ==========================================================================
   Adelaide Classic Painting - Style Guide & Theme
   ========================================================================== */

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

:root {
  /* Colors */
  --primary: #e69c24;
  --primary-hover: #ca8216;
  --bg-dark: #0c1016;
  --bg-dark-90: rgba(12, 16, 22, 0.9);
  --bg-dark-50: rgba(12, 16, 22, 0.5);
  --text-white: #ffffff;
  --text-muted: #c3cad4;
  --border-color: rgba(230, 156, 36, 0.5);

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

  /* Layout */
  --max-width: 1400px;
  --header-height: 120px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-hover);
}

/* ==========================================================================
   Navigation Bar Styles
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: transparent;
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

header.scrolled {
  height: 95px;
  background-color: var(--bg-dark-90);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: var(--max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-link img {
  height: 90px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

header.scrolled .logo-link img {
  height: 75px;
}

.logo-link:hover img {
  transform: scale(1.03);
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 30px;
}

.nav-item a {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-white);
  text-decoration: none;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}

.nav-item a:hover {
  color: var(--primary);
}

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

.nav-item a:hover::after {
  width: 100%;
}

.nav-item.active a {
  color: var(--primary);
}

.nav-item.active a::after {
  width: 100%;
}

/* Nav Action Button */
.nav-actions {
  display: flex;
  align-items: center;
}

/* Primary CTA Button */
.btn-primary {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.9rem;
  background-color: var(--primary);
  color: var(--bg-dark);
  border: none;
  padding: 14px 28px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 15px rgba(230, 156, 36, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: all 0.6s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 156, 36, 0.4);
}

.btn-primary:active {
  transform: translateY(1px);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1100;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-white);
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  /* Premium Dark Overlay & Background Setup */
  background: linear-gradient(
      90deg,
      rgba(12, 16, 22, 0.85) 0%,
      rgba(12, 16, 22, 0.6) 45%,
      rgba(12, 16, 22, 0.15) 100%
    ),
    url('hero.png') center/cover no-repeat;
  padding-top: var(--header-height);
  overflow: hidden;
}

/* Fallback for when background.jpg doesn't exist yet */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(30, 41, 59, 0.4) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-container {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 750px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Hero Typography */
.hero-title {
  font-family: var(--font-headings);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
}

.hero-title .white-line {
  color: var(--text-white);
}

.hero-title .orange-line {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-muted);
  max-width: 650px;
  line-height: 1.7;
  font-weight: 400;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.hero-actions .btn-primary {
  padding: 16px 36px;
  font-size: 0.95rem;
}

/* Secondary Outline CTA Button */
.btn-outline {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.95rem;
  background-color: transparent;
  color: var(--text-white);
  border: 2px solid var(--primary);
  padding: 14px 34px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.btn-outline i {
  color: var(--primary);
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.btn-outline:hover {
  background-color: rgba(230, 156, 36, 0.08);
  box-shadow: 0 4px 15px rgba(230, 156, 36, 0.15);
  border-color: var(--primary);
}

.btn-outline:hover i {
  transform: scale(1.1) rotate(15deg);
}

.btn-outline:active {
  transform: translateY(1px);
}

/* ==========================================================================
   Animations Setup (CSS Load and Scroll Animations)
   ========================================================================== */

/* Entrance Animations */
.animate-fade-down {
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeDown 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Staggered Delays */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }

@keyframes fadeDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   About Us Section
   ========================================================================== */
.about {
  background-color: #ffffff;
  color: #2d3748;
  padding: 120px 0;
  overflow: hidden;
  position: relative;
}

.about-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.03);
  pointer-events: none;
  border-radius: 12px;
}

.about-image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.about-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-wrapper:hover .about-img {
  transform: scale(1.02);
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-sub {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: inline-block;
}

.about-title {
  font-family: var(--font-headings);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #0c1016;
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 35px;
}

.about-text p {
  color: #5a6578;
  font-size: clamp(1rem, 1.6vw, 1.05rem);
  line-height: 1.75;
}

.abn-badge {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background-color: #f7fafc;
  padding: 12px 20px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease;
}

.abn-badge:hover {
  transform: translateY(-2px);
}

.abn-icon-box {
  background-color: var(--primary);
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.abn-text {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.05rem;
  color: #1a202c;
  letter-spacing: 0.2px;
}

/* ==========================================================================
   Intersection Observer Animations (Scroll Reveal)
   ========================================================================== */
.reveal-left,
.reveal-right,
.reveal-up {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.reveal-up {
  transform: translateY(50px);
}

.reveal-left.active,
.reveal-right.active,
.reveal-up.active {
  opacity: 1;
  transform: translate(0);
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services {
  background-color: #f8fafc;
  color: #2d3748;
  padding: 120px 0;
  overflow: hidden;
  position: relative;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-sub {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: inline-block;
}

.services-title {
  font-family: var(--font-headings);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #0c1016;
  line-height: 1.2;
  margin-bottom: 15px;
}

.title-underline {
  width: 60px;
  height: 3px;
  background-color: var(--primary);
  margin: 0 auto;
}

.services-carousel-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 80px;
  position: relative;
  display: flex;
  align-items: center;
}

.services-slider-container {
  width: 100%;
  overflow: hidden;
  padding: 20px 0 45px 0;
}

.services-track {
  display: flex;
  align-items: stretch;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  gap: 30px;
}

/* When a card is wrapped in an <a> link, give it same flex sizing as .service-card */
.service-card-link {
  flex: 0 0 calc((100% - 2 * 30px) / 3);
  display: flex;
  text-decoration: none;
  color: inherit;
}

.service-card {
  position: relative;
  flex: 0 0 calc((100% - 2 * 30px) / 3);
  width: 100%;
  background-color: #ffffff;
  border-radius: 12px;
  overflow: visible;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

/* When .service-card is inside a link wrapper, it should fill the link's width */
.service-card-link .service-card {
  flex: 1 1 auto;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.card-img-box {
  position: relative;
  width: 100%;
  height: 220px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .card-img {
  transform: scale(1.04);
}

.card-icon-overlap {
  position: absolute;
  top: 220px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65px;
  height: 65px;
  background-color: #0c1016;
  border: 4px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.45rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 5;
}

.service-card:hover .card-icon-overlap {
  transform: translate(-50%, -50%) scale(1.08);
  background-color: var(--primary);
  color: #0c1016;
}

.card-body {
  padding: 45px 24px 30px 24px;
  text-align: center;
}

.card-title {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 700;
  color: #0c1016;
  margin-bottom: 12px;
}

.card-text {
  font-size: 0.95rem;
  color: #5a6578;
  line-height: 1.6;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  color: #0c1016;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 10;
}

.carousel-nav:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #0c1016;
  box-shadow: 0 6px 20px rgba(230, 156, 36, 0.3);
}

.carousel-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-nav.prev {
  left: 15px;
}

.carousel-nav.next {
  right: 15px;
}

.carousel-nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
}

.carousel-nav:disabled:hover {
  background-color: #ffffff;
  border-color: #e2e8f0;
  color: #0c1016;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #cbd5e0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: var(--primary);
  width: 22px;
  border-radius: 5px;
  transform: scale(1.1);
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-choose {
  background-color: var(--bg-dark);
  color: var(--text-white);
  padding: 110px 0;
  overflow: hidden;
  position: relative;
}

.why-choose-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-choose-sub {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: inline-block;
}

.why-choose-title {
  font-family: var(--font-headings);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.35;
  max-width: 900px;
  margin: 0 auto;
}

.why-choose-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: stretch;
}

.why-item {
  text-align: center;
  padding: 25px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.why-item:hover {
  transform: translateY(-6px);
}

.why-icon-box {
  color: var(--primary);
  font-size: 2.3rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-item:hover .why-icon-box {
  transform: scale(1.15);
}

.why-item-title {
  font-family: var(--font-headings);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.45;
  transition: color 0.3s ease;
}

.why-item:hover .why-item-title {
  color: var(--text-white);
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery {
  background-color: #ffffff;
  color: #2d3748;
  padding: 120px 0;
  overflow: hidden;
  position: relative;
}

.gallery-header {
  text-align: center;
  margin-bottom: 60px;
}

.gallery-sub {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: inline-block;
}

.gallery-title {
  font-family: var(--font-headings);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #0c1016;
  line-height: 1.2;
  margin-bottom: 15px;
}

.gallery-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
  cursor: pointer;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.gallery-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 16, 22, 0.82);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
  padding: 15px;
  text-align: center;
}

.gallery-hover-title {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.85rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: translateY(15px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-hover-icon {
  color: var(--primary);
  font-size: 1.6rem;
  transform: translateY(15px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.05s;
}

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

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

.gallery-item:hover .gallery-hover-title,
.gallery-item:hover .gallery-hover-icon {
  transform: translateY(0);
}

.gallery-footer {
  text-align: center;
  margin-top: 60px;
}

/* ==========================================================================
   Premium Lightbox Modal
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 16, 22, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2.2rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease, transform 0.3s ease;
  z-index: 2010;
}

.lightbox-close:hover {
  color: var(--primary);
  transform: scale(1.1) rotate(90deg);
}

.lightbox-content {
  max-width: 90%;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.lightbox-modal.active .lightbox-img {
  transform: scale(1);
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials {
  background-color: #f8fafc;
  color: #2d3748;
  padding: 120px 0;
  overflow: hidden;
  position: relative;
}

.testimonials-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.testimonials-header {
  text-align: left;
  margin-bottom: 60px;
}

.testimonials-sub {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: inline-block;
}

.testimonials-title {
  font-family: var(--font-headings);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #0c1016;
  line-height: 1.2;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 40px 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  gap: 25px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.stars {
  display: flex;
  gap: 5px;
  color: var(--primary);
  font-size: 0.95rem;
}

.quote {
  color: #4a5568;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.7;
  font-weight: 400;
  flex-grow: 1;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid #edf2f7;
  padding-top: 20px;
}

.client-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.client-name {
  font-family: var(--font-headings);
  font-weight: 700;
  color: #0c1016;
  font-size: 0.95rem;
}

/* ==========================================================================
   Contact / Quote Form Section
   ========================================================================== */
.contact {
  background-color: #0c1016;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.contact-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.quote-form-card {
  max-width: 850px;
  margin: 0 auto;
  background-color: #121822;
  border-radius: 16px;
  padding: 60px 70px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.form-header {
  text-align: center;
  margin-bottom: 45px;
}

.form-sub {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: inline-block;
}

.form-title {
  font-family: var(--font-headings);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.25;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  position: relative;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  color: #1a202c;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 16px 20px;
  border-radius: 6px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #718096;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(230, 156, 36, 0.15);
}

/* Custom Dropdown Styling */
.select-wrapper {
  position: relative;
  width: 100%;
}

.select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 45px;
}

.select-wrapper::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.85rem;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #718096;
  pointer-events: none;
  transition: color 0.3s ease;
}

.select-wrapper select:focus + ::after {
  color: var(--primary);
}

.form-group textarea {
  resize: vertical;
}

.form-submit {
  text-align: center;
  margin-top: 10px;
}

.form-submit .btn-primary {
  padding: 16px 48px;
  font-size: 0.95rem;
}

/* Success Message Overlay */
.form-success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 24, 34, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 10;
}

.form-success-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.success-message-box {
  text-align: center;
  max-width: 450px;
  padding: 40px;
  color: var(--text-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.success-icon {
  color: #48bb78;
  font-size: 4.5rem;
  line-height: 1;
}

.success-message-box h3 {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-white);
}

.success-message-box p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.success-message-box .btn-primary {
  padding: 12px 32px;
  margin-top: 10px;
}

/* ==========================================================================
   Premium Footer
   ========================================================================== */

/* Wave Divider */
#site-footer {
  background-color: #080d12;
  position: relative;
}

.footer-divider {
  line-height: 0;
  background-color: #0c1016; /* contact section bg — seamless join */
}

.footer-wave {
  width: 100%;
  height: 60px;
  display: block;
}

/* ---- Main Body ---- */
.footer-body {
  padding: 70px 0 60px;
  background-color: #080d12;
  position: relative;
  overflow: hidden;
}

/* Decorative radial glow behind brand col */
.footer-body::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(230, 156, 36, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
  gap: 50px;
  align-items: start;
}

/* ---- Column base ---- */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  /* Slide-up reveal animation */
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-col.footer-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger each column */
#footer-col-brand  { transition-delay: 0s; }
#footer-col-links  { transition-delay: 0.12s; }
#footer-col-contact{ transition-delay: 0.24s; }
#footer-col-hours  { transition-delay: 0.36s; }

/* ---- Column Heading ---- */
.footer-col-title {
  font-family: var(--font-headings);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 14px;
}

.footer-col-underline {
  width: 36px;
  height: 2px;
  background: var(--primary);
  margin-bottom: 28px;
  border-radius: 2px;
  transition: width 0.4s ease;
}

.footer-col:hover .footer-col-underline {
  width: 60px;
}

/* ---- Brand Col ---- */
.footer-logo-link {
  display: inline-block;
  margin-bottom: 18px;
  transition: opacity 0.3s ease;
}

.footer-logo-link:hover {
  opacity: 0.85;
}

.footer-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.05);
}

.footer-tagline {
  font-size: 0.9rem;
  color: #8a97a8;
  line-height: 1.7;
  margin-bottom: 22px;
}

.footer-abn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(230, 156, 36, 0.08);
  border: 1px solid rgba(230, 156, 36, 0.2);
  border-radius: 6px;
  padding: 9px 16px;
  margin-bottom: 26px;
  width: fit-content;
}

.footer-abn i {
  color: var(--primary);
  font-size: 1rem;
}

.footer-abn span {
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* Social Icons */
.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #8a97a8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.footer-social-btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #0c1016;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(230, 156, 36, 0.35);
}

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

.footer-links-list li a {
  font-size: 0.9rem;
  color: #8a97a8;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 9px;
  transition: color 0.3s ease, gap 0.3s ease;
}

.footer-links-list li a i {
  font-size: 0.6rem;
  color: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.footer-links-list li a:hover {
  color: var(--text-white);
  gap: 14px;
}

.footer-links-list li a:hover i {
  transform: translateX(3px);
}

/* ---- Contact List ---- */
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(230, 156, 36, 0.1);
  border: 1px solid rgba(230, 156, 36, 0.2);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.footer-contact-list li:hover .footer-contact-icon {
  background: rgba(230, 156, 36, 0.2);
  transform: scale(1.08);
}

.footer-contact-list li a,
.footer-contact-list li span {
  font-size: 0.88rem;
  color: #8a97a8;
  text-decoration: none;
  line-height: 1.55;
  transition: color 0.3s ease;
}

.footer-contact-list li a:hover {
  color: var(--primary);
}

/* ---- Business Hours ---- */
.footer-hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 28px;
}

.footer-hours-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease;
}

.footer-hours-list li:last-child {
  border-bottom: none;
}

.footer-hours-list li:hover {
  background: rgba(230, 156, 36, 0.05);
}

.hours-day {
  font-family: var(--font-headings);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hours-time {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
}

/* CTA Badge */
.footer-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, #ca8216 100%);
  color: #0c1016;
  font-family: var(--font-headings);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 18px rgba(230, 156, 36, 0.28);
  position: relative;
  overflow: hidden;
}

.footer-cta-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s ease;
}

.footer-cta-badge:hover::before {
  left: 100%;
}

.footer-cta-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(230, 156, 36, 0.45);
}

/* ---- Bottom Bar ---- */
.footer-bottom {
  background-color: #040709;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0;
}

.footer-bottom-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-copy {
  font-size: 0.83rem;
  color: #5a6578;
}

.footer-made {
  font-size: 0.83rem;
  color: #5a6578;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-heart {
  color: var(--primary);
  animation: heartbeat 1.4s ease-in-out infinite;
  display: inline-block;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  14%       { transform: scale(1.25); }
  28%       { transform: scale(1); }
  42%       { transform: scale(1.15); }
  70%       { transform: scale(1); }
}

/* ==========================================================================
   About Page Hero Section
   ========================================================================== */
.about-hero {
  position: relative;
  width: 100%;
  min-height: 550px;
  height: 65vh;
  display: flex;
  align-items: center;
  /* Premium Dark Blue Overlay & Background Setup using a1.png */
  background: linear-gradient(
      90deg,
      #0a1424 0%,
      rgba(10, 20, 36, 0.98) 35%,
      rgba(10, 20, 36, 0.8) 55%,
      rgba(10, 20, 36, 0.15) 100%
    ),
    url('a1.png') center/cover no-repeat;
  padding-top: var(--header-height);
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 30%, rgba(30, 41, 59, 0.2) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.about-hero-container {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.about-hero-content {
  max-width: 650px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-hero-sub {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: -5px;
}

.about-hero-title {
  font-family: var(--font-headings);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-white);
  text-transform: uppercase;
}

.about-hero-desc {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 400;
}

.about-hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* Custom Icon adjustments for get quote button */
.about-hero-actions .btn-primary i,
.about-hero-actions .btn-outline i {
  margin-left: 10px;
  font-size: 0.95rem;
}

/* ==========================================================================
   Mission & Vision Section
   ========================================================================== */
.mission-vision {
  background-color: #f8fafc;
  padding: 100px 0;
  overflow: hidden;
}

.mission-vision-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mv-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid #e2e8f0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.mv-icon-box {
  background-color: #0c1016;
  color: var(--primary);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(12, 16, 22, 0.15);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mv-card:hover .mv-icon-box {
  transform: scale(1.08) rotate(5deg);
}

.mv-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mv-title {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  font-weight: 700;
  color: #0c1016;
}

.mv-text {
  font-size: 0.98rem;
  color: #5a6578;
  line-height: 1.65;
}

/* ==========================================================================
   Team Section
   ========================================================================== */
.team-section {
  background-color: #ffffff;
  color: #2d3748;
  padding: 120px 0;
  overflow: hidden;
  position: relative;
}

.team-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.team-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.team-sub {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: inline-block;
}

.team-title {
  font-family: var(--font-headings);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #0c1016;
  line-height: 1.2;
  margin-bottom: 15px;
}

.team-underline {
  width: 60px;
  height: 3px;
  background-color: var(--primary);
  margin-bottom: 24px;
}

.team-desc {
  color: #5a6578;
  font-size: clamp(1rem, 1.6vw, 1.05rem);
  line-height: 1.75;
  margin-bottom: 35px;
}

.team-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 30px;
  width: 100%;
}

.team-feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.team-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background-color: rgba(230, 156, 36, 0.08);
  border: 1px solid rgba(230, 156, 36, 0.2);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.team-feature-item:hover .team-feature-icon {
  background-color: var(--primary);
  color: #ffffff;
  transform: scale(1.05);
}

.team-feature-text {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.98rem;
  color: #0c1016;
}

.team-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.03);
  pointer-events: none;
  border-radius: 12px;
}

.team-image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.team-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-image-wrapper:hover .team-img {
  transform: scale(1.02);
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */
.contact-hero {
  position: relative;
  width: 100%;
  min-height: 580px;
  height: 65vh;
  display: flex;
  align-items: center;
  /* Dark Blue Overlay & Background Setup using a1.png */
  background: linear-gradient(
      90deg,
      #0a1424 0%,
      rgba(10, 20, 36, 0.98) 35%,
      rgba(10, 20, 36, 0.8) 55%,
      rgba(10, 20, 36, 0.15) 100%
    ),
    url('a1.png') center/cover no-repeat;
  padding-top: var(--header-height);
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 30%, rgba(30, 41, 59, 0.2) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.contact-hero-container {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.contact-hero-content {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-hero-sub {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: -5px;
}

.contact-hero-title {
  font-family: var(--font-headings);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-white);
  text-transform: uppercase;
}

.contact-hero-desc {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 400;
  max-width: 600px;
}

.contact-hero-bullets {
  display: flex;
  gap: 30px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.contact-bullet-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-bullet-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(230, 156, 36, 0.1);
  border: 1px solid rgba(230, 156, 36, 0.25);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-bullet-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-bullet-text h4 {
  font-family: var(--font-headings);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
}

.contact-bullet-text span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ---- Contact Main Section ---- */
.contact-main-section {
  background-color: #f8fafc;
  padding: 100px 0;
}

.contact-main-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: stretch;
}

/* Info Card (Left) */
.contact-info-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 45px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}

.contact-card-title {
  font-family: var(--font-headings);
  font-size: 1.75rem;
  font-weight: 700;
  color: #0c1016;
  margin-bottom: 15px;
}

.contact-card-desc {
  font-size: 0.98rem;
  color: #5a6578;
  line-height: 1.6;
  margin-bottom: 35px;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  margin-bottom: 40px;
  flex-grow: 1;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.contact-info-icon {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background-color: rgba(12, 16, 22, 0.03);
  border: 1px solid #cbd5e1;
  color: #0c1016;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-info-list li:hover .contact-info-icon {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #0c1016;
  transform: scale(1.05);
}

.contact-info-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-label {
  font-family: var(--font-headings);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #8a97a8;
}

.info-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0c1016;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-value.text-normal {
  font-weight: 400;
  color: #4a5568;
  line-height: 1.5;
}

.contact-info-list li a.info-value:hover {
  color: var(--primary);
}

/* Dark Request Card (Right) */
.contact-form-card-dark {
  background-color: #08111d;
  color: var(--text-white);
  border-radius: 12px;
  padding: 50px 45px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.form-header-dark {
  margin-bottom: 35px;
}

.form-sub-dark {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  display: block;
}

.form-title-dark {
  font-family: var(--font-headings);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 12px;
}

.form-desc-dark {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.quote-form-dark {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote-form-dark input,
.quote-form-dark textarea,
.quote-form-dark select {
  width: 100%;
  padding: 14px 20px;
  border-radius: 6px;
  background-color: #ffffff;
  border: 1px solid #cbd5e1;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #0c1016;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.quote-form-dark input:focus,
.quote-form-dark textarea:focus,
.quote-form-dark select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(230, 156, 36, 0.15);
}

.quote-form-dark select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.select-wrapper-dark {
  position: relative;
  width: 100%;
}

.select-wrapper-dark::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #8a97a8;
  pointer-events: none;
  font-size: 0.8rem;
}

.quote-form-dark textarea {
  resize: vertical;
}

/* Map Section */
.contact-map-section {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
}

.contact-map-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.contact-map-section iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.map-overlay-card {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  width: 440px;
  background-color: rgba(8, 17, 29, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 25px 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  opacity: 0;
  animation: mapCardFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes mapCardFadeIn {
  from {
    opacity: 0;
    transform: translateY(-40%);
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}

.map-overlay-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.map-card-title {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
}

.map-card-address {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.map-card-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-white);
}

.rating-num {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
}

.stars-gold {
  color: var(--primary);
  display: flex;
  gap: 2px;
  font-size: 0.75rem;
}

.reviews-text {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.map-overlay-right {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.map-card-directions-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--text-white);
  transition: color 0.3s ease;
  cursor: pointer;
}

.directions-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--primary);
  background-color: transparent;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.map-card-directions-btn:hover .directions-icon-circle {
  background-color: var(--primary);
  color: #08111d;
}

.map-card-directions-btn span {
  font-family: var(--font-headings);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.map-card-directions-btn:hover span {
  color: var(--primary);
}

/* ---- Why Choose Section ---- */
.contact-why-section {
  background-color: #ffffff;
  padding: 100px 0;
}

.contact-why-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.contact-why-title {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 800;
  color: #0c1016;
  text-align: center;
  margin-bottom: 60px;
}

.contact-why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 25px;
}

.why-item-simple {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
}

.why-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(230, 156, 36, 0.08);
  border: 1px solid rgba(230, 156, 36, 0.2);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.why-item-simple:hover .why-icon-circle {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  transform: translateY(-4px);
}

.why-item-simple h4 {
  font-family: var(--font-headings);
  font-size: 0.95rem;
  font-weight: 700;
  color: #0c1016;
  line-height: 1.3;
}

.why-item-simple p {
  font-size: 0.82rem;
  color: #5a6578;
  line-height: 1.5;
}

/* ---- CTA Banner Section ---- */
.contact-cta-section {
  background-color: #0c1016;
  padding: 80px 0 0 0;
}

.contact-cta-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 55px 70px;
  background: linear-gradient(135deg, #96783c 0%, #6e5527 100%);
  border-radius: 12px 12px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  box-shadow: 0 -15px 30px rgba(0, 0, 0, 0.25);
}

.contact-cta-text {
  color: #ffffff;
}

.contact-cta-text h2 {
  font-family: var(--font-headings);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-cta-text p {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 650px;
}

.contact-cta-actions {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}

.btn-primary-dark {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.95rem;
  background-color: #08111d;
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-primary-dark:hover {
  background-color: #1a2533;
  transform: translateY(-2px);
}

.btn-outline-white {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.95rem;
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 12px 26px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* ==========================================================================
   Responsive Queries
   ========================================================================== */
@media (max-width: 1024px) {
  .nav-container {
    padding: 0 30px;
  }
  .nav-menu {
    gap: 20px;
  }
  .hero-container {
    padding: 0 30px;
  }
  .about-container {
    padding: 0 30px;
    gap: 40px;
  }
  .services-carousel-wrapper {
    padding: 0 60px;
  }
  .why-choose-grid {
    padding: 0 30px;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 30px;
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .quote-form-card {
    padding: 50px 45px;
  }
}

@media (max-width: 900px) {
  /* Mobile Menu System */
  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-dark);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    padding: 80px 40px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1050;
  }

  .nav-menu.active {
    right: 0;
  }

  /* Hamburger transform to 'X' */
  .mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

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

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

  .nav-actions {
    margin-right: 40px;
  }

  .hero {
    background: linear-gradient(
        180deg,
        rgba(12, 16, 22, 0.75) 0%,
        rgba(12, 16, 22, 0.8) 70%,
        rgba(12, 16, 22, 0.9) 100%
      ),
      url('hero.png') center/cover no-repeat;
    text-align: center;
  }

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

  .hero-desc {
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
    width: 100%;
  }
  .about-hero {
    background: linear-gradient(
        180deg,
        rgba(10, 20, 36, 0.75) 0%,
        rgba(10, 20, 36, 0.85) 60%,
        #0a1424 100%
      ),
      url('a1.png') center/cover no-repeat;
    text-align: center;
    min-height: 480px;
    height: auto;
    padding-bottom: 60px;
    padding-top: calc(var(--header-height) + 20px);
  }

  .about-hero-container,
  .contact-hero-container,
  .services-hero-container {
    padding: 0 24px;
  }

  .about-hero-title,
  .contact-hero-title,
  .services-hero-title {
    font-size: clamp(1.65rem, 6vw, 2.5rem) !important;
    line-height: 1.25;
  }

  .about-hero-content {
    align-items: center;
    margin: 0 auto;
  }

  .about-hero-actions {
    justify-content: center;
    width: 100%;
  }
  .about {
    padding: 80px 0;
  }
  .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 0 30px;
  }
  .about-image-wrapper {
    max-width: 550px;
    margin: 0 auto;
  }
  .services {
    padding: 80px 0;
  }
  .services-carousel-wrapper {
    padding: 0 55px;
  }
  .services-track {
    gap: 20px;
  }
  .service-card-link {
    flex: 0 0 calc((100% - 1 * 20px) / 2);
  }
  .service-card {
    flex: 1 1 auto;
    width: 100%;
  }
  .why-choose {
    padding: 80px 0;
  }
  .why-choose-grid {
    grid-template-columns: repeat(4, 1fr);
    padding: 0 30px;
  }
  .why-item {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 10px;
  }
  .why-item:nth-child(4n) {
    border-right: none;
  }
  .why-item:nth-child(n+5) {
    border-bottom: none;
  }
  .gallery {
    padding: 80px 0;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 30px;
    gap: 15px;
  }
  .testimonials {
    padding: 80px 0;
  }
  .testimonials-container {
    padding: 0 30px;
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .contact {
    padding: 80px 0;
  }
  .contact-container {
    padding: 0 30px;
  }
  .quote-form-card {
    padding: 45px 35px;
  }
  .mission-vision {
    padding: 60px 0;
  }
  .mission-vision-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 30px;
  }
  .team-section {
    padding: 80px 0;
  }
  .team-container {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 0 30px;
  }
  .team-image-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }
  .contact-hero {
    background: linear-gradient(
        180deg,
        rgba(10, 20, 36, 0.75) 0%,
        rgba(10, 20, 36, 0.85) 60%,
        #0a1424 100%
      ),
      url('a1.png') center/cover no-repeat;
    text-align: center;
    min-height: 520px;
    height: auto;
    padding-bottom: 60px;
    padding-top: calc(var(--header-height) + 20px);
  }
  .contact-hero-content {
    align-items: center;
    margin: 0 auto;
  }
  .contact-hero-bullets {
    justify-content: center;
  }
  .contact-main-section {
    padding: 80px 0;
  }
  .contact-main-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 30px;
  }
  .contact-why-section {
    padding: 80px 0;
  }
  .contact-why-title {
    margin-bottom: 40px;
  }
  .contact-why-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 30px;
  }
  .contact-cta-container {
    flex-direction: column;
    text-align: center;
    padding: 40px;
    margin: 0 30px;
    border-radius: 12px 12px 0 0;
  }
  .contact-cta-actions {
    justify-content: center;
  }
  .map-overlay-card {
    top: auto;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: calc(100% - 40px);
    max-width: 380px;
    opacity: 0;
    animation: mapCardFadeInMobile 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  @keyframes mapCardFadeInMobile {
    from {
      opacity: 0;
      transform: translateX(-50%) translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }
  }
}

@media (max-width: 576px) {
  .nav-container {
    padding: 0 20px;
  }

  .nav-actions {
    display: none; /* Hide top header CTA button on small phones to avoid overlap */
  }

  .hero-container {
    padding: 0 20px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    text-align: center;
  }

  .about-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .about-hero-actions .btn-primary,
  .about-hero-actions .btn-outline {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .about-hero-container,
  .contact-hero-container,
  .services-hero-container {
    padding: 0 16px;
  }
  .mission-vision {
    padding: 50px 0;
  }
  .mission-vision-container {
    padding: 0 20px;
  }
  .mv-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    gap: 20px;
  }
  .team-section {
    padding: 60px 0;
  }
  .team-container {
    padding: 0 20px;
    gap: 35px;
  }
  .team-title {
    font-size: 1.85rem;
  }
  .team-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .contact-hero-bullets {
    flex-direction: column;
    gap: 20px;
  }
  .contact-main-container {
    padding: 0 20px;
  }
  .contact-info-card,
  .contact-form-card-dark {
    padding: 35px 20px;
  }
  .contact-card-title,
  .form-title-dark {
    font-size: 1.5rem;
  }
  .contact-why-title {
    font-size: 1.85rem;
    padding: 0 20px;
  }
  .contact-why-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
    gap: 20px;
  }
  .contact-cta-container {
    margin: 0 20px;
    padding: 35px 20px;
    border-radius: 12px 12px 0 0;
  }
  .contact-cta-actions {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
    gap: 15px;
  }
  .contact-cta-actions .btn-primary-dark,
  .contact-cta-actions .btn-outline-white {
    width: 100%;
    justify-content: center;
  }
  .about {
    padding: 60px 0;
  }
  .about-container {
    padding: 0 20px;
    gap: 35px;
  }
  .about-title {
    font-size: 1.85rem;
  }
  .abn-badge {
    width: 100%;
    justify-content: center;
  }
  .services {
    padding: 60px 0;
  }
  .services-carousel-wrapper {
    padding: 0 45px;
  }
  .services-track {
    gap: 0px;
  }
  .service-card-link {
    flex: 0 0 100%;
  }
  .service-card {
    flex: 1 1 auto;
    width: 100%;
  }
  .carousel-nav {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
  .carousel-nav.prev {
    left: 0px;
  }
  .carousel-nav.next {
    right: 0px;
  }
  .why-choose {
    padding: 60px 0;
  }
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }
  .why-item {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 10px;
  }
  .why-item:nth-child(2n) {
    border-right: none;
  }
  .why-item:nth-child(n+7) {
    border-bottom: none;
  }
  .gallery {
    padding: 60px 0;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
    gap: 10px;
  }
  .gallery-footer {
    margin-top: 40px;
  }
  .lightbox-close {
    top: 15px;
    right: 15px;
    font-size: 1.8rem;
  }
  .testimonials {
    padding: 60px 0;
  }
  .testimonials-container {
    padding: 0 20px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .testimonial-card {
    padding: 30px 25px;
  }
  .contact {
    padding: 60px 0;
  }
  .contact-container {
    padding: 0 20px;
  }
  .quote-form-card {
    padding: 40px 20px;
    border-radius: 12px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  .form-submit .btn-primary {
    width: 100%;
    text-align: center;
  }
  /* Footer mobile */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .footer-brand {
    grid-column: span 1;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 0 20px;
  }
}

/* Footer tablet */
@media (max-width: 1024px) and (min-width: 577px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 45px 40px;
    padding: 0 30px;
  }
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 360px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: span 1;
  }
}

/* ==========================================================================
   Services Page Specific Styles
   ========================================================================== */
.services-hero {
  position: relative;
  width: 100%;
  min-height: 550px;
  height: 65vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
      90deg,
      #0a1424 0%,
      rgba(10, 20, 36, 0.98) 35%,
      rgba(10, 20, 36, 0.8) 55%,
      rgba(10, 20, 36, 0.15) 100%
    ),
    url('a1.png') center/cover no-repeat;
  padding-top: var(--header-height);
  overflow: hidden;
}

.services-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 30%, rgba(30, 41, 59, 0.2) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.services-hero-container {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.services-hero-content {
  max-width: 650px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.services-hero-sub {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: -5px;
}

.services-hero-title {
  font-family: var(--font-headings);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-white);
  text-transform: uppercase;
}

.services-hero-desc {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 400;
}

.services-hero-actions {
  display: flex;
  gap: 20px;
}

.services-hero-actions .btn-primary i,
.services-hero-actions .btn-outline i {
  margin-left: 10px;
  font-size: 0.95rem;
}

/* Services Grid Section */
.services-page-section {
  background-color: #ffffff;
  padding: 0 0 100px 0;
}

.services-intro-section {
  background-color: #ffffff;
  padding: 100px 0 50px 0;
  text-align: center;
}

.services-intro-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.services-sub-title {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-block;
  margin-bottom: 12px;
}

.services-main-title {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 800;
  color: #0c1016;
  margin-bottom: 20px;
}

.services-title-underline {
  width: 50px;
  height: 3px;
  background-color: var(--primary);
  margin: 0 auto 25px auto;
  border-radius: 2px;
}

.services-intro-desc {
  font-size: 1.05rem;
  color: #5a6578;
  line-height: 1.7;
}

.services-page-grid-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px 30px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.service-page-card {
  background-color: #ffffff;
  border-radius: 12px;
  width: calc(33.333% - 20px);
  min-width: 280px;
  max-width: 390px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-page-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-page-card-img-box {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.service-page-card-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-page-card:hover .service-page-card-img-box img {
  transform: scale(1.05);
}

.service-page-icon-badge {
  width: 54px;
  height: 54px;
  background-color: #08111d;
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.35rem;
  position: absolute;
  top: 220px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.service-page-card:hover .service-page-icon-badge {
  background-color: var(--primary);
  color: #08111d;
}

.service-page-card-body {
  padding: 45px 30px 35px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-grow: 1;
}

.service-page-card-title {
  font-family: var(--font-headings);
  color: #0c1016;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-page-card-desc {
  color: #5a6578;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 22px;
}

.service-page-card-list {
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  padding-left: 20px;
  margin-top: auto;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 20px;
}

.service-page-card-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: #4a5568;
  font-weight: 500;
  text-align: left;
}

.service-page-card-list li i {
  color: var(--primary);
  font-size: 1.05rem;
}

/* Responsive for Services */
@media (max-width: 900px) {
  .services-hero {
    height: auto;
    min-height: 500px;
    padding-top: 140px;
    padding-bottom: 60px;
  }
  .services-hero-content {
    width: 100%;
    max-width: 100%;
    align-items: center;
    text-align: center;
  }
  .services-hero-actions {
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
  }
  .service-page-card {
    width: calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .services-page-grid-container {
    padding: 0 20px;
  }
  .service-page-card {
    width: 100%;
    max-width: 440px;
    min-width: 0 !important;
  }
}

@media (max-width: 576px) {
  .services-hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }
  .services-hero-actions .btn-primary,
  .services-hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }
  .services-main-title {
    font-size: 2rem;
  }
}

/* General responsive fixes for horizontal scroll */
.footer-links-list a,
.footer-contact-list a,
.contact-info-content a {
  word-break: break-all;
}

/* ==========================================================================
   Services Page - Process Section (How We Work)
   ========================================================================== */
.process-section {
  background-color: #ffffff;
  color: #2d3748;
  padding: 120px 0;
  overflow: hidden;
}

.process-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.process-header {
  margin-bottom: 70px;
}

.process-sub-title {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: inline-block;
}

.process-main-title {
  font-family: var(--font-headings);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #0c1016;
  line-height: 1.2;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  position: relative;
}

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

.step-num {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.step-icon-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #0c1016;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: 20px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 25px rgba(12, 16, 22, 0.15);
}

.process-step.active .step-icon-wrapper {
  background-color: #0c1016;
  border: 2px solid var(--primary);
}

.process-step:hover .step-icon-wrapper {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(230, 156, 36, 0.25);
  border-color: var(--primary);
  color: var(--primary);
}

.step-title {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 700;
  color: #0c1016;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.88rem;
  color: #5a6578;
  line-height: 1.6;
  max-width: 200px;
}

.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  margin-top: 29px; /* Align with the icon center vertical position */
  color: #cbd5e0;
  font-size: 1.2rem;
  z-index: 1;
}

/* Connect line styling */
@media (min-width: 992px) {
  .process-steps::before {
    content: '';
    position: absolute;
    top: 74px; /* Centered with circles */
    left: 45px;
    right: 45px;
    height: 1px;
    border-top: 1px dashed #cbd5e0;
    z-index: 1;
  }
}

/* ==========================================================================
   Services Page - Why Choose Us Dark Banner
   ========================================================================== */
.services-why-choose {
  background-color: #080d12;
  color: var(--text-white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.services-why-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.services-why-left {
  flex: 0 0 35%;
}

.services-why-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
}

.services-why-left .why-sub {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  display: inline-block;
}

.services-why-left .why-title {
  font-family: var(--font-headings);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.25;
}

.services-why-item {
  text-align: center;
  padding: 15px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.services-why-item:hover {
  transform: translateY(-5px);
}

.why-item-icon {
  color: var(--primary);
  font-size: 2rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-why-item:hover .why-item-icon {
  transform: scale(1.15);
}

.why-item-title {
  font-family: var(--font-headings);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.4;
  margin-bottom: 5px;
}

.why-item-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Services Page - Quality You Can Trust
   ========================================================================== */
.quality-trust-section {
  background-color: #ffffff;
  color: #2d3748;
  padding: 120px 0;
  overflow: hidden;
}

.quality-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.quality-image-col {
  position: relative;
}

.quality-img-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.quality-img-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.quality-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.quality-img-wrapper:hover .quality-img {
  transform: scale(1.02);
}

.quality-content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.quality-sub {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: inline-block;
}

.quality-title {
  font-family: var(--font-headings);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #0c1016;
  line-height: 1.2;
  margin-bottom: 24px;
}

.quality-desc {
  color: #5a6578;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.75;
  margin-bottom: 35px;
}

.quality-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
  width: 100%;
}

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

.quality-features-list li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: #2d3748;
  display: flex;
  align-items: center;
  gap: 10px;
}

.quality-features-list li i {
  color: var(--primary);
  font-size: 0.95rem;
}

/* ==========================================================================
   Services Page - Responsive Media Queries
   ========================================================================== */
@media (max-width: 1200px) {
  .services-why-container {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }
  .services-why-left {
    text-align: center;
  }
}

@media (max-width: 991px) {
  .process-steps {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .process-step {
    width: 100%;
    max-width: 320px;
  }
  .process-arrow {
    transform: rotate(90deg);
    margin-top: 0;
    height: auto;
  }
  
  .services-why-right {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
  }
  .services-why-item {
    border-right: none;
  }
  .services-why-item:nth-child(3) {
    border-right: none;
  }
  
  .quality-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .quality-image-col {
    max-width: 550px;
    margin: 0 auto;
  }
}

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

@media (max-width: 576px) {
  .services-why-right {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .quality-features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ==========================================================================
   Gallery Page Specific Styles
   ========================================================================== */
.gallery-hero {
  position: relative;
  width: 100%;
  min-height: 550px;
  height: 65vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
      90deg,
      #0c1016 0%,
      rgba(12, 16, 22, 0.98) 35%,
      rgba(12, 16, 22, 0.85) 55%,
      rgba(12, 16, 22, 0.2) 100%
    ),
    url('p4.jpg') center/cover no-repeat;
  padding-top: var(--header-height);
  overflow: hidden;
}

.gallery-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 30%, rgba(30, 41, 59, 0.2) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.gallery-hero-container {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.gallery-hero-content {
  max-width: 650px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.gallery-hero-sub {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: -5px;
}

.gallery-hero-title {
  font-family: var(--font-headings);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-white);
  text-transform: uppercase;
}

.gallery-hero-desc {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 400;
}

.gallery-hero-actions {
  display: flex;
  gap: 20px;
}

.gallery-hero-actions .btn-primary i,
.gallery-hero-actions .btn-outline i {
  margin-left: 10px;
  font-size: 0.95rem;
}

/* Stats panel */
.gallery-hero-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  background: transparent;
  padding: 30px 15px;
}

.gallery-hero-stat-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 10px;
  transition: transform 0.3s ease;
}

.gallery-hero-stat-card:hover {
  transform: translateY(-5px);
}

.gallery-hero-stat-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(12, 16, 22, 0.8);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.gallery-hero-stat-card:hover .gallery-hero-stat-icon-wrapper {
  background-color: var(--primary);
  color: #0c1016;
  box-shadow: 0 0 15px rgba(230, 156, 36, 0.4);
}

.gallery-hero-stat-number {
  font-family: var(--font-headings);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}

.gallery-hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.3;
  font-weight: 500;
}

/* Stats borders */
.gallery-hero-stat-card::after {
  content: '';
  position: absolute;
  top: 15px;
  right: 0;
  height: 80px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.15) 20%,
    rgba(255, 255, 255, 0.15) 80%,
    transparent
  );
}

.gallery-hero-stat-card:last-child::after {
  display: none;
}

/* Gallery page filtering and grid layout */
.gallery-filter-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery-filter-btn {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.85rem;
  background-color: transparent;
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 22px;
  border-radius: 30px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  outline: none;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #0c1016;
  box-shadow: 0 4px 15px rgba(230, 156, 36, 0.25);
}

/* Gallery Section Layout Overrides/Additions for Full Page */
.gallery-page-section {
  padding: 100px 0;
  background-color: #ffffff;
  color: #2d3748;
}

.gallery-page-section .gallery-title {
  color: #0c1016;
}

.gallery-page-section .gallery-sub {
  color: var(--primary);
}

.gallery-page-section .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.gallery-page-section .gallery-item {
  aspect-ratio: auto;
  overflow: visible;
  border-radius: 0;
  box-shadow: none;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-page-section .gallery-item.hidden {
  opacity: 0;
  transform: scale(0.8) translateY(10px);
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: none;
}

/* Gallery Card Design */
.gallery-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.gallery-card-img-box {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.gallery-card-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-card-img-box img {
  transform: scale(1.05);
}

.gallery-card-body {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
}

.gallery-card-title {
  font-family: var(--font-headings);
  font-size: 1.05rem;
  font-weight: 700;
  color: #0c1016;
}

.gallery-card-zoom-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.gallery-card:hover .gallery-card-zoom-btn {
  background-color: var(--primary);
  color: #0c1016;
  box-shadow: 0 4px 10px rgba(230, 156, 36, 0.3);
}

/* Custom icon styling inside filter buttons */
.gallery-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.gallery-filter-btn i {
  font-size: 0.95rem;
}

/* Responsive Styles for Gallery Hero */
@media (max-width: 1200px) {
  .gallery-hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    justify-items: center;
  }
  .gallery-hero-content {
    align-items: center;
    max-width: 100%;
  }
  .gallery-hero-actions {
    justify-content: center;
  }
  .gallery-hero-stats {
    max-width: 650px;
  }
  .gallery-page-section .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 20px;
  }
}

@media (max-width: 900px) {
  .gallery-hero {
    height: auto;
    min-height: 500px;
    padding-top: 140px;
    padding-bottom: 60px;
  }
}

@media (max-width: 768px) {
  .gallery-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
    padding: 30px 20px;
  }
  .gallery-hero-stat-card {
    padding: 0;
  }
  .gallery-hero-stat-card::after {
    display: none;
  }
  .gallery-page-section .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery-hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }
  .gallery-hero-actions .btn-primary,
  .gallery-hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }
  .gallery-hero-stats {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .gallery-page-section .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Gallery Page - Why Choose Us Section */
.gallery-why-section {
  background-color: #f8fafc;
  color: #0c1016;
  padding: 100px 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.gallery-why-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 60px;
  align-items: center;
}

.gallery-why-left {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.gallery-why-sub {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-block;
}

.gallery-why-title {
  font-family: var(--font-headings);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #0c1016;
  line-height: 1.2;
}

.gallery-why-desc {
  font-size: 0.95rem;
  color: #5a6578;
  line-height: 1.7;
  font-weight: 400;
}

.gallery-why-right {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.gallery-why-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: transform 0.3s ease;
}

.gallery-why-item:hover {
  transform: translateY(-5px);
}

.why-item-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.35rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.gallery-why-item:hover .why-item-icon-box {
  background-color: var(--primary);
  color: #0c1016;
  border-color: var(--primary);
  box-shadow: 0 6px 15px rgba(230, 156, 36, 0.35);
  transform: scale(1.05);
}

.why-item-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.why-item-info h4 {
  font-family: var(--font-headings);
  font-size: 1rem;
  font-weight: 700;
  color: #0c1016;
}

.why-item-info p {
  font-size: 0.85rem;
  color: #5a6578;
  line-height: 1.5;
}

/* Responsive Styles for Why Choose Us Section */
@media (max-width: 1200px) {
  .gallery-why-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .gallery-why-left {
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
  }
  .gallery-why-right {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
    justify-items: center;
  }
  .gallery-why-item {
    align-items: center;
    text-align: center;
    max-width: 280px;
  }
  .why-item-icon-box {
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .gallery-why-right {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ==========================================================================
   SERVICE DETAIL MODAL — Exterior Painting (and reusable base)
   ========================================================================== */

/* ── Service Card Learn More Button ── */
/* ── Service Card Learn More Button ── */
.service-card-learn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 24px auto 0 auto;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  border: none;
  color: #0c1016;
  border-radius: 50px;
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(230, 156, 36, 0.25);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  outline: none;
  align-self: center;
}
.service-card-learn-btn:hover {
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary) 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(230, 156, 36, 0.45);
}
.service-card-learn-btn i {
  font-size: 0.9rem;
  transition: transform 0.3s;
}
.service-card-learn-btn:hover i {
  transform: translateX(5px);
}

.service-card-clickable {
  cursor: pointer;
}
.service-card-clickable:hover .service-page-card-img-box img {
  transform: scale(1.05);
}

/* ── Modal Overlay ── */
.svc-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 12, 18, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.svc-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ── Modal Panel ── */
.svc-modal-panel {
  position: relative;
  background: #111820;
  border-radius: 20px;
  width: 100%;
  max-width: 1000px;
  margin: 40px auto;
  overflow: hidden;
  transform: translateY(40px) scale(0.97);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(230,156,36,0.12);
}
.svc-modal-overlay.active .svc-modal-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* ── Close Button ── */
.svc-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(230, 156, 36, 0.15);
  border: 2px solid rgba(230, 156, 36, 0.35);
  color: var(--primary);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.svc-modal-close:hover {
  background: var(--primary);
  color: #0c1016;
  transform: rotate(90deg);
}

/* ── Modal Body (scrollable inner) ── */
.svc-modal-body {
  overflow-y: auto;
  max-height: calc(100vh - 100px);
}
.svc-modal-body::-webkit-scrollbar {
  width: 6px;
}
.svc-modal-body::-webkit-scrollbar-track {
  background: #0c1016;
}
.svc-modal-body::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

/* ── HERO BANNER ── */
.svc-modal-hero {
  position: relative;
  height: 380px;
  overflow: hidden;
}
.svc-modal-hero-img-wrap {
  position: absolute;
  inset: 0;
}
.svc-modal-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.svc-modal-overlay.active .svc-modal-hero-img {
  transform: scale(1);
}
.svc-modal-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 12, 18, 0.9) 0%,
    rgba(10, 12, 18, 0.6) 60%,
    rgba(10, 12, 18, 0.2) 100%
  );
}
.svc-modal-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 44px;
  gap: 10px;
}
.svc-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230, 156, 36, 0.18);
  border: 1px solid rgba(230, 156, 36, 0.45);
  color: var(--primary);
  font-family: var(--font-headings);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  width: fit-content;
}
.svc-modal-hero-title {
  font-family: var(--font-headings);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
}
.svc-modal-hero-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.6;
}
.svc-modal-hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.svc-modal-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.svc-stat-num {
  font-family: var(--font-headings);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.svc-stat-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.svc-modal-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(230, 156, 36, 0.3);
}

/* ── SHARED SECTION STYLES ── */
.svc-modal-section {
  padding: 50px 44px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.svc-modal-section-tag {
  display: inline-block;
  font-family: var(--font-headings);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}
.svc-modal-section-title {
  font-family: var(--font-headings);
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
}

/* ── OVERVIEW ── */
.svc-modal-overview-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 720px;
  line-height: 1.8;
  margin-bottom: 32px;
}
.svc-modal-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.svc-feat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 14px 16px;
  transition: background 0.25s, border-color 0.25s;
}
.svc-feat-item:hover {
  background: rgba(230, 156, 36, 0.08);
  border-color: rgba(230, 156, 36, 0.3);
}
.svc-feat-item i {
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.svc-feat-item span {
  font-size: 0.87rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── GALLERY STRIP ── */
.svc-gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 4px;
}
.svc-gallery-strip-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.svc-gallery-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.svc-gallery-strip-item:hover img {
  transform: scale(1.08);
}

/* ── PACKAGES ── */
.svc-packages-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  margin-top: -8px;
}
.svc-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-package-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.svc-package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  border-color: rgba(230, 156, 36, 0.25);
}
.svc-pkg-featured {
  background: linear-gradient(135deg, rgba(230, 156, 36, 0.12) 0%, rgba(230, 156, 36, 0.04) 100%);
  border-color: rgba(230, 156, 36, 0.45);
  box-shadow: 0 10px 40px rgba(230, 156, 36, 0.12);
}
.svc-pkg-featured:hover {
  border-color: rgba(230, 156, 36, 0.7);
  box-shadow: 0 20px 60px rgba(230, 156, 36, 0.2);
}
.svc-pkg-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #0c1016;
  font-family: var(--font-headings);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  white-space: nowrap;
}
.svc-pkg-header {
  display: flex;
  align-items: center;
  gap: 14px;
}
.svc-pkg-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(230, 156, 36, 0.15);
  border: 1px solid rgba(230, 156, 36, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.svc-pkg-name {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}
.svc-pkg-tagline {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.svc-pkg-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.svc-pkg-from {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.svc-pkg-amount {
  font-family: var(--font-headings);
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.svc-pkg-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.svc-pkg-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: #c3cad4;
}
.svc-pkg-list li i.fa-check {
  color: var(--primary);
  font-size: 0.8rem;
  flex-shrink: 0;
}
.svc-pkg-na {
  opacity: 0.4;
}
.svc-pkg-na i.fa-xmark {
  color: #888 !important;
}
.svc-pkg-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 8px;
  font-family: var(--font-headings);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s;
  margin-top: auto;
}
.svc-pkg-btn-primary {
  background: var(--primary);
  color: #0c1016;
  border: 2px solid var(--primary);
}
.svc-pkg-btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 156, 36, 0.35);
}
.svc-pkg-btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid rgba(230, 156, 36, 0.4);
}
.svc-pkg-btn-outline:hover {
  background: rgba(230, 156, 36, 0.1);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* ── PROCESS ── */
.svc-process-section {
  background: rgba(255,255,255,0.02);
}
.svc-process-steps {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.svc-step {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 24px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.svc-step:hover {
  background: rgba(230, 156, 36, 0.07);
  border-color: rgba(230, 156, 36, 0.25);
  transform: translateY(-4px);
}
.svc-step-num {
  font-family: var(--font-headings);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1px;
  opacity: 0.7;
}
.svc-step-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(230, 156, 36, 0.12);
  border: 2px solid rgba(230, 156, 36, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}
.svc-step h4 {
  font-family: var(--font-headings);
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
}
.svc-step p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.svc-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(230, 156, 36, 0.4);
  font-size: 1rem;
  padding-top: 28px;
  flex-shrink: 0;
}

/* ── CTA STRIP ── */
.svc-modal-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 44px;
  background: linear-gradient(135deg, rgba(230, 156, 36, 0.12) 0%, rgba(230, 156, 36, 0.04) 100%);
  border-top: 1px solid rgba(230, 156, 36, 0.2);
  flex-wrap: wrap;
}
.svc-cta-strip-content {
  display: flex;
  align-items: center;
  gap: 18px;
}
.svc-cta-strip-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: var(--primary);
  color: #0c1016;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.svc-cta-strip-title {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}
.svc-cta-strip-sub {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-top: 3px;
}
.svc-cta-strip-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.svc-cta-call-btn, .svc-cta-quote-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: var(--font-headings);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
}
.svc-cta-call-btn {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.2);
  color: #fff;
}
.svc-cta-call-btn:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}
.svc-cta-quote-btn {
  background: var(--primary);
  border: 2px solid var(--primary);
  color: #0c1016;
}
.svc-cta-quote-btn:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 156, 36, 0.35);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .svc-modal-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .svc-packages-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .svc-gallery-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .svc-process-steps {
    gap: 6px;
  }
  .svc-step-arrow {
    display: none;
  }
  .svc-modal-cta-strip {
    flex-direction: column;
    text-align: center;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .svc-modal-section {
    padding: 36px 22px;
  }
  .svc-modal-hero {
    height: 300px;
  }
  .svc-modal-hero-content {
    padding: 26px 22px;
  }
  .svc-modal-features-grid {
    grid-template-columns: 1fr;
  }
  .svc-gallery-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .svc-process-steps {
    flex-direction: column;
  }
  .svc-modal-cta-strip {
    padding: 26px 22px;
  }
  .svc-cta-strip-actions {
    width: 100%;
    flex-direction: column;
  }
  .svc-cta-call-btn, .svc-cta-quote-btn {
    justify-content: center;
    width: 100%;
  }
  .svc-modal-hero-stats {
    gap: 12px;
  }
  .svc-modal-stat-divider {
    height: 28px;
  }
}
