@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;800;900&display=swap');

:root {
  /* Colors */
  --c-dark: #06141F;
  --c-navy: #0B2239;
  --c-turquoise: #18C7D8;
  --c-ice: #DDFBFF;
  --c-white: #FFFFFF;
  --c-silver: #C7D2DA;
  --c-gray: #6B7280;
  --c-gold: #D8B76A;

  /* Glassmorphism */
  --glass-bg: rgba(11, 34, 57, 0.6);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-blur: blur(12px);

  /* Shadows */
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 20px rgba(24, 199, 216, 0.2);

  /* Transitions */
  --t-fast: 0.2s ease;
  --t-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --t-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Tajawal', sans-serif;
  background-color: var(--c-white);
  color: var(--c-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--c-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--c-turquoise);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #15b1c0;
}

/* Text Selection */
::selection {
  background: var(--c-turquoise);
  color: var(--c-dark);
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--c-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-glass {
  width: 60px;
  height: 60px;
  background: rgba(24, 199, 216, 0.2);
  border: 2px solid var(--c-turquoise);
  border-radius: 12px;
  backdrop-filter: blur(5px);
  animation: spinGlass 1.5s linear infinite;
  box-shadow: 0 0 20px rgba(24, 199, 216, 0.4);
}
@keyframes spinGlass {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.2); }
  100% { transform: rotate(360deg) scale(1); }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  color: var(--c-dark);
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-desc {
  text-align: center;
  color: var(--c-gray);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.125rem;
}

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

section {
  padding: 6rem 0;
}

.bg-light { background-color: var(--c-ice); }
.bg-dark { background-color: var(--c-dark); color: var(--c-white); }
.bg-dark h2 { color: var(--c-white); }
.bg-dark .section-desc { color: var(--c-silver); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  transition: var(--t-fast);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--c-turquoise);
  color: var(--c-dark);
}
.btn-primary:hover {
  background-color: #15b1c0;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--c-silver);
  color: var(--c-white);
}

.btn-outline:hover {
  border-color: var(--c-turquoise);
  color: var(--c-turquoise);
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
}
.btn-whatsapp:hover {
  background-color: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

/* Phone number helper class to prevent reversed characters in Arabic context */
.phone-number {
  direction: ltr !important;
  display: inline-block !important;
  unicode-bidi: embed !important;
}

/* Top Bar */
.top-bar {
  background-color: #030b11; /* Sleek deep dark */
  color: var(--c-silver);
  font-size: 0.825rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(24, 199, 216, 0.12);
  position: relative;
  z-index: 51;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-text {
  font-weight: 500;
}
.top-bar-links {
  display: flex;
  gap: 1.5rem;
}
.top-bar-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--t-fast);
}
.top-bar-links a:hover {
  color: var(--c-turquoise);
}

@media (max-width: 768px) {
  .top-bar .hidden-mobile { display: none; }
  .top-bar .container { justify-content: center; }
}

/* Header */
.header {
  position: fixed;
  top: 35px; /* Sits exactly below the top bar */
  left: 0;
  width: 100%;
  z-index: 50; /* Header above content but below mobile menu */
  transition: all var(--t-smooth);
  padding: 0.8rem 0;
}
@media (max-width: 768px) {
  .header {
    top: 32px; /* Adjusted for mobile top bar text height */
  }
}
.header.scrolled {
  top: 10px; /* Floating look when scrolled */
  padding: 0.5rem 0;
}
.header.scrolled .container {
  background: rgba(11, 34, 57, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px; /* Highly premium pill shape */
  padding: 0.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(24, 199, 216, 0.05);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
  transition: var(--t-smooth);
}
.header.scrolled .logo img { color: white; }

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  color: var(--c-white);
  transition: color var(--t-fast);
  position: relative;
}
.nav-links a:hover {
  color: var(--c-turquoise);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; width: 0; height: 2px;
  background-color: var(--c-turquoise);
  transition: width var(--t-fast);
}
.nav-links a:hover::after { width: 100%; }

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--c-white);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 992px) {
  .nav-links, .header-actions { display: none; }
  .mobile-menu-btn { display: block; }
}

/* Mobile Menu Panel */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%; width: 300px; height: 100vh;
  background-color: rgba(11, 34, 57, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 100;
  padding: 2rem;
  transition: right var(--t-smooth);
  box-shadow: -5px 0 15px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.mobile-nav.open { right: 0; }
.close-menu {
  align-self: flex-end;
  background: none; border: none;
  color: var(--c-white); font-size: 2rem; cursor: pointer;
}
.mobile-nav a {
  color: var(--c-white);
  font-size: 1.2rem;
  font-weight: 500;
  display: block;
}
.mobile-nav .btn { margin-top: 1rem; display: flex; }

.mobile-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.5); z-index: 99;
  opacity: 0; visibility: hidden; transition: var(--t-fast);
}
.mobile-overlay.open { opacity: 1; visibility: visible; }

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  background-color: var(--c-dark);
  color: var(--c-white);
  overflow: hidden;
}

