/* ============================================
   BlackCoal.in - Premium Industrial Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg-black: #0B0B0B;
  --bg-dark: #121212;
  --bg-gray: #1A1A1A;
  --bg-card: #181818;
  --border-dark: #2A2A2A;
  --orange: #FF7A00;
  --orange-glow: #FF5A00;
  --gold: #F5B041;
  --fire-grad: linear-gradient(135deg, #FF7A00 0%, #FF3D00 50%, #F5B041 100%);
  --fire-grad-soft: linear-gradient(135deg, rgba(255,122,0,0.15) 0%, rgba(255,61,0,0.05) 100%);
  --text-white: #FFFFFF;
  --text-gray: #B8B8B8;
  --text-mute: #7A7A7A;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-black);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Selection */
::selection {
  background: var(--orange);
  color: var(--bg-black);
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-black); }
::-webkit-scrollbar-thumb { background: var(--fire-grad); border-radius: 10px; }

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hide { opacity: 0; visibility: hidden; }

.preloader-flame {
  width: 80px;
  height: 80px;
  position: relative;
}
.preloader-flame::before,
.preloader-flame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--fire-grad);
  animation: pulse 1.4s ease-in-out infinite;
}
.preloader-flame::after {
  animation-delay: -0.7s;
  opacity: 0.5;
}
@keyframes pulse {
  0%, 100% { transform: scale(0.8); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
}

/* ============================================
   SCROLL PROGRESS
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--fire-grad);
  z-index: 10000;
  transition: width 0.1s;
  box-shadow: 0 0 10px var(--orange);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(11, 11, 11, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.navbar.scrolled {
  padding: 14px 0;
  background: rgba(11, 11, 11, 0.95);
  border-bottom-color: var(--border-dark);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-white);
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--fire-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 20px;
  position: relative;
  overflow: hidden;
}
.logo-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: translateX(-100%);
  animation: shine 3s infinite;
}
@keyframes shine {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}
.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 2px;
}
.logo-text span { color: var(--orange); }

.nav-menu {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-menu a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  transition: var(--transition);
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--fire-grad);
  transition: width 0.3s ease;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--text-white);
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 12px 28px;
  background: var(--fire-grad);
  color: var(--text-white);
  text-decoration: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(255, 122, 0, 0.3);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 122, 0, 0.5);
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 24px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 0 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?w=1920') center/cover;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(11,11,11,0.7) 0%,
    rgba(11,11,11,0.85) 60%,
    rgba(11,11,11,0.95) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0;
  animation: floatUp 8s linear infinite;
  box-shadow: 0 0 10px var(--orange);
}
@keyframes floatUp {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.8; }
  100% { transform: translateY(-100px) scale(1.5); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 122, 0, 0.1);
  border: 1px solid rgba(255, 122, 0, 0.3);
  border-radius: 50px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 32px;
  font-weight: 600;
  animation: fadeUp 1s ease 0.2s both;
}
.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--orange);
  animation: blink 2s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 9vw, 120px);
  line-height: 0.95;
  letter-spacing: 2px;
  margin-bottom: 24px;
  animation: fadeUp 1s ease 0.4s both;
}
.hero-title .highlight {
  background: var(--fire-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
}

.hero-subtitle {
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto 48px;
  animation: fadeUp 1s ease 0.6s both;
}

.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s ease 0.8s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--fire-grad);
  color: var(--text-white);
  box-shadow: 0 8px 25px rgba(255, 122, 0, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 122, 0, 0.55);
}
.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 2px solid var(--text-white);
}
.btn-outline:hover {
  background: var(--text-white);
  color: var(--bg-black);
  transform: translateY(-3px);
}

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

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-gray);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2s infinite;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: var(--fire-grad);
  margin: 12px auto 0;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}
@media (max-height: 740px) {
  .hero-scroll { display: none; }
}

/* ============================================
   SECTION DEFAULTS
   ============================================ */
section {
  padding: 100px 0;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}
.section-tag {
  display: inline-block;
  font-size: 13px;
  color: var(--orange);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
  position: relative;
  padding-left: 40px;
}
.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--orange);
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.section-title .highlight {
  background: var(--fire-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-subtitle {
  color: var(--text-gray);
  font-size: 16px;
}

/* ============================================
   ABOUT PREVIEW
   ============================================ */
.about-preview {
  background: var(--bg-dark);
  position: relative;
}
.about-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  height: 500px;
}
.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.about-image-wrap::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 40px;
  bottom: 40px;
  border: 2px solid var(--orange);
  border-radius: 8px;
  z-index: -1;
}
.about-exp-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  background: var(--fire-grad);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 20px 50px rgba(255, 122, 0, 0.4);
}
.about-exp-badge .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  line-height: 1;
}
.about-exp-badge .label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 8px;
}

