/* ========================================
   style.css - Spectrum Nightscapes
   Professional Outdoor Lighting Company
   Premium Version - Light Black Theme
   ENHANCED with Master Animations & Responsiveness
   ======================================== */

/* ---------- CSS Variables ---------- */
:root {
  /* Light black shades */
  --black-deep: #0a0a0a;
  --black-dark: #111;
  --black-medium: #1a1a1a;
  --black-light: #222;
  --black-soft: #333;
  
  /* Yellow accents */
  --primary: #FFD700;
  --primary-dark: #e6c200;
  --primary-light: #fff0b3;
  
  /* Whites & grays */
  --white: #ffffff;
  --white-off: #f8f8f8;
  --gray-light: #f0f0f0;
  --gray: #888;
  --gray-dark: #444;
  
  /* Overlays & shadows */
  --overlay-dark: rgba(0, 0, 0, 0.7);
  --overlay-light: rgba(0, 0, 0, 0.4);
  --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.15);
  --shadow-hover: 0 20px 40px rgba(255, 215, 0, 0.15);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-extra-slow: 0.8s ease;
  
  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  
  /* Max width */
  --max-width: 1200px;
}

/* ---------- Global Reset ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--black-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0px); }
}

@keyframes glow {
  0% { box-shadow: 0 0 0 0 var(--primary); }
  50% { box-shadow: 0 0 20px 5px var(--primary); }
  100% { box-shadow: 0 0 0 0 var(--primary); }
}

/* Hero-specific animations to preserve centering */
@keyframes heroFadeInUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes heroFadeInDown {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Scroll-triggered animation classes (to be added via JS) */
.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}
.fade-in-up {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}
.fade-in-down {
  opacity: 0;
  animation: fadeInDown 1s ease forwards;
}
.fade-in-left {
  opacity: 0;
  animation: fadeInLeft 1s ease forwards;
}
.fade-in-right {
  opacity: 0;
  animation: fadeInRight 1s ease forwards;
}
.zoom-in {
  opacity: 0;
  animation: zoomIn 0.8s ease forwards;
}

/* Apply base animation to sections */
.section {
  animation: fadeIn 1s ease;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--black-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p {
  margin-bottom: 1rem;
  color: var(--gray-dark);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
}

/* ---------- Utility Classes ---------- */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 2rem);
  padding-right: clamp(1rem, 3vw, 2rem);
}

.section {
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: clamp(2rem, 5vw, 3rem);
  position: relative;
}

.section-title .highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.section-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-slow);
}

.section-title:hover .highlight::after {
  transform: scaleX(1);
  transform-origin: left;
}

.bg-dark {
  background-color: var(--black-medium);
  color: var(--white);
}

.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4, .bg-dark p {
  color: var(--white);
}

.text-center {
  text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--black-dark);
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--black-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-link {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap var(--transition-fast);
}

.btn-link:hover {
  gap: 1rem;
}

.btn-link i {
  transition: transform var(--transition-fast);
}

.btn-link:hover i {
  transform: translateX(5px);
}

/* ---------- Top Bar (Sticky, Always Visible) ---------- */
.top-bar {
  background-color: var(--black-soft);
  color: var(--white);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 1001;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.top-bar-left i {
  color: var(--primary);
  font-size: 14px;
}

.top-bar-left a {
  color: var(--white);
  font-weight: 500;
  font-size: 14px;
  transition: color var(--transition-fast);
}

.top-bar-left a:hover {
  color: var(--primary);
}

.btn-top-bar {
  background-color: var(--primary);
  color: var(--black-dark);
  padding: 6px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition-fast);
  animation: pulse 2s infinite;
}

.btn-top-bar:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  animation: none;
}

/* ---------- Navbar ---------- */
.navbar {
  background-color: var(--black-dark);
  position: fixed;
  top: 50px; /* Height of top bar */
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  transform: translateY(0);
}

/* Hide navbar when scrolling down */
.navbar.navbar-hidden {
  transform: translateY(-100%);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  min-height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  color: var(--white);
  font-weight: 600;
  font-size: clamp(1rem, 3vw, 1.3rem);
  transition: color var(--transition-fast);
}

.logo:hover {
  color: var(--primary);
}

.logo-img {
  height: clamp(50px, 8vw, 70px);
  margin-right: clamp(10px, 2vw, 15px);
  transition: transform var(--transition-fast);
}

.logo:hover .logo-img {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
}

