/* ==========================================================================
   ADRI'S ELECTRICAL - PREMIUM DESIGN SYSTEM & STYLES
   ========================================================================== */

/* 1. Global Reset & Variables */
:root {
  /* Color Palette */
  --color-primary: #ffb700;
  /* Vibrant Gold */
  --color-primary-hover: #e0a300;
  /* Darker Gold */
  --color-accent: #ffd000;
  /* Electric Golden Yellow (Brighter) */
  --color-dark-bg: #0c0c0e;
  /* Deep Charcoal Black */
  --color-dark-card: #141416;
  /* Card Dark BG */
  --color-light-bg: #ffffff;
  /* Pure White Header */
  --color-text-dark: #111827;
  /* Near Black for Light BG */
  --color-text-light: #ffffff;
  /* Pure White for Dark BG */
  --color-text-muted: #9ca3af;
  /* Cool Grey */
  --color-text-grey: #4b5563;
  /* Darker Grey for Light BG */

  /* Typography */
  --font-heading: 'Outfit', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);

  /* Shadows & Glows */
  --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.3);
  --glow-orange: 0 0 20px rgba(255, 153, 0, 0.5);
  --glow-orange-intense: 0 0 35px rgba(255, 153, 0, 0.8), 0 0 10px rgba(255, 183, 0, 0.4);
  --glow-electric: 0 0 40px rgba(255, 183, 0, 0.7), 0 0 80px rgba(255, 183, 0, 0.3);
}

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

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

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

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

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

::-webkit-scrollbar-thumb {
  background: #222;
  border-radius: 5px;
  border: 2px solid var(--color-dark-bg);
}

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

/* Typography elements */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  outline: none;
}

/* ==========================================================================
   2. Preloader & Intro Animation
   ========================================================================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.preloader-bg-slice {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: var(--color-dark-bg);
  z-index: 1;
  transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1);
}

.slice-left {
  left: 0;
  border-right: 1px solid rgba(255, 153, 0, 0.1);
}

.slice-right {
  right: 0;
  border-left: 1px solid rgba(255, 153, 0, 0.1);
}

.preloader.completed .slice-left {
  transform: translateX(-100%);
}

.preloader.completed .slice-right {
  transform: translateX(100%);
}

.preloader.completed {
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0.8s 0.8s;
}

.preloader-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.preloader.completed .preloader-content {
  opacity: 0;
}

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

.preloader-logo-img {
  max-width: 320px;
  width: 90%;
  height: auto;
  opacity: 0.15;
  filter: grayscale(1) brightness(0.2);
  transition: filter 0.3s, opacity 0.3s;
}

.preloader-logo-img.lit {
  filter: drop-shadow(0 0 25px rgba(255, 153, 0, 0.75)) grayscale(0) brightness(1.2);
}

/* ==========================================================================
   3. Header Styling
   ========================================================================== */
.main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  z-index: 100;
  box-shadow: none;
  border-bottom: none;
  transition: var(--transition-normal);
}

.header-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 1.25rem 3.5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}

.header-logo-img {
  height: 52px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: var(--transition-normal);
}

.logo-link:hover .header-logo-img {
  transform: translateY(-2px) scale(1.02);
  filter: drop-shadow(0 2px 8px rgba(255, 153, 0, 0.15));
}

/* 3x Larger Logo on Desktop without expanding Nav Bar */
@media (min-width: 993px) {
  .logo-link {
    width: 360px;
    height: 52px;
  }

  .header-logo-img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) scale(3);
    transform-origin: left center;
    height: 52px;
    max-width: none;
    z-index: 10;
  }

  .logo-link:hover .header-logo-img {
    transform: translateY(-50%) scale(3.05);
  }
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2.25rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-link:hover {
  color: #ffffff;
}

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

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

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

/* Header CTA Call Button */
.btn-cta-call {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--color-primary);
  color: var(--color-text-dark);
  padding: 0.85rem 1.75rem;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition-normal);
}