.about-text h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 24px;
}
.about-text p {
  color: var(--text-gray);
  margin-bottom: 20px;
  font-size: 16px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-feature i {
  width: 40px;
  height: 40px;
  background: rgba(255, 122, 0, 0.1);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 16px;
}
.about-feature span {
  font-size: 14px;
  font-weight: 500;
}

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  padding: 40px 32px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--fire-grad);
  transition: width 0.5s ease;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,122,0,0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--orange);
  background: var(--bg-gray);
}
.service-card:hover::before { width: 100%; }
.service-card:hover::after { opacity: 1; }

.service-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  color: var(--orange);
  letter-spacing: 3px;
  margin-bottom: 24px;
}
.service-icon {
  width: 70px;
  height: 70px;
  background: var(--fire-grad-soft);
  border: 1px solid rgba(255, 122, 0, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--orange);
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--fire-grad);
  color: var(--text-white);
  transform: rotate(-5deg) scale(1.1);
}
.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}
.service-card p {
  color: var(--text-gray);
  font-size: 14px;
  margin-bottom: 20px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}
.service-link i {
  transition: transform 0.3s ease;
}
.service-card:hover .service-link i {
  transform: translateX(6px);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,122,0,0.08) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  border-radius: 50%;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.why-card {
  text-align: center;
  padding: 36px 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  background: rgba(255,122,0,0.05);
}
.why-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--fire-grad);
  border-radius: 50%;
  font-size: 22px;
  color: var(--text-white);
  position: relative;
}
.why-icon::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(255,122,0,0.3);
  border-radius: 50%;
}
.why-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.why-card p {
  font-size: 13px;
  color: var(--text-gray);
}

/* ============================================
   STATS
   ============================================ */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-black) 0%, var(--bg-dark) 100%);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1497435334941-8c899ee9e8e9?w=1920') center/cover;
  opacity: 0.08;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}
.stat-item {
  text-align: center;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20%;
  right: -20px;
  width: 1px;
  height: 60%;
  background: linear-gradient(180deg, transparent, var(--border-dark), transparent);
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  background: var(--fire-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-gray);
  font-weight: 500;
}

/* ============================================
   INDUSTRIES
   ============================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.industry-card {
  position: relative;
  height: 280px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.industry-card:hover img { transform: scale(1.1); }
.industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.95) 100%);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  transition: var(--transition);
}
.industry-card:hover .industry-overlay {
  background: linear-gradient(180deg, rgba(255,122,0,0.2) 0%, rgba(0,0,0,0.95) 100%);
}
.industry-info i {
  color: var(--orange);
  font-size: 28px;
  margin-bottom: 12px;
}
.industry-info h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { background: var(--bg-dark); }
.testimonials-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  scrollbar-width: none;
}
.testimonials-slider::-webkit-scrollbar { display: none; }

.testimonial-card {
  min-width: calc(33.333% - 16px);
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  padding: 36px 30px;
  border-radius: 8px;
  scroll-snap-align: start;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 30px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 100px;
  line-height: 1;
  color: var(--orange);
  opacity: 0.2;
}
.testimonial-stars {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 14px;
}
.testimonial-text {
  font-size: 15px;
  color: var(--text-gray);
  margin-bottom: 24px;
  line-height: 1.7;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--fire-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}
.testimonial-name {
  font-weight: 600;
  font-size: 15px;
}
.testimonial-role {
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================
   ENQUIRY FORM
   ============================================ */
.enquiry-section {
  position: relative;
  overflow: hidden;
}
.enquiry-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?w=1920') center/cover;
  opacity: 0.1;
}

.enquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  position: relative;
}

.enquiry-info h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  line-height: 1.05;
}
.enquiry-info p {
  color: var(--text-gray);
  margin-bottom: 32px;
}
.enquiry-contact-list {
  list-style: none;
  margin-top: 30px;
}
.enquiry-contact-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-dark);
}
.enquiry-contact-list i {
  width: 44px;
  height: 44px;
  background: var(--fire-grad-soft);
  color: var(--orange);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border: 1px solid rgba(255,122,0,0.3);
}
.enquiry-contact-list strong { display: block; font-size: 15px; }
.enquiry-contact-list span { font-size: 13px; color: var(--text-gray); }