.nav-item {
  margin-left: clamp(1rem, 3vw, 2rem);
  position: relative;
}

.nav-link {
  color: var(--white);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--primary);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--black-light);
  min-width: 250px;
  padding: 1rem 0;
  border-radius: var(--radius-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-lg);
  z-index: 100;
}

.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  color: var(--white);
  padding: 0.6rem 1.5rem;
  display: block;
  transition: all var(--transition-fast);
  font-size: 0.95rem;
}

.dropdown-menu a:hover {
  background-color: var(--primary);
  color: var(--black-dark);
  padding-left: 2rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.mobile-menu-toggle:hover {
  color: var(--primary);
  transform: scale(1.1);
}

/* ---------- Top Scroll Bar ---------- */
.top-scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(50, 50, 50, 0.97);
  color: var(--white);
  z-index: 1100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
}

.top-scroll-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  flex-wrap: wrap;
  gap: 10px;
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  flex-wrap: wrap;
}

.top-contact i {
  color: var(--primary);
  font-size: 1.2rem;
}

.top-contact a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.top-contact a:hover {
  color: var(--primary);
}

.top-cta .btn {
  padding: 0.5rem 1.2rem;
  font-size: 0.95rem;
}

/* When body has scrolled-topbar class - No longer used */
/* Removed to prevent blinking effect */

/* ---------- Main Content ---------- */
main {
  margin-top: 130px; /* Space for fixed top bar (50px) + navbar (80px) */
  transition: margin-top 0.3s ease;
}

/* ---------- Hero Slideshow ---------- */
.hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  color: var(--white);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: heroAnimation 12s infinite;
  transform: scale(1);
}

.hero-slide:nth-child(1) {
  animation-delay: 0s;
}
.hero-slide:nth-child(2) {
  animation-delay: 2s;
}
.hero-slide:nth-child(3) {
  animation-delay: 4s;
}
.hero-slide:nth-child(4) {
  animation-delay: 6s;
}
.hero-slide:nth-child(5) {
  animation-delay: 8s;
}
.hero-slide:nth-child(6) {
  animation-delay: 10s;
}

@keyframes heroAnimation {
  0% { opacity: 0; transform: scale(1); }
  2% { opacity: 1; transform: scale(1.05); }
  15% { opacity: 1; transform: scale(1.12); }
  19% { opacity: 0.7; transform: scale(1.14); }
  21% { opacity: 0; transform: scale(1.16); }
  100% { opacity: 0; transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--overlay-dark) 0%, var(--overlay-light) 100%);
  z-index: 2;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  width: 90%;
  max-width: 800px;
  animation: heroFadeInUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation-fill-mode: both;
}

.hero-content h1 {
  color: var(--white);
  text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
  animation: heroFadeInDown 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation-fill-mode: both;
}

.hero-content p {
  color: var(--white);
  font-size: clamp(1rem, 3vw, 1.2rem);
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  animation: heroFadeInUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation-fill-mode: both;
}

.hero-content .btn {
  margin: 0 0.5rem 1rem;
  animation: heroFadeInUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation-fill-mode: both;
}

/* ---------- Services Grid (Cards) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2rem);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gray-light);
  will-change: transform;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: transform var(--transition-normal);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--black-dark);
  font-size: clamp(1.1rem, 3vw, 1.3rem);
}

.service-card p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
}

/* ---------- Lighting Types Grid ---------- */
.lighting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
}

.lighting-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.lighting-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.lighting-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.lighting-card:hover img {
  transform: scale(1.1);
}

.lighting-card h3 {
  padding: 1rem 1rem 0.5rem;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.lighting-card p {
  padding: 0 1rem 1rem;
  color: var(--gray);
  font-size: 0.95rem;
}

.lighting-card .btn-link {
  padding: 0 1rem 1.5rem;
  display: block;
}

/* ---------- Features / Why Choose Us ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  margin-top: 2rem;
}

.feature {
  text-align: center;
  padding: clamp(1.5rem, 4vw, 2rem);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
  border: 1px solid rgba(255, 215, 0, 0.1);
  backdrop-filter: blur(5px);
}

.feature:hover {
  background: rgba(255, 215, 0, 0.08);
  transform: translateY(-5px) scale(1.02);
}

.feature i {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--primary);
  margin-bottom: 1rem;
  transition: transform var(--transition-normal);
}

.feature:hover i {
  transform: scale(1.1) rotate(5deg);
}

.feature h4 {
  margin-bottom: 0.5rem;
  color: var(--white);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.feature p {
  color: var(--gray-light);
  font-size: 0.95rem;
}

/* Features on Light Backgrounds */
.garden-section .feature {
  background: rgba(0, 0, 0, 0.05);
  border: 2px solid rgba(0, 0, 0, 0.12);
}

.garden-section .feature h4 {
  color: var(--black-dark);
}

.garden-section .feature p {
  color: var(--gray-dark);
}

.garden-section .feature:hover {
  background: rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.2);
}