.hero-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.4;
  transform: scale(1.05);
  animation: heroZoom 20s linear infinite alternate;
}
@keyframes heroZoom { 0% {transform: scale(1.05);} 100% {transform: scale(1.15);} }

/* Crystal Motion System: Hero Glass Panels */
.glass-panel-1, .glass-panel-2 {
  position: absolute;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.05);
  z-index: 2;
}
.glass-panel-1 {
  width: 40vw; height: 120vh; top: -10%; left: -10%; transform: rotate(15deg);
  animation: floatPanel1 15s ease-in-out infinite;
}
.glass-panel-2 {
  width: 30vw; height: 80vh; bottom: -20%; right: 5%; transform: rotate(-20deg);
  animation: floatPanel2 15s ease-in-out infinite;
  animation-delay: -5s;
}

@keyframes floatPanel1 {
  0%, 100% { transform: translateY(0) rotate(15deg); }
  50% { transform: translateY(-35px) rotate(17deg); }
}
@keyframes floatPanel2 {
  0%, 100% { transform: translateY(0) rotate(-20deg); }
  50% { transform: translateY(-25px) rotate(-18deg); }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--c-white);
}
.hero h1 span { color: var(--c-turquoise); }
.hero p {
  font-size: 1.25rem;
  color: var(--c-ice);
  margin-bottom: 2rem;
  max-width: 600px;
}

.trust-points {
  display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem;
}
.trust-points span {
  display: flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  padding: 0.5rem 1rem; border-radius: 30px;
  backdrop-filter: blur(5px);
  font-size: 0.9rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-cards {
  position: absolute; left: 5%; top: 50%; transform: translateY(-50%);
  z-index: 2; /* Below hero-content to prevent overlap */
  display: flex; flex-direction: column; gap: 1.5rem;
}
.hero-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  padding: 1.5rem; border-radius: 12px;
  width: 250px;
  box-shadow: var(--shadow-md);
}
.hero-card h4 { color: var(--c-turquoise); margin-bottom: 0.5rem; }
.hero-card ul { margin-left: 1rem; list-style-type: disc; color: var(--c-ice); }

@media (max-width: 992px) {
  .hero-cards { display: none; }
  .hero h1 { font-size: 2.5rem; }
}

