/* ==========================================================================
   Alam Tents & Canopy (عالم مظلات للخيام) - Riyadh, Saudi Arabia
   Master Stylesheet (Custom CSS3 - Pure Vanilla - No Frameworks)
   Colors: Deep Navy Blue, Royal Blue, Luxury Gold, Pure White / Warm Neutral
   ========================================================================== */

:root {
  /* Brand Palette */
  --primary-navy: #0B192C;
  --primary-navy-dark: #060E18;
  --primary-navy-light: #152744;
  --royal-blue: #1E3E62;
  --royal-blue-light: #2A5485;
  
  --accent-gold: #C5A059;
  --accent-gold-light: #E5C378;
  --accent-gold-dark: #9B7B38;
  --accent-gold-bg: rgba(197, 160, 89, 0.08);
  --accent-gold-border: rgba(197, 160, 89, 0.35);

  --bg-page: #F8FAFC;
  --bg-surface: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-alt: #F1F5F9;

  --text-primary: #0F172A;
  --text-secondary: #334155;
  --text-muted: #64748B;
  --text-light: #F8FAFC;

  --border-subtle: #E2E8F0;
  --border-strong: #CBD5E1;

  --shadow-sm: 0 2px 6px rgba(11, 25, 44, 0.04);
  --shadow-md: 0 8px 24px rgba(11, 25, 44, 0.08);
  --shadow-lg: 0 16px 36px rgba(11, 25, 44, 0.12);
  --shadow-gold: 0 6px 20px rgba(197, 160, 89, 0.3);

  --font-ar: 'Cairo', 'Tajawal', sans-serif;
  --font-en: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --header-height: 96px;
  --topbar-height: 40px;
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-page);
  color: var(--text-primary);
  font-family: var(--font-ar);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html[dir="rtl"] body {
  font-family: var(--font-ar);
  direction: rtl;
  text-align: right;
}

html[dir="ltr"] body {
  font-family: var(--font-en);
  direction: ltr;
  text-align: left;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
  outline: none;
}

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

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Typography Helpers */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent-gold-bg);
  border: 1px solid var(--accent-gold-border);
  color: var(--accent-gold-dark);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  white-space: nowrap;
  line-height: 1.2;
}

.btn-sm {
  padding: 9px 20px;
  font-size: 14px;
  border-radius: var(--radius-sm);
}

.btn-block {
  width: 100%;
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
  color: var(--primary-navy-dark);
  border: 1px solid var(--accent-gold-light);
  box-shadow: 0 4px 14px rgba(197, 160, 89, 0.28);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #ECCF8A 0%, var(--accent-gold-dark) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.4);
}

.btn-outline-gold {
  background: transparent;
  color: var(--accent-gold);
  border: 1.5px solid var(--accent-gold);
}

.btn-outline-gold:hover {
  background: var(--accent-gold);
  color: var(--primary-navy-dark);
}

.btn-navy {
  background: var(--primary-navy);
  color: #FFFFFF;
  border: 1px solid var(--royal-blue);
}