/* ---------- Portfolio / Gallery ---------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, var(--overlay-dark), transparent);
  color: var(--white);
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform var(--transition-normal);
}

.portfolio-item:hover .overlay {
  transform: translateY(0);
}

.overlay h4 {
  color: var(--primary);
  margin-bottom: 0.3rem;
  font-size: clamp(1rem, 3vw, 1.2rem);
}

.overlay p {
  color: var(--white);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ---------- Gallery Grid (Portfolio/Collections) ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  transition: all var(--transition-normal);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover {
  box-shadow: var(--shadow-hover);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: linear-gradient(to top, var(--overlay-dark), transparent);
  color: var(--white);
  padding: 2.5rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h4 {
  color: var(--primary);
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
}

.gallery-overlay p {
  color: var(--white);
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* ---------- 4-Column Grid (Image Gallery) ---------- */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.grid-4 .gallery-item {
  aspect-ratio: 1/1;
}

.grid-4 .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- 3-Column Grid ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.grid-3 .gallery-item {
  aspect-ratio: 4/3;
}

.grid-3 .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grid-3 .gallery-item p {
  margin-top: 0.8rem;
  text-align: center;
  color: var(--gray-light);
  font-size: 0.95rem;
}

/* ---------- 2-Column Image Grid ---------- */
.image-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.image-grid-2 .grid-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.image-grid-2 .grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  aspect-ratio: 4/3;
  display: block;
}

.image-grid-2 .grid-item:hover img {
  transform: scale(1.03);
}

.image-grid-2 .grid-item .image-caption {
  margin-top: 1rem;
  text-align: center;
  color: var(--gray-light);
  font-size: 0.95rem;
}

/* ---------- Before/After Gallery ---------- */
.gallery-pair {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.before-after {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.before-after img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.before-after:hover img {
  transform: scale(1.03);
}

.before-after .label {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  background: rgba(0, 0, 0, 0.7);
  color: var(--primary);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0;
}

/* ---------- Service Items (Large Images) ---------- */
.service-item {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: center;
  margin-bottom: 4rem;
  width: 100%;
}

.service-item.reverse {
  direction: rtl;
}

.service-item.reverse > * {
  direction: ltr;
}

.service-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  display: block;
  max-height: 500px;
}

.service-item:hover .service-image img {
  transform: scale(1.03);
}

.service-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 1;
  visibility: visible;
}

.service-content h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
}

.service-content p {
  color: var(--black-dark);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1rem;
  display: block;
  opacity: 1;
  visibility: visible;
}

.service-content ul {
  list-style: none;
  margin-bottom: 2rem;
}

.service-content li {
  color: var(--gray-light);
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  position: relative;
}

.service-content li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.2rem;
}

/* ---------- Testimonials ---------- */
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial {
  background: rgba(255, 255, 255, 0.03);
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary);
  transition: all var(--transition-normal);
}

.testimonial:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--gray-light);
  font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.testimonial cite {
  font-weight: 600;
  color: var(--primary);
  font-style: normal;
}

/* ---------- Footer ---------- */
.footer {
  background-color: var(--black-light);
  color: var(--white);
  padding: 3rem 0 1rem;
  border-top: 4px solid var(--primary);
}

