@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%; }
}

/* Top Bar */
.top-bar {
  background-color: var(--c-dark);
  color: var(--c-silver);
  font-size: 0.875rem;
  padding: 0.5rem 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-links {
  display: flex;
  gap: 1.5rem;
}
.top-bar-links a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  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: 0; /* Align with top of viewport */
  left: 0;
  width: 100%;
  z-index: 50; /* Header above content but below mobile menu */
  transition: all var(--t-smooth);
  padding: 0.8rem 0; /* Slightly reduced height */
}
.header.scrolled {
  top: 0;
  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.8rem 0;
  box-shadow: var(--shadow-sm);
}

.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: var(--c-navy);
  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;
  animation: floatPanel 15s ease-in-out infinite;
}
.glass-panel-1 {
  width: 40vw; height: 120vh; top: -10%; left: -10%; transform: rotate(15deg);
}
.glass-panel-2 {
  width: 30vw; height: 80vh; bottom: -20%; right: 5%; transform: rotate(-20deg);
  animation-delay: -5s;
}

@keyframes floatPanel {
  0%, 100% { transform: translateY(0) rotate(15deg); }
  50% { transform: translateY(-30px) 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-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--c-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--t-smooth);
  border: 1px solid transparent;
  position: relative;
  display: flex;
  flex-direction: column;
}
/* Crystal Motion: Card Hover */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
  border-color: rgba(24, 199, 216, 0.3);
}

.service-img {
  width: 100%; height: 220px; overflow: hidden; position: relative;
}
.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; left: 20px;
  width: 50px; height: 50px; background: var(--c-turquoise);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--c-dark); font-size: 1.5rem; border: 3px solid var(--c-white);
  transition: var(--t-fast);
}
.service-card:hover .service-icon { transform: rotate(15deg); }

.service-content { padding: 2.5rem 1.5rem 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.service-content h3 { color: var(--c-navy); margin-bottom: 0.8rem; font-size: 1.3rem; }
.service-content p { color: var(--c-gray); font-size: 0.95rem; margin-bottom: 1.5rem; flex-grow: 1; }
.service-content .btn { width: 100%; margin-top: auto; }

/* Split Layout: Why Us */
.split-section { display: flex; align-items: center; gap: 4rem; }
.split-content { flex: 1; }
.split-image { flex: 1; border-radius: 20px; overflow: hidden; position: relative; }
.split-image img { width: 100%; height: auto; object-fit: cover; border-radius: 20px; }

.why-points { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.why-point { display: flex; align-items: center; gap: 1rem; }
.why-point i { color: var(--c-turquoise); font-size: 1.2rem; }
.why-point span { font-weight: 500; color: var(--c-navy); }

.mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 3rem; }
.mini-card {
  background: var(--c-white); padding: 1rem; border-radius: 8px;
  border-right: 4px solid var(--c-turquoise);
  box-shadow: var(--shadow-sm); font-weight: 700; color: var(--c-dark);
}

@media (max-width: 992px) {
  .split-section { flex-direction: column; }
}

/* Gallery Section */
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 1.5rem;
}
.gallery-item {
  position: relative; border-radius: 12px; overflow: hidden; height: 300px;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--t-slow); }

/* Crystal Motion: Gallery Hover */
.gallery-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: var(--glass-bg); backdrop-filter: blur(3px);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem;
  opacity: 0; transition: var(--t-smooth);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.1); }

.gallery-overlay h3 {
  color: var(--c-white); transform: translateY(20px); transition: var(--t-smooth);
  margin-bottom: 1rem;
}
.gallery-overlay .btn {
  transform: translateY(20px); opacity: 0; transition: var(--t-smooth); transition-delay: 0.1s;
}
.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);
}

/* 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, .service-card::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, .service-card: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.15);
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
}

/* ==========================
   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);
}
