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

/* ==========================================
   DESIGN TOKENS & SYSTEM VARIABLES
   ========================================== */
:root {
  /* Colors */
  --primary: #13294B;          /* Deep Navy Blue */
  --primary-light: #1E3A6E;    /* Light Navy */
  --primary-dark: #0A1629;     /* Deep Shadow Navy */
  --accent-yellow: #F4B400;    /* Industrial Yellow */
  --accent-orange: #F57C00;    /* Orange Accent */
  --accent-orange-hover: #E65100;
  --bg-dark: #070B13;          /* Dark Body Background */
  --bg-darker: #04060A;        /* Darker Body Background */
  --bg-card: rgba(19, 41, 75, 0.25); /* Semi-transparent navy */
  --bg-glass: rgba(7, 11, 19, 0.75);
  
  /* Text Colors */
  --text-light: #FFFFFF;
  --text-gray: #A0AEC0;
  --text-dark: #1A202C;
  --text-yellow: #F4B400;
  
  /* Fonts */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Poppins', sans-serif;

  /* Layout & Spacing */
  --container-max-width: 1200px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;

  /* Borders & Shadows */
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-glow: rgba(244, 180, 0, 0.25);
  --shadow-neon-yellow: 0 0 15px rgba(244, 180, 0, 0.35);
  --shadow-neon-orange: 0 0 20px rgba(245, 124, 0, 0.45);
  --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.5);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 5px;
  border: 2px solid var(--bg-darker);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-yellow);
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}

/* ==========================================
   SCROLL PROGRESS BAR
   ========================================== */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-yellow) 0%, var(--accent-orange) 100%);
  width: 0%;
  z-index: 10000;
  box-shadow: 0 0 10px rgba(244, 180, 0, 0.5);
  transition: width 0.1s ease-out;
}

/* ==========================================
   CURSOR GLOW EFFECT
   ========================================== */
.cursor-glow {
  display: none;
}

@media (min-width: 1024px) {
  .cursor-glow {
    display: block;
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(244, 180, 0, 0.08) 0%, rgba(245, 124, 0, 0.03) 40%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 1;
    mix-blend-mode: screen;
    transition: width 0.2s, height 0.2s;
  }
}

/* ==========================================
   LAYOUT UTILITIES
   ========================================== */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section {
  padding: 6rem 0;
  position: relative;
  z-index: 2;
}

.section-tight {
  padding: 4rem 0;
  position: relative;
  z-index: 2;
}

/* Grids & Flex */
.grid {
  display: grid;
  gap: 2rem;
}
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

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

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-accent { color: var(--accent-yellow); }
.text-orange { color: var(--accent-orange); }
.text-gray { color: var(--text-gray); }

/* Spacing Helpers */
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }

.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }

/* ==========================================
   GLASSMORPHISM & PREMIUM CARDS
   ========================================== */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-md);
  padding: 2.5rem 2rem;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-dark);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
  z-index: 1;
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-glass-glow);
  box-shadow: var(--shadow-neon-yellow), var(--shadow-dark);
}

.glass-card-orange:hover {
  border-color: rgba(245, 124, 0, 0.35);
  box-shadow: var(--shadow-neon-orange), var(--shadow-dark);
}

/* ==========================================
   BUTTONS & CTAs
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-accent);
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
  position: relative;
  z-index: 5;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-orange) 100%);
  color: var(--bg-darker);
  box-shadow: 0 4px 15px rgba(244, 180, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(245, 124, 0, 0.5), var(--shadow-neon-orange);
  color: var(--bg-darker);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-yellow);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-neon-yellow);
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.btn-call {
  background: #1084FF;
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(16, 132, 255, 0.3);
}

.btn-call:hover {
  background: #0070e0;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(16, 132, 255, 0.5);
}

/* Floating WhatsApp Badge (Desktop/Tablet Only) */
.floating-whatsapp {
  display: none;
  position: fixed;
  bottom: 80px;
  right: 25px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 20px rgba(37, 211, 102, 0.4);
  color: white;
  font-size: 1.75rem;
  transition: var(--transition-smooth);
}

