/* ==========================================================================
   AK ENTERPRISES - INVISIBLE GRILL & BIRD NET SOLUTIONS
   Premium Design System & Color Scheme (Inspired by Official Brand Logo)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Core Brand Colors (Extracted directly from Official Logo) */
  --royal-blue: #0B5ED7;
  --royal-blue-dark: #072859;
  --royal-blue-deep: #051A3B;
  --sky-blue: #29B6F6;
  --cyan-electric: #00C0FF;
  --sky-blue-light: #E1F5FE;
  
  --orange: #F57C00;
  --orange-bright: #FF8F00;
  --orange-hover: #E65100;
  
  /* Gold & Metallic Accents (From Logo Outer Rim) */
  --gold-accent: #D4AF37;
  --gold-light: #F9E79F;
  --gold-dark: #B38728;
  --gold-gradient: linear-gradient(135deg, #BF953F 0%, #FCF6BA 30%, #B38728 70%, #FBF5B7 100%);
  
  --dark-charcoal: #1C1C1C;
  --dark-slate: #0F172A;
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --gray-800: #1E293B;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Glassmorphism & Shadows */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-bg-dark: rgba(15, 23, 42, 0.85);
  --glass-border: rgba(255, 255, 255, 0.3);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 45px rgba(11, 94, 215, 0.16);
  --shadow-hover: 0 25px 50px rgba(11, 94, 215, 0.25);
  --shadow-orange: 0 10px 25px rgba(245, 124, 0, 0.35);
  --shadow-gold: 0 8px 20px rgba(212, 175, 55, 0.3);

  /* Transitions & Border Radius */
  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

/* Base Resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--dark-charcoal);
  background-color: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark-charcoal);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 4.25rem 0;
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 2.75rem auto;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(41, 182, 246, 0.12);
  border: 1px solid rgba(41, 182, 246, 0.35);
  color: var(--royal-blue);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.badge-tag.gold {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.5);
  color: #B38728;
}

.badge-tag.orange {
  background: rgba(245, 124, 0, 0.12);
  border-color: rgba(245, 124, 0, 0.35);
  color: var(--orange);
}

.section-title {
  font-size: 2.75rem;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, var(--dark-charcoal) 0%, var(--royal-blue-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title.light {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--sky-blue-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
}

.section-subtitle.light {
  color: rgba(255, 255, 255, 0.85);
}

/* Custom Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.95rem 2rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  white-space: nowrap;
}

.btn-orange {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-hover) 100%);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}

.btn-orange:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(245, 124, 0, 0.5);
  color: var(--white);
}

.btn-primary {
  background: linear-gradient(135deg, var(--royal-blue) 0%, var(--royal-blue-dark) 100%);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(11, 94, 215, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(11, 94, 215, 0.45);
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--dark-slate);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--royal-blue);
  border: 2px solid var(--royal-blue);
}

.btn-outline:hover {
  background: var(--royal-blue);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-white {
  background: var(--white);
  color: var(--royal-blue-dark);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  background: var(--sky-blue-light);
  transform: translateY(-3px);
}

/* ==========================================================================
   TOP BAR & STICKY HEADER
   ========================================================================== */
.top-bar {
  background: var(--dark-slate);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-info {
  display: flex;
  gap: 2rem;
}

.top-bar-info .info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-info i {
  color: var(--gold-accent);
}

.slogan-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 0.25rem 0.85rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--gold-light);
  letter-spacing: 0.5px;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 2px solid rgba(11, 94, 215, 0.08);
  transition: var(--transition-normal);
}

.header.scrolled {
  padding: 0.1rem 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-bottom-color: var(--gold-accent);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}

/* Subpage Hero Banner */
.subpage-hero {
  position: relative;
  background: 
    radial-gradient(circle at 20% 30%, rgba(41, 182, 246, 0.25) 0%, transparent 45%),
    linear-gradient(135deg, rgba(2, 12, 28, 0.90) 0%, rgba(6, 31, 69, 0.85) 50%, rgba(5, 26, 59, 0.92) 100%),
    url('../assets/hero_invisible_grill.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 140px 0 65px 0;
  text-align: center;
  border-bottom: 4px solid var(--gold-accent);
}

.subpage-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.subpage-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--sky-blue);
  font-weight: 600;
}

