:root {
  --primary: #6BA8D6;
  --header-height: 80px;
  --primary-rgb: 107, 168, 214;
  --primary-light: #8EC4E8;
  --primary-soft: #A8D4F0;
  --accent: #F0AB5F;
  --accent-rgb: 240, 171, 95;
  --bg-dark: #0A1A2E;
  --bg-darker: #061220;
  --text-light: #ffffff;
  --text-gold: #FCEFD2;
  --text-muted: #C5DFF5;
  --card-bg: rgba(107, 168, 214, 0.18);
  --glass-bg: rgba(107, 168, 214, 0.35);
  --glass-border: rgba(240, 171, 95, 0.25);
  --shadow-neon: 0 0 15px rgba(240, 171, 95, 0.4);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Cinzel', serif;
  --font-body: 'Montserrat', sans-serif;
  --font-script: 'Alex Brush', cursive;
}

/* Base Styles & Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--primary);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #d6954e;
}

/* Typography & Visual Accents */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: 1.5px;
  color: var(--text-light);
}

.gold-gradient-text {
  background: linear-gradient(135deg, #FFF 0%, var(--accent) 50%, #d6954e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Neon Glow FX */
.neon-glow {
  text-shadow: 
    0 0 5px rgba(240, 171, 95, 0.2),
    0 0 10px rgba(240, 171, 95, 0.3),
    0 0 20px var(--accent),
    0 0 35px var(--accent);
}

.neon-border {
  box-shadow: var(--shadow-neon);
  border: 1px solid var(--accent);
}

/* Layout Utilities */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: var(--accent);
  box-shadow: var(--shadow-neon);
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary);
  border: 1px solid var(--accent);
}

.btn-primary:hover {
  background: transparent;
  color: var(--accent);
  box-shadow: var(--shadow-neon);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent);
  color: var(--accent);
}

.btn-gold-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-gold-outline:hover {
  background: rgba(240, 171, 95, 0.1);
  box-shadow: var(--shadow-neon);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5, 11, 27, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

header.scrolled {
  background: var(--bg-darker);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  padding: 5px 0;
}

header .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 0;
  gap: 20px;
  flex-wrap: nowrap;
}

/* Logo Design */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

header .logo-img {
  height: 72px;
  width: auto;
  max-width: 240px;
  border-radius: 0;
  object-fit: contain;
  object-position: left center;
  transition: var(--transition);
  background: transparent;
  filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.35));
}

header .logo:hover .logo-img {
  transform: scale(1.04);
  filter: drop-shadow(0 4px 12px rgba(240, 171, 95, 0.25));
}

.logo-img {
  height: 54px;
  width: 54px;
  border-radius: 50%;
  object-fit: contain;
  transition: var(--transition);
}

.logo-fallback {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-fallback .arada {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: #fff;
  text-shadow: 0 0 8px var(--accent);
}

.logo-fallback .moment {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 4px;
  margin-top: -5px;
}

/* Nav Links */
nav {
  flex-shrink: 1;
  min-width: 0;
}

nav ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 25px;
  flex-wrap: nowrap;
}

nav li {
  flex-shrink: 0;
}

nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  padding: 5px 0;
  position: relative;
  white-space: nowrap;
  line-height: 1.2;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: var(--transition);
  box-shadow: var(--shadow-neon);
}

nav a:hover, nav li.active a {
  color: var(--accent);
}

nav a:hover::after, nav li.active a::after {
  width: 100%;
}

.nav-ctas {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-shrink: 0;
}

.nav-ctas .btn {
  white-space: nowrap;
  flex-shrink: 0;
  padding: 10px 18px;
  font-size: 0.78rem;
  letter-spacing: 0.6px;
  line-height: 1.2;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.78rem;
  letter-spacing: 0.6px;
  white-space: nowrap;
  line-height: 1.2;
}

.menu-toggle {
  display: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}

/* Header scaling — keep all nav text on one line */
@media (max-width: 1200px) {
  header .nav-container {
    gap: 16px;
  }

  nav ul {
    gap: 18px;
  }

  nav a {
    font-size: 0.8rem;
    letter-spacing: 0.8px;
  }

  header .logo-img {
    height: 76px;
    max-width: 220px;
  }

  .nav-ctas {
    gap: 10px;
  }

  .nav-ctas .btn,
  .btn-sm {
    padding: 9px 14px;
    font-size: 0.72rem;
    letter-spacing: 0.5px;
  }
}

@media (max-width: 1100px) {
  header .nav-container {
    gap: 12px;
  }

  nav ul {
    gap: 14px;
  }

  nav a {
    font-size: 0.74rem;
    letter-spacing: 0.5px;
  }

  header .logo-img {
    height: 68px;
    max-width: 190px;
  }

  .nav-ctas .btn,
  .btn-sm {
    padding: 8px 12px;
    font-size: 0.68rem;
    letter-spacing: 0.4px;
  }
}