.floating-whatsapp:hover {
  transform: scale(1.1) rotate(10deg);
  background-color: #22c35e;
}

@media (min-width: 768px) {
  .floating-whatsapp {
    display: flex;
    bottom: 30px;
  }
}

/* ==========================================
   HEADER SECTION
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1005;
  padding: 0;
  transition: var(--transition-smooth);
}

/* Emergency Support Topbar inside Sticky Header */
.topbar {
  background: var(--accent-yellow);
  color: var(--bg-darker);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.5rem 0;
  text-align: center;
  position: relative;
  z-index: 1001;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease, opacity 0.3s ease;
  max-height: 80px;
  opacity: 1;
  overflow: hidden;
}

.topbar-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.topbar-separator {
  opacity: 0.6;
  display: inline-block;
}

.topbar-link {
  color: var(--bg-darker);
  text-decoration: underline;
  transition: var(--transition-fast);
}

.topbar-link:hover {
  color: var(--primary-light);
}

.topbar-slash {
  color: var(--bg-darker);
}

.header.scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  box-shadow: var(--shadow-dark);
}

.header.scrolled .topbar {
  max-height: 0;
  padding: 0;
  opacity: 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  transition: var(--transition-smooth);
}

.header.scrolled .header-container {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1002;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.logo-img {
  height: 48px;
  width: auto;
  border-radius: 4px;
  border: 1px solid var(--border-glass-glow);
}

.brand-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.1;
  color: var(--text-light);
  text-transform: uppercase;
}

.brand-text span {
  display: block;
  font-size: 0.65rem;
  color: var(--accent-yellow);
  letter-spacing: 0.15em;
  margin-top: 2px;
}

/* Nav Menu Desktop */
.nav-menu {
  display: none;
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 2.25rem;
    list-style: none;
  }

  .nav-link {
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-gray);
    position: relative;
    padding: 0.5rem 0;
  }

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

  .nav-link:hover, .nav-link.active {
    color: var(--text-light);
  }

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

.header-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .header-actions {
    display: flex;
  }
}

/* Hamburger Button */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 1002;
  border: none;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--text-light);
  border-radius: 3px;
  transition: var(--transition-smooth);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--accent-yellow);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background-color: var(--accent-yellow);
}

@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--bg-darker);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  transition: var(--transition-smooth);
}

.mobile-nav.active {
  right: 0;
}

/* Hide header background/blur/shadow, logo, and topbar when mobile menu is active */
body.menu-open .header {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

body.menu-open .logo-link {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

body.menu-open .topbar {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  max-height: 0 !important;
  padding: 0 !important;
  transition: all 0.3s ease;
}

.mobile-nav-list {
  list-style: none;
  text-align: center;
  margin-bottom: 3rem;
}

.mobile-nav-item {
  margin: 1.5rem 0;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-gray);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--accent-yellow);
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 300px;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 8rem;
  padding-bottom: 5rem;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero {
    padding-top: 12rem !important;
    padding-bottom: 4rem !important;
  }
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: contrast(1.1) brightness(0.7);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(19, 41, 75, 0.4) 0%, rgba(7, 11, 19, 0.95) 75%);
  z-index: 2;
}

/* Abstract visual elements in hero */
.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.shape-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.shape-glow-1 {
  top: 20%;
  left: 10%;
  width: 400px;
  height: 400px;
  background-color: var(--accent-yellow);
}

.shape-glow-2 {
  bottom: 10%;
  right: 10%;
  width: 500px;
  height: 500px;
  background-color: var(--accent-orange);
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 800px;
  text-align: center;
}

.badge-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-badge i {
  color: var(--accent-yellow);
}

.hero h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  background: linear-gradient(90deg, var(--accent-yellow) 0%, var(--accent-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 4rem;
  }
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 3rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 576px) {
  .hero-actions {
    flex-direction: row;
  }
}