.subpage-breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition-fast);
}

.subpage-breadcrumb a:hover {
  color: var(--gold-accent);
}
.brand-logo {
  display: inline-flex;
  align-items: center;
}

.brand-logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  filter: none;
  transition: var(--transition-normal);
}

.header.scrolled .brand-logo-img {
  height: 68px;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.08);
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark-charcoal);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--royal-blue), var(--orange), var(--gold-accent));
  border-radius: 10px;
  transition: var(--transition-normal);
}

.nav-link:hover, .nav-link.active {
  color: var(--royal-blue);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-badge-tag {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  background: rgba(11, 94, 215, 0.05);
  border: 1px solid rgba(11, 94, 215, 0.18);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--royal-blue-dark);
}

.header-phone-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.35rem 0.85rem 0.35rem 0.4rem;
  background: var(--sky-blue-light);
  border: 1px solid rgba(11, 94, 215, 0.15);
  border-radius: 50px;
  transition: var(--transition-fast);
}

.header-phone-box:hover {
  background: rgba(11, 94, 215, 0.12);
  border-color: var(--royal-blue);
  transform: translateY(-2px);
}

.phone-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--royal-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  box-shadow: 0 4px 10px rgba(11, 94, 215, 0.3);
}

.phone-text-group {
  display: flex;
  flex-direction: column;
}

.phone-label {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.phone-number {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--dark-charcoal);
  line-height: 1.2;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--royal-blue-dark);
  font-size: 0.95rem;
}

.header-phone i {
  width: 38px;
  height: 38px;
  background: var(--sky-blue-light);
  color: var(--royal-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  border: 1px solid rgba(11, 94, 215, 0.2);
}

.mobile-call-btn {
  display: none;
  width: 42px;
  height: 42px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  box-shadow: 0 4px 12px rgba(245, 124, 0, 0.35);
  transition: var(--transition-fast);
}

.mobile-call-btn:hover {
  background: var(--orange-dark);
  color: var(--white);
  transform: scale(1.08);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--dark-charcoal);
  cursor: pointer;
}

/* Mobile Drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 310px;
  height: 100vh;
  background: var(--white);
  z-index: 1050;
  padding: 2.5rem 2rem;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.25);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.mobile-close {
  background: var(--gray-100);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-links a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark-charcoal);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
}

.overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   HERO SECTION & SLIDER (CLEARLY VISIBLE BACKGROUND IMAGE WITH SLIGHT OVERLAY)
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(5, 26, 59, 0.60) 0%, rgba(11, 94, 215, 0.45) 50%, rgba(15, 23, 42, 0.65) 100%), url('assets/hero_invisible_grill.jpg');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  color: var(--white);
  padding: 4.5rem 0 5.5rem 0;
  overflow: hidden;
  border-bottom: 4px solid var(--gold-accent);
}

.hero-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 26, 59, 0.75) 0%, rgba(11, 94, 215, 0.30) 65%, rgba(15, 23, 42, 0.50) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-background-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.shape-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.shape-blob-1 {
  width: 500px;
  height: 500px;
  background: var(--cyan-electric);
  top: -150px;
  right: -100px;
}

.shape-blob-2 {
  width: 400px;
  height: 400px;
  background: var(--orange);
  bottom: -100px;
  left: -100px;
}

.hero-grid {
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-slider-container {
  width: 100%;
  overflow: hidden;
}

.hero-slide-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

@media (max-width: 992px) {
  .hero-slide-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.swiper-slide-content {
  padding-right: 1rem;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.hero-title span {
  color: var(--sky-blue);
  position: relative;
  text-shadow: 0 4px 25px rgba(41, 182, 246, 0.5);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.96);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 600px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Hero Right Visual & Technician Card */
.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  border: 4px solid rgba(212, 175, 55, 0.6);
}

.hero-image-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.hero-visual:hover img {
  transform: scale(1.04);
}