.enquiry-form {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  padding: 40px;
  border-radius: 8px;
  position: relative;
}
.enquiry-form::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: var(--fire-grad);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-control {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-black);
  border: 1px solid var(--border-dark);
  color: var(--text-white);
  font-family: inherit;
  font-size: 14px;
  border-radius: 4px;
  transition: var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,122,0,0.1);
}
.form-control::placeholder { color: var(--text-mute); }
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #050505;
  padding: 80px 0 30px;
  border-top: 1px solid var(--border-dark);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-about p {
  color: var(--text-gray);
  font-size: 14px;
  margin: 20px 0;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--bg-gray);
  color: var(--text-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid var(--border-dark);
}
.footer-social a:hover {
  background: var(--fire-grad);
  color: var(--text-white);
  transform: translateY(-3px);
  border-color: transparent;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 24px;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--fire-grad);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul a:hover {
  color: var(--orange);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--text-gray);
}
.footer-contact-item i {
  color: var(--orange);
  margin-top: 4px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--text-mute);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  animation: pulseGreen 2s infinite;
}
@keyframes pulseGreen {
  0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0); }
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: var(--fire-grad);
  color: var(--text-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 10px 30px rgba(255,122,0,0.4);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,11,11,0.85), rgba(11,11,11,0.95));
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-gray);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.breadcrumb a {
  color: var(--text-white);
  text-decoration: none;
}
.breadcrumb i {
  color: var(--orange);
  font-size: 10px;
}

/* ============================================
   PRODUCTS
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--orange);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.product-img {
  height: 250px;
  position: relative;
  overflow: hidden;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img img { transform: scale(1.08); }
.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--fire-grad);
  color: var(--text-white);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}
.product-body { padding: 30px; }
.product-body h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.product-specs {
  list-style: none;
  margin: 20px 0;
}
.product-specs li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-dark);
  font-size: 13px;
}
.product-specs li span:first-child { color: var(--text-gray); }
.product-specs li span:last-child { color: var(--orange); font-weight: 600; }

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 16px;
}
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(255,122,0,0.85) 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 30px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i {
  font-size: 32px;
  color: var(--text-white);
}

/* ============================================
   CONTENT PAGES (privacy, terms)
   ============================================ */
.content-page {
  padding: 80px 0;
  background: var(--bg-dark);
}
.content-wrap {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-card);
  padding: 60px;
  border-radius: 8px;
  border: 1px solid var(--border-dark);
}
.content-wrap h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  margin: 36px 0 18px;
  letter-spacing: 1px;
  color: var(--orange);
}
.content-wrap h2:first-child { margin-top: 0; }
.content-wrap p, .content-wrap li {
  color: var(--text-gray);
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.8;
}
.content-wrap ul {
  padding-left: 24px;
  margin-bottom: 20px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  transition: var(--transition);
}
.contact-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
}
.contact-card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  background: var(--fire-grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--text-white);
}
.contact-card h4 {
  font-size: 18px;
  margin-bottom: 12px;
}
.contact-card p {
  color: var(--text-gray);
  font-size: 14px;
}
.contact-card a {
  color: var(--orange);
  text-decoration: none;
  display: block;
  margin-top: 4px;
}

.map-wrap {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  height: 450px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(0.9) hue-rotate(180deg);
}

/* ============================================
   AOS (Custom Reveal)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid,
  .why-grid,
  .industries-grid,
  .products-grid,
  .contact-cards,
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .stat-item:nth-child(2)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .enquiry-grid { grid-template-columns: 1fr; gap: 50px; }
  .testimonial-card { min-width: calc(50% - 12px); }
}

@media (max-width: 768px) {
  section { padding: 70px 0; }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    transform: translateY(-150%);
    transition: transform 0.4s ease;
    border-bottom: 1px solid var(--border-dark);
  }
  .nav-menu.active { transform: translateY(0); }
  .hamburger { display: block; }
  .nav-cta { display: none; }
  .services-grid,
  .why-grid,
  .industries-grid,
  .products-grid,
  .contact-cards,
  .gallery-grid,
  .stats-grid,
  .footer-grid,
  .form-row,
  .about-features { grid-template-columns: 1fr; }
  .gallery-item.tall { grid-row: span 1; }
  .stat-item::after { display: none; }
  .testimonial-card { min-width: 100%; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }
  .content-wrap { padding: 30px 24px; }
  .enquiry-form { padding: 30px 24px; }
  .about-exp-badge { width: 120px; height: 120px; right: 10px; bottom: -20px; }
  .about-exp-badge .num { font-size: 40px; }
  .whatsapp-float { width: 50px; height: 50px; font-size: 22px; bottom: 20px; right: 20px; }
  .back-to-top { width: 42px; height: 42px; bottom: 20px; left: 20px; }
}