.btn-navy:hover {
  background: var(--royal-blue);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-outline-navy {
  background: transparent;
  color: var(--primary-navy);
  border: 1.5px solid var(--primary-navy);
}

.btn-outline-navy:hover {
  background: var(--primary-navy);
  color: #FFFFFF;
}

.btn-whatsapp {
  background-color: #25D366;
  color: #FFFFFF;
  border: 1px solid #1EBE5D;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.28);
}

.btn-whatsapp:hover {
  background-color: #20BA5A;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-whatsapp svg,
.btn-whatsapp-header svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.top-bar {
  background-color: var(--primary-navy-dark);
  color: #CBD5E1;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  height: var(--topbar-height);
  display: flex;
  align-items: center;
}

/* TOP BAR — Completely hidden on mobile devices only */
@media (max-width: 767px) {
  :root {
    --topbar-height: 0px;
  }
  .top-bar {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    overflow: hidden !important;
    visibility: hidden !important;
  }
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #CBD5E1;
}

.top-link:hover {
  color: var(--accent-gold-light);
}

.top-link .icon {
  width: 14px;
  height: 14px;
  color: var(--accent-gold);
}

.top-bar-separator {
  color: rgba(255, 255, 255, 0.2);
}

.top-bar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language Switcher */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.lang-btn {
  font-size: 12px;
  font-weight: 600;
  color: #94A3B8;
  padding: 2px 6px;
  border-radius: 4px;
  transition: all var(--transition-normal);
}

.lang-btn:hover {
  color: #FFFFFF;
}

.lang-btn.active {
  color: var(--primary-navy);
  background-color: var(--accent-gold-light);
  font-weight: 700;
}

.lang-divider {
  color: rgba(255, 255, 255, 0.2);
  font-size: 11px;
}

.top-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-social-link {
  color: #94A3B8;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transition: all var(--transition-normal);
}

.top-social-link:hover {
  color: var(--accent-gold);
  transform: translateY(-1px);
}

.top-social-link svg {
  width: 15px;
  height: 15px;
}

/* Main Navbar — Complete Pure White Background */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FFFFFF !important;
  box-shadow: 0 2px 14px rgba(15, 23, 42, 0.08);
  transition: all var(--transition-normal);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.main-header.is-scrolled {
  background: #FFFFFF !important;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.12);
  border-bottom: 1px solid rgba(197, 160, 89, 0.4);
}

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

/* Header Logo — Noticeably Larger, Prominent, Clear & Uncropped on Pure White */
.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform var(--transition-normal);
  padding: 4px 0;
}

.header-logo:hover {
  transform: scale(1.02);
}

.logo-img {
  height: 86px;
  width: auto;
  max-width: 290px;
  object-fit: contain;
  background-color: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
  transition: all var(--transition-normal);
}

@media (max-width: 1023px) {
  :root {
    --header-height: 86px;
  }
  .logo-img {
    height: 74px;
    max-width: 230px;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 78px;
  }
  .logo-img {
    height: 64px;
    max-width: 195px;
  }
}

@media (max-width: 400px) {
  :root {
    --header-height: 70px;
  }
  .logo-img {
    height: 56px;
    max-width: 165px;
  }
}

/* Desktop Nav Links — Dark colors for strong contrast on white background */
.desktop-nav {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: block;
  }
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 15px;
  font-weight: 700;
  color: #0F172A;
  padding: 10px 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  transition: color var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-navy);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.dropdown-chevron {
  width: 14px;
  height: 14px;
  color: #64748B;
  transition: transform var(--transition-normal), color var(--transition-normal);
}

.nav-link:hover .dropdown-chevron,
.has-dropdown:hover .dropdown-chevron {
  color: var(--primary-navy);
  transform: rotate(180deg);
}

/* Dropdown Menu on White Header */
.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 250px;
  background-color: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid #E2E8F0;
  border-top: 3px solid var(--accent-gold);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  z-index: 1050;
}

html[dir="ltr"] .dropdown-menu {
  right: auto;
  left: 0;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 600;
  color: #1E293B;
  transition: all var(--transition-normal);
  border-bottom: 1px solid #F1F5F9;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover,
.dropdown-item.active {
  background-color: #F8FAFC;
  color: var(--accent-gold-dark);
  padding-right: 26px;
}

html[dir="ltr"] .dropdown-item:hover,
html[dir="ltr"] .dropdown-item.active {
  padding-left: 26px;
  padding-right: 22px;
}

/* Header CTAs */
.header-cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-quote-btn {
  display: inline-flex;
  background: var(--primary-navy);
  color: #FFFFFF;
  font-weight: 700;
  border: 1.5px solid var(--primary-navy);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(11, 25, 44, 0.18);
  padding: 9px 22px;
  transition: all var(--transition-normal);
}

.header-quote-btn:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #0B192C;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(197, 160, 89, 0.35);
}

@media (max-width: 767px) {
  .header-quote-btn {
    padding: 7px 15px;
    font-size: 13px;
  }
}

@media (max-width: 360px) {
  .header-quote-btn {
    display: none;
  }
}

/* Mobile Toggle Hamburger — Dark visible lines on white header */
.mobile-toggle-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

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

.mobile-toggle-btn span {
  width: 100%;
  height: 2.5px;
  background-color: #0F172A;
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.mobile-toggle-btn:hover span {
  background-color: var(--accent-gold);
}

/* ==========================================================================
   Mobile Drawer Menu
   ========================================================================== */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(11, 25, 44, 0.65);
  backdrop-filter: blur(4px);
  z-index: 1998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.mobile-drawer-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  background-color: #FFFFFF;
  z-index: 1999;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

html[dir="ltr"] .mobile-drawer {
  right: auto;
  left: 0;
  transform: translateX(-100%);
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.2);
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-page);
}