@media (max-width: 992px) {
  header .nav-container {
    gap: 10px;
    padding: 10px 0;
  }

  nav ul {
    gap: 10px;
  }

  nav a {
    font-size: 0.68rem;
    letter-spacing: 0.35px;
  }

  header .logo-img {
    height: 60px;
    max-width: 165px;
  }

  .nav-ctas {
    gap: 8px;
  }

  .nav-ctas .btn,
  .btn-sm {
    padding: 7px 10px;
    font-size: 0.62rem;
    letter-spacing: 0.3px;
  }
}

@media (max-width: 860px) {
  nav ul {
    gap: 8px;
  }

  nav a {
    font-size: 0.62rem;
    letter-spacing: 0.25px;
  }

  header .logo-img {
    height: 54px;
    max-width: 145px;
  }

  .nav-ctas .btn,
  .btn-sm {
    padding: 6px 9px;
    font-size: 0.58rem;
  }
}

/* SPA Page Toggle system */
.page-view {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  padding-top: var(--header-height);
}

.page-view.active-page {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: linear-gradient(135deg, #061220 0%, #0a2540 45%, #061220 100%);
}

.hero-video-container video,
.hero-video-container .fallback-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) contrast(1.05);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.hero.hero-image-ready .hero-video-container .fallback-img {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(107, 168, 214, 0.4) 0%,
    rgba(107, 168, 214, 0.65) 60%,
    var(--bg-dark) 100%
  );
  z-index: -1;
}

.hero-content {
  z-index: 10;
  max-width: 900px;
  padding: 0 20px;
  animation: fadeInScale 1.2s ease-out;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-badge {
  background: rgba(240, 171, 95, 0.15);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 15px;
  box-shadow: var(--shadow-neon);
}

.hero h1 {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 span.neon-word {
  font-family: var(--font-script);
  text-transform: none;
  font-size: 4.8rem;
  color: #fff;
  display: block;
  margin: 2px 0;
  text-shadow: 
    0 0 10px rgba(240, 171, 95, 0.7),
    0 0 20px var(--accent);
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-gold);
  margin-bottom: 25px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* HOME PAGE - COMPANY INTRO */
.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.intro-text h3 {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.intro-text p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 25px;
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.stat-item {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  padding: 25px;
  border-radius: 4px;
  text-align: center;
  transition: var(--transition);
}

.stat-item:hover,
.stat-item.touch-active {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: var(--shadow-neon);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
}

/* FEATURED SERVICES LIST */
.featured-services-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 1024px) {
  .featured-services-slider {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.service-card:hover,
.service-card.touch-active {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: var(--shadow-neon);
}

.service-card-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-card-img img,
.service-card.touch-active .service-card-img img {
  transform: scale(1.1);
}

.service-card-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--accent);
  color: var(--primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.service-card-content {
  padding: 30px;
}

.service-card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  transition: var(--transition);
}

.service-card:hover .service-card-content h3,
.service-card.touch-active .service-card-content h3 {
  color: var(--accent);
}

.service-card-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card-link {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-card-link i {
  transition: var(--transition);
}

.service-card-link:hover i,
.service-card.touch-active .service-card-link i {
  transform: translateX(5px);
}

/* WHY CHOOSE US */
.why-section {
  background: linear-gradient(180deg, var(--bg-dark), var(--primary-light), var(--bg-dark));
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
}

.why-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.why-image-frame {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  background: var(--bg-darker);
}

.why-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.why-floating-box {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--primary);
  border: 2px solid var(--accent);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow-neon);
  max-width: 250px;
  text-align: center;
}

.why-floating-box h4 {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.why-floating-box p {
  font-size: 0.85rem;
  color: var(--text-gold);
}

.why-content h3 {
  font-size: 2.2rem;
  margin-bottom: 25px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.why-list-item {
  display: flex;
  gap: 20px;
}

.why-item-icon {
  background: rgba(240, 171, 95, 0.1);
  border: 1px solid var(--accent);
  color: var(--accent);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-neon);
}

.why-item-text h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.why-item-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* PORTFOLIO & WORK SHOWCASE */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-light);
  padding: 10px 22px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active, .filter-btn.touch-active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(240, 171, 95, 0.05);
  box-shadow: var(--shadow-neon);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.portfolio-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 350px;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(107, 168, 214, 0.92) 0%, rgba(107, 168, 214, 0.45) 60%, transparent 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay,
.portfolio-item.touch-active .portfolio-overlay {
  opacity: 1;
}

.portfolio-item:hover img,
.portfolio-item.touch-active img {
  transform: scale(1.1);
}

.portfolio-category {
  color: var(--accent);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  font-weight: 600;
}

.portfolio-title {
  font-size: 1.4rem;
  font-family: var(--font-heading);
  margin-bottom: 15px;
}

.portfolio-btn {
  align-self: flex-start;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* GALLERY PAGE — Elegant Layout */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: var(--transition);
  animation: fadeIn 0.6s ease both;
  background: var(--card-bg);
}

.gallery-item-featured {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:hover,
.gallery-item.touch-active {
  border-color: var(--accent);
  box-shadow: var(--shadow-neon);
  transform: translateY(-4px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img,
.gallery-item.touch-active img {
  transform: scale(1.06);
}

.gallery-item-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 18px 18px;
  background: linear-gradient(to top, rgba(6, 18, 32, 0.92) 0%, transparent 100%);
  transform: translateY(8px);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-caption,
.gallery-item.touch-active .gallery-item-caption {
  transform: translateY(0);
  opacity: 1;
}

.gallery-category-badge {
  display: inline-block;
  background: rgba(240, 171, 95, 0.2);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 6px;
}

.gallery-item-caption h4 {
  font-size: 0.9rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-light);
  margin: 0;
}

.gallery-item-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(107, 168, 214, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.gallery-item:hover .gallery-item-hover,
.gallery-item.touch-active .gallery-item-hover {
  opacity: 1;
}

.gallery-item-hover i {
  color: var(--accent);
  font-size: 2rem;
  filter: drop-shadow(var(--shadow-neon));
}

.gallery-empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
}

.gallery-empty-state i {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 15px;
  opacity: 0.5;
}

/* Admin CMS extras */
.admin-settings-form {
  max-width: 700px;
}

.admin-stats-edit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.backup-actions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 700px;
}

.backup-card {
  background: var(--primary-light);
  border: 1px solid var(--glass-border);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
}

.backup-card i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 15px;
}

.backup-card h4 {
  margin-bottom: 10px;
}

.backup-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-item-featured {
    grid-column: span 2;
    grid-row: span 1;
  }
  .backup-actions-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item-featured {
    grid-column: span 2;
  }
  .admin-stats-edit-grid {
    grid-template-columns: 1fr;
  }
}

/* GALLERY PAGE */
.gallery-sections-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

/* TESTIMONIALS CAROUSEL */
.testimonials-section {
  background: rgba(107, 168, 214, 0.2);
}

.testimonials-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slide {
  text-align: center;
  display: none;
  animation: fadeIn 0.8s ease;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-stars {
  color: var(--accent);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--text-gold);
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  object-fit: cover;
}

.author-info h4 {
  font-size: 1.1rem;
  color: var(--text-light);
}

.author-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.carousel-btn {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.carousel-btn:hover {
  background: var(--accent);
  color: var(--primary);
  box-shadow: var(--shadow-neon);
}

/* ABOUT US PAGE */
.about-intro-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
}

.about-intro-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-img-box {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  height: 250px;
}

.about-img-box:nth-child(even) {
  transform: translateY(30px);
}

.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-intro-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-intro-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.about-mission-vision {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 80px;
}

.mv-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  padding: 40px;
  border-radius: 8px;
  transition: var(--transition);
}