/* Floating Feature Cards */
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.5);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--dark-charcoal);
  z-index: 10;
  animation: float 4s ease-in-out infinite;
}

.floating-card-1 {
  top: 30px;
  left: -30px;
  animation-delay: 0s;
}

.floating-card-2 {
  bottom: 40px;
  right: -20px;
  animation-delay: 2s;
}

.floating-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--royal-blue) 0%, var(--sky-blue) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.floating-icon.orange {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-hover) 100%);
}

.floating-text h4 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 2px;
}

.floating-text p {
  font-size: 0.75rem;
  color: var(--gray-600);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Swiper Pagination styling */
.hero-pagination {
  margin-top: 2rem;
  display: flex;
  gap: 0.5rem;
}

.swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  border-radius: 50%;
  transition: var(--transition-fast);
}

.swiper-pagination-bullet-active {
  width: 36px;
  border-radius: 10px;
  background: var(--gold-accent);
}

/* ==========================================================================
   HERO FEATURE CARDS (6 CARDS BELOW SLIDER)
   ========================================================================== */
.hero-features-bar {
  margin-top: -3.5rem;
  position: relative;
  z-index: 20;
}

.hero-features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.hero-feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold-accent);
}

.feature-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--sky-blue-light);
  color: var(--royal-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  transition: var(--transition-normal);
}

.hero-feature-card:hover .feature-icon-box {
  background: var(--royal-blue);
  color: var(--white);
  transform: rotateY(180deg);
}

.hero-feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-charcoal);
}

/* ==========================================================================
   ABOUT SECTION (UPGRADED LUXURY DESIGN)
   ========================================================================== */
.about-grid-upgraded {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4.5rem;
  align-items: center;
}

.about-image-stack {
  position: relative;
  padding-bottom: 2.5rem;
  padding-right: 2.5rem;
}

.about-main-img-box {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(11, 94, 215, 0.18);
  border: 4px solid var(--white);
  outline: 2px solid rgba(212, 175, 55, 0.4);
}

.about-main-img-box img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.about-main-img-box:hover img {
  transform: scale(1.05);
}

.about-sub-img-box {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 250px;
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 4px solid var(--white);
  z-index: 5;
}

.about-sub-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating Gold Seal Badge */
.about-seal-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--gold-gradient);
  color: var(--dark-slate);
  padding: 1.1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-heading);
  border: 2px solid var(--white);
}

.about-seal-badge i {
  font-size: 2rem;
  color: var(--royal-blue-dark);
}

.about-seal-text h4 {
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
  color: var(--dark-slate);
}

.about-seal-text p {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--royal-blue-dark);
  letter-spacing: 0.5px;
}

/* Mission Quote Box */
.about-mission-box {
  background: linear-gradient(135deg, rgba(11, 94, 215, 0.06) 0%, rgba(41, 182, 246, 0.1) 100%);
  border-left: 4px solid var(--royal-blue);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--royal-blue-dark);
  line-height: 1.6;
}

/* 2x2 Feature Cards */
.about-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.about-mini-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.25rem;
  border: 1px solid var(--gray-200);
  transition: var(--transition-normal);
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  box-shadow: var(--shadow-sm);
}

.about-mini-card:hover {
  background: var(--white);
  border-color: var(--gold-accent);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(11, 94, 215, 0.12);
}

.about-mini-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--royal-blue) 0%, var(--sky-blue) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.about-mini-card:hover .about-mini-icon {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-hover) 100%);
}

.about-mini-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark-charcoal);
  margin-bottom: 0.2rem;
}

.about-mini-desc {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.4;
}

/* Counters Grid */
.about-counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.counter-item {
  text-align: center;
}

.counter-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--royal-blue);
  margin-bottom: 0.25rem;
}

.counter-label {
  font-size: 0.85rem;
  color: var(--gray-600);
  font-weight: 600;
}

/* ==========================================================================
   WHY CHOOSE US SECTION (UPGRADED LUXURY NUMBERED GRID)
   ========================================================================== */