.drawer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.drawer-logo {
  height: 42px;
  width: auto;
  border-radius: 4px;
}

.drawer-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary-navy);
}

.drawer-close-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-secondary);
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
}

.drawer-close-btn svg {
  width: 20px;
  height: 20px;
}

.drawer-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.drawer-lang-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-page);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

.drawer-lang-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.drawer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.drawer-link {
  display: block;
  padding: 12px 14px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
}

.drawer-link:hover,
.drawer-link.active {
  background-color: var(--accent-gold-bg);
  color: var(--accent-gold-dark);
}

.drawer-accordion-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  border-radius: var(--radius-sm);
}

.drawer-accordion-toggle .accordion-icon {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-normal);
}

.drawer-accordion-item.is-expanded .accordion-icon {
  transform: rotate(180deg);
}

.drawer-sub-menu {
  display: none;
  padding-right: 14px;
  padding-left: 14px;
  background: var(--bg-page);
  border-radius: var(--radius-sm);
  margin-top: 4px;
}

html[dir="ltr"] .drawer-sub-menu {
  padding-left: 14px;
  padding-right: 14px;
}

.drawer-accordion-item.is-expanded .drawer-sub-menu {
  display: block;
}

.drawer-sub-link {
  display: block;
  padding: 9px 8px;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.drawer-sub-link:last-child {
  border-bottom: none;
}

.drawer-sub-link:hover,
.drawer-sub-link.active {
  color: var(--accent-gold-dark);
}

.drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.btn-navy-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border: 1.5px solid var(--primary-navy);
  color: var(--primary-navy);
  font-weight: 700;
  border-radius: var(--radius-md);
  font-size: 14px;
}

.drawer-footer-info {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}

/* ==========================================================================
   Hero Slider Section - 100% Viewport Width Edge-to-Edge
   ========================================================================== */
.hero-section {
  position: relative;
  overflow: hidden;
  background-color: var(--primary-navy-dark);
  width: 100%;
  margin: 0;
  padding: 0;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 640px;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .hero-slider {
    height: 700px;
  }
}

@media (min-width: 1200px) {
  .hero-slider {
    height: 750px;
  }
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 7s ease-out;
}

.hero-slide.active .hero-bg-img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(6, 14, 24, 0.94) 0%, rgba(11, 25, 44, 0.78) 55%, rgba(11, 25, 44, 0.6) 100%);
  z-index: 1;
}

html[dir="rtl"] .hero-overlay {
  background: linear-gradient(to left, rgba(6, 14, 24, 0.95) 0%, rgba(11, 25, 44, 0.84) 55%, rgba(11, 25, 44, 0.58) 100%);
}

html[dir="ltr"] .hero-overlay {
  background: linear-gradient(to right, rgba(6, 14, 24, 0.95) 0%, rgba(11, 25, 44, 0.84) 55%, rgba(11, 25, 44, 0.58) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  color: #FFFFFF;
  max-width: 820px;
  padding-top: 40px;
  padding-bottom: 60px;
}

html[dir="rtl"] .hero-content {
  text-align: right;
}

html[dir="ltr"] .hero-content {
  text-align: left;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(197, 160, 89, 0.2);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold-light);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.25;
  color: #FFFFFF;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 48px;
  }
}

@media (min-width: 1200px) {
  .hero-title {
    font-size: 54px;
  }
}

.hero-subtitle {
  font-size: 19px;
  font-weight: 700;
  color: var(--accent-gold-light);
  margin-bottom: 16px;
  line-height: 1.45;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

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

.hero-desc {
  font-size: 16px;
  line-height: 1.75;
  color: #E2E8F0;
  margin-bottom: 32px;
  max-width: 700px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .hero-desc {
    font-size: 18px;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 480px) {
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Slider Controls */
.hero-controls {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.hero-dot.active {
  width: 32px;
  border-radius: var(--radius-full);
  background-color: var(--accent-gold);
}

.hero-arrows {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

.hero-arrow-btn:hover {
  background: var(--accent-gold);
  color: var(--primary-navy-dark);
  border-color: var(--accent-gold);
  transform: scale(1.05);
}

.hero-arrow-btn svg {
  width: 22px;
  height: 22px;
}

/* ==========================================================================
   Quick Services Carousel Section
   ========================================================================== */
.services-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.carousel-wrapper {
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.service-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .service-card {
    flex: 0 0 350px;
  }
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold-border);
}

.service-card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img {
  transform: scale(1.08);
}

.service-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--primary-navy);
  color: var(--accent-gold-light);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--accent-gold-border);
}

html[dir="ltr"] .service-card-badge {
  right: auto;
  left: 14px;
}

.service-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 12px;
  line-height: 1.35;
}