.mv-card:hover,
.mv-card.touch-active {
  border-color: var(--accent);
  box-shadow: var(--shadow-neon);
}

.mv-card i {
  color: var(--accent);
  font-size: 2.5rem;
  margin-bottom: 20px;
  filter: drop-shadow(var(--shadow-neon));
}

.mv-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.mv-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* CORE VALUES */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.value-card {
  background: linear-gradient(165deg, rgba(6, 18, 32, 0.94) 0%, rgba(107, 168, 214, 0.16) 100%);
  border: 1px solid rgba(142, 196, 232, 0.32);
  padding: 30px 20px;
  text-align: center;
  border-radius: 8px;
  transition: var(--transition);
}

.value-card:hover,
.value-card.touch-active {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: var(--shadow-neon);
  background: linear-gradient(165deg, rgba(8, 22, 38, 0.96) 0%, rgba(107, 168, 214, 0.24) 100%);
}

.value-card i {
  color: var(--accent);
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.value-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-gold);
}

.value-card p {
  font-size: 0.85rem;
  color: #E8F4FC;
  line-height: 1.65;
}

/* DETAILED SERVICES VIEW & TABS */
.services-tabs-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  margin-top: 40px;
}

.services-tabs-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-tab-btn {
  background: var(--primary-light);
  border: 1px solid var(--glass-border);
  color: var(--text-light);
  padding: 16px 20px;
  border-radius: 6px;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.service-tab-btn:hover, .service-tab-btn.active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(240, 171, 95, 0.05);
  box-shadow: var(--shadow-neon);
}

.service-tab-btn i.arrow {
  opacity: 0;
  transition: var(--transition);
}

.service-tab-btn:hover i.arrow, .service-tab-btn.active i.arrow {
  opacity: 1;
  transform: translateX(5px);
}

.service-tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.service-tab-content.active {
  display: block;
}

.service-content-banner {
  height: 350px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  margin-bottom: 30px;
}

.service-content-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-details h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.service-details .overview {
  font-size: 1.1rem;
  color: var(--text-gold);
  margin-bottom: 25px;
}

.service-details .description {
  color: var(--text-muted);
  margin-bottom: 30px;
}

.service-sub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.service-sub-list {
  list-style: none;
}

.service-sub-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.service-sub-list li::before {
  content: '\f058';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--accent);
  position: absolute;
  left: 0;
  top: 2px;
}

.service-process {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  padding: 30px;
  border-radius: 8px;
}

.service-process h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 10px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.process-step {
  display: flex;
  gap: 15px;
}

.process-step-num {
  background: var(--accent);
  color: var(--primary);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.process-step-text p {
  font-size: 0.9rem;
}

.service-pricing-faq {
  margin-top: 40px;
}

/* BOOKING & REQUEST QUOTE PAGES */
.form-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: start;
}

