/* ==========================================================================
   DEVAN ENGINEERING - STYLESHEET
   Single consolidated CSS file containing design tokens, base styles,
   layout grids, components, unique animations, and responsive breakpoints.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Rajdhani:wght@500;600;700&display=swap');

/* --- Design Tokens & Color Palette --- */
:root {
  --primary-gold: #ffb400;
  --primary-orange: #ff7700;
  --gold-glow: rgba(255, 180, 0, 0.35);
  --bg-dark: #0a0d12;
  --bg-card: #121721;
  --bg-card-hover: #19202e;
  --bg-glass: rgba(18, 23, 33, 0.75);
  --bg-glass-nav: rgba(10, 13, 18, 0.92);
  --text-main: #f0f4f8;
  --text-muted: #94a3b8;
  --text-light: #64748b;
  --border-color: rgba(255, 180, 0, 0.18);
  --border-light: rgba(255, 255, 255, 0.08);
  --steel-gray: #334155;
  --accent-blue: #38bdf8;
  --font-heading: 'Rajdhani', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-main: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 10px 30px -5px rgba(255, 180, 0, 0.25);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

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

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

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

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

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

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* --- Container & Perfect Grid Layout Utilities --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 3.2rem 0;
  position: relative;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  background: rgba(255, 180, 0, 0.1);
  border: 1px solid var(--border-color);
  color: var(--primary-gold);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  backdrop-filter: blur(8px);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  line-height: 1.15;
}

.section-title span {
  color: var(--primary-gold);
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 680px;
  margin: 0.85rem auto 0;
  font-size: 1.08rem;
  line-height: 1.6;
}

/* --- Dedicated Inner Page Banners with Separate Background JPGs --- */
.page-banner {
  position: relative;
  padding: 2rem 0 2rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* border-bottom: 1px solid var(--border-color); */
  overflow: hidden;
  box-shadow: inset 0 -20px 40px rgba(0, 0, 0, 0.8);
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 13, 18, 0.85) 0%, rgba(10, 13, 18, 0.96) 100%),
    radial-gradient(circle at 70% 30%, rgba(255, 180, 0, 0.15) 0%, transparent 60%);
  z-index: 1;
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.banner-about {
  background-image: url('../images/banner-about.jpg');
}

.banner-service {
  background-image: url('../images/banner-service.jpg');
}

.banner-gallery {
  background-image: url('../images/banner-gallery.jpg');
}

.banner-contact {
  background-image: url('../images/banner-contact.jpg');
}

.breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 1.25rem;
  padding: 0.35rem 1rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
}

.breadcrumb-nav a {
  color: var(--text-muted);
}

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

.breadcrumb-nav span {
  color: var(--primary-gold);
}

/* --- Header & Top bar --- */
.top-bar {
  background: #05070a;
  border-bottom: 1px solid var(--border-light);
  padding: 0.6rem 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-info-item i {
  color: var(--primary-gold);
}

.top-info-item a:hover {
  color: var(--primary-gold);
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-glass-nav);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-fast);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.7rem;
  color: #fff;
  letter-spacing: 1px;
}

.brand-logo i {
  color: var(--primary-gold);
  font-size: 1.85rem;
  animation: gearSpin 12s linear infinite;
}

.brand-logo span {
  color: var(--primary-gold);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-main);
  position: relative;
  padding: 0.5rem 0;
}

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

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

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

.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-orange));
  color: #000;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-gold);
  transition: var(--transition-fast);
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 180, 0, 0.45);
  color: #000;
}

.mobile-toggle {
  display: none;
  font-size: 1.65rem;
  color: var(--primary-gold);
  cursor: pointer;
  padding: 0.5rem;
}

/* --- Hero Section & Spark Canvas --- */
.hero {
  position: relative;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  padding: 4.5rem 0 4rem;
  overflow: hidden;
  background: radial-gradient(circle at 70% 30%, rgba(255, 180, 0, 0.08) 0%, transparent 60%), #0a0d12;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  filter: grayscale(30%) contrast(120%);
  z-index: 1;
}

#spark-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1.2rem;
  background: rgba(255, 180, 0, 0.12);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  color: var(--primary-gold);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: sparkGlow 3s ease-in-out infinite alternate;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  letter-spacing: 1px;
}

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

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 630px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2.25rem;
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-orange));
  color: #000;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-gold);
  transition: var(--transition-fast);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 180, 0, 0.45);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
  transition: var(--transition-fast);
}