.service-card-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-gold-dark);
}

.service-link:hover {
  color: var(--primary-navy);
}

.service-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-normal);
}

.service-card:hover .service-link svg {
  transform: translateX(-4px);
}

html[dir="ltr"] .service-card:hover .service-link svg {
  transform: translateX(4px);
}

/* ==========================================================================
   About Preview Section
   ========================================================================== */
.about-preview-section {
  padding: 90px 0;
  background-color: var(--bg-page);
}

.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

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

.about-preview-content .section-badge {
  margin-bottom: 16px;
}

.about-preview-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.3;
  margin-bottom: 20px;
}

.about-preview-p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 18px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}

.about-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FFFFFF;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.about-highlight-icon {
  width: 24px;
  height: 24px;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.about-highlight-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-navy);
}

.about-preview-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #FFFFFF;
}

.about-preview-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.about-img-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--primary-navy);
  color: #FFFFFF;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--accent-gold);
  box-shadow: var(--shadow-md);
  max-width: 260px;
}

html[dir="ltr"] .about-img-badge {
  right: auto;
  left: 20px;
}

.about-badge-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--accent-gold-light);
  margin-bottom: 4px;
}

.about-badge-desc {
  font-size: 12px;
  color: #CBD5E1;
  line-height: 1.4;
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-section {
  padding: 85px 0;
  background-color: #FFFFFF;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

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

.why-card {
  background: var(--bg-page);
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-normal);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-card:hover {
  background: #FFFFFF;
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold-border);
}

.why-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-gold-bg);
  border: 1.5px solid var(--accent-gold);
  color: var(--accent-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all var(--transition-normal);
}

.why-card:hover .why-icon-box {
  background: var(--accent-gold);
  color: var(--primary-navy-dark);
  transform: scale(1.1);
}

.why-icon-box svg {
  width: 26px;
  height: 26px;
}

.why-card-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 10px;
  line-height: 1.35;
}

.why-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Featured Projects Section
   ========================================================================== */
.featured-projects-section {
  padding: 85px 0;
  background-color: var(--bg-page);
}

.projects-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

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

.project-preview-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.project-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold-border);
}

.project-preview-thumb-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.project-preview-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-preview-card:hover .project-preview-thumb {
  transform: scale(1.06);
}

.project-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(11, 25, 44, 0.85);
  color: var(--accent-gold-light);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--accent-gold-border);
}

html[dir="ltr"] .project-badge {
  right: auto;
  left: 12px;
}

.project-preview-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.project-preview-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 8px;
  line-height: 1.35;
}

.project-preview-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}

.view-work-btn {
  width: 100%;
}

.section-cta-wrap {
  text-align: center;
  margin-top: 40px;
}

/* ==========================================================================
   Full Width CTA Banner
   ========================================================================== */
.cta-banner-section {
  position: relative;
  padding: 100px 0;
  background-color: var(--primary-navy);
  overflow: hidden;
  text-align: center;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(11, 25, 44, 0.8) 0%, rgba(11, 25, 44, 0.96) 100%);
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  color: #FFFFFF;
}

.cta-banner-title {
  font-size: 32px;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .cta-banner-title {
    font-size: 42px;
  }
}

.cta-banner-desc {
  font-size: 18px;
  color: #E2E8F0;
  line-height: 1.7;
  margin-bottom: 36px;
}

.cta-banner-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
  padding: 85px 0;
  background-color: #FFFFFF;
}

.rating-summary-card {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-page);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  border: 1px solid var(--accent-gold-border);
  margin-bottom: 40px;
}

.rating-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #F59E0B;
}

.rating-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.rating-score-text {
  font-size: 15px;
  font-weight: 800;
  color: var(--primary-navy);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

.testimonial-card {
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
}

.testimonial-card:hover {
  background: #FFFFFF;
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold-border);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-size: 17px;
  font-weight: 600;
  color: var(--primary-navy);
  line-height: 1.6;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--border-subtle);
}