.footer-top {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  margin-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-col h4 {
  color: var(--primary);
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
}

.footer-col p {
  color: var(--gray-light);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer-col a {
  color: var(--gray-light);
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

/* Footer Form */
.footer-form-col {
  background: rgba(255, 255, 255, 0.02);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.footer-form .form-group {
  margin-bottom: 1rem;
}

/* ---------- Contact CTA Section ---------- */
.contact-cta {
  padding: 4rem 0;
}

.contact-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-form-wrapper h2 {
  margin-bottom: 1rem;
  color: var(--white);
}

.contact-form-wrapper p {
  margin-bottom: 2rem;
  color: var(--gray-light);
  font-size: 1.05rem;
}

.contact-form-inline {
  display: grid;
  gap: 1rem;
}

.contact-form-inline .form-group {
  width: 100%;
}

.contact-form-inline input,
.contact-form-inline textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.contact-form-inline input::placeholder,
.contact-form-inline textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact-form-inline input:focus,
.contact-form-inline textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.contact-form-inline .btn {
  padding: 1rem;
  font-weight: 600;
  font-size: 1rem;
}

.footer-form input,
.footer-form textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: inherit;
  transition: all var(--transition-fast);
}

.footer-form input:focus,
.footer-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-form .btn-block {
  background: var(--primary);
  color: var(--black-dark);
  border: none;
  padding: 0.7rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.footer-form .btn-block:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Footer Map */
.footer-map-col iframe {
  width: 100%;
  height: 200px;
  border: 0;
  border-radius: var(--radius-md);
  filter: grayscale(0.4) contrast(1.1);
  transition: filter var(--transition-normal);
}

.footer-map-col iframe:hover {
  filter: grayscale(0);
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transition: all var(--transition-fast);
  color: var(--white);
}

.social-links a:hover {
  background: var(--primary);
  color: var(--black-dark);
  transform: translateY(-3px) scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  color: var(--gray);
}

/* ---------- Page Header (inner pages) ---------- */
.page-header {
  background: linear-gradient(135deg, var(--black-medium) 0%, var(--black-dark) 100%);
  color: var(--white);
  padding: clamp(2rem, 8vw, 4rem) 0;
  text-align: center;
  margin-bottom: 2rem;
}

.page-header h1 {
  color: var(--primary);
  animation: fadeInDown 1s;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
}

.page-header p {
  color: var(--gray-light);
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInUp 1s;
  font-size: clamp(1rem, 3vw, 1.1rem);
}

/* ---------- CTA Section ---------- */
.cta {
  background: linear-gradient(135deg, var(--black-medium) 0%, var(--black-dark) 100%);
  text-align: center;
  color: var(--white);
  padding: clamp(2rem, 8vw, 4rem) 0;
}

.cta h2 {
  color: var(--white);
  animation: fadeInDown 1s;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.cta p {
  color: var(--gray-light);
  margin-bottom: 2rem;
  font-size: clamp(1rem, 3vw, 1.2rem);
}

/* ---------- Contact / Quote Forms ---------- */
.contact-grid,
.quote-form-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.contact-info {
  background: var(--gray-light);
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: var(--radius-lg);
}

.contact-info h3 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
}

.contact-info p {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-info i {
  color: var(--primary);
  font-size: 1.2rem;
  width: 25px;
}

.contact-info a {
  color: var(--black-dark);
  word-break: break-word;
}

.contact-info a:hover {
  color: var(--primary);
}

.map {
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map iframe {
  width: 100%;
  height: 250px;
  border: 0;
}

.contact-form,
.quote-form-container {
  background: var(--white);
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form h3,
.quote-form-container h3 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--black-dark);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  transition: all var(--transition-fast);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

/* Alerts */
.alert {
  padding: 1rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.alert.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* ---------- Blog ---------- */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.post-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.post-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.post-card:hover img {
  transform: scale(1.02);
}

.post-content {
  padding: 1.5rem;
}

.post-content h3 {
  margin-bottom: 0.5rem;
}

.post-content h3 a {
  color: var(--black-dark);
  transition: color var(--transition-fast);
}

.post-content h3 a:hover {
  color: var(--primary);
}

.post-meta {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* ---------- Admin Login ---------- */
.login-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.login-box {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.login-box h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

/* ---------- Error Pages ---------- */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.error-content h1 {
  font-size: clamp(3rem, 10vw, 6rem);
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0;
}

.error-content h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
}

.error-content p {
  margin-bottom: 2rem;
  color: var(--gray);
  font-size: clamp(0.9rem, 2.5vw, 1rem);
}

/* ---------- Responsive Design ---------- */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }

  .lighting-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .image-grid-2 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-item.reverse {
    direction: ltr;
  }

  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
  }

  main {
    margin-top: 120px;
  }

  /* Improve touch targets on tablet */
  .btn {
    min-height: 44px;
    padding: 0.75rem 1.5rem;
  }

  /* Better form spacing on tablet */
  .form-group {
    margin-bottom: 1.2rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 130px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 130px);
    background: var(--black-light);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 1.5rem 0;
    transition: left var(--transition-normal);
    overflow-y: auto;
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 0.75rem 0;
    width: 100%;
    padding: 0.75rem 1rem;
    text-align: center;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    background: transparent;
  }

  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  }

  .top-bar-content {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 0.75rem 0;
  }

  .top-contact a {
    font-size: 0.85rem;
  }

  .navbar {
    top: 50px;
    min-height: 70px;
    padding: 0.5rem 1rem;
  }

  .navbar.navbar-hidden {
    transform: translateY(-200%);
  }

  main {
    margin-top: 120px;
  }

  /* Hero optimizations for tablet */
  .hero {
    height: 70vh;
    min-height: 500px;
  }

  .hero-content {
    padding: 2rem 1rem;
  }

  .hero-content h1 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 0.75rem;
  }

  .hero-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .hero-content .btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0.5rem auto;
    min-height: 44px;
  }

  /* Section spacing */
  .section {
    padding: 2rem 0;
  }

  .section-title {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    margin-bottom: 1.5rem;
  }

  h3 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
  }

  /* Grid optimizations */
  .lighting-grid,
  .gallery-grid,
  .grid-4,
  .grid-3,
  .portfolio-grid,
  .posts-grid,
  .testimonials-slider {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .image-grid-2 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gallery-item {
    aspect-ratio: 4/3;
  }

  .before-after {
    max-height: 300px;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .service-content {
    padding: 1rem;
    opacity: 1;
    visibility: visible;
    color: var(--black-dark);
  }

  .service-image {
    max-height: 350px;
  }

  .service-image img {
    max-height: 350px !important;
  }

  /* Form improvements */
  .contact-grid,
  .quote-form-container {
    grid-template-columns: 1fr;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 0.75rem;
    font-size: 16px;
    min-height: 44px;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    min-height: 44px;
  }

  .btn-large {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
  }

  /* Footer improvements */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-form-col {
    order: -1;
  }

  .footer-form input,
  .footer-form textarea {
    padding: 0.7rem 0.9rem;
    font-size: 16px;
    min-height: 44px;
  }

  .footer-map-col iframe {
    height: 250px;
  }

  /* Card and item improvements */
  .feature {
    padding: 1.5rem;
  }

  .feature i {
    font-size: 2.5rem;
  }

  .feature h4 {
    font-size: 1rem;
  }

  .feature p {
    font-size: 0.9rem;
  }

  /* Contact section */
  .contact-option {
    padding: 1.5rem;
  }

  .contact-option i {
    font-size: 2rem;
  }

  .contact-option h4 {
    font-size: 1.1rem;
  }

  /* Service links and buttons */
  .btn-link {
    font-size: 0.95rem;
    padding: 0.5rem 0;
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }

  .hero {
    height: 60vh;
    min-height: 350px;
  }

  .hero-content {
    padding: 1.5rem 0.75rem;
  }

  .hero-content h1 {
    font-size: clamp(1.3rem, 5vw, 2rem);
    margin-bottom: 0.5rem;
  }

  .hero-content p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .hero-content .btn {
    padding: 0.65rem 1.2rem;
    font-size: 0.85rem;
    width: 90%;
    max-width: 100%;
    min-height: 40px;
  }

  .section {
    padding: 1.5rem 0;
  }

  .section-title {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    margin-bottom: 1rem;
  }

  h3 {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
  }

  h4 {
    font-size: 0.95rem;
  }

  /* Grid for mobile */
  .portfolio-grid,
  .posts-grid,
  .gallery-grid,
  .grid-4,
  .grid-3,
  .lighting-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .image-grid-2 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .gallery-item,
  .portfolio-item,
  .grid-4 .gallery-item,
  .grid-3 .gallery-item {
    aspect-ratio: 4/3 !important;
    border-radius: var(--radius-md);
  }

  .before-after {
    max-height: 250px;
  }

  .before-after img {
    max-height: 250px;
  }

  /* Card spacing */
  .service-item {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .service-content {
    padding: 0.75rem;
    opacity: 1;
    visibility: visible;
    color: var(--black-dark);
  }

  .service-image {
    max-height: 300px;
    border-radius: var(--radius-md);
  }

  .service-image img {
    max-height: 300px !important;
  }

  .feature {
    padding: 1rem;
    border-radius: var(--radius-lg);
  }

  .feature i {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }

  .feature h4 {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
  }

  .feature p {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  /* Form elements */
  .form-group {
    margin-bottom: 0.9rem;
  }

  .form-group label {
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select,
  .footer-form input,
  .footer-form textarea,
  input[type="email"],
  input[type="tel"],
  input[type="text"],
  textarea,
  select {
    padding: 0.65rem 0.75rem;
    font-size: 16px;
    min-height: 40px;
    border-radius: var(--radius-sm);
  }

  /* Buttons */
  .btn {
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
    min-height: 40px;
    border-radius: var(--radius-sm);
  }

  .btn-large {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }

  .btn-block {
    width: 100%;
  }

  /* Contact and CTA sections */
  .contact-option {
    padding: 1.25rem 0.75rem;
  }

  .contact-option i {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }

  .contact-option h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }

  .contact-option p {
    font-size: 0.8rem;
  }

  /* Post cards */
  .post-card {
    border-radius: var(--radius-lg);
  }

  .post-card img {
    height: 180px;
  }

  .post-content {
    padding: 1rem;
  }

  .post-content h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }

  .post-meta {
    font-size: 0.75rem;
  }

  /* Menu toggle improvements */
  .mobile-menu-toggle {
    padding: 0.5rem 0.75rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu-toggle i {
    font-size: 1.5rem;
  }

  /* Text readability */
  p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  li {
    font-size: 0.9rem;
  }

  /* Bottom navigation spacing */
  .footer-col {
    margin-bottom: 1rem;
    text-align: center;
  }

  .footer-col h4 {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
  }

  .footer-col p {
    font-size: 0.8rem;
  }

  /* Service list items */
  .check-list li {
    font-size: 0.85rem;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
  }

  .check-list i {
    font-size: 0.95rem;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .lighting-card p {
    font-size: 0.85rem;
  }

  .feature {
    padding: 1.2rem;
  }

  .feature i {
    font-size: 2rem;
  }

  .feature h4 {
    font-size: 1rem;
  }

  .feature p {
    font-size: 0.85rem;
  }

  .testimonial {
    padding: 1.2rem;
  }

  .testimonial p {
    font-size: 0.9rem;
  }

  .footer-col h4 {
    font-size: 1rem;
  }

  .footer-col p,
  .footer-col a {
    font-size: 0.9rem;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .container {
    padding: 0 0.5rem;
  }

  .hero-content h1 {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
  }

  .hero-content p {
    font-size: 0.8rem;
  }

  .btn {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    min-height: 38px;
  }

  .btn-large {
    padding: 0.7rem 1.4rem;
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.2rem;
  }

  h3 {
    font-size: 1rem;
  }

  h4 {
    font-size: 0.9rem;
  }

  .feature {
    padding: 0.8rem;
  }

  .feature i {
    font-size: 1.75rem;
  }

  .feature h4 {
    font-size: 0.85rem;
  }

  .feature p {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .section {
    padding: 1.25rem 0;
  }

  .form-group input,
  .form-group textarea,
  .footer-form input,
  .footer-form textarea {
    padding: 0.6rem 0.5rem;
    font-size: 16px;
  }

  .post-card img {
    height: 150px;
  }

  .contact-option {
    padding: 1rem 0.5rem;
  }

  .contact-option h4 {
    font-size: 0.95rem;
  }

  .contact-option p {
    font-size: 0.75rem;
  }

  p {
    font-size: 0.85rem;
  }

  li {
    font-size: 0.85rem;
  }

  .footer-col h4 {
    font-size: 0.9rem;
  }

  .footer-col p {
    font-size: 0.75rem;
  }
}

/* Ultra-wide screens */
@media (min-width: 1600px) {
  .container {
    max-width: 1400px;
  }

  .hero {
    height: 70vh;
  }

  .hero-content h1 {
    font-size: 4.5rem;
  }

  .hero-content p {
    font-size: 1.5rem;
  }

  .btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
  }
}

/* ---------- Booking Form ---------- */
.booking-form-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.booking-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.booking-form .form-group {
  margin-bottom: 1.5rem;
}

.booking-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--black-dark);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-md);
  font-family: inherit;
  transition: border-color var(--transition-fast);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

@media (max-width: 600px) {
  .booking-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ========================================
   Book Consultation Page Styling
   ======================================== */

/* Main consultation section */
.book-consultation {
  padding: 4rem 0;
  background: var(--black-soft);
}

.book-consultation h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 2rem;
  color: var(--white);
  text-align: center;
}

.consultation-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: start;
}

/* Left side - Info section */
.consultation-info h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 2rem;
  color: var(--white);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.info-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 215, 0, 0.15);
  border-radius: 50%;
  color: var(--primary);
  font-size: 1.5rem;
}

.info-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.info-text p {
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

/* Right side - Form container */
.consultation-form-container {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.consultation-form-container h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--black-dark);
  text-align: left;
}

/* Consultation form styling */
.consultation-form {
  display: flex;
  flex-direction: column;
}

.consultation-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.consultation-form .form-group {
  margin-bottom: 1rem;
}

.consultation-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--black-dark);
  font-size: 0.95rem;
}