/* Services Section */
.services-filter {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.filter-btn {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(24, 199, 216, 0.2);
  color: var(--c-navy);
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--t-fast);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.filter-btn:hover {
  border-color: var(--c-turquoise);
  background: var(--c-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(24, 199, 216, 0.15);
}
.filter-btn.active {
  background: linear-gradient(135deg, var(--c-turquoise) 0%, #0fa8b8 100%);
  border-color: var(--c-turquoise);
  color: var(--c-dark);
  box-shadow: var(--shadow-glow);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.2rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(24, 199, 216, 0.16);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  will-change: transform, box-shadow;
  opacity: 1;
}

/* Ambient Radial Glow on Hover */
.service-card::before {
  content: '';
  position: absolute;
  top: -20%; left: -20%; width: 140%; height: 140%;
  background: radial-gradient(circle, rgba(24, 199, 216, 0.1) 0%, rgba(24, 199, 216, 0) 70%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover::before {
  opacity: 1;
}

/* Dynamic Sheen / Reflection Effect */
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: -150%; width: 60%; height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
  z-index: 3;
}
.service-card:hover::after {
  left: 200%;
  transition: left 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Card Filtering Animation helpers */
.service-card.is-hidden {
  opacity: 0;
  transform: scale(0.9) translateY(15px);
  pointer-events: none;
}
.service-card.is-collapsed {
  display: none !important;
}

.service-card:hover {
  transform: translateY(-12px);
  border-color: rgba(24, 199, 216, 0.45);
  box-shadow: 0 30px 60px rgba(24, 199, 216, 0.15), var(--shadow-glow);
}

/* Bestseller Badge styling */
.service-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(11, 34, 57, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--c-turquoise);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 800;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(24, 199, 216, 0.3);
  pointer-events: none;
}

/* Floating Nested Image Frame */
.service-img-wrapper {
  padding: 12px 12px 0 12px;
  position: relative;
  z-index: 1;
}

.service-img {
  width: 100%; height: 210px; overflow: hidden; position: relative;
  border-radius: 20px;
  border: 1px solid rgba(24, 199, 216, 0.1);
}
/* Visual overlay inside image */
.service-img::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 100%; height: 40%;
  background: linear-gradient(to top, rgba(11, 34, 57, 0.35) 0%, rgba(11, 34, 57, 0) 100%);
  z-index: 2;
  pointer-events: none;
}

.service-img img {
  width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow);
}
.service-card:hover .service-img img { transform: scale(1.08); }

.service-icon {
  position: absolute; bottom: -20px; right: 28px; left: auto;
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--c-turquoise) 0%, #0fa8b8 100%);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--c-dark); font-size: 1.25rem;
  border: 3px solid var(--c-white);
  box-shadow: 0 4px 15px rgba(24, 199, 216, 0.3);
  transition: all var(--t-smooth);
  z-index: 5;
}
.service-card:hover .service-icon {
  transform: translateY(-4px) rotate(-12deg);
  box-shadow: 0 8px 25px rgba(24, 199, 216, 0.5);
}

.service-content {
  padding: 2.2rem 1.8rem 1.8rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

/* Sub-category tag */
.service-cat {
  font-size: 0.8rem;
  color: var(--c-turquoise);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  letter-spacing: 0.5px;
  display: block;
}

.service-content h3 {
  color: var(--c-navy);
  margin-bottom: 0.8rem;
  font-size: 1.35rem;
  font-weight: 800;
  transition: color var(--t-fast);
}
.service-card:hover .service-content h3 {
  color: var(--c-turquoise);
}
.service-content p {
  color: var(--c-gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.8rem;
  flex-grow: 1;
}

/* Elegant Text Link CTA */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--c-navy);
  font-weight: 800;
  font-size: 0.95rem;
  margin-top: auto;
  transition: all var(--t-fast);
  width: fit-content;
  cursor: pointer;
  border-bottom: 2px solid rgba(24, 199, 216, 0.3);
  padding-bottom: 2px;
}
.service-link i {
  transition: transform var(--t-fast);
  font-size: 0.85rem;
  color: var(--c-turquoise);
}
.service-card:hover .service-link {
  color: var(--c-turquoise);
  border-bottom-color: var(--c-turquoise);
}
.service-card:hover .service-link i {
  transform: translateX(-5px); /* Slide arrow left for RTL layout */
}

/* Split Layout: Why Us Redesign */
.why-us-section {
  position: relative;
  background: linear-gradient(180deg, var(--c-white) 0%, #f6fcfe 100%);
  overflow: hidden;
}
.why-us-section h2 span {
  background: linear-gradient(135deg, var(--c-turquoise) 0%, #0fa8b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.why-subtitle {
  color: var(--c-gray);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.2rem;
  max-width: 650px;
}
.split-section { display: flex; align-items: center; gap: 4rem; }
.split-content { flex: 1.2; }

/* Grid of features */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}
.why-point-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(11, 34, 57, 0.02);
  border: 1px solid rgba(11, 34, 57, 0.05);
  padding: 1rem 1.2rem;
  border-radius: 18px;
  transition: transform var(--t-smooth), border-color var(--t-smooth), box-shadow var(--t-smooth), background-color var(--t-smooth);
  cursor: default;
}
.why-point-card span {
  font-weight: 700;
  color: var(--c-navy);
  font-size: 0.925rem;
  line-height: 1.4;
  transition: color var(--t-smooth);
}
.why-icon-box {
  width: 34px;
  height: 34px;
  background: rgba(24, 199, 216, 0.1);
  border: 1px solid rgba(24, 199, 216, 0.2);
  color: var(--c-turquoise);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--t-smooth), background-color var(--t-smooth), color var(--t-smooth);
}
.why-icon-box svg {
  transition: stroke var(--t-smooth);
}
.why-point-card:hover {
  transform: translateY(-5px);
  background: rgba(24, 199, 216, 0.04);
  border-color: rgba(24, 199, 216, 0.35);
  box-shadow: 0 12px 25px rgba(24, 199, 216, 0.08), var(--shadow-glow);
}
.why-point-card:hover span {
  color: var(--c-dark);
}
.why-point-card:hover .why-icon-box {
  transform: scale(1.1) rotate(10deg);
  background: var(--c-turquoise);
  color: var(--c-dark);
  border-color: var(--c-turquoise);
  box-shadow: 0 0 12px rgba(24, 199, 216, 0.4);
}

/* Premium Capsule Chips */
.mini-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.8rem;
}
.mini-chip {
  background: var(--c-white);
  border: 1px solid rgba(11, 34, 57, 0.08);
  padding: 0.75rem 1.4rem;
  border-radius: 50px;
  font-weight: 800;
  color: var(--c-navy);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: all var(--t-smooth);
  cursor: pointer;
}
.mini-chip i {
  color: var(--c-turquoise);
  font-size: 0.95rem;
  transition: transform var(--t-smooth);
}
.mini-chip:hover {
  transform: translateY(-3px);
  border-color: var(--c-turquoise);
  box-shadow: 0 8px 20px rgba(24, 199, 216, 0.12), var(--shadow-glow);
  color: var(--c-dark);
}
.mini-chip:hover i {
  transform: scale(1.25) rotate(-10deg);
}