.phone-icon-header {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: none;
}

.btn-cta-call:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--glow-orange);
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  z-index: 110;
}

.mobile-toggle .bar {
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: var(--transition-normal);
}

/* Mobile Nav Menu Dropdown */
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #0c0c0e;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 2rem;
  transform: translateY(-110%);
  opacity: 0;
  visibility: hidden;
  z-index: 90;
  transition: var(--transition-normal);
}

.mobile-nav.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  list-style: none;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  display: block;
  padding: 0.25rem 0;
}

.mobile-nav-link.active {
  color: var(--color-primary);
}

.mobile-nav-cta {
  margin-top: 0.5rem;
}

.mobile-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-color: var(--color-primary);
  color: var(--color-text-dark);
  padding: 1rem;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
}

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

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

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


/* ==========================================================================
   4. Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  background-color: var(--color-dark-bg);
  padding: 0;
}

/* Background grid mesh */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 153, 0, 0.03) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 1;
}

.hero-container {
  width: 100%;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 0;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

/* Hero Content (Left) */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: max(2rem, 3.5%);
  padding-right: 4rem;
  padding-top: 8rem;
  padding-bottom: 3rem;
  z-index: 5;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 1rem;
  display: block;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
}

.hero-title .reveal-line {
  display: block;
}

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

.hero-description {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 640px;
  margin-bottom: 2rem;
}

/* Features Row */
.hero-features {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2.5rem;
  max-width: 100%;
  margin-bottom: 3rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  transition: var(--transition-fast);
}

.feature-item:hover {
  transform: translateY(-2px);
}

.feature-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
  transition: var(--transition-normal);
}

.feature-item:hover .feature-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px rgba(255, 183, 0, 0.8));
}

.feature-icon {
  width: 26px;
  height: 26px;
  stroke-width: 2px;
  transition: var(--transition-normal);
}

.feature-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  line-height: 1.25;
  color: #ffffff;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background-color: var(--color-primary);
  color: var(--color-dark-bg);
  padding: 1.1rem 2.25rem;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: var(--transition-normal);
}

.btn-hero-primary:hover {
  background-color: var(--color-primary-hover);
  color: var(--color-dark-bg);
  transform: translateY(-2px);
  box-shadow: var(--glow-orange);
}

.phone-icon-btn {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: currentColor;
  stroke-width: 1px;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background-color: transparent;
  color: #ffffff;
  border: 2px solid var(--color-primary);
  padding: 1.1rem 2.25rem;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: var(--transition-normal);
}

.btn-hero-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-dark-bg);
  background-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--glow-orange);
}

.arrow-icon-btn {
  width: 16px;
  height: 16px;
  transition: var(--transition-fast);
}

/* Hero Visual (Right) */
.hero-visual {
  width: 100%;
  z-index: 4;
}

.visual-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

/* Main hero interior image */
.hero-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) contrast(1.05) saturate(0.95);
  transition: var(--transition-slow);
}

.visual-wrapper:hover .hero-img-main {
  transform: scale(1.02);
}

/* Glowing Logo overlay centered on hero interior */
.watermark-logo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  z-index: 10;
  pointer-events: none;
  transition: var(--transition-normal);
}

.watermark-logo-img {
  max-width: 440px;
  width: 75%;
  height: auto;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.75)) drop-shadow(0 0 20px rgba(255, 183, 0, 0.25));
  transition: var(--transition-normal);
}

/* Ambient light leak overlay for warmth */
.light-leak-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 75% 50%, rgba(255, 153, 0, 0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 3;
}


/* ==========================================================================
   5. Custom Interactive Animations (Pendants, Lightning)
   ========================================================================== */

/* Hanging Bulbs Layer */
.hanging-bulbs-container {
  position: absolute;
  top: 0;
  left: 10%;
  width: 45%;
  height: 55%;
  display: flex;
  justify-content: space-around;
  z-index: 8;
  pointer-events: none;
}