.scroll-down {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

.scroll-line {
  width: 2px;
  height: 50px;
  background: linear-gradient(180deg, var(--accent-yellow) 0%, transparent 100%);
  position: relative;
  overflow: hidden;
}

.scroll-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 15px;
  background: var(--text-light);
  animation: scroll-dot 2s infinite linear;
}

@keyframes scroll-dot {
  0% { transform: translateY(-100%); }
  80% { transform: translateY(350%); }
  100% { transform: translateY(350%); }
}

/* ==========================================
   SECTION HEADER
   ========================================== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-subtitle {
  font-family: var(--font-accent);
  color: var(--accent-yellow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.75rem;
  }
}

.section-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-yellow) 0%, var(--accent-orange) 100%);
  margin: 0 auto;
  border-radius: 2px;
}

/* ==========================================
   TRUST SECTION / COUNTERS
   ========================================== */
.trust-stats {
  background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.stat-icon {
  font-size: 2.25rem;
  color: var(--accent-yellow);
  margin-bottom: 0.75rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.25rem;
  background: linear-gradient(90deg, #FFFFFF 0%, var(--accent-yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

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

.about-img-main {
  width: 100%;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-dark);
  filter: contrast(1.05) brightness(0.95);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border: 2px solid var(--accent-yellow);
  border-radius: var(--border-radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-neon-yellow), var(--shadow-dark);
  text-align: center;
  max-width: 180px;
  z-index: 3;
}

@media (max-width: 576px) {
  .about-badge {
    bottom: -15px;
    right: 5px;
    padding: 1rem;
    max-width: 150px;
  }
}

.about-badge-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-yellow);
}

.about-badge-txt {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 2px;
}

.about-bullets {
  list-style: none;
  margin: 2rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 576px) {
  .about-bullets {
    grid-template-columns: 1fr 1fr;
  }
}

.about-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-bullet-item i {
  color: var(--accent-yellow);
  margin-top: 0.25rem;
}

.about-bullet-item p {
  font-size: 0.95rem;
  font-weight: 500;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(244, 180, 0, 0.1);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244, 180, 0, 0.25);
  font-size: 1.75rem;
  color: var(--accent-yellow);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  background: var(--accent-yellow);
  color: var(--bg-darker);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 15px rgba(244, 180, 0, 0.4);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-yellow);
}

.service-link i {
  transition: var(--transition-fast);
}

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

/* ==========================================
   WHY CHOOSE US SECTION
   ========================================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.features-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 576px) {
  .features-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-box {
  display: flex;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  padding: 1.5rem;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-smooth);
}

.feature-box:hover {
  background: var(--bg-card);
  border-color: rgba(245, 124, 0, 0.35);
  box-shadow: var(--shadow-neon-orange);
  transform: translateY(-4px);
}

.feature-box i {
  font-size: 1.5rem;
  color: var(--accent-orange);
  margin-top: 0.2rem;
}

.feature-box h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature-box p {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.4;
}

/* ==========================================
   PROCESS SECTION (TIMELINE)
   ========================================== */
.process-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-yellow) 0%, var(--accent-orange) 50%, var(--primary-light) 100%);
  z-index: 1;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.process-num {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border: 2px solid var(--accent-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent-yellow);
  box-shadow: 0 0 10px rgba(244, 180, 0, 0.3);
  flex-shrink: 0;
}

.process-content {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 1.75rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-dark);
  flex-grow: 1;
}

.process-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.process-content p {
  font-size: 0.95rem;
  color: var(--text-gray);
}

@media (min-width: 768px) {
  .process-timeline {
    flex-direction: row;
    gap: 1rem;
  }
  
  .process-timeline::before {
    top: 22px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-yellow) 0%, var(--accent-orange) 50%, var(--primary-light) 100%);
  }

  .process-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    flex: 1;
  }

  .process-num {
    margin: 0 auto;
  }

  .process-content {
    padding: 1.5rem 1rem;
  }
}