.testimonial-quote::before {
  content: '“';
  font-size: 38px;
  color: var(--accent-gold);
  line-height: 1;
  display: block;
  margin-bottom: -10px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--royal-blue);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent-gold-light);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--primary-navy);
}

.author-source {
  font-size: 12px;
  color: var(--text-muted);
}

/* ==========================================================================
   Gallery Page & Grid
   ========================================================================== */
.gallery-page-section {
  padding: 60px 0 90px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
}

.filter-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold-dark);
}

.filter-btn.active {
  background: var(--primary-navy);
  color: var(--accent-gold-light);
  border-color: var(--primary-navy);
  box-shadow: 0 4px 12px rgba(11, 25, 44, 0.2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

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

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

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

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.gallery-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-card:hover .gallery-thumb {
  transform: scale(1.08);
  filter: brightness(0.8);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 25, 44, 0.9) 0%, rgba(11, 25, 44, 0.1) 60%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
}

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

.gallery-zoom-badge {
  align-self: flex-end;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: var(--primary-navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-zoom-badge svg {
  width: 18px;
  height: 18px;
}

.gallery-meta {
  color: #FFFFFF;
}

.gallery-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-gold-light);
  margin-bottom: 4px;
}

.gallery-card-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

/* ==========================================================================
   Lightbox Modal
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(6, 14, 24, 0.94);
  backdrop-filter: blur(8px);
}

.lightbox-dialog {
  position: relative;
  z-index: 2;
  width: 95vw;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  max-height: 94vh;
}

.lightbox-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  color: #FFFFFF;
}

.lightbox-counter {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-gold-light);
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.lightbox-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

.lightbox-btn:hover {
  background: var(--accent-gold);
  color: var(--primary-navy-dark);
}

.lightbox-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 65vh;
}

.lightbox-media-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  transition: opacity 0.25s ease;
}

.lightbox-caption {
  text-align: center;
  color: #FFFFFF;
  padding: 16px 20px 8px;
}

.lightbox-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--accent-gold-light);
  margin-bottom: 6px;
}

.lightbox-desc {
  font-size: 14px;
  color: #CBD5E1;
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-section {
  padding: 80px 0;
  background-color: var(--bg-page);
}

.faq-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item.active {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-navy);
  text-align: inherit;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--accent-gold-dark);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  background-color: var(--bg-page);
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ==========================================================================
   Request a Quote Form
   ========================================================================== */
.quote-section {
  padding: 70px 0 90px;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .quote-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.quote-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.form-label .required {
  color: #EF4444;
  margin-right: 4px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text-primary);
  background-color: var(--bg-page);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
}

.form-control:focus {
  outline: none;
  background-color: #FFFFFF;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.2);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

.quote-preview-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.quote-preview-box {
  background: var(--bg-page);
  border: 1px dashed var(--accent-gold);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.quote-preview-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 12px;
}

.quote-preview-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  white-space: pre-wrap;
  background: #FFFFFF;
  padding: 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

.quote-info-card {
  background: var(--primary-navy);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--royal-blue);
}

.quote-info-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--accent-gold-light);
  margin-bottom: 12px;
}