.hanging-bulb {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

/* Custom spacing for cords */
.bulb-item-1 {
  height: 75%;
}

.bulb-item-2 {
  height: 95%;
}

.bulb-item-3 {
  height: 85%;
}

.cord {
  width: 1px;
  height: 70%;
  background: linear-gradient(to bottom, #444, #111);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

.socket {
  width: 8px;
  height: 12px;
  background-color: #222;
  border-radius: 2px 2px 0 0;
}

.glass-globe {
  width: 20px;
  height: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50% 50% 45% 45% / 40% 40% 60% 60%;
  position: relative;
  box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.2), inset 0 -2px 5px rgba(0, 0, 0, 0.4);
}

.filament {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 10px;
  background-color: #333;
  border-radius: 1px;
  transition: var(--transition-fast);
}

.bulb-glow {
  position: absolute;
  bottom: -22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 153, 0, 0.45) 0%, rgba(255, 153, 0, 0) 70%);
  opacity: 0.1;
  pointer-events: none;
  transform: scale(0.6);
  transition: var(--transition-slow);
}

/* Light activation classes triggered by preloader script */
.hanging-bulb.active .filament {
  background-color: var(--color-accent);
  box-shadow: 0 0 8px var(--color-accent), 0 0 15px var(--color-accent);
  animation: filamentPulse 3s infinite alternate ease-in-out;
}

.hanging-bulb.active .bulb-glow {
  opacity: 1;
  transform: scale(1.1);
  animation: glowPulse 3s infinite alternate ease-in-out;
}

@keyframes filamentPulse {
  0% {
    box-shadow: 0 0 6px var(--color-accent);
  }

  100% {
    box-shadow: 0 0 14px var(--color-accent), 0 0 20px var(--color-accent);
  }
}

@keyframes glowPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.25);
    opacity: 1;
  }
}


/* Lightning Strike Overlay */
.lightning-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 50%;
  z-index: 9;
  pointer-events: none;
}

.lightning-bolt-svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
}

.lightning-flash-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 195, 0, 0.08);
  opacity: 0;
  pointer-events: none;
}

/* Lightning Flicker animations triggered via Javascript timeline or CSS */
.lightning-bolt-svg.flicker-active {
  animation: boltFlickerAnim 0.8s ease-out forwards;
}

.lightning-flash-screen.flicker-active {
  animation: screenFlashAnim 0.8s ease-out forwards;
}

@keyframes boltFlickerAnim {

  0%,
  12%,
  24%,
  36%,
  100% {
    opacity: 0;
  }

  2%,
  8%,
  18%,
  22%,
  30% {
    opacity: 1;
  }
}

@keyframes screenFlashAnim {

  0%,
  12%,
  24%,
  36%,
  100% {
    opacity: 0;
  }

  2%,
  8%,
  18%,
  22%,
  30% {
    opacity: 0.7;
  }
}




/* ==========================================================================
   5.5. Services Section Styling
   ========================================================================== */
.services-section {
  position: relative;
  background-color: #ffffff;
  padding: 6rem 2rem;
  z-index: 10;
}

/* Subtle grid mesh overlay for texture */
.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 183, 0, 0.02) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 1;
}

.services-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.services-header {
  text-align: center;
  margin-bottom: 4.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-subtitle {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.services-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.2;
  color: var(--color-text-dark);
  letter-spacing: -0.01em;
}

.title-divider {
  width: 80px;
  height: 3px;
  background-color: var(--color-primary);
  margin-top: 1.25rem;
  border-radius: 2px;
}

/* Services Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
}

/* Responsive columns:
   Desktop: 4 columns
   Tablet: 2 columns
   Mobile: 1 column
*/
@media (max-width: 1120px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-section {
    padding: 3.5rem 1.25rem;
  }

  .services-header {
    margin-bottom: 2.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .service-card {
    padding: 1.1rem 1.25rem;
    min-height: auto;
    gap: 1rem;
  }

  .service-card-description {
    font-size: 0.85rem;
    line-height: 1.4;
  }
}

/* Service Card Container */
.service-card {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 2.5rem 1.75rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.25rem;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    border-color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.01);
  overflow: hidden;
  min-height: 195px;
}

/* Subtle background accent animation on card hover */
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05), 0 5px 15px rgba(255, 183, 0, 0.02);
  border-color: rgba(255, 183, 0, 0.3);
}