.why-choose-us {
  position: relative;
  background: 
    radial-gradient(circle at 12% 20%, rgba(41, 182, 246, 0.24) 0%, transparent 45%),
    radial-gradient(circle at 88% 80%, rgba(245, 124, 0, 0.22) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.14) 0%, transparent 55%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0px, rgba(255, 255, 255, 0.025) 1px, transparent 1px, transparent 36px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0px, rgba(255, 255, 255, 0.025) 1px, transparent 1px, transparent 36px),
    linear-gradient(140deg, #020C1C 0%, #061F45 40%, #0A3C87 75%, #051A3B 100%);
  color: var(--white);
  border-top: 4px solid var(--gold-accent);
  border-bottom: 4px solid var(--gold-accent);
  overflow: hidden;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
}

.why-card {
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2rem 2.25rem 2rem;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Watermark Card Number (01, 02, 03...) */
.why-card::after {
  content: attr(data-number);
  position: absolute;
  top: 15px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  pointer-events: none;
  transition: var(--transition-normal);
}

.why-card:hover::after {
  color: rgba(212, 175, 55, 0.22);
  transform: translateY(-5px);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold-gradient);
  transition: var(--transition-fast);
}

.why-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold-accent);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
}

.why-card:hover::before {
  width: 6px;
  background: var(--orange);
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(11, 94, 215, 0.3) 0%, rgba(41, 182, 246, 0.15) 100%);
  color: var(--sky-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(41, 182, 246, 0.35);
  transition: var(--transition-normal);
}

.why-card:hover .why-icon {
  background: var(--gold-gradient);
  color: var(--dark-slate);
  border-color: var(--gold-accent);
  transform: rotate(360deg);
}

.why-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.why-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.65;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.25rem;
}

.service-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(41, 182, 246, 0.15);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(11, 94, 215, 0.15);
  border-color: var(--royal-blue);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.5);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 5;
}

.service-card:hover::after {
  opacity: 1;
}

.service-image-box {
  position: relative;
  height: 250px;
  overflow: hidden;
  border-bottom: 3px solid var(--gold-accent);
}

img {
  image-rendering: -webkit-optimize-contrast;
}

.service-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.1) brightness(1.03);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s ease;
}

.service-card:hover .service-image-box img {
  transform: scale(1.1);
  filter: contrast(1.15) saturate(1.2) brightness(1.08);
}

.service-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 12, 28, 0.85) 0%, rgba(2, 12, 28, 0.2) 40%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.service-icon-badge {
  position: absolute;
  bottom: -28px;
  right: 24px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--royal-blue) 0%, var(--sky-blue) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 25px rgba(11, 94, 215, 0.4);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border: 3px solid var(--white);
  z-index: 10;
}

.service-card:hover .service-icon-badge {
  background: linear-gradient(135deg, var(--orange) 0%, var(--gold-accent) 100%);
  transform: rotate(360deg) scale(1.15);
  box-shadow: 0 15px 30px rgba(245, 124, 0, 0.4);
  border-color: var(--white);
}

.service-content {
  padding: 2.25rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
  position: relative;
  z-index: 2;
}

.service-title {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
  color: var(--dark-charcoal);
  transition: color 0.3s ease;
}

.service-card:hover .service-title {
  color: var(--royal-blue);
}

.service-desc {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 1.75rem;
  line-height: 1.65;
}

.service-read-more, .service-read-more-link {
  align-self: flex-start;
  color: var(--royal-blue);
  font-weight: 800;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  background: rgba(11, 94, 215, 0.05);
  transition: all 0.3s ease;
}

.service-read-more i, .service-read-more-link i {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-read-more,
.service-card:hover .service-read-more-link {
  background: var(--royal-blue);
  color: var(--white);
}

.service-card:hover .service-read-more i,
.service-card:hover .service-read-more-link i {
  transform: translateX(6px);
}

/* Service Detail Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  border: 2px solid var(--gold-accent);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--gray-100);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
}

/* ==========================================================================
   PROCESS SECTION (TIMELINE STYLE)
   ========================================================================== */
.process-section {
  background: var(--white);
}

.timeline-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  top: 35px;
  left: 5%;
  right: 5%;
  height: 4px;
  background: var(--gray-200);
  z-index: 1;
}