.quote-info-desc {
  font-size: 14px;
  color: #CBD5E1;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ==========================================================================
   Contact Page
   ========================================================================== */
.contact-section {
  padding: 70px 0 90px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

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

.contact-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon-box {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: var(--accent-gold-bg);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-box svg {
  width: 24px;
  height: 24px;
}

.contact-item-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.contact-item-val {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.contact-actions-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 10px;
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
  height: 480px;
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   Service Details Page Template
   ========================================================================== */
.page-hero {
  position: relative;
  padding: 70px 0;
  background-color: var(--primary-navy);
  color: #FFFFFF;
  text-align: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11, 25, 44, 0.85), rgba(11, 25, 44, 0.95));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero-title {
  font-size: 36px;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .page-hero-title {
    font-size: 46px;
  }
}

.page-hero-desc {
  font-size: 17px;
  color: #E2E8F0;
  line-height: 1.6;
}

.service-detail-section {
  padding: 80px 0;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 992px) {
  .service-detail-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.service-content-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.service-content-body h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary-navy);
  margin: 28px 0 16px;
}

.service-content-body ul {
  list-style: disc;
  padding-right: 24px;
  margin-bottom: 24px;
}

html[dir="ltr"] .service-content-body ul {
  padding-right: 0;
  padding-left: 24px;
}

.service-feature-box {
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 28px 0;
}

.service-sidebar-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
}

/* ==========================================================================
   Floating Action Buttons
   ========================================================================== */
.floating-contact-group {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2500;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

html[dir="rtl"] .floating-contact-group {
  right: auto;
  left: 24px;
}

.floating-btn {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  transition: all var(--transition-normal);
}

.floating-wa {
  background-color: #25D366;
}

.floating-call {
  background-color: var(--primary-navy);
  border: 1px solid var(--accent-gold);
}

.floating-btn:hover {
  transform: scale(1.1);
}

.floating-btn svg {
  width: 28px;
  height: 28px;
}

.floating-tooltip {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(11, 25, 44, 0.92);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-normal);
  border: 1px solid var(--accent-gold-border);
}

html[dir="rtl"] .floating-tooltip {
  left: 64px;
}

html[dir="ltr"] .floating-tooltip {
  right: 64px;
}

.floating-btn:hover .floating-tooltip {
  opacity: 1;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: var(--primary-navy);
  color: #CBD5E1;
  position: relative;
}

.footer-top-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold-dark), var(--accent-gold-light), var(--accent-gold));
}

.footer-main {
  padding: 70px 20px 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

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

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

.footer-brand-title {
  font-size: 22px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-gold-light);
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #94A3B8;
  margin-bottom: 24px;
}

.footer-social-list {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #CBD5E1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

.social-icon-btn:hover {
  background: var(--accent-gold);
  color: var(--primary-navy-dark);
  transform: translateY(-2px);
}

.social-icon-btn svg {
  width: 18px;
  height: 18px;
}

.footer-col-title {
  font-size: 17px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 36px;
  height: 2px;
  background: var(--accent-gold);
}

html[dir="ltr"] .footer-col-title::after {
  right: auto;
  left: 0;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 14px;
  color: #94A3B8;
  transition: all var(--transition-normal);
}

.footer-link:hover {
  color: var(--accent-gold-light);
  padding-right: 6px;
}

html[dir="ltr"] .footer-link:hover {
  padding-right: 0;
  padding-left: 6px;
}

.footer-highlight-link {
  color: var(--accent-gold-light);
  font-weight: 700;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-icon {
  width: 18px;
  height: 18px;
  color: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  line-height: 1.5;
}

.contact-link {
  color: #E2E8F0;
  font-weight: 600;
}

.contact-link:hover {
  color: var(--accent-gold-light);
}

.contact-sub {
  font-size: 12px;
  color: #94A3B8;
  margin-top: 2px;
}

.footer-btn-wrapper {
  margin-top: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  font-size: 13px;
  color: #94A3B8;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: center;
}

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

.legal-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.legal-link {
  color: #94A3B8;
  transition: color var(--transition-normal);
}

.legal-link:hover {
  color: var(--accent-gold-light);
}

.legal-separator {
  color: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   Legal Pages (Privacy & Terms)
   ========================================================================== */
.legal-content-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  margin: 40px 0 80px;
}

.legal-article h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-navy);
  margin: 28px 0 12px;
}

.legal-article p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ==========================================================================
   Mobile Fixed Language Switcher Button
   ========================================================================== */
.floating-mobile-lang {
  display: none;
}

@media (max-width: 1023px) {
  .floating-mobile-lang {
    position: fixed;
    bottom: 90px;
    z-index: 2490;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    color: var(--primary-navy);
    border: 1.5px solid var(--accent-gold);
    border-radius: var(--radius-full);
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(11, 25, 44, 0.18);
    transition: all var(--transition-normal);
  }

  html[dir="rtl"] .floating-mobile-lang {
    left: 24px;
    right: auto;
  }

  html[dir="ltr"] .floating-mobile-lang {
    right: 24px;
    left: auto;
  }

  .floating-mobile-lang:hover,
  .floating-mobile-lang:active {
    background: var(--primary-navy);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.3);
  }

  .floating-mobile-lang .lang-icon {
    width: 18px;
    height: 18px;
    color: var(--accent-gold);
  }
}

