/* ==========================================================================
   Nirmaanta Infrasol Pvt. Ltd. - Master Stylesheet
   Design Token System & Custom UI Framework
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@500;600;700;800&family=Plus+Jakarta+Sans:wght@600;700;800&family=Red+Hat+Display:wght@700;800;900&display=swap');

:root {
  /* Brand Color System */
  --brand-orange: #FF5500;        /* Exactly matches logo orange */
  --brand-orange-hover: #D94800;  /* Darker orange for hover states */
  --brand-orange-glow: rgba(255, 85, 0, 0.25);
  
  /* Neutral Color Palette (Dark Grey, Steel, Charcoal & Whites) */
  --bg-dark-main: #0B0F17;
  --bg-dark-card: #141C2B;
  --bg-dark-elevated: #1D2638;
  --border-dark: #2A364F;

  --bg-light-main: #F8FAFC;
  --bg-light-card: #FFFFFF;
  --bg-light-alt: #F1F5F9;
  --border-light: #E2E8F0;

  --text-dark-primary: #0F172A;
  --text-dark-muted: #475569;
  --text-light-primary: #F8FAFC;
  --text-light-muted: #94A3B8;

  /* Fonts */
  --font-header: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Shadow & Transitions */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.12);
  --shadow-orange: 0 10px 25px rgba(255, 85, 0, 0.25);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset */
*, *::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-light-main);
  color: var(--text-dark-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   HEADER FONT COLOR DIRECTIVE (USER EXPLICIT REQUIREMENT)
   "only header font will be orange color like logo, rest website color above given color"
   ========================================================================== */
h1, h2, h3, h4, h5, h6,
.header-font,
.section-title,
.card-title,
.hero-title,
.modal-title,
.nav-logo-text,
.footer-heading {
  font-family: var(--font-header);
  color: var(--brand-orange) !important; /* Enforces Logo Orange headers */
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }

/* Subtitle & Body Colors */
p, span, li, label, input, select, textarea {
  color: var(--text-dark-muted);
}

.dark-bg p, .dark-bg span, .dark-bg li {
  color: var(--text-light-muted);
}

/* Containers & Layout Utility */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 3.5rem 0;
  }
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.section-header {
  margin-bottom: 3.5rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  display: inline-block;
  padding: 0.35rem 1rem;
  background-color: var(--brand-orange-glow);
  color: var(--brand-orange) !important;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.section-description {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: var(--text-dark-muted);
}

.dark-bg .section-description {
  color: var(--text-light-muted);
}

/* Custom Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-header);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--brand-orange);
  color: #FFFFFF !important;
  box-shadow: 0 4px 15px rgba(255, 85, 0, 0.3);
}

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

.btn-secondary {
  background-color: transparent;
  border-color: var(--brand-orange);
  color: var(--brand-orange) !important;
}

.btn-secondary:hover {
  background-color: var(--brand-orange);
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

.btn-dark {
  background-color: var(--bg-dark-card);
  color: #FFFFFF !important;
  border: 1px solid var(--border-dark);
}

.btn-dark:hover {
  background-color: var(--bg-dark-elevated);
  border-color: var(--brand-orange);
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.875rem;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-normal);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
  gap: 1.5rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 1;
  min-width: 0;
  max-height: 84px;
  padding: 0.2rem 0;
}

.nav-logo-brand-img {
  height: 72px;
  width: auto;
  max-width: 450px;
  object-fit: contain;
  flex-shrink: 1;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  filter: drop-shadow(0 2px 8px rgba(255, 85, 0, 0.18));
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-logo-title {
  font-family: var(--font-header);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand-orange) !important;
  letter-spacing: 0.06em;
  line-height: 1;
}

.nav-logo-sub {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--brand-orange) !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin-left: auto;
  margin-right: 1rem;
}

.nav-link {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark-primary);
  transition: var(--transition-fast);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--brand-orange);
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-dark-primary);
  cursor: pointer;
}

/* Mobile Nav Drawer & Responsive Header */
@media (max-width: 1024px) {
  .navbar-container {
    height: 74px;
    padding: 0 1rem;
    gap: 0.75rem;
  }

  .nav-brand {
    max-width: calc(100% - 50px);
  }

  .nav-logo-brand-img {
    height: 48px !important;
    max-width: 100% !important;
  }

  .nav-menu {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-150%);
    transition: var(--transition-normal);
    opacity: 0;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
  }

  .mobile-toggle {
    display: block;
    flex-shrink: 0;
  }

  .nav-actions {
    display: none;
  }
}