/* Layered Image Frame & Floating Glass */
.split-image-wrapper {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  min-height: 400px;
}
.split-image-inner {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 24px;
  overflow: hidden;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 45px rgba(11, 34, 57, 0.12);
}
.split-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  transition: transform var(--t-slow);
}
.split-image-wrapper:hover .split-image-inner img {
  transform: scale(1.06);
}
.decorative-glass-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - 1.5rem);
  height: calc(100% - 1.5rem);
  background: linear-gradient(135deg, rgba(24, 199, 216, 0.08) 0%, rgba(24, 199, 216, 0.01) 100%);
  border: 1px solid rgba(24, 199, 216, 0.25);
  border-radius: 24px;
  z-index: 1;
  transform: translate(-1.5rem, 1.5rem);
  transition: transform var(--t-slow), border-color var(--t-smooth);
  pointer-events: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.split-image-wrapper:hover .decorative-glass-panel {
  transform: translate(-0.8rem, 0.8rem);
  border-color: rgba(24, 199, 216, 0.45);
}
.image-sheen {
  position: absolute;
  top: 0; left: -150%; width: 60%; height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
  z-index: 3;
}
.split-image-wrapper:hover .image-sheen {
  left: 200%;
  transition: left 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 992px) {
  .split-section { flex-direction: column; gap: 3rem; }
  .why-grid { grid-template-columns: 1fr; gap: 1rem; }
  .split-image-wrapper { width: 100%; min-height: auto; padding: 1rem; }
  .split-image-inner { height: 320px; }
  .decorative-glass-panel { display: none; } /* Hide panel on mobile to save layout space */
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.8rem;
}
.gallery-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, box-shadow;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Glass Sweep Sheen Effect on Gallery Card Hover */
.gallery-item::after {
  content: '';
  position: absolute;
  top: 0; left: -150%; width: 60%; height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
  z-index: 3;
}
.gallery-item:hover::after {
  left: 200%;
  transition: left 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Bottom Gradients instead of full screen overlays */
.gallery-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(
    to top,
    rgba(6, 20, 31, 0.95) 0%,
    rgba(6, 20, 31, 0.45) 50%,
    rgba(6, 20, 31, 0) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.2rem 1.8rem;
  opacity: 0.85;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.gallery-item:hover {
  transform: translateY(-8px);
  border-color: rgba(24, 199, 216, 0.45);
  box-shadow: 0 25px 50px rgba(24, 199, 216, 0.2), var(--shadow-glow);
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h3 {
  color: var(--c-white);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  transform: translateY(15px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Premium Glowing Capsule Button */
.gallery-overlay .btn {
  background: linear-gradient(135deg, var(--c-turquoise) 0%, #0fa8b8 100%);
  border: none;
  color: var(--c-dark) !important;
  border-radius: 50px;
  padding: 0.65rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 800;
  width: fit-content;
  box-shadow: 0 4px 15px rgba(24, 199, 216, 0.35);
  transform: translateY(15px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
              opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.3s ease, 
              background 0.3s ease;
  transition-delay: 0.05s;
}
.gallery-overlay .btn:hover {
  background: var(--c-white);
  color: var(--c-dark) !important;
  box-shadow: 0 8px 25px rgba(24, 199, 216, 0.6);
  transform: translateY(-2px) !important;
}

.gallery-item:hover .gallery-overlay h3,
.gallery-item:hover .gallery-overlay .btn {
  transform: translateY(0);
  opacity: 1;
}

/* Locations Section */
.locations-chips {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2rem;
}
.chip {
  padding: 0.8rem 1.5rem; background: var(--c-white); color: var(--c-navy);
  border-radius: 30px; font-weight: 500; border: 1px solid var(--c-silver);
  transition: var(--t-fast);
}
.chip:hover {
  background: var(--c-turquoise); color: var(--c-dark); border-color: var(--c-turquoise);
}

/* Timeline */
.timeline {
  max-width: 800px; margin: 0 auto; position: relative;
}
.timeline::before {
  content: ''; position: absolute; top: 0; right: 20px; width: 2px; height: 100%;
  background: var(--c-silver);
}
.timeline-item {
  position: relative; padding-right: 50px; margin-bottom: 2rem;
}
.timeline-item::after {
  content: ''; position: absolute; top: 5px; right: 13px; width: 16px; height: 16px;
  background: var(--c-turquoise); border-radius: 50%; border: 4px solid var(--c-ice);
}
.timeline-content {
  background: var(--c-white); padding: 1.5rem; border-radius: 12px;
  box-shadow: var(--shadow-sm); border-right: 3px solid var(--c-turquoise);
}
.timeline-content h4 { color: var(--c-navy); margin-bottom: 0.5rem; }
.timeline-content p { color: var(--c-gray); font-size: 0.95rem; }

/* FAQ Accordion */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--c-white); border: 1px solid var(--c-silver);
  border-radius: 8px; margin-bottom: 1rem; overflow: hidden;
}
.faq-question {
  width: 100%; text-align: right; padding: 1.2rem 1.5rem;
  background: none; border: none; font-weight: 700; color: var(--c-navy);
  font-size: 1.1rem; cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; transition: var(--t-fast);
}
.faq-question:hover { color: var(--c-turquoise); }
.faq-icon {
  width: 24px; height: 24px; position: relative; transition: transform var(--t-fast);
}
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: currentColor;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.faq-icon::before { width: 16px; height: 2px; }
.faq-icon::after { width: 2px; height: 16px; transition: transform var(--t-fast); }
.faq-item.active .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height var(--t-smooth);
}
.faq-answer-inner { padding: 0 1.5rem 1.2rem; color: var(--c-gray); }

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--c-dark) 0%, var(--c-navy) 100%);
  color: var(--c-white); text-align: center; padding: 5rem 0; position: relative;
  overflow: hidden;
}
.cta-bg-pattern {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background-image: radial-gradient(rgba(24, 199, 216, 0.1) 2px, transparent 2px);
  background-size: 30px 30px; opacity: 0.5; z-index: 1;
}
.cta-content { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; }
.cta-content h2 { color: var(--c-white); margin-bottom: 1rem; }
.cta-content p { color: var(--c-silver); margin-bottom: 2rem; font-size: 1.1rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Footer */
.footer { background: var(--c-dark); color: var(--c-silver); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-bottom: 3rem; }
.footer-col h4 { color: var(--c-white); font-size: 1.2rem; margin-bottom: 1.5rem; position: relative; padding-bottom: 0.5rem; }
.footer-col h4::after { content:''; position:absolute; bottom:0; right:0; width:40px; height:2px; background:var(--c-turquoise); }
.footer-logo { max-width: 200px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-col p { font-size: 0.95rem; line-height: 1.8; margin-bottom: 1.5rem; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a { transition: var(--t-fast); display: inline-flex; align-items: center; gap: 0.5rem; }
.footer-links a:hover { color: var(--c-turquoise); padding-right: 5px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.5rem 0; text-align: center; font-size: 0.9rem; }

/* Floating Elements */
.floating-whatsapp {
  position: fixed; bottom: 30px; left: 30px; width: 60px; height: 60px;
  background: #25D366; color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 90; animation: pulse 2s infinite; transition: var(--t-fast);
}
.floating-whatsapp:hover { transform: scale(1.1); animation: none; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Mobile Bottom Bar */
.mobile-bottom-bar {
  display: none; position: fixed; bottom: 0; left: 0; width: 100%;
  background: var(--c-white); box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 95; padding: 0.5rem;
}
.mobile-bottom-bar .btn { flex: 1; padding: 0.8rem; border-radius: 6px; }
@media (max-width: 768px) {
  .floating-whatsapp { bottom: 80px; }
  .mobile-bottom-bar { display: flex; gap: 0.5rem; }
  body { padding-bottom: 60px; }
}

/* Animation utilities for JS */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-stagger { transition-delay: calc(var(--delay) * 100ms); }

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================
   Added utility classes
   ========================== */

/* Section padding utility */
.section-padding {
  padding: 4rem 0;
}

/* Features grid for service cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* Generic glass card used in hero and other sections */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--t-smooth);
}

/* Header container for legacy pages */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}


/* --- New Image Styling Requested --- */
.image-card,
.service-image,
.gallery-image,
.article-image,
.hero-image,
.service-img {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);
}

.image-card img,
.service-image img,
.gallery-image img,
.article-image img,
.hero-image img,
.service-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.gallery-card img,
.service-card img,
.blog-card img,
.gallery-item img {
  transition: transform 0.45s ease, filter 0.45s ease;
}

.gallery-card:hover img,
.service-card:hover img,
.blog-card:hover img,
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.08);
}