.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--royal-blue), var(--sky-blue), var(--orange), var(--gold-accent));
  border-radius: 10px;
}

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.timeline-step {
  text-align: center;
}

.timeline-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--royal-blue);
  color: var(--royal-blue-dark);
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.timeline-step:hover .timeline-number {
  background: var(--orange);
  border-color: var(--gold-accent);
  color: var(--white);
  transform: scale(1.15);
}

.timeline-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark-charcoal);
}

.timeline-desc {
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* ==========================================================================
   PROJECT GALLERY SECTION
   ========================================================================== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--royal-blue);
  color: var(--white);
  border-color: var(--royal-blue);
  box-shadow: 0 6px 15px rgba(11, 94, 215, 0.25);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 280px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  border: 1px solid var(--gray-200);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 94, 215, 0.92) 0%, rgba(41, 182, 246, 0.4) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--white);
  opacity: 0;
  transition: var(--transition-normal);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.gallery-category {
  font-size: 0.85rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

/* ==========================================================================
   STATISTICS SECTION (UPGRADED LUXURY GLASSMOUR COUNTERS)
   ========================================================================== */
.stats-section {
  position: relative;
  background: 
    radial-gradient(circle at 20% 30%, rgba(41, 182, 246, 0.22) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(245, 124, 0, 0.22) 0%, transparent 45%),
    linear-gradient(135deg, rgba(3, 18, 43, 0.88) 0%, rgba(7, 40, 89, 0.82) 50%, rgba(5, 26, 59, 0.90) 100%),
    url('assets/hero_invisible_grill.jpg');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  color: var(--white);
  padding: 5.5rem 0;
  border-top: 4px solid var(--gold-accent);
  border-bottom: 4px solid var(--gold-accent);
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.25rem;
  text-align: center;
}

.stat-card {
  background: rgba(15, 23, 42, 0.70);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-xl);
  padding: 2.75rem 1.75rem;
  transition: var(--transition-normal);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.stat-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold-accent);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.stat-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(11, 94, 215, 0.4) 0%, rgba(41, 182, 246, 0.2) 100%);
  color: var(--gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  border: 2px solid var(--gold-accent);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  transition: var(--transition-normal);
}

.stat-card:hover .stat-icon {
  background: var(--gold-gradient);
  color: var(--dark-slate);
  transform: rotateY(180deg) scale(1.1);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
}

.stat-counter {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.6rem;
  background: linear-gradient(135deg, #FFFFFF 0%, #F9E79F 50%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.stat-label {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   TESTIMONIALS SECTION (UPGRADED GOOGLE REVIEW SLIDER)
   ========================================================================== */
.google-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--white);
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  margin: -1.5rem auto 2.5rem auto;
  width: fit-content;
}

.google-trust-bar i.fa-google {
  font-size: 1.5rem;
  background: linear-gradient(135deg, #4285F4, #EA4335, #FBBC05, #34A853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.google-trust-score {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--dark-charcoal);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.testimonials-swiper {
  overflow: hidden;
  padding: 1rem 0 3.5rem 0;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold-accent);
}

.testimonial-quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3.5rem;
  color: rgba(212, 175, 55, 0.15);
  line-height: 1;
  pointer-events: none;
}

.testimonial-stars {
  color: #FFC107;
  font-size: 1.15rem;
  display: flex;
  gap: 0.3rem;
  margin-bottom: 1.25rem;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  font-style: italic;
  position: relative;
  z-index: 2;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-100);
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--royal-blue) 0%, var(--sky-blue) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.25rem;
  border: 2px solid var(--gold-accent);
  box-shadow: 0 4px 12px rgba(11, 94, 215, 0.2);
}

.testimonial-info h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark-charcoal);
  margin-bottom: 2px;
}