@media (max-width: 480px) {
  .navbar-container {
    height: 66px;
    padding: 0 0.75rem;
  }

  .nav-brand {
    max-width: calc(100% - 46px);
  }

  .nav-logo-brand-img {
    height: 40px !important;
    max-width: 100% !important;
  }

  .nav-menu {
    top: 66px;
  }

  .hero {
    padding-top: 96px;
  }
}

@media (max-width: 360px) {
  .navbar-container {
    height: 60px;
    padding: 0 0.5rem;
  }

  .nav-brand {
    max-width: calc(100% - 42px);
  }

  .nav-logo-brand-img {
    height: 34px !important;
    max-width: 100% !important;
  }

  .nav-menu {
    top: 60px;
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 130px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(11, 15, 25, 0.65) 0%, rgba(26, 36, 52, 0.72) 100%), 
              url('https://images.unsplash.com/photo-1541888946425-d0fbb186a5b7?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
  color: #FFFFFF;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 85, 0, 0.12) 0%, transparent 50%),
              linear-gradient(to bottom, rgba(11,15,25,0.2) 0%, rgba(11,15,25,0.7) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  background: rgba(255, 85, 0, 0.18);
  border: 1px solid rgba(255, 85, 0, 0.4);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-orange) !important;
  margin-bottom: 1.5rem;
}

.hero-title {
  color: #FFFFFF !important;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #CBD5E1;
  margin-bottom: 2.5rem;
  max-width: 720px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 3.5rem;
}

.hero-stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  padding: 1.8rem;
  background: rgba(20, 28, 43, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  margin-top: 2rem;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-family: var(--font-header);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--brand-orange) !important;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-light-muted);
  margin-top: 0.4rem;
  font-weight: 500;
}

/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.about-img-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.about-experience-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: var(--bg-dark-card);
  border: 2px solid var(--brand-orange);
  padding: 1.2rem 1.8rem;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.exp-years {
  font-family: var(--font-header);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand-orange) !important;
  line-height: 1;
}

.exp-text {
  font-size: 0.85rem;
  color: var(--text-light-primary);
  font-weight: 600;
  margin-top: 0.2rem;
}

.about-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
}

@media (max-width: 600px) {
  .about-feature-list {
    grid-template-columns: 1fr;
  }
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.about-feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand-orange-glow);
  color: var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}

.about-feature-text {
  font-weight: 600;
  color: var(--text-dark-primary);
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

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

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--brand-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 85, 0, 0.3);
}

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

.service-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: rgba(255, 85, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--brand-orange);
  font-size: 1.8rem;
}

.service-title {
  color: var(--brand-orange) !important;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.service-list {
  list-style: none;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand-orange);
  font-weight: bold;
}

.service-card-cta {
  margin-top: auto;
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.strengths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.strength-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 1.8rem 1.4rem;
  text-align: center;
  transition: var(--transition-normal);
}

.strength-card:hover {
  border-color: var(--brand-orange);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.strength-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: var(--brand-orange);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 15px rgba(255, 85, 0, 0.35);
}

.strength-title {
  color: var(--brand-orange) !important;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.strength-desc {
  font-size: 0.9rem;
  color: var(--text-light-muted);
}

/* ==========================================================================
   PROCESS TIMELINE
   ========================================================================== */
.timeline-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-wrapper::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--border-light);
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .timeline-wrapper::before {
    left: 24px;
  }
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  justify-content: flex-end;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-left: 60px;
  }
}

.timeline-node {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-orange);
  color: #FFFFFF;
  font-family: var(--font-header);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px rgba(255, 85, 0, 0.2);
  z-index: 2;
}

@media (max-width: 768px) {
  .timeline-node {
    left: 24px;
  }
}