/* Glassy overlay on hover */
.gallery-item::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.0);
  transition: background 0.45s ease;
  pointer-events: none;
}
.gallery-item:hover::after {
  background: rgba(255,255,255,0.05);
}

/* ==========================
   Legacy header & location/blog pages
   ========================== */

/* Legacy header for location & blog pages (bare <header> without .header class) */
header:not(.header) {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background-color: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  padding: 0.6rem 0;
  box-shadow: var(--shadow-sm);
}

/* Header-container: logo */
.header-container .logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--c-white);
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
}
.header-container .logo span {
  color: var(--c-turquoise);
}

/* Header-container: nav */
.header-container nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.header-container .nav-links {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header-container .nav-links li {
  list-style: none;
}
.header-container .nav-links a {
  font-weight: 500;
  color: var(--c-white);
  transition: color 0.2s;
  white-space: nowrap;
  font-size: 0.9rem;
  text-decoration: none;
}
.header-container .nav-links a:hover,
.header-container .nav-links a.active {
  color: var(--c-turquoise);
}

/* Header-container: actions */
.header-container .header-actions {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-shrink: 0;
}
.header-container .header-actions .btn {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  white-space: nowrap;
}

/* Header-container: mobile menu button */
.header-container .mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--c-white);
  font-size: 1.5rem;
  cursor: pointer;
}
@media (max-width: 992px) {
  .header-container nav,
  .header-container .header-actions {
    display: none;
  }
  .header-container .mobile-menu-btn {
    display: block;
  }
}