.btn-outline:hover {
  background: rgba(255, 180, 0, 0.1);
  border-color: var(--primary-gold);
  color: var(--primary-gold);
  transform: translateY(-3px);
}

/* --- Hero Feature Badges --- */
.hero-badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
  position: relative;
  z-index: 3;
}

.hero-stat-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-light);
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  backdrop-filter: blur(10px);
  transition: var(--transition-fast);
}

.hero-stat-card:hover {
  border-color: var(--primary-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-main);
}

.hero-stat-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 180, 0, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-gold);
  flex-shrink: 0;
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.2rem;
}

/* --- Specialized Shed Work Banner --- */
.shed-specialty-banner {
  background: linear-gradient(135deg, #161c27 0%, #0d1118 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-main);
  margin-bottom: 3rem;
}

.shed-banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.shed-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  background: linear-gradient(90deg, var(--primary-gold), var(--primary-orange));
  color: #000;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.shed-banner-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.shed-banner-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 1.75rem;
}

.shed-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  margin-bottom: 2rem;
}

.shed-feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
}

.shed-feature-item i {
  color: var(--primary-gold);
  font-size: 1.1rem;
}

.shed-banner-img-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.shed-banner-img-wrap img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.shed-banner-img-wrap:hover img {
  transform: scale(1.05);
}

/* --- Service Cards Grid & Perfect Uniform Spacing --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.25rem;
}

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

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-gold), var(--primary-orange));
  transition: var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  border-color: var(--border-color);
  box-shadow: var(--shadow-main), 0 0 25px rgba(255, 180, 0, 0.15);
}

.service-card:hover::after {
  width: 100%;
}

.service-img-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.service-icon-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-orange));
  color: #000;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
  z-index: 2;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon-badge {
  transform: scale(1.1);
}

.service-content {
  padding: 1.85rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  line-height: 1.25;
}

.service-desc {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.75rem;
  flex-grow: 1;
  line-height: 1.6;
}

.service-specialty-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-gold);
  background: rgba(255, 180, 0, 0.08);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.1rem;
  text-transform: uppercase;
  border: 1px solid rgba(255, 180, 0, 0.2);
  align-self: flex-start;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(4px);
}

/* --- About Page Grid & Spacing --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-group {
  position: relative;
}

.about-main-img {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-main);
  width: 100%;
  height: 490px;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-orange));
  color: #000;
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-gold);
  font-family: var(--font-heading);
  text-align: center;
}

.exp-num {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
}

.exp-text {
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text-content .section-title {
  text-align: left;
  margin-bottom: 1.5rem;
}

.about-paragraph {
  color: var(--text-muted);
  font-size: 1.08rem;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.about-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  margin: 2.25rem 0;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-main);
}

.check-item i {
  color: var(--primary-gold);
  font-size: 1.2rem;
}

/* --- Gallery Grid --- */
.gallery-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.filter-btn {
  padding: 0.65rem 1.6rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-orange));
  color: #000;
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 290px;
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 13, 18, 0.95) 0%, rgba(10, 13, 18, 0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.gallery-item:hover .gallery-overlay,
.gallery-overlay {
  display: none !important;
}

.gallery-cat {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-gold);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.gallery-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
}

.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.video-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(10, 13, 18, 0.85);
  color: var(--primary-gold);
  border: 1px solid var(--border-color);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  z-index: 2;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.gallery-zoom-icon {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  background: rgba(255, 180, 0, 0.9);
  color: #000;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transform: scale(0.5);
  transition: transform 0.3s ease;
  z-index: 2;
}

.gallery-item:hover .gallery-zoom-icon {
  transform: scale(1);
}

/* --- Lightbox Modal --- */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 7, 10, 0.95);
  backdrop-filter: blur(15px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  padding: 2rem;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 920px;
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
}

.lightbox-img {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  display: block;
  background: #000;
}

.lightbox-video {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  display: block;
  background: #000;
}

.lightbox-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-gold);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  border: 1px solid var(--border-light);
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--primary-gold);
  color: #000;
}