.timeline-card {
  width: 44%;
  background: var(--bg-light-card);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.timeline-item:hover .timeline-card {
  border-color: var(--brand-orange);
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .timeline-card {
    width: 100%;
  }
}

.timeline-title {
  color: var(--brand-orange) !important;
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

/* ==========================================================================
   INDUSTRIES WE SERVE
   ========================================================================== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.industry-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 220px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

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

.industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,15,23,0.92) 0%, rgba(11,15,23,0.3) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.industry-card:hover .industry-img {
  transform: scale(1.1);
}

.industry-title {
  color: var(--brand-orange) !important;
  font-size: 1.25rem;
  margin-bottom: 0.2rem;
}

/* ==========================================================================
   STATS COUNTER SECTION
   ========================================================================== */
.counter-section {
  background: var(--bg-dark-main);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.counter-box {
  text-align: center;
  padding: 2rem 1rem;
}

.counter-value {
  font-family: var(--font-header);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--brand-orange) !important;
  line-height: 1;
}

.counter-label {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-light-primary);
  margin-top: 0.6rem;
}

/* ==========================================================================
   GALLERY & LIGHTBOX
   ========================================================================== */
.gallery-filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}

.filter-tab {
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  background: var(--bg-light-alt);
  border: 1px solid var(--border-light);
  color: var(--text-dark-primary);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-tab:hover, .filter-tab.active {
  background: var(--brand-orange);
  color: #FFFFFF;
  border-color: var(--brand-orange);
}

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

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 250px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

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

.gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 1rem;
  text-align: center;
}

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

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

.gallery-title {
  color: var(--brand-orange) !important;
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.gallery-cat {
  font-size: 0.85rem;
  color: var(--text-light-muted);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(11, 15, 23, 0.95);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
  object-fit: contain;
}

.lightbox-caption {
  margin-top: 1rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 2.5rem;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,85,0,0.3);
  border: none;
  color: #FFFFFF;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-nav:hover {
  background: var(--brand-orange);
}

.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

/* ==========================================================================
   TESTIMONIALS & FAQ
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-light-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.testimonial-rating {
  color: #F59E0B;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  color: var(--brand-orange) !important;
  font-size: 1.05rem;
  font-weight: 700;
}

.author-company {
  font-size: 0.85rem;
  color: var(--text-dark-muted);
}

/* FAQ Accordion */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-light-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-question {
  padding: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  user-select: none;
}

.faq-question-text {
  color: var(--brand-orange) !important;
  font-size: 1.1rem;
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--brand-orange);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.4rem;
  background: var(--bg-light-alt);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 1.2rem 1.4rem 1.4rem;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* ==========================================================================
   CONTACT & ENQUIRY FORM
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 2.5rem;
  color: #FFFFFF;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--brand-orange);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 85, 0, 0.35);
}

.info-title {
  color: var(--brand-orange) !important;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.info-text {
  color: var(--text-light-muted);
  font-size: 0.95rem;
}

.map-embed {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  border: 0;
  margin-top: 1.5rem;
}

/* Form Styles */
.enquiry-form-card {
  background: var(--bg-light-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark-primary);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
  background-color: var(--bg-light-main);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px rgba(255,85,0,0.15);
  background-color: #FFFFFF;
}

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

/* ==========================================================================
   MODALS (ADMIN, CAREERS, PROFILE, LEGAL, SUCCESS)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2500;
  background: rgba(11, 15, 23, 0.85);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.active {
  display: flex;
}

.modal-container {
  background: var(--bg-light-card);
  border-radius: 16px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.modal-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-body {
  padding: 2rem;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-dark-muted);
  cursor: pointer;
}

/* Admin Dashboard Table */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.admin-table th, .admin-table td {
  padding: 0.8rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.875rem;
}

.admin-table th {
  background: var(--bg-light-alt);
  font-weight: 600;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1500;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: var(--transition-fast);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--bg-dark-main);
  border-top: 1px solid var(--border-dark);
  padding-top: 4rem;
  padding-bottom: 2rem;
  color: var(--text-light-muted);
}

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

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand-logo {
  height: 54px;
  margin-bottom: 1.2rem;
}

.footer-brand-title {
  font-family: 'Red Hat Display', 'Outfit', system-ui, -apple-system, sans-serif !important;
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--brand-orange) !important;
  margin-bottom: 0.8rem;
  letter-spacing: -0.015em;
  line-height: 1.2;
  text-transform: none !important;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: var(--text-light-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--brand-orange);
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