/* ==========================
   Button variants
   ========================== */

/* .btn-outline in light context */
.bg-light .btn-outline,
.section-padding .btn-outline {
  border-color: var(--c-navy);
  color: var(--c-navy);
}
.bg-light .btn-outline:hover,
.section-padding .btn-outline:hover {
  border-color: var(--c-turquoise);
  color: var(--c-turquoise);
}

/* .btn-link */
.btn-link {
  color: var(--c-turquoise);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s;
}
.btn-link:hover {
  color: #0fa8b8;
}

/* ==========================
   Background utilities
   ========================== */

.bg-primary {
  background: linear-gradient(135deg, var(--c-dark) 0%, var(--c-navy) 100%);
  color: var(--c-white);
}
.bg-primary h2 { color: var(--c-white); }
.bg-primary p { color: var(--c-silver); }

/* ==========================
   Text & spacing utilities
   ========================== */

.text-center { text-align: center; }
.text-white { color: var(--c-white) !important; }
.text-light { color: var(--c-silver) !important; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

/* ==========================
   Mobile bottom nav (location pages)
   ========================== */

.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--c-white);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 95;
  padding: 0.4rem 0.5rem;
  justify-content: space-around;
}
.mobile-bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.7rem;
  color: var(--c-gray);
  text-decoration: none;
  padding: 0.3rem;
}
.mobile-bottom-nav a i {
  font-size: 1.1rem;
}
.mobile-bottom-nav a:hover {
  color: var(--c-turquoise);
}
@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
  }
}

/* ==========================
   Work grid & work cards (location area pages)
   ========================== */

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.work-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 220px;
  background: rgba(255,255,255,0.05);
}
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.work-card:hover img {
  transform: scale(1.07);
}
.work-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(6,20,31,0.85));
}
.work-overlay h4 {
  color: var(--c-white);
  margin: 0;
  font-size: 0.95rem;
}

/* ==========================
   Content grid, sidebar, info-box, check-list (location detail pages)
   ========================== */

.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.content-grid .main-content p {
  line-height: 1.8;
  margin-bottom: 1rem;
  color: var(--c-gray);
}
.content-grid .main-content h2 {
  text-align: right;
  font-size: 1.8rem;
}
.content-grid .main-content h3 {
  font-size: 1.3rem;
  color: var(--c-navy);
  margin-top: 1.5rem;
}
.info-box {
  background: var(--c-ice);
  padding: 1.5rem;
  border-radius: 14px;
  border: 1px solid rgba(24,199,216,0.15);
}
.info-box h3 {
  font-size: 1.1rem;
  color: var(--c-navy);
  margin-bottom: 1rem;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  padding: 0.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--c-dark);
}
.check-list .text-primary,
.text-primary {
  color: var(--c-turquoise) !important;
}
.chips-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}
.chip-outline {
  border-color: var(--c-turquoise);
  color: var(--c-turquoise);
}
.chip-outline:hover {
  background: var(--c-turquoise);
  color: var(--c-dark);
}
@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================
   Feature icon (glass cards on location pages)
   ========================== */

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--c-turquoise), #0fa8b8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-dark);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* ==========================
   Legacy footer (bare <footer> without .footer class)
   ========================== */

footer:not(.footer) {
  background: var(--c-dark);
  color: var(--c-silver);
  padding: 4rem 0 0;
}
footer:not(.footer) .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
footer:not(.footer) h4 {
  color: var(--c-white);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.5rem;
}
footer:not(.footer) h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 2px;
  background: var(--c-turquoise);
}
footer:not(.footer) .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer:not(.footer) .footer-links li {
  margin-bottom: 0.7rem;
}
footer:not(.footer) .footer-links a {
  color: var(--c-silver);
  text-decoration: none;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
footer:not(.footer) .footer-links a:hover {
  color: var(--c-turquoise);
}
footer:not(.footer) .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.2rem 0;
  text-align: center;
  font-size: 0.85rem;
}
footer:not(.footer) .logo {
  color: var(--c-white);
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 800;
}
footer:not(.footer) .logo span {
  color: var(--c-turquoise);
}