.testimonial-info p {
  font-size: 0.8rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* ==========================================================================
   FAQ SECTION (UPGRADED 2-COLUMN LUXURY ACCORDION)
   ========================================================================== */
.faq-grid-upgraded {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: flex-start;
}

@media (max-width: 992px) {
  .faq-grid-upgraded {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Left Assistance Box */
.faq-help-card {
  background: linear-gradient(140deg, #020C1C 0%, #061F45 50%, #051A3B 100%);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem 2.25rem;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  position: sticky;
  top: 100px;
}

.faq-help-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--dark-slate);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.faq-help-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.faq-help-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.faq-help-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Right Accordion List */
.faq-accordion-upgraded {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item-upgraded {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-normal);
  border-left: 4px solid transparent;
}

.faq-item-upgraded:hover {
  border-color: var(--gold-accent);
  box-shadow: var(--shadow-md);
}

.faq-item-upgraded.active {
  border-color: var(--gray-200);
  border-left: 4px solid var(--royal-blue);
  box-shadow: 0 12px 30px rgba(11, 94, 215, 0.12);
}

.faq-question-upgraded {
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--dark-charcoal);
  transition: var(--transition-fast);
  user-select: none;
}

.faq-item-upgraded.active .faq-question-upgraded {
  color: var(--royal-blue);
  background: rgba(11, 94, 215, 0.03);
}

.faq-toggle-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sky-blue-light);
  color: var(--royal-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: var(--transition-normal);
}

.faq-item-upgraded.active .faq-toggle-badge {
  background: var(--royal-blue);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer-upgraded {
  display: none;
  padding: 0 1.75rem 1.5rem 1.75rem;
  color: var(--gray-600);
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-item-upgraded.active .faq-answer-upgraded {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, #051A3B 0%, #0B5ED7 50%, #F57C00 100%);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  overflow: hidden;
  border: 3px solid var(--gold-accent);
}

.cta-content h2 {
  font-size: 2.25rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.map-container {
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.contact-info-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sky-blue-light);
  color: var(--royal-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-card-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-charcoal);
  margin-bottom: 0.2rem;
}

.contact-card-text p {
  font-size: 0.85rem;
  color: var(--gray-600);
  word-break: break-word;
}

/* Contact Form */
.contact-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark-charcoal);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark-charcoal);
  background: var(--off-white);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--royal-blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(11, 94, 215, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--dark-slate);
  color: rgba(255, 255, 255, 0.78);
  padding: 5rem 0 2rem 0;
  border-top: 4px solid var(--gold-accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo-img {
  height: 115px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: drop-shadow(0 6px 20px rgba(255, 255, 255, 0.15));
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 1rem 0 1.5rem 0;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.social-link:hover {
  background: var(--royal-blue);
  transform: translateY(-3px);
  border-color: var(--gold-accent);
}

.footer-title {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background: var(--orange);
  border-radius: 5px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--sky-blue);
  padding-left: 5px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

/* ==========================================================================
   FLOATING ACTION BUTTONS & BACK TO TOP
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: var(--transition-normal);
}

.floating-whatsapp {
  background: #25D366;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.45);
}

.floating-call {
  background: var(--orange);
}

.floating-call:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(245, 124, 0, 0.45);
}

.back-to-top {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--royal-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gold-accent);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--royal-blue-dark);
  transform: translateY(-3px);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1200px) {
  .hero-title { font-size: 2.8rem; }
  .hero-features-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  .nav-menu, .header-phone-box { display: none; }
  .mobile-call-btn { display: flex; }
  
  .header-container {
    flex-wrap: wrap;
    position: relative;
    padding-top: 0.75rem;
    padding-bottom: 1rem;
  }
  .brand-logo-img { height: 70px; }
  .header.scrolled .brand-logo-img { height: 60px; }
  
  .header-actions {
    width: 100%;
    justify-content: center;
    margin-top: 0.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--gray-200);
  }
  
  .mobile-toggle { 
    display: block;
    position: absolute;
    top: 2.25rem;
    right: 1.5rem;
  }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-slide-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 500px; margin: 0 auto; }
  .about-grid, .about-grid-upgraded { grid-template-columns: 1fr; }
  .timeline-steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .timeline-line { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-counters { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: minmax(0, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
  .faq-grid, .faq-grid-upgraded { grid-template-columns: 1fr; }
  
  .faq-help-card {
    position: relative;
    top: 0;
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .hero-title { font-size: 2.2rem; }
  .hero-features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: minmax(0, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .about-counters { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .timeline-steps { grid-template-columns: 1fr; }
  .contact-cards-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .floating-card-1 { top: 10px; left: -10px; }
  .floating-card-2 { bottom: 10px; right: -10px; }
}

/* ==========================================================================
   WORDPRESS / ELEMENTOR MOTION EFFECTS & SCROLL ANIMATIONS
   ========================================================================== */
[data-motion] {
  opacity: 0;
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

[data-motion="fade-up"] {
  transform: translateY(45px);
}

[data-motion="fade-down"] {
  transform: translateY(-45px);
}

[data-motion="fade-left"] {
  transform: translateX(-50px);
}

[data-motion="fade-right"] {
  transform: translateX(50px);
}

[data-motion="zoom-in"] {
  transform: scale(0.88);
}

[data-motion="zoom-out"] {
  transform: scale(1.12);
}

/* Activated by IntersectionObserver */
[data-motion].animated {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* Stagger Animation Delays */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }

/* Continuous Elementor-Style Floating Keyframes */
@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 124, 0, 0.4); }
  50% { box-shadow: 0 0 0 16px rgba(245, 124, 0, 0); }
}

.floating-card-1 {
  animation: floatSlow 5s ease-in-out infinite;
}

.floating-card-2 {
  animation: floatSlow 6s ease-in-out infinite reverse;
}

.btn-orange {
  animation: pulseGlow 3.5s infinite;
}

/* ==========================================================================
   DEDICATED INNER PAGES UNIQUE DESIGN SYSTEM & DETAILED COMPONENTS
   ========================================================================== */
.inner-section-bg {
  background: linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 100%);
  border-top: 1px solid rgba(41, 182, 246, 0.15);
  border-bottom: 1px solid rgba(41, 182, 246, 0.15);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.about-value-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: var(--transition-normal);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-gradient);
}