/* Service Card Icon Box */
.service-card-icon-wrapper {
  color: var(--color-primary);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card-icon {
  width: 100%;
  height: 100%;
  stroke: var(--color-primary);
}

/* Rotate / Pulse animation on card hover */
.service-card:hover .service-card-icon-wrapper {
  transform: scale(1.08) rotate(3deg);
}

/* Card Content Area */
.service-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-right: 1.5rem;
  /* Space for the arrow */
}

.service-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--color-text-dark);
  line-height: 1.2;
}

.service-card-badge {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--color-text-dark);
  letter-spacing: 0.01em;
}

.service-card-description {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--color-text-grey);
  line-height: 1.5;
  margin-top: 0.25rem;
}

/* Bottom Right Arrow */
.service-card-arrow {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  color: var(--color-text-dark);
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card-arrow svg {
  width: 100%;
  height: 100%;
}

.service-card:hover .service-card-arrow {
  transform: translateX(4px);
  color: var(--color-primary);
}


/* ==========================================================================
   5.6. About Section Styling
   ========================================================================== */
.about-section {
  position: relative;
  background-color: var(--color-dark-bg);
  padding: 6.5rem 2rem;
  z-index: 10;
}

/* Background grid mesh overlay, similar to hero */
.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 153, 0, 0.015) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 1;
}

.about-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Content (Left) */
.about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-subtitle {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.about-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.25;
  color: var(--color-text-light);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.about-description {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: 3rem;
  max-width: 620px;
}

/* Stats Row */
.about-stats {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  width: 100%;
}

.about-stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-stat-item:hover {
  transform: translateY(-4px);
}

.about-stat-icon-wrapper {
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-stat-item:hover .about-stat-icon-wrapper {
  transform: scale(1.1);
  color: var(--color-accent);
}

.about-stat-icon {
  width: 36px;
  height: 36px;
  stroke-width: 1.8px;
}

.about-stat-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  line-height: 1.1;
  color: var(--color-text-light);
  margin-bottom: 0.25rem;
}

.about-stat-label {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

/* Vertical Dividers */
.about-stat-divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.15) 20%, rgba(255, 255, 255, 0.15) 80%, transparent);
}

/* Visual Column (Right) */
.about-visual {
  width: 100%;
}

.about-visual-wrapper {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) contrast(1.05);
  transition: var(--transition-slow);
}

.about-visual-wrapper:hover .about-img-main {
  transform: scale(1.03);
  filter: brightness(0.9) contrast(1.08);
}

/* Glow gradient overlay matching dark kitchen light bulbs */
.about-glow-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 20%, rgba(255, 183, 0, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 3;
}


/* ==========================================================================
   5.7. Projects Section Styling
   ========================================================================== */
.projects-section {
  position: relative;
  background-color: #ffffff;
  padding: 6.5rem 2rem;
  z-index: 10;
}

/* Background grid mesh overlay, similar to services */
.projects-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 183, 0, 0.015) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 1;
}

.projects-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.projects-header {
  text-align: center;
  margin-bottom: 4.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.projects-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.2;
  color: var(--color-text-dark);
  letter-spacing: -0.01em;
}

/* Projects Grid Layout */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  width: 100%;
  margin-bottom: 4rem;
}

/* Project Card Styling */
.project-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