/* ==========================================
   GALLERY SECTION (MASONRY)
   ========================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 576px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-dark);
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(7, 11, 19, 0) 40%, rgba(7, 11, 19, 0.95) 100%);
  opacity: 0;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  z-index: 2;
}

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

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

.gallery-category {
  font-family: var(--font-accent);
  color: var(--accent-yellow);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.gallery-title {
  font-size: 1.15rem;
  font-weight: 700;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(4, 6, 10, 0.95);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 80vh;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-glass);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  background: var(--accent-yellow);
  color: var(--bg-darker);
}

/* Before / After Slider Component */
.ba-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-dark);
}

.ba-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-before {
  z-index: 1;
}

.ba-after {
  z-index: 2;
  width: 50%; /* JS controlled */
}

.ba-label {
  position: absolute;
  bottom: 1rem;
  background: rgba(7, 11, 19, 0.85);
  color: white;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 3;
}

.ba-before .ba-label {
  left: 1rem;
}

.ba-after .ba-label {
  right: 1rem;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%; /* JS controlled */
  width: 4px;
  background: var(--accent-yellow);
  z-index: 4;
  cursor: ew-resize;
  transform: translateX(-50%);
}

.ba-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--accent-yellow);
  color: var(--bg-darker);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  font-size: 1.15rem;
  pointer-events: none;
}

/* ==========================================
   TESTIMONIALS (AUTO SLIDER)
   ========================================== */
.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.testimonials-wrapper {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
  flex-shrink: 0;
  width: 100%;
  padding: 0 1rem;
}

.testimonial-card {
  text-align: center;
}

.testimonial-stars {
  color: var(--accent-yellow);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
}

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

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent-yellow);
  border: 2px solid var(--border-glass-glow);
}

.testimonial-info h4 {
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}

.testimonial-info p {
  font-size: 0.85rem;
  color: var(--text-gray);
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dot.active {
  background: var(--accent-yellow);
  width: 25px;
  border-radius: 5px;
}

.slider-nav-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  color: var(--text-light);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider-nav-btn:hover {
  background: var(--accent-yellow);
  color: var(--bg-darker);
  border-color: var(--accent-yellow);
  box-shadow: 0 0 15px rgba(244, 180, 0, 0.4);
}

/* ==========================================
   FAQ SECTION (ACCORDION)
   ========================================== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-header {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 1rem;
}

.faq-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-toggle {
  color: var(--accent-yellow);
  transition: var(--transition-fast);
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-item.active {
  border-color: var(--border-glass-glow);
  background: rgba(19, 41, 75, 0.35);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--text-gray);
  font-size: 0.95rem;
}

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

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(244, 180, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-yellow);
  font-size: 1.35rem;
  flex-shrink: 0;
  border: 1px solid rgba(244, 180, 0, 0.2);
}

.contact-details h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.contact-details p, .contact-details a {
  color: var(--text-gray);
  font-size: 0.95rem;
}

.contact-details a:hover {
  color: var(--accent-yellow);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.15rem;
}

.social-link:hover {
  background: var(--accent-yellow);
  color: var(--bg-darker);
  transform: translateY(-3px);
  box-shadow: var(--shadow-neon-yellow);
}

/* Map Mockup */
.map-container {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  margin-top: 2rem;
  position: relative;
  aspect-ratio: 16/9;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

/* Form Styles */
.contact-form-card {
  padding: 3rem 2.5rem;
}

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

@media (min-width: 576px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.form-input {
  width: 100%;
  background: rgba(7, 11, 19, 0.5);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-sm);
  padding: 0.875rem 1.25rem;
  color: var(--text-light);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-input:focus {
  border-color: var(--accent-yellow);
  box-shadow: 0 0 10px rgba(244, 180, 0, 0.2);
  background: rgba(7, 11, 19, 0.8);
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A0AEC0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  background-size: 1.25rem;
  padding-right: 3rem;
}

select.form-input option {
  background: var(--bg-darker);
  color: var(--text-light);
}

/* Success Popup style */
.form-success-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: var(--bg-darker);
  border: 2px solid var(--accent-yellow);
  border-radius: var(--border-radius-md);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-dark), var(--shadow-neon-yellow);
  z-index: 10001;
  text-align: center;
  max-width: 400px;
  width: 90%;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.form-success-popup.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.form-success-icon {
  width: 70px;
  height: 70px;
  background: rgba(244, 180, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-yellow);
  font-size: 2.5rem;
  margin: 0 auto 1.5rem auto;
  border: 2px solid var(--accent-yellow);
}

/* ==========================================
   SERVICE AREAS SECTION
   ========================================== */
.service-areas {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
  border-top: 1px solid var(--border-glass);
}

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

@media (min-width: 768px) {
  .area-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.area-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-sm);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.area-card:hover {
  background: var(--bg-card);
  border-color: var(--accent-yellow);
  box-shadow: var(--shadow-neon-yellow);
  transform: translateY(-4px);
}

.area-card i {
  color: var(--accent-yellow);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.area-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
}

/* ==========================================
   EMERGENCY BANNER
   ========================================== */
.emergency-banner {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #D84315 100%);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
  z-index: 2;
  box-shadow: var(--shadow-neon-orange);
}

.emergency-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(0, 0, 0, 0.05) 10px,
    rgba(0, 0, 0, 0.05) 20px
  );
}