.consultation-form input[type="text"],
.consultation-form input[type="email"],
.consultation-form input[type="tel"],
.consultation-form input[type="date"],
.consultation-form select,
.consultation-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  color: var(--black-dark);
  font-family: inherit;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.consultation-form input::placeholder,
.consultation-form textarea::placeholder {
  color: var(--gray-dark);
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.consultation-form select {
  cursor: pointer;
  padding: 0.8rem;
}

.consultation-form select option {
  background: var(--white);
  color: var(--black-dark);
}

/* Form agreement (checkbox) */
.form-agreement {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: rgba(255, 215, 0, 0.05);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary);
  flex-wrap: wrap;
}

.form-agreement input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  cursor: pointer;
  accent-color: var(--primary);
}

.form-agreement label {
  margin-bottom: 0;
  cursor: pointer;
  font-weight: 500;
  color: var(--black-dark);
  font-size: 0.95rem;
}

/* Form note */
.form-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--gray);
  text-align: center;
}

.form-note strong {
  color: var(--primary);
  font-weight: 600;
}

/* Alert messages */
.alert {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.alert i {
  font-size: 1.3rem;
  margin-top: 2px;
  min-width: 20px;
}

.alert p {
  margin: 0;
  line-height: 1.5;
}

.alert p + p {
  margin-top: 0.5rem;
}

.alert.success {
  background: rgba(76, 175, 80, 0.1);
  border-left: 4px solid #4CAF50;
  color: #2e7d32;
}

.alert.success i {
  color: #4CAF50;
}

.alert.error {
  background: rgba(244, 67, 54, 0.1);
  border-left: 4px solid #f44336;
  color: #c62828;
}

.alert.error i {
  color: #f44336;
}

/* Contact info section at bottom */
.contact-info-section {
  padding: 4rem 0;
  background: var(--black-dark);
}

.contact-info-section .section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
  color: var(--white);
}