.project-image-wrapper {
  width: 100%;
  aspect-ratio: 1.6;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  border: 1px solid #eaeaea;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  margin-bottom: 1.25rem;
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.95) contrast(1.02);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(255, 183, 0, 0.06));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 2;
}

.project-card-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-text-dark);
  line-height: 1.3;
  transition: color 0.3s ease;
}

/* Project Card Hover Triggers */
.project-card:hover .project-image {
  transform: scale(1.04);
  filter: brightness(1) contrast(1.04);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-card:hover .project-card-title {
  color: var(--color-primary);
}

/* CTA Button Styling */
.projects-cta {
  display: flex;
  justify-content: center;
  width: 100%;
}

.btn-projects-more {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background-color: var(--color-dark-bg);
  color: var(--color-text-light);
  padding: 1.1rem 2.25rem;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: var(--transition-normal);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.btn-projects-more:hover {
  background-color: var(--color-primary);
  color: var(--color-text-dark);
  transform: translateY(-3px);
  box-shadow: var(--glow-orange);
}

.btn-projects-more .arrow-icon-btn {
  width: 16px;
  height: 16px;
  stroke-width: 2.5px;
  transition: transform 0.3s ease;
}

.btn-projects-more:hover .arrow-icon-btn {
  transform: translateX(4px);
}


/* ==========================================================================
   5.8. Why Choose Us (Benefits) Section Styling
   ========================================================================== */
.benefits-section {
  position: relative;
  background-color: var(--color-dark-bg);
  padding: 6.5rem 2rem;
  z-index: 10;
}

/* Background grid mesh overlay, similar to About Us */
.benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 153, 0, 0.015) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 1;
}

.benefits-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.benefits-header {
  text-align: center;
  margin-bottom: 4.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefits-subtitle {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.benefits-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.2;
  color: var(--color-text-light);
  letter-spacing: -0.01em;
}

/* Benefits Grid Layout: 6 Columns */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  width: 100%;
}

/* Benefit Card Styling */
.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

.benefit-icon-wrapper {
  color: var(--color-primary);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(255, 183, 0, 0.04);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
              color 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
              background-color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  border: 1px solid rgba(255, 183, 0, 0.08);
}

.benefit-icon {
  width: 30px;
  height: 30px;
  stroke-width: 1.8px;
}

.benefit-text {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--color-text-muted);
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
}

/* Hover States */
.benefit-card:hover .benefit-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  background-color: var(--color-primary);
  color: var(--color-dark-bg);
  border-color: var(--color-primary);
  box-shadow: var(--glow-orange);
}

.benefit-card:hover .benefit-text {
  color: var(--color-text-light);
}


/* ==========================================================================
   5.9. Testimonials Section Styling
   ========================================================================== */
.testimonials-section {
  position: relative;
  background-color: #ffffff;
  padding: 6.5rem 2rem;
  z-index: 10;
}

/* Background grid mesh overlay, similar to services */
.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 183, 0, 0.015) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 1;
}

.testimonials-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonials-subtitle {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.testimonials-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.2;
  color: var(--color-text-dark);
  letter-spacing: -0.01em;
}

/* Testimonials Grid Layout */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  margin-bottom: 3.5rem;
}

/* Testimonial Card Styling */
.testimonial-card {
  background-color: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
              box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
              border-color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  min-height: 260px;
}

/* Hover States */
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04), 0 5px 15px rgba(255, 183, 0, 0.01);
  border-color: rgba(255, 183, 0, 0.25);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  color: var(--color-primary);
}

.star-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testimonial-quote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-text-grey);
  flex-grow: 1;
  margin: 0;
}

/* Author Profiling */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  margin-top: 0.5rem;
}

.author-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--color-primary);
  background-color: #f3f4f6;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

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

.author-location {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  color: var(--color-text-grey);
  font-weight: 500;
}