/* ==========================
   Glass card on light backgrounds
   ========================== */

.bg-light .glass-card,
.section-padding .glass-card {
  background: var(--c-white);
  border: 1px solid rgba(24,199,216,0.15);
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  color: var(--c-dark);
}
.bg-light .glass-card h3,
.section-padding .glass-card h3 {
  color: var(--c-navy);
}
.bg-light .glass-card p,
.section-padding .glass-card p {
  color: var(--c-gray);
}
.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(24,199,216,0.25), var(--shadow-glow);
  border-color: rgba(24, 199, 216, 0.4);
}

/* ==========================
   Service page hero fixes
   ========================== */

.hero .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero .hero-content.glass-card {
  background: rgba(11, 34, 57, 0.75);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 2.5rem;
  max-width: 700px;
}

/* ==========================
   Trust points for service pages
   ========================== */

.trust-points .trust-point {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  padding: 0.4rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  color: var(--c-ice);
}
.trust-points .trust-point i {
  color: var(--c-turquoise);
}

/* ==========================
   CTA final section (service pages)
   ========================== */

.cta-final {
  background: linear-gradient(135deg, var(--c-dark) 0%, var(--c-navy) 100%);
  color: var(--c-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final h2 {
  color: var(--c-white);
}
.cta-final p {
  color: var(--c-silver);
}
.cta-final .btn-group {
  justify-content: center;
  margin-top: 2rem;
}

/* ==========================
   Service info section
   ========================== */

.service-info {
  background: var(--c-ice);
}

/* ==========================================================================
   Crystal Premium Aesthetic Upgrades
   ========================================================================== */

/* 1. Neon Ambient Glow Spheres */
.glow-sphere {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: screen;
  filter: blur(130px);
  pointer-events: none;
  opacity: 0.12;
  z-index: 1;
  animation: floatGlow 25s infinite ease-in-out alternate;
}
.glow-sphere-1 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--c-turquoise) 0%, rgba(24,199,216,0) 70%);
  top: -10%;
  left: 10%;
}
.glow-sphere-2 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, #007bff 0%, rgba(0,123,255,0) 70%);
  bottom: 5%;
  right: -10%;
  animation-delay: -7s;
}
.glow-sphere-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--c-turquoise) 0%, rgba(24,199,216,0) 70%);
  bottom: -15%;
  left: 15%;
  animation-delay: -12s;
}

@keyframes floatGlow {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  50% {
    transform: translate(50px, -70px) scale(1.18) rotate(180deg);
  }
  100% {
    transform: translate(-40px, 40px) scale(0.9) rotate(360deg);
  }
}

/* 2. Text Gradients & Glows */
.text-gradient {
  background: linear-gradient(135deg, var(--c-white) 40%, var(--c-turquoise) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* 3. Navigation link expand center out & glow */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--c-turquoise);
  transition: width var(--t-smooth), left var(--t-smooth);
  box-shadow: 0 0 8px var(--c-turquoise);
}
.nav-links a:hover::after {
  width: 100%;
  left: 0;
}

/* 4. Enhanced Glassmorphic Card Styling - Consolidated with main declarations */

/* 5. Smooth Scroll-Reveal Transitions */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}
/* Stagger rule using CSS variables */
.reveal[style*="--delay"] {
  transition-delay: calc(var(--delay) * 120ms);
}

/* 6. FAQ Accordion Item Upgrades */
.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--t-smooth);
}
.faq-item:hover {
  border-color: rgba(24, 199, 216, 0.25);
  box-shadow: 0 8px 25px rgba(24, 199, 216, 0.06);
}
.faq-item.active {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(24, 199, 216, 0.35);
  box-shadow: 0 10px 30px rgba(24, 199, 216, 0.1);
}

/* 7. Why Us Mini Cards Upgrades */
.mini-card {
  transition: var(--t-smooth);
}
.mini-card:hover {
  background: var(--c-white);
  transform: translateX(-6px);
  box-shadow: 0 8px 20px rgba(24, 199, 216, 0.15), var(--shadow-glow);
  border-color: var(--c-turquoise);
}

/* ==========================================================================
   Interactive Glass Price Estimator (WhatsApp Multi-step Form)
   ========================================================================== */