.form-wrapper {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-full {
  grid-column: span 2;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-gold);
}

.form-control {
  background: rgba(107, 168, 214, 0.35);
  border: 1px solid var(--glass-border);
  color: var(--text-light);
  padding: 12px 16px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
  width: 100%;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: var(--shadow-neon);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* File Upload Component */
.file-upload-zone {
  border: 2px dashed var(--glass-border);
  border-radius: 4px;
  padding: 35px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.file-upload-zone:hover {
  border-color: var(--accent);
  background: rgba(240, 171, 95, 0.05);
}

.file-upload-zone i {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.file-upload-zone p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.file-upload-name {
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--accent);
  display: none;
}

/* Side Estimation Card */
.side-card {
  background: var(--primary-light);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 30px;
  position: sticky;
  top: 110px;
}

.side-card h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 10px;
}

.pricing-calculator-wrapper {
  margin-bottom: 25px;
}

.calc-slider-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 10px;
  color: var(--text-muted);
}

.slider-val {
  color: var(--accent);
  font-weight: 700;
}

.calc-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 5px;
  background: var(--primary);
  outline: none;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: var(--shadow-neon);
  transition: var(--transition);
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.estimate-price-box {
  background: var(--primary);
  border: 1px solid var(--accent);
  border-radius: 6px;
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-neon);
  margin-top: 25px;
}

.estimate-price-box span {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.estimate-amount {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--accent);
  font-weight: 700;
  margin: 5px 0;
}

/* CONTACT PAGE */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  padding: 25px;
  border-radius: 8px;
  display: flex;
  gap: 20px;
  transition: var(--transition);
}

.contact-info-card:hover,
.contact-info-card.touch-active {
  border-color: var(--accent);
  box-shadow: var(--shadow-neon);
}

.contact-icon-box {
  background: rgba(240, 171, 95, 0.1);
  border: 1px solid var(--accent);
  color: var(--accent);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-neon);
}

.contact-details h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.contact-details p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-details a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.contact-details a:hover {
  color: var(--accent);
}