/* Indicators dots styling */
.testimonials-dots {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #d1d5db;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.dot.active {
  background-color: var(--color-primary);
  transform: scale(1.25);
}


/* ==========================================================================
   5.10. Contact Section Styling
   ========================================================================== */
.contact-section {
  position: relative;
  width: 100%;
  background: linear-gradient(to right, #0c0c0e 50%, #f9fafb 50%);
  display: flex;
  z-index: 10;
}

.contact-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  z-index: 2;
}

/* Info Column (Left - Dark) */
.contact-info-column {
  position: relative;
  background-color: #0c0c0e;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2.5rem;
  padding: 6.5rem 3.5rem 6.5rem 0;
  overflow: hidden;
}

/* Seamless Lamp Image Blend */
.contact-lamp-image-wrapper {
  width: 190px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(0 0 30px rgba(255, 183, 0, 0.15));
}

.contact-lamp-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  mix-blend-mode: screen; /* Blends pure black pixels seamlessly */
}

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

.contact-subtitle {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.contact-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.25;
  color: var(--color-text-light);
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

.title-divider-left {
  width: 60px;
  height: 3px;
  background-color: var(--color-primary);
  margin-bottom: 2.5rem;
  border-radius: 2px;
}

/* Contact details list */
.contact-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-detail-icon {
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
}

.contact-detail-icon svg.phone-svg {
  fill: currentColor;
  stroke: none;
}

.contact-detail-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.contact-detail-text a {
  transition: color 0.3s ease;
}

.contact-detail-text a:hover {
  color: var(--color-primary);
}

/* Form Column (Right - Light) */
.contact-form-column {
  padding: 6.5rem 0 6.5rem 3.5rem;
  display: flex;
  align-items: center;
}

.contact-form-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid #eaeaea;
  width: 100%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Form Fields */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  position: relative;
  width: 100%;
}

.form-input, 
.form-select, 
.form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--color-text-dark);
  background-color: #ffffff;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus, 
.form-select:focus, 
.form-textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 183, 0, 0.15);
}

/* Custom Select Dropdown Arrow */
.select-group {
  position: relative;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 3rem;
  cursor: pointer;
}

.select-arrow {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-grey);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.select-arrow svg {
  width: 16px;
  height: 16px;
}

.textarea-group {
  margin-bottom: 2rem;
}

.form-textarea {
  height: 120px;
  resize: none;
}

/* Submit Button */
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background-color: var(--color-primary);
  color: var(--color-text-dark);
  padding: 1.1rem 2.5rem;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: var(--transition-normal);
  box-shadow: 0 4px 10px rgba(255, 153, 0, 0.15);
  border: none;
  cursor: pointer;
}

.btn-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--glow-orange);
}

.btn-submit .arrow-icon-btn {
  width: 16px;
  height: 16px;
  stroke-width: 2.5px;
  transition: transform 0.3s ease;
}

.btn-submit:hover .arrow-icon-btn {
  transform: translateX(4px);
}

/* ==========================================================================
   5.11. Footer Section Styling
   ========================================================================== */
.main-footer {
  background-color: #08080a;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 5rem 0 0 0;
  width: 100%;
  position: relative;
  z-index: 10;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem 4rem 2rem;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr 1.25fr;
  gap: 3rem;
}

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

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

.footer-brand .footer-logo {
  display: block;
  width: 320px;
  max-width: none;
  height: auto;
  margin: -67px -60px;
  transition: var(--transition-normal);
}

.footer-brand .footer-logo:hover {
  transform: translateY(-2px) scale(1.02);
  filter: drop-shadow(0 2px 8px rgba(255, 153, 0, 0.15));
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.footer-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

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

.footer-links a {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--color-text-muted);
  transition: var(--transition-fast);
}

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

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

.footer-contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.footer-contact-details a {
  transition: var(--transition-fast);
}

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