.emergency-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 2;
  text-align: center;
}

@media (min-width: 768px) {
  .emergency-container {
    flex-direction: row;
    text-align: left;
  }
}

.emergency-text h2 {
  font-size: 1.75rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.emergency-text p {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.emergency-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn-emergency-call {
  background: white;
  color: var(--accent-orange-hover);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-emergency-call:hover {
  background: #F5F5F5;
  color: var(--accent-orange-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background-color: var(--bg-darker);
  border-top: 1px solid var(--border-glass);
  padding: 5rem 0 2rem 0;
  position: relative;
  z-index: 2;
}

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

@media (min-width: 576px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  }
}

.footer-about .logo-link {
  margin-bottom: 1.5rem;
}

.footer-desc {
  color: var(--text-gray);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-yellow);
  border-radius: 2px;
}

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

.footer-links a {
  color: var(--text-gray);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent-yellow);
  padding-left: 5px;
}

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

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-gray);
}

.footer-contact-item i {
  color: var(--accent-yellow);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--border-glass);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.copyright {
  color: var(--text-gray);
  font-size: 0.85rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-link {
  color: var(--text-gray);
  font-size: 0.85rem;
}

.footer-legal-link:hover {
  color: var(--accent-yellow);
}

/* ==========================================
   STICKY BOTTOM ACTION BAR (MOBILE ONLY)
   ========================================== */
.mobile-action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(7, 11, 19, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-top: 1px solid var(--border-glass);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  z-index: 998;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
}

.mobile-action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.25rem;
  color: var(--text-gray);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  border-right: 1px solid var(--border-glass);
}

.mobile-action-item:last-child {
  border-right: none;
}

.mobile-action-item i {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.mobile-action-item.whatsapp-action {
  background: #25D366;
  color: white;
}

.mobile-action-item.call-action {
  background: var(--accent-yellow);
  color: var(--bg-darker);
}

.mobile-action-item.book-action {
  background: var(--accent-orange);
  color: white;
}

@media (min-width: 768px) {
  .mobile-action-bar {
    display: none;
  }
}

/* ==========================================
   ANIMATIONS & SCROLL REVEALS
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger transition delay helpers */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* Floating Particle Animation */
.floating-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: var(--accent-yellow);
  border-radius: 50%;
  opacity: 0.3;
  pointer-events: none;
  animation: float-particle 15s infinite ease-in-out;
}