.map-container {
  height: 350px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  margin-top: 40px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* BLOG PAGE */
.blog-search-bar {
  display: flex;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto 50px;
}

.blog-search-bar input {
  flex: 1;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover,
.blog-card.touch-active {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: var(--shadow-neon);
}

.blog-card-img {
  height: 220px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-card-img img,
.blog-card.touch-active .blog-card-img img {
  transform: scale(1.08);
}

.blog-card-content {
  padding: 25px;
}

.blog-meta {
  display: flex;
  gap: 15px;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card-content h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.4;
  transition: var(--transition);
}

.blog-card:hover .blog-card-content h3,
.blog-card.touch-active .blog-card-content h3 {
  color: var(--accent);
}

.blog-card-content p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* FAQ ACCORDION */
.accordion-wrapper {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.accordion-item {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  overflow: hidden;
  transition: var(--transition);
}

.accordion-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.accordion-header h4 {
  font-size: 1rem;
  letter-spacing: 1px;
  transition: var(--transition);
}

.accordion-item.active .accordion-header h4 {
  color: var(--accent);
}

.accordion-icon {
  color: var(--accent);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  background: rgba(107, 168, 214, 0.2);
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
  transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

.accordion-content-inner {
  padding: 20px;
  border-top: 1px solid rgba(240, 171, 95, 0.1);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ADMIN PANEL LOGIN */
.admin-login-wrapper {
  max-width: 450px;
  margin: 100px auto;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.admin-login-wrapper h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  text-align: center;
}

.admin-login-wrapper p {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 30px;
}

/* ADMIN DASHBOARD */
.admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 30px;
  min-height: 70vh;
}

.admin-sidebar {
  background: var(--primary-light);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 25px 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.admin-sidebar-btn {
  background: transparent;
  border: none;
  color: var(--text-light);
  padding: 12px 18px;
  border-radius: 6px;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.admin-sidebar-btn:hover, .admin-sidebar-btn.active {
  background: rgba(240, 171, 95, 0.1);
  color: var(--accent);
}

.admin-sidebar-logout {
  margin-top: auto;
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #ef4444;
}

.admin-sidebar-logout:hover {
  background: rgba(239, 68, 68, 0.1);
  color: #f87171;
}

.admin-main-panel {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 35px;
}

.admin-view {
  display: none;
}

.admin-view.active-panel {
  display: block;
  animation: fadeIn 0.4s ease;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.admin-stat-card {
  background: var(--primary);
  border: 1px solid var(--glass-border);
  padding: 25px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-stat-info h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.admin-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent);
  font-weight: 700;
  margin-top: 5px;
}

.admin-stat-card i {
  color: rgba(240, 171, 95, 0.2);
  font-size: 2.5rem;
}

/* Custom Table Layouts */
.table-responsive {
  width: 100%;
  overflow-x: auto;
}

table.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

table.admin-table th, table.admin-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--glass-border);
  font-size: 0.88rem;
}

table.admin-table th {
  background: var(--primary-light);
  color: var(--text-gold);
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

table.admin-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

/* Badges */
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-pending {
  background: rgba(240, 171, 95, 0.15);
  color: var(--accent);
  border: 1px solid var(--accent);
}

.badge-approved, .badge-contacted {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid #10b981;
}

.badge-cancelled {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid #ef4444;
}

.admin-actions {
  display: flex;
  gap: 8px;
}

.admin-action-btn {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-light);
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.admin-action-btn.check:hover {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border-color: #10b981;
}

.admin-action-btn.trash:hover {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border-color: #ef4444;
}

.admin-action-btn.view:hover {
  background: rgba(240, 171, 95, 0.15);
  color: var(--accent);
  border-color: var(--accent);
}

/* FOOTER */
footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: start;
}

.footer-col h3 {
  font-size: 1.15rem;
  margin-bottom: 25px;
  color: var(--text-light);
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 1.5px;
  background: var(--accent);
}

.footer-brand {
  align-self: start;
  padding-top: 0;
}

.footer-logo-link {
  display: inline-block;
  margin: 0 0 18px;
  line-height: 0;
}

.footer-logo-img {
  height: 110px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  object-position: left top;
  display: block;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  transition: var(--transition);
}

.footer-logo-link:hover .footer-logo-img {
  transform: scale(1.03);
  filter: drop-shadow(0 6px 16px rgba(240, 171, 95, 0.2));
}

.footer-logo-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0 0 20px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  background: var(--primary-light);
  border: 1px solid var(--glass-border);
  color: var(--text-light);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
  box-shadow: var(--shadow-neon);
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact-item {
  display: flex;
  gap: 15px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-contact-item i {
  color: var(--accent);
  margin-top: 4px;
}

.footer-newsletter-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
}

.newsletter-form input {
  border-radius: 4px 0 0 4px;
  border-right: none;
}

.newsletter-form button {
  border-radius: 0 4px 4px 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 28px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
  max-width: 900px;
  line-height: 1.6;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

/* WHATSAPP FLOAT BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

/* MODAL SYSTEM */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 6, 18, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-box {
  background: var(--primary-light);
  border: 1px solid var(--accent);
  box-shadow: var(--shadow-neon);
  max-width: 650px;
  width: 100%;
  border-radius: 8px;
  position: relative;
  animation: slideUp 0.4s ease;
  overflow: hidden;
}

.modal-header {
  padding: 20px 30px;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  font-size: 1.3rem;
  color: var(--accent);
}

.modal-close-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close-btn:hover {
  color: var(--accent);
}

.modal-body {
  padding: 30px;
  max-height: 75vh;
  overflow-y: auto;
}

/* CUSTOM POPUP NOTIFICATION banner */
.toast-notification {
  position: fixed;
  top: 30px;
  right: 30px;
  background: var(--primary-light);
  border: 1.5px solid var(--accent);
  padding: 18px 25px;
  border-radius: 6px;
  box-shadow: var(--shadow-neon);
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 15px;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-notification.show {
  transform: translateX(0);
}

.toast-notification i {
  font-size: 1.3rem;
  color: var(--accent);
  filter: drop-shadow(var(--shadow-neon));
}

.toast-message h4 {
  font-size: 0.95rem;
  color: var(--text-light);
}

.toast-message p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Lightbox Modal Styles */
.lightbox-content img {
  width: 100%;
  max-height: 60vh;
  object-fit: contain;
}

.lightbox-video video {
  width: 100%;
  max-height: 60vh;
}

/* ANIMATIONS */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInScale {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* LICENSE & LEGAL SECTIONS */
.license-activities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.license-activity-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  padding: 25px 20px;
  border-radius: 8px;
  text-align: center;
  transition: var(--transition);
}

.license-activity-card:hover,
.license-activity-card.touch-active {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-neon);
}

.license-activity-card i {
  color: var(--accent);
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.license-activity-card h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  line-height: 1.4;
}

.license-activity-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.legal-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.legal-info-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  padding: 28px;
  border-radius: 8px;
}

.legal-info-card h4 {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-info-card p,
.legal-info-card li {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.legal-info-card ul {
  list-style: none;
  padding: 0;
}

.legal-info-card li::before {
  content: '\f058';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--accent);
  margin-right: 10px;
}

.home-mv-section {
  background: linear-gradient(135deg, rgba(107, 168, 214, 0.12), rgba(6, 18, 32, 0.9));
  padding: 70px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

.home-mv-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(107, 168, 214, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* Dynamic Mission / Vision / Purpose Showcase */
.mv-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.mv-showcase.mv-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile / tablet: stacked cards — all three visible, full width */
.mv-showcase--mobile {
  display: block;
  width: 100%;
  max-width: 100%;
}

.mv-mobile-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  max-width: 100%;
}

.mv-mobile-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 24px 22px;
  transition: var(--transition);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.mv-mobile-card:hover,
.mv-mobile-card.touch-active {
  border-color: var(--accent);
  box-shadow: var(--shadow-neon);
  transform: translateY(-6px);
  background: rgba(8, 22, 38, 0.88);
}

.mv-mobile-card:hover .mv-tab-icon,
.mv-mobile-card.touch-active .mv-tab-icon {
  animation: mvIconPulse 2s ease-in-out infinite;
  box-shadow: var(--shadow-neon);
}

@media (min-width: 1101px) {
  .mv-showcase:not(.mv-showcase--mobile) {
    grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
    gap: 40px;
  }
}

.mv-mobile-card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.mv-mobile-card-titles {
  flex: 1;
  min-width: 0;
}

.mv-mobile-card-titles h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--accent);
  letter-spacing: 0.5px;
  line-height: 1.35;
  word-wrap: break-word;
}

.mv-mobile-card-titles span {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.mv-mobile-card-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.mv-mobile-highlights {
  grid-template-columns: 1fr;
  gap: 8px;
}

.mv-showcase-tabs {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  min-width: 0;
}

.mv-tab {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 22px 24px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.mv-tab::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transition: transform 0.35s ease;
}

.mv-tab:hover,
.mv-tab.touch-active {
  border-color: rgba(240, 171, 95, 0.4);
  background: rgba(107, 168, 214, 0.22);
}

.mv-tab.active {
  border-color: var(--accent);
  background: rgba(107, 168, 214, 0.28);
  box-shadow: var(--shadow-neon);
}

.mv-tab.active::before {
  transform: scaleY(1);
}

.mv-tab-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(240, 171, 95, 0.12);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.mv-tab.active .mv-tab-icon {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: var(--shadow-neon);
  animation: mvIconPulse 2s ease-in-out infinite;
}

.mv-tab-icon i {
  font-size: 1.2rem;
  color: var(--accent);
  transition: var(--transition);
}

.mv-tab.active .mv-tab-icon i {
  color: var(--primary);
}

.mv-tab-label h4 {
  font-size: 1rem;
  margin-bottom: 3px;
  font-family: var(--font-heading);
  letter-spacing: 1px;
}

.mv-tab-label span {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.mv-tab.active .mv-tab-label h4 {
  color: var(--accent);
}

.mv-showcase-panel {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 45px 50px;
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.mv-showcase-panel::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(240, 171, 95, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.mv-panel-slide {
  animation: mvSlideIn 0.55s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.mv-panel-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 22px;
}

.mv-panel-icon-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.mv-panel-icon-ring::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(240, 171, 95, 0.35);
  animation: mvRingSpin 12s linear infinite;
}

.mv-panel-icon-ring i {
  font-size: 1.8rem;
  color: var(--accent);
  filter: drop-shadow(var(--shadow-neon));
}

.mv-panel-header h3 {
  font-size: 1.6rem;
  color: var(--accent);
  margin: 0;
}

.mv-panel-header .mv-panel-tag {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
  display: block;
}

.mv-panel-text {
  color: var(--text-gold);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.mv-panel-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mv-panel-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 10px 14px;
  background: rgba(107, 168, 214, 0.15);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  animation: mvHighlightIn 0.5s ease both;
}

.mv-panel-highlights li:nth-child(1) { animation-delay: 0.1s; }
.mv-panel-highlights li:nth-child(2) { animation-delay: 0.2s; }
.mv-panel-highlights li:nth-child(3) { animation-delay: 0.3s; }
.mv-panel-highlights li:nth-child(4) { animation-delay: 0.4s; }

.mv-panel-highlights li i {
  color: var(--accent);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.mv-showcase-footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.mv-progress-track {
  flex: 1;
  max-width: 300px;
  height: 3px;
  background: rgba(107, 168, 214, 0.25);
  border-radius: 3px;
  overflow: hidden;
}

.mv-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #d6954e);
  border-radius: 3px;
  width: 0%;
  transition: width 0.1s linear;
}

.mv-nav-btn {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.mv-nav-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: var(--shadow-neon);
}

.mv-dot-nav {
  display: flex;
  gap: 8px;
}

.mv-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(107, 168, 214, 0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.mv-dot.active {
  background: var(--accent);
  box-shadow: var(--shadow-neon);
  transform: scale(1.3);
}

@keyframes mvSlideIn {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes mvHighlightIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes mvIconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

@keyframes mvRingSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.home-mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.home-mv-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  padding: 35px 30px;
  border-radius: 8px;
  text-align: center;
  transition: var(--transition);
}

.home-mv-card:hover,
.home-mv-card.touch-active {
  border-color: var(--accent);
  box-shadow: var(--shadow-neon);
}

.home-mv-card i {
  color: var(--accent);
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.home-mv-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--accent);
}

.home-mv-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Dynamic Commitment Showcase */
.commitment-section {
  background: rgba(107, 168, 214, 0.1);
  padding: 70px 0;
  border-top: 1px solid var(--glass-border);
}

.commitment-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.commitment-showcase.commitment-revealed {
  opacity: 1;
  transform: translateY(0);
}

.commitment-showcase--mobile {
  gap: 16px;
}

.commitment-card.mobile-expanded {
  cursor: pointer;
}

.commitment-card.mobile-expanded p {
  max-height: none;
  opacity: 1;
  margin-top: 8px;
}

.commitment-card.mobile-expanded .commitment-card-tag {
  opacity: 0.65;
}

.commitment-card.mobile-expanded.touch-active,
.commitment-card.mobile-expanded.touch-active .commitment-card-tag {
  opacity: 1;
}

.commitment-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.commitment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: var(--transition);
}

.commitment-card:hover,
.commitment-card.active,
.commitment-card.touch-active {
  border-color: var(--accent);
  box-shadow: var(--shadow-neon);
  transform: translateY(-8px);
  background: rgba(8, 22, 38, 0.88);
}

.commitment-card.active::before,
.commitment-card:hover::before,
.commitment-card.touch-active::before {
  opacity: 1;
}

.commitment-card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(240, 171, 95, 0.12);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.commitment-card.active .commitment-card-icon,
.commitment-card:hover .commitment-card-icon,
.commitment-card.touch-active .commitment-card-icon {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: var(--shadow-neon);
  animation: mvIconPulse 2s ease-in-out infinite;
}

.commitment-card-icon i {
  font-size: 1.6rem;
  color: var(--accent);
  transition: var(--transition);
}

.commitment-card.active .commitment-card-icon i,
.commitment-card:hover .commitment-card-icon i,
.commitment-card.touch-active .commitment-card-icon i {
  color: var(--primary);
}

.commitment-card h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.commitment-card.active h4,
.commitment-card:hover h4,
.commitment-card.touch-active h4 {
  color: var(--accent);
}

.commitment-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, opacity 0.35s ease, margin 0.35s ease;
  margin: 0;
}

.commitment-card.active p,
.commitment-card:hover p,
.commitment-card.touch-active p {
  max-height: 200px;
  opacity: 1;
  margin-top: 4px;
}

.commitment-card-tag {
  display: inline-block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.commitment-card.active .commitment-card-tag,
.commitment-card:hover .commitment-card-tag,
.commitment-card.touch-active .commitment-card-tag {
  opacity: 1;
}

.commitment-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 35px;
}

.commitment-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(107, 168, 214, 0.4);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.commitment-dot.active {
  background: var(--accent);
  box-shadow: var(--shadow-neon);
  transform: scale(1.25);
}

.promise-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  padding: 35px;
  border-radius: 8px;
  text-align: center;
}

.promise-card i {
  color: var(--accent);
  font-size: 2rem;
  margin-bottom: 15px;
}

.promise-card h4 {
  margin-bottom: 10px;
}

.promise-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.legal-page-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-page-content h3 {
  color: var(--accent);
  margin: 30px 0 15px;
  font-size: 1.2rem;
}

.legal-page-content p,
.legal-page-content li {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 12px;
  line-height: 1.7;
}

.legal-page-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.new-company-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid #10b981;
  color: #10b981;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  .license-activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .commitment-showcase {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .home-mv-grid, .promise-grid {
    grid-template-columns: 1fr;
  }

  .home-mv-section .container {
    width: 94%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .home-mv-section .section-header h2 {
    font-size: clamp(1.3rem, 5.5vw, 2rem);
    line-height: 1.35;
    text-wrap: balance;
  }

  .home-mv-section .section-header p {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .mv-showcase,
  .mv-showcase--mobile,
  .mv-mobile-stack,
  .mv-mobile-card {
    width: 100%;
    max-width: 100%;
  }

  .mv-showcase-tabs {
    flex-direction: column;
    overflow-x: visible;
    padding-bottom: 0;
    gap: 12px;
  }
  .mv-tab {
    min-width: 0;
    width: 100%;
    padding: 16px 18px;
  }
  .mv-showcase-panel {
    padding: 28px 20px;
    min-height: auto;
  }
  .mv-panel-header {
    flex-wrap: wrap;
  }
  .mv-panel-header h3 {
    font-size: 1.25rem;
  }
  .mv-panel-text {
    font-size: 0.95rem;
  }
  .mv-panel-highlights {
    grid-template-columns: 1fr;
  }
  .commitment-showcase {
    max-width: 100%;
    width: 100%;
  }
  .legal-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .license-activities-grid {
    grid-template-columns: 1fr;
  }
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 1024px) {
  .intro-grid, .why-grid, .form-layout, .about-intro-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .services-tabs-container {
    grid-template-columns: 1fr;
  }
  
  .services-tabs-list {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 10px;
  }
  
  .service-tab-btn {
    white-space: nowrap;
  }
  
  .admin-layout {
    grid-template-columns: 1fr;
  }
  
  .admin-sidebar {
    flex-direction: row;
    overflow-x: auto;
    padding: 15px;
  }
  
  .admin-sidebar-btn {
    white-space: nowrap;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .portfolio-grid, .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero h1 span.neon-word {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 104px;
  }

  header {
    overflow: visible;
  }

  header .nav-container {
    width: 100%;
    max-width: none;
    padding: 12px 18px;
    gap: 12px;
    position: relative;
    z-index: 1002;
  }

  header .logo {
    margin-right: auto;
    position: relative;
    z-index: 1003;
  }

  header .logo-img {
    height: 68px;
    max-width: 200px;
  }
  
  nav {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    background: var(--bg-darker);
    padding: 40px;
    transition: var(--transition);
    border-top: 1px solid var(--glass-border);
    z-index: 1001;
  }
  
  nav.open {
    left: 0;
  }
  
  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
  
  nav a {
    font-size: 1.1rem;
    white-space: nowrap;
  }

  .nav-ctas .btn,
  .btn-sm {
    white-space: nowrap;
  }
  
  .menu-toggle {
    display: flex;
    margin-left: auto;
    margin-right: 2px;
    padding: 10px 14px;
    min-width: 46px;
    min-height: 46px;
    border-radius: 8px;
    border: 1px solid rgba(240, 171, 95, 0.2);
    background: rgba(107, 168, 214, 0.12);
    transition: var(--transition);
    position: relative;
    z-index: 1003;
  }

  .menu-toggle:active {
    background: rgba(107, 168, 214, 0.28);
    border-color: var(--accent);
    color: var(--accent);
  }
  
  .nav-ctas {
    display: none;
  }

  .hero {
    height: auto;
    min-height: calc(100dvh - var(--header-height));
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 28px;
    padding-bottom: 48px;
  }

  .hero-content {
    padding-top: 12px;
    width: 100%;
  }

  .new-company-badge {
    font-size: 0.72rem;
    padding: 7px 14px;
    letter-spacing: 0.6px;
    margin-bottom: 16px;
  }
  
  .hero-btns {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero h1 span.neon-word {
    font-size: 3rem;
  }
  
  .stat-item {
    padding: 15px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .featured-services-slider, .portfolio-grid, .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .admin-stats-grid {
    grid-template-columns: 1fr;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-full {
    grid-column: span 1;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-logo-img {
    height: 110px;
    max-width: 240px;
  }
  
  .why-floating-box {
    position: static;
    margin: 30px auto 0;
    max-width: 100%;
  }
  
  .about-img-box:nth-child(even) {
    transform: none;
  }
  
  .about-mission-vision {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 92px;
  }

  .container {
    width: 92%;
    padding: 32px 0;
  }

  .section-header h2 {
    font-size: 1.65rem;
  }

  .section-header p {
    font-size: 0.9rem;
  }

  header .nav-container {
    padding: 10px 16px;
  }

  header .logo-img {
    height: 56px;
    max-width: 165px;
  }

  .menu-toggle {
    min-width: 42px;
    min-height: 42px;
    padding: 8px 12px;
    font-size: 1.35rem;
  }

  .hero {
    padding-top: 20px;
    padding-bottom: 36px;
  }

  .hero-content {
    padding-top: 8px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .new-company-badge {
    font-size: 0.65rem;
    padding: 6px 12px;
    gap: 6px;
    letter-spacing: 0.4px;
    margin-bottom: 14px;
  }

  .hero-badge {
    font-size: 0.68rem;
    padding: 5px 12px;
    letter-spacing: 1px;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero h1 span.neon-word {
    font-size: 2.05rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .intro-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-btns .btn {
    width: 100%;
    max-width: 300px;
    font-size: 0.75rem;
    padding: 11px 18px;
  }

  .hero p {
    font-size: 0.92rem;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 1.35rem;
    letter-spacing: 0.4px;
  }

  .hero h1 span.neon-word {
    font-size: 1.6rem;
  }

  .hero-badge {
    font-size: 0.62rem;
    letter-spacing: 0.8px;
  }

  .new-company-badge {
    font-size: 0.6rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 0.68rem;
    letter-spacing: 0.5px;
  }

  .value-card {
    padding: 22px 16px;
  }

  .value-card h4 {
    font-size: 0.95rem;
  }

  .value-card p {
    font-size: 0.8rem;
  }

  .service-card-content h3,
  .portfolio-title {
    font-size: 1rem;
  }

  .footer-logo-img {
    height: 88px;
    max-width: 190px;
  }

  nav {
    padding: 24px 18px;
  }

  nav a {
    font-size: 1rem;
  }
}

/* Prevent grid/flex overflow on narrow screens */
.service-card,
.portfolio-item,
.gallery-item,
.blog-card,
.intro-text,
.intro-stats,
.hero-content,
.value-card,
.why-content,
.about-intro-text {
  min-width: 0;
}

/* Mobile touch-friendly: tap feedback mirrors desktop hover */
@media (max-width: 1024px), (hover: none) and (pointer: coarse) {
  .mobile-reveal-pending {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }

  .mv-showcase.mv-revealed .mv-mobile-card.mobile-reveal-pending,
  .mobile-reveal-pending.mobile-revealed {
    opacity: 1;
    transform: translateY(0);
  }

  .mv-mobile-card {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    padding: 18px 14px;
  }

  .mv-tab-icon {
    flex-shrink: 0;
  }

  .home-mv-section {
    padding: 50px 0;
  }

  .home-mv-section .section-header h2 {
    font-size: 1.25rem;
  }

  .service-card,
  .portfolio-item,
  .gallery-item,
  .blog-card,
  .stat-item,
  .value-card,
  .license-activity-card,
  .mv-card,
  .mv-mobile-card,
  .mv-tab,
  .commitment-card,
  .contact-info-card,
  .home-mv-card,
  .filter-btn {
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
  }

  .mv-panel-slide {
    animation: mvHighlightIn 0.55s ease both;
  }

  @keyframes mvSlideIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }
}