/* --- Contact & Map Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.5rem;
  box-shadow: var(--shadow-main);
}

.contact-info-title {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.contact-info-desc {
  color: var(--text-muted);
  margin-bottom: 2.25rem;
  line-height: 1.6;
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 1.85rem;
}

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

.contact-detail-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 180, 0, 0.12);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--primary-gold);
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.contact-detail-text p,
.contact-detail-text a {
  color: var(--text-muted);
  font-size: 1.02rem;
}

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

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.5rem;
  box-shadow: var(--shadow-main);
}

.form-group {
  margin-bottom: 1.65rem;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.25rem;
  background: rgba(10, 13, 18, 0.7);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 15px rgba(255, 180, 0, 0.2);
}

textarea.form-control {
  resize: vertical;
  min-height: 125px;
}

.map-wrapper {
  margin-top: 3.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-main);
}

.map-wrapper iframe {
  width: 100%;
  height: 460px;
  border: 0;
  display: block;
}

/* --- Floating Call & WhatsApp Action Buttons --- */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
}

.float-btn {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.65rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
}

.float-btn-call {
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-orange));
  color: #000;
  animation: pulseBorder 2s infinite;
}

.float-btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff;
  font-size: 1.85rem;
  animation: pulseBorderWhatsApp 2s infinite;
}

.float-btn:hover {
  transform: scale(1.12);
}

/* --- Scroll to Top Button (Fixed Bottom-Left Corner) --- */
.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 999;
  width: 54px;
  height: 54px;
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  color: var(--primary-gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-orange));
  color: #000;
  border-color: transparent;
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 12px 30px rgba(255, 180, 0, 0.4);
}

@keyframes pulseBorder {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 153, 0, 0.6), 0 10px 25px rgba(0, 0, 0, 0.5);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(255, 153, 0, 0), 0 10px 25px rgba(0, 0, 0, 0.5);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 153, 0, 0), 0 10px 25px rgba(0, 0, 0, 0.5);
  }
}

@keyframes pulseBorderWhatsApp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6), 0 10px 25px rgba(0, 0, 0, 0.5);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), 0 10px 25px rgba(0, 0, 0, 0.5);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 10px 25px rgba(0, 0, 0, 0.5);
  }
}

/* --- Footer --- */
.footer {
  background: #050709;
  border-top: 1px solid var(--border-color);
  padding: 4.5rem 0 2rem;
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  margin: 1.2rem 0;
  font-size: 0.98rem;
  line-height: 1.65;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 1.35rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 38px;
  height: 2px;
  background: var(--primary-gold);
}

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

.footer-links a {
  font-size: 0.98rem;
}

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

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.92rem;
}

/* --- Keyframe Animations --- */
@keyframes gearSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes sparkGlow {
  0% {
    box-shadow: 0 0 10px rgba(255, 180, 0, 0.2);
  }

  100% {
    box-shadow: 0 0 25px rgba(255, 180, 0, 0.6);
  }
}

@keyframes pulseBorder {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 180, 0, 0.6);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(255, 180, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 180, 0, 0);
  }
}

/* --- Responsive Breakpoints (Pixel-Perfect Padding & Margins) --- */
@media (max-width: 1200px) {
  .container {
    max-width: 1000px;
  }

  .shed-banner-grid {
    gap: 2rem;
  }

  .about-grid,
  .contact-grid {
    gap: 2.5rem;
  }
}

@media (max-width: 992px) {
  .top-bar {
    display: none !important;
  }

  .section {
    padding: 2.5rem 0;
  }

  .page-banner {
    padding: 3.5rem 0 2.5rem;
  }

  .hero-title {
    font-size: 3.2rem;
  }

  .section-title {
    font-size: 2.3rem;
  }

  .shed-banner-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 84px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 84px);
    background: #0a0d12;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: left 0.4s ease;
    z-index: 999;
    padding: 2rem;
  }

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

  .about-experience-badge {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 1.5rem;
  }
}

@media (max-width: 600px) {
  .floating-actions {
    bottom: 1.25rem;
    right: 1.25rem;
  }

  .scroll-top-btn {
    bottom: 1.25rem;
    left: 1.25rem;
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .container {
    padding: 0 1.2rem;
  }

  .section {
    padding: 2rem 0;
  }

  .page-banner {
    padding: 3.5rem 0 3rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.95rem;
  }

  .top-bar-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.85rem;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .shed-feature-list,
  .about-checklist {
    grid-template-columns: 1fr;
  }

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

  .contact-info-card,
  .contact-form-card {
    padding: 1.75rem 1.25rem;
  }
}