.contact-info-section .highlight {
  color: var(--primary);
  font-weight: 700;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.contact-option {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 215, 0, 0.05);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--primary);
  transition: all var(--transition-normal);
}

.contact-option:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.contact-option i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
}

.contact-option h4 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-option p {
  color: var(--gray);
  margin: 0;
  line-height: 1.6;
}

.contact-option a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-option a:hover {
  color: var(--primary-light);
}

/* Responsive consultation layout */
@media (max-width: 1024px) {
  .consultation-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .consultation-form-container {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .book-consultation {
    padding: 2.5rem 0;
  }
  
  .consultation-wrapper {
    gap: 2rem;
  }
  
  .consultation-info h2 {
    font-size: 1.5rem;
  }
  
  .book-consultation h2 {
    font-size: 1.5rem;
  }
  
  .consultation-form .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .info-item {
    gap: 1rem;
  }
  
  .info-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    font-size: 1.3rem;
  }
  
  .contact-options {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .consultation-form-container {
    padding: 1.5rem;
  }
  
  .form-agreement {
    padding: 1rem;
    margin: 1.5rem 0;
  }
}

@media (max-width: 600px) {
  .book-consultation {
    padding: 1.5rem 0;
  }
  
  .consultation-wrapper {
    gap: 1.5rem;
  }
  
  .consultation-info h2,
  .consultation-form-container h2 {
    font-size: 1.3rem;
  }
  
  .info-item {
    gap: 1rem;
  }
  
  .info-text h4 {
    font-size: 1rem;
  }
  
  .info-text p {
    font-size: 0.9rem;
  }
  
  .consultation-form input,
  .consultation-form select,
  .consultation-form textarea {
    padding: 0.8rem 0.9rem;
    font-size: 16px; /* Prevent zoom on mobile */
  }
}