.footer-contact-icon {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.footer-contact-icon.phone-icon {
  fill: currentColor;
  stroke: none;
}

.footer-abn {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
}

.footer-abn strong {
  color: #ffffff;
  font-weight: 700;
  margin-right: 0.25rem;
}

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

.footer-bottom-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-container p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.footer-bottom-container p.credit {
  font-weight: 500;
}


/* ==========================================================================
   6. Responsive Layout Breakpoints
   ========================================================================== */
@media (max-width: 1200px) {
  .header-container {
    padding: 1rem 1.5rem;
  }
}

@media (max-width: 992px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
  }

  .header-cta {
    display: none;
    /* Keep header clean, CTA moved to mobile menu dropdown */
  }

  .logo-link {
    width: 120px;
    height: 52px;
    position: relative;
  }

  .header-logo-img {
    position: absolute;
    top: -48px;
    left: -44px;
    transform: scale(3);
    transform-origin: left top;
    height: 52px;
    max-width: none;
    z-index: 10;
  }

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

  .hero-section {
    min-height: auto;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: left;
  }

  .hero-content {
    align-items: flex-start;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 6.5rem;
    padding-bottom: 2rem;
  }

  .hero-description {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 1.5rem;
  }

  .hero-features {
    justify-content: flex-start;
    margin-left: 0;
    margin-right: 0;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }

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

  .hero-visual {
    width: 100%;
    max-width: 100%;
    height: 38vh;
    margin: 0;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .about-content {
    align-items: center;
    text-align: center;
  }
  
  .about-description {
    max-width: 580px;
    margin-bottom: 2.5rem;
  }
  
  .about-stats {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .about-visual {
    max-width: 640px;
    margin: 0 auto;
  }

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

  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 1.5rem;
  }

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

  .contact-section {
    background: none;
    display: block;
  }
  .contact-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-info-column {
    padding: 5.5rem 2rem;
    justify-content: center;
    padding-right: 2rem;
  }
  .contact-form-column {
    padding: 4.5rem 2rem 5.5rem 2rem;
    background-color: #f9fafb;
  }
  .contact-form-card {
    max-width: 600px;
    margin: 0 auto;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  .preloader-logo-img {
    max-width: 240px;
  }

  .hero-section {
    padding: 0;
  }

  .hero-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 5.75rem;
    padding-bottom: 1.75rem;
  }

  .hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* On tablet and larger mobile, 2 columns fits nicely left aligned */
    gap: 1.25rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 340px;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    height: 32vh;
  }

  .watermark-logo-img {
    max-width: 320px;
    width: 85%;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .about-section {
    padding: 5rem 1.5rem;
  }
  
  .about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1rem;
    justify-items: center;
  }
  
  .about-stat-item {
    align-items: center;
    text-align: center;
  }
  
  /* Hide vertical dividers on mobile grid layout */
  .about-stat-divider {
    display: none;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .benefits-section {
    padding: 5rem 1.5rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }

  .testimonials-section {
    padding: 5rem 1.5rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .contact-info-column {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding-right: 2rem;
  }
  .contact-lamp-image-wrapper {
    width: 150px;
    margin-bottom: 1rem;
  }
  .contact-info-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .title-divider-left {
    margin: 0 auto 2.5rem auto;
  }
  .contact-details-list {
    align-items: center;
  }
  .contact-detail-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }

  .main-footer {
    padding: 3.5rem 0 0 0;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
    padding: 0 1.25rem 2.5rem 1.25rem;
  }

  .footer-column.footer-brand,
  .footer-column.footer-contact {
    grid-column: span 2;
  }

  .footer-column {
    gap: 1.1rem;
  }

  .footer-links {
    gap: 0.65rem;
  }

  .footer-contact-details {
    gap: 0.85rem;
  }

  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .logo-link {
    height: 44px;
  }

  .header-logo-img {
    height: 44px;
    top: -41px;
    left: -37px;
  }

  .hanging-bulbs-container {
    width: 60%;
    left: 5%;
  }
}