@keyframes float-particle {
  0% { transform: translateY(0) translateX(0) scale(1); opacity: 0.1; }
  50% { transform: translateY(-80px) translateX(40px) scale(1.5); opacity: 0.5; }
  100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.1; }
}

/* Screen Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-darker);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.05);
  border-top-color: var(--accent-yellow);
  border-bottom-color: var(--accent-orange);
  border-radius: 50%;
  animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  margin-bottom: 1.5rem;
}

.preloader-text {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  color: var(--text-light);
  text-transform: uppercase;
}

.preloader-text span {
  color: var(--accent-yellow);
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ==========================================
   CERTIFICATION SECTION
   ========================================== */
.certification-section {
  position: relative;
  background: var(--bg-darker);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.certificate-card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}

.certificate-card {
  position: relative;
  width: 100%;
  max-width: 340px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-dark);
  overflow: hidden;
  transition: var(--transition-smooth);
  background: var(--bg-card);
  padding: 0;
  aspect-ratio: auto; /* Overrides .gallery-item's 4/3 aspect ratio */
}

.certificate-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--border-glass-glow);
  box-shadow: var(--shadow-neon-yellow), var(--shadow-dark);
}

.certificate-img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-md);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

/* ==========================================
   FLEET & OFFERS SECTION
   ========================================== */
.capacity-badge-container {
  margin-top: 1.5rem;
}

.capacity-title {
  display: block;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.capacity-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cap-badge {
  background: rgba(244, 180, 0, 0.1);
  border: 1px solid rgba(244, 180, 0, 0.3);
  color: var(--accent-yellow);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.cap-badge:hover {
  background: var(--accent-yellow);
  color: var(--bg-darker);
  box-shadow: var(--shadow-neon-yellow);
  transform: translateY(-2px);
}

/* Pricing Deal Box */
.pricing-deal-box {
  background: rgba(245, 124, 0, 0.05);
  border: 1px solid rgba(245, 124, 0, 0.2);
  border-radius: var(--border-radius-md);
  padding: 1.5rem;
  position: relative;
}

.price-strikethrough {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 0.25rem;
}

.price-strikethrough span {
  text-decoration: line-through;
  color: #FF4D4D;
  font-weight: 600;
}

.price-new-glow {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.price-label {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-light);
}

.price-value {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: #25D366; /* Bright Offer Green */
  text-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
}

.price-unit {
  font-size: 1rem;
  color: var(--text-gray);
  font-weight: 500;
}

.price-tagline {
  font-size: 0.85rem;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.4;
}

.price-tagline i {
  color: var(--accent-orange);
}

/* Inclusions Grid */
.inclusions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 576px) {
  .inclusions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.inc-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  padding: 1rem;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-smooth);
}

.inc-item:hover {
  background: var(--bg-card);
  border-color: var(--border-glass-glow);
  transform: translateY(-2px);
}

.inc-item i {
  font-size: 1.5rem;
  color: var(--accent-orange);
  width: 24px;
  text-align: center;
}

.inc-item div {
  display: flex;
  flex-direction: column;
}

.inc-item strong {
  font-size: 0.9rem;
  color: var(--text-light);
}

.inc-item span {
  font-size: 0.75rem;
  color: var(--accent-yellow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================
   RESPONSIVE LAYOUT OPTIMIZATIONS
   ========================================== */
.certification-grid {
  align-items: center;
  gap: 4rem;
}

.fleet-grid {
  gap: 3rem;
}

/* Button sizing */
.btn-lg {
  padding: 1.125rem 2.5rem;
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .certification-grid {
    gap: 2.5rem;
  }
  .fleet-grid {
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .glass-card {
    padding: 1.75rem 1.25rem;
  }
  .pricing-deal-box {
    padding: 1.25rem 1rem;
  }
  .inc-item {
    padding: 0.85rem;
    gap: 0.75rem;
  }
  .btn-lg {
    padding: 0.95rem 1.75rem;
    font-size: 0.95rem;
    width: 100%;
  }
}