.quote-estimator-section {
  position: relative;
  background: linear-gradient(180deg, var(--c-white) 0%, var(--c-ice) 100%);
  padding: 5rem 0;
}
.quote-estimator-card {
  max-width: 750px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(24, 199, 216, 0.2);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 50px rgba(11, 34, 57, 0.08), var(--shadow-glow);
}
.estimator-header {
  text-align: center;
  margin-bottom: 2rem;
}
.estimator-header h3 {
  font-size: 1.8rem;
  color: var(--c-navy);
  margin-bottom: 0.5rem;
}
.estimator-header p {
  color: var(--c-gray);
  font-size: 0.95rem;
}
.estimator-steps-indicator {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 2.5rem;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}
.estimator-steps-indicator::before {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0; height: 2px;
  background: var(--c-silver);
  z-index: 1;
  transform: translateY(-50%);
}
.estimator-step-dot {
  width: 36px; height: 36px;
  background: var(--c-white);
  border: 2px solid var(--c-silver);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--c-gray);
  position: relative;
  z-index: 2;
  transition: all var(--t-fast);
}
.estimator-step-dot.active {
  background: var(--c-turquoise);
  border-color: var(--c-turquoise);
  color: var(--c-dark);
  box-shadow: 0 0 12px var(--c-turquoise);
}
.estimator-step-dot.completed {
  background: var(--c-navy);
  border-color: var(--c-navy);
  color: var(--c-white);
}

.estimator-step-content {
  display: none;
  animation: fadeIn 0.4s ease;
}
.estimator-step-content.active {
  display: block;
}

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

/* Service Options Grid */
.estimator-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.estimator-option-card {
  background: var(--c-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 1.2rem 0.8rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--t-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.estimator-option-card:hover {
  border-color: var(--c-turquoise);
  background: rgba(24, 199, 216, 0.03);
  transform: translateY(-3px);
}
.estimator-option-card.selected {
  border-color: var(--c-turquoise);
  background: rgba(24, 199, 216, 0.08);
  box-shadow: 0 0 15px rgba(24, 199, 216, 0.15);
}
.estimator-option-card i {
  font-size: 1.8rem;
  color: var(--c-navy);
  transition: color var(--t-fast);
}
.estimator-option-card.selected i {
  color: var(--c-turquoise);
}
.estimator-option-card span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-navy);
}

/* Inputs Form */
.estimator-form-group {
  margin-bottom: 1.2rem;
}
.estimator-form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--c-navy);
  margin-bottom: 0.5rem;
}
.estimator-form-group input,
.estimator-form-group select,
.estimator-form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--c-silver);
  background: var(--c-white);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--c-dark);
  transition: all var(--t-fast);
}
.estimator-form-group input:focus,
.estimator-form-group select:focus,
.estimator-form-group textarea:focus {
  outline: none;
  border-color: var(--c-turquoise);
  box-shadow: 0 0 8px rgba(24, 199, 216, 0.2);
}

.estimator-inputs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.estimator-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  gap: 1rem;
}
.estimator-actions .btn {
  flex: 1;
}

/* Summary screen */
.estimator-summary {
  background: rgba(24, 199, 216, 0.05);
  border: 1px dashed rgba(24, 199, 216, 0.3);
  border-radius: 12px;
  padding: 1.2rem;
  margin-bottom: 1.5rem;
  direction: rtl;
}
.estimator-summary-item {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.estimator-summary-item:last-child {
  border-bottom: none;
}
.estimator-summary-item span:first-child {
  font-weight: 700;
  color: var(--c-navy);
}
.estimator-summary-item span:last-child {
  color: var(--c-dark);
}

/* Trust Bar */
.trust-bar {
  background: linear-gradient(180deg, #040d16 0%, #02070c 100%);
  padding: 2.2rem 0;
  border-top: 1px solid rgba(24, 199, 216, 0.15);
  border-bottom: 1px solid rgba(24, 199, 216, 0.15);
  position: relative;
  z-index: 5;
}
.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  justify-content: flex-start;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.2rem 1.5rem;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--t-smooth);
}
.trust-bar-item:hover {
  background: rgba(24, 199, 216, 0.05);
  border-color: rgba(24, 199, 216, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(24, 199, 216, 0.1);
}
.trust-bar-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(24, 199, 216, 0.1) 0%, rgba(24, 199, 216, 0.2) 100%);
  border: 1px solid rgba(24, 199, 216, 0.35);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-turquoise);
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all var(--t-smooth);
  box-shadow: 0 0 15px rgba(24, 199, 216, 0.1);
}
.trust-bar-item:hover .trust-bar-icon {
  transform: scale(1.1) rotate(8deg);
  background: var(--c-turquoise);
  color: var(--c-dark);
  box-shadow: 0 0 20px var(--c-turquoise);
  border-color: var(--c-turquoise);
}
.trust-bar-text {
  text-align: right;
}
.trust-bar-text h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-white);
  margin: 0 0 0.3rem;
  letter-spacing: 0.2px;
}
.trust-bar-text p {
  font-size: 0.825rem;
  color: var(--c-silver);
  margin: 0;
  line-height: 1.4;
}