.about-value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(41, 182, 246, 0.3);
}

.about-value-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(11, 94, 215, 0.1) 0%, rgba(41, 182, 246, 0.2) 100%);
  color: var(--royal-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.25rem auto;
}

.about-value-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--dark-charcoal);
}

.about-value-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Material & Technical Spec Cards */
.spec-comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.spec-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border: 1px solid #E2E8F0;
  transition: var(--transition-normal);
}

.spec-card:hover {
  border-color: var(--sky-blue);
  transform: translateY(-6px);
}

.spec-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid #F1F5F9;
  margin-bottom: 1.5rem;
}

.spec-icon-box {
  width: 52px;
  height: 52px;
  background: var(--royal-blue);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.spec-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
}

.spec-label {
  color: var(--gray-600);
  font-weight: 500;
}

.spec-val {
  font-weight: 700;
  color: var(--dark-charcoal);
}

/* Instant Quote Estimator Card in Services Page */
.service-calc-card {
  background: linear-gradient(135deg, var(--midnight-blue) 0%, var(--royal-blue-dark) 100%);
  border-radius: 24px;
  padding: 3rem;
  color: var(--white);
  box-shadow: 0 20px 40px rgba(2, 12, 28, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.3);
  margin-top: 3.5rem;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.calc-result-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.calc-price {
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--gold-accent);
  margin: 0.5rem 0;
}

/* FAQ Search Bar */
.faq-search-box {
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
  position: relative;
}

.faq-search-input {
  width: 100%;
  padding: 1.1rem 1.5rem 1.1rem 3.5rem;
  border-radius: 50px;
  border: 2px solid #E2E8F0;
  font-size: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  transition: var(--transition-fast);
}

.faq-search-input:focus {
  outline: none;
  border-color: var(--royal-blue);
  box-shadow: 0 10px 30px rgba(11, 94, 215, 0.15);
}

.faq-search-icon {
  position: absolute;
  left: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--royal-blue);
  font-size: 1.2rem;
}

/* Coverage Tags Cloud */
.coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.coverage-tag {
  background: #E0F2FE;
  color: #0369A1;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

@media (max-width: 992px) {
  .about-values-grid, .spec-comparison-grid, .calc-grid {
    grid-template-columns: 1fr;
  }
}
