/*
 * Ebtekar Glass & Aluminum - Luxury Architectural Glass Identity
 * Location: Jeddah, Saudi Arabia
 * Theme: Modern Crystalline Glass, Ocean Sapphire & Electric Innovation Cyan
 * Version: 5.0 - Complete Architectural Revolution
 */

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

:root {
  /* Core Architectural Palette */
  --bg-darkest: #030712;
  --bg-primary: #070d18;
  --bg-surface: #0e1726;
  --bg-surface-elevated: #142034;
  --bg-card: rgba(14, 23, 38, 0.78);
  --bg-card-hover: rgba(20, 32, 52, 0.92);

  /* Metallic & Brand Accents */
  --accent-cyan: #00e5ff;
  --accent-cyan-light: #e0faff;
  --accent-cyan-dark: #0284c7;
  --accent-glass-blue: #0ea5e9;
  --accent-gold: #00e5ff;
  --accent-gold-light: #d1f7ff;
  --accent-gold-dark: #0284c7;
  --accent-bronze: #0369a1;
  --accent-whatsapp: #25d366;
  --accent-call: #00e5ff;

  /* Text & Hierarchy */
  --text-pure: #ffffff;
  --text-main: #f1f5f9;
  --text-secondary: #cbd5e1;
  --text-muted: #8391a5;

  /* Glassmorphism & Borders */
  --border-subtle: rgba(0, 229, 255, 0.18);
  --border-hover: rgba(0, 229, 255, 0.45);
  --border-glow: rgba(56, 189, 248, 0.35);
  --glass-blur: blur(20px) saturate(180%);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.75);
  --shadow-gold-glow: 0 0 25px rgba(0, 229, 255, 0.25);

  /* Fonts & Transitions */
  --font-arabic: 'Alexandria', 'Cairo', 'Tajawal', sans-serif;
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
  font-family: var(--font-arabic);
  direction: rtl;
  text-align: right;
  background-color: var(--bg-darkest);
  color: var(--text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg-darkest);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  /* Blueprint architectural grid background */
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(0, 229, 255, 0.12) 0%, transparent 65%),
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 100% 100%, 40px 40px, 40px 40px;
}

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

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

/* Ambient Background Glows */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
}

.ambient-glow-1 {
  width: 550px;
  height: 550px;
  background: var(--accent-gold);
  top: -100px;
  right: -100px;
}

.ambient-glow-2 {
  width: 500px;
  height: 500px;
  background: #0369a1;
  bottom: 25%;
  left: -150px;
}

/* Section Utilities */
.section {
  scroll-margin-top: 85px;
  position: relative;
  z-index: 1;
  padding: 6.5rem 1.5rem;
}

.section-container {
  max-width: 1260px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3.5rem auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.2rem;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  color: var(--accent-gold-light);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: 0.2px;
}

.section-tag i {
  color: var(--accent-gold);
}

.section-title {
  font-size: 2.45rem;
  font-weight: 900;
  color: var(--text-pure);
  margin-bottom: 1rem;
  line-height: 1.35;
}

.section-title .text-gold {
  color: var(--accent-gold);
  background: linear-gradient(135deg, #ffffff 15%, #00e5ff 60%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.85;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.9rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
  user-select: none;
}

.btn-gold {
  background: linear-gradient(135deg, #00f0ff 0%, #00b4d8 50%, #0077b6 100%);
  color: #040914 !important;
  box-shadow: 0 6px 22px rgba(0, 229, 255, 0.4);
  font-weight: 800;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 229, 255, 0.6);
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.55);
  background: #20b857;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-pure);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold-light);
  background: rgba(0, 229, 255, 0.12);
  transform: translateY(-3px);
}

/* ==========================================================================
   1. Modern Floating Glass Header
   ========================================================================== */
header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1380px;
  z-index: 900;
  background: rgba(8, 14, 26, 0.92);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-subtle);
  border-radius: 60px;
  padding: 0.45rem 1.2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.65);
  transition: var(--transition-smooth);
}

header.scrolled {
  top: 10px;
  background: rgba(4, 8, 18, 0.97);
  border-color: rgba(0, 229, 255, 0.35);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.85), 0 0 20px rgba(0, 229, 255, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 0.6rem;
}

.header-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 229, 255, 0.25));
  transition: var(--transition-smooth);
}
.header-brand:hover .header-logo-img {
  filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.55));
  transform: scale(1.02);
}

.header-brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--text-pure);
  line-height: 1.2;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.brand-tagline {
  font-size: 0.72rem;
  color: var(--accent-gold);
  font-weight: 700;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  list-style: none;
  flex-shrink: 1;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.28rem 0.42rem;
  position: relative;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-gold-light);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 70%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.header-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-pure);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.42rem 0.75rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.2);
  white-space: nowrap;
}

.header-phone-btn:hover {
  background: rgba(0, 229, 255, 0.15);
  border-color: var(--accent-gold);
  color: var(--accent-gold-light);
}

.header-phone-btn i {
  color: var(--accent-gold);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-pure);
  font-size: 1.4rem;
  cursor: pointer;
}

/* Mobile Menu Overlay - hidden by default on desktop */
.mobile-menu-overlay {
  display: none !important;
}

.mobile-menu-overlay.active {
  display: flex !important;
}

/* ==========================================================================
   2. REVOLUTIONARY HERO: Triple Architectural Portals (New!)
   ========================================================================== */
.hero-section {
  padding-top: 8.5rem;
  padding-bottom: 4.5rem;
  position: relative;
  overflow: hidden;
}

.hero-editorial-header {
  text-align: center;
  max-width: 960px;
  margin: 0 auto 2.5rem auto;
}

.hero-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.3rem;
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid rgba(0, 229, 255, 0.35);
  border-radius: 50px;
  color: var(--accent-gold-light);
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.hero-live-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 10px #25d366;
}

.hero-big-title {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.22;
  color: var(--text-pure);
  margin-bottom: 1.2rem;
}

.hero-big-title span.text-gold-gradient {
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-gold-light) 45%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead-text {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.85;
  max-width: 780px;
  margin: 0 auto 2.5rem auto;
}

.hero-fast-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

/* Triple Architectural Pillars Layout */
.hero-pillars-wrapper {
  display: flex;
  gap: 1.25rem;
  width: 100%;
  height: 520px;
  margin-bottom: 3.5rem;
}

.pillar-card {
  position: relative;
  flex: 1;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(0, 229, 255, 0.25);
  transition: flex 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s ease, border-color 0.4s ease;
  cursor: pointer;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

.pillar-card.active,
.pillar-card:hover {
  flex: 2.3;
  border-color: var(--accent-gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 229, 255, 0.3);
}

.pillar-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.pillar-card:hover .pillar-bg-img {
  transform: scale(1.06);
}

.pillar-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 9, 13, 0.25) 0%, rgba(7, 9, 13, 0.75) 55%, rgba(7, 9, 13, 0.98) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.8rem;
  transition: background 0.4s ease;
}

.pillar-top-badge {
  align-self: flex-start;
  padding: 0.45rem 1rem;
  background: rgba(11, 14, 20, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 229, 255, 0.35);
  border-radius: 40px;
  color: var(--accent-gold-light);
  font-size: 0.82rem;
  font-weight: 800;
}

.pillar-content-box {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pillar-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.3;
}

.pillar-details {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease, max-height 0.4s ease;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
}

.pillar-card.active .pillar-details,
.pillar-card:hover .pillar-details {
  opacity: 1;
  max-height: 120px;
}

.pillar-btn {
  margin-top: 0.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-gold-light);
}

/* Quick Feature Highlights Strip below Hero */
.hero-ribbon-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 1.8rem 2rem;
  background: rgba(18, 22, 32, 0.6);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
}

.ribbon-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ribbon-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid rgba(0, 229, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.ribbon-label {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text-pure);
}

.ribbon-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   3. NEW SECTION: Live Project Video Reels (New!)
   ========================================================================== */
.video-reels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.reel-card {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.reel-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), var(--shadow-gold-glow);
}

.reel-video-wrapper {
  position: relative;
  width: 100%;
  height: 380px;
  background: #000;
  overflow: hidden;
}

.reel-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel-badge-live {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.35rem 0.85rem;
  border-radius: 30px;
  background: rgba(239, 68, 68, 0.88);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  z-index: 2;
}

.reel-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff;
  animation: livePing 1.5s infinite;
}

.reel-overlay-controls {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: background 0.3s ease;
}

.reel-play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.9);
  color: #07090d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, background 0.3s ease;
}

.reel-card:hover .reel-play-btn {
  transform: scale(1.1);
  background: #ffffff;
}

.reel-card.playing .reel-overlay-controls {
  opacity: 0;
  pointer-events: none;
}

.reel-info-bar {
  padding: 1.25rem 1.4rem;
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reel-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-pure);
  margin-bottom: 0.2rem;
}

.reel-location {
  font-size: 0.8rem;
  color: var(--accent-gold);
}

/* ==========================================================================
   4. Architectural Bento Grid Services
   ========================================================================== */
.bento-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.bento-card {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-card);
}

.bento-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), var(--shadow-gold-glow);
}

.bento-card.bento-large {
  grid-column: span 2;
}

.bento-media {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.bento-large .bento-media {
  height: 260px;
}

.bento-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bento-card:hover .bento-img {
  transform: scale(1.05);
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--bg-surface) 100%);
}

.bento-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(11, 14, 20, 0.85);
  backdrop-filter: blur(10px);
  padding: 0.35rem 0.8rem;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-gold-light);
  border: 1px solid rgba(0, 229, 255, 0.3);
}

.bento-content {
  padding: 1.5rem 1.6rem 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.bento-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-pure);
  margin-bottom: 0.6rem;
}

.bento-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.bento-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}

.bento-spec-tag {
  font-size: 0.75rem;
  color: var(--accent-gold-light);
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.15);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
}

.bento-action-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-top: auto;
}

.bento-action-link i {
  transition: transform 0.3s ease;
}

.bento-card:hover .bento-action-link i {
  transform: translateX(-4px);
}

/* ==========================================================================
   5. Interactive Works Gallery with Categorized Filter Tabs
   ========================================================================== */
.gallery-filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.filter-tab-btn {
  padding: 0.6rem 1.3rem;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-tab-btn:hover {
  background: rgba(0, 229, 255, 0.1);
  border-color: var(--border-subtle);
  color: var(--text-pure);
}

.filter-tab-btn.active {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
  color: #07090d;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: var(--transition-smooth);
  height: 310px;
}

.gallery-item-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), var(--shadow-gold-glow);
}

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 9, 13, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

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

.gallery-item-category {
  font-size: 0.72rem;
  color: var(--accent-gold-light);
  font-weight: 700;
  text-transform: uppercase;
}

.gallery-item-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-top: 0.2rem;
}

.gallery-zoom-icon {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(11, 14, 20, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-pure);
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(-5px);
  transition: var(--transition-smooth);
}

.gallery-item-card:hover .gallery-zoom-icon {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   6. Ebtekar Execution Journey (How We Work)
   ========================================================================== */
.journey-roadmap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.journey-step-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  position: relative;
  transition: var(--transition-smooth);
}

.journey-step-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card);
}

.step-number-badge {
  position: absolute;
  top: -16px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: #07090d;
  font-weight: 900;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 229, 255, 0.4);
}

.step-icon {
  font-size: 2rem;
  color: var(--accent-gold);
  margin-bottom: 1.2rem;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-pure);
  margin-bottom: 0.6rem;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==========================================================================
   8. Ebtekar Standards vs Regular Market Comparison
   ========================================================================== */
.comparison-table-wrapper {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 1.25rem 1.5rem;
  text-align: right;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table th {
  background: rgba(255, 255, 255, 0.02);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-pure);
}

.comparison-table th.col-ebtekar {
  background: rgba(0, 229, 255, 0.12);
  color: var(--accent-gold-light);
  border-bottom: 2px solid var(--accent-gold);
}

.comparison-table td.col-ebtekar {
  background: rgba(0, 229, 255, 0.05);
  font-weight: 700;
  color: #ffffff;
}

.comparison-feature {
  font-weight: 700;
  color: var(--text-secondary);
}

.comparison-market {
  color: var(--text-muted);
}

.check-icon {
  color: #25d366;
  margin-left: 0.4rem;
}

.cross-icon {
  color: #ef4444;
  margin-left: 0.4rem;
}

/* ==========================================================================
   9. Real Client Testimonials (Riyadh Districts)
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.testimonial-client {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.client-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.15);
  border: 1px solid rgba(0, 229, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--accent-gold);
}

.client-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-pure);
}

.client-project {
  font-size: 0.78rem;
  color: var(--accent-gold);
}

/* ==========================================================================
   10. Modern FAQ Accordion
   ========================================================================== */
.faq-container {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item.active {
  border-color: var(--border-hover);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.faq-question {
  padding: 1.3rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-pure);
  user-select: none;
}

.faq-question i {
  color: var(--accent-gold);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 1.5rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  padding-bottom: 1.3rem;
}

/* ==========================================================================
   11. High-Converting Instant Booking Form
   ========================================================================== */
.contact-booking-wrapper {
  background: linear-gradient(145deg, var(--bg-surface) 0%, var(--bg-primary) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 28px;
  padding: 3.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.contact-booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: center;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid rgba(0, 229, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-card-title {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.contact-card-val {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-pure);
}

/* Booking Form Elements */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  background: rgba(7, 9, 13, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-pure);
  font-family: inherit;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.2);
}

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

/* ==========================================================================
   12. Modern Architectural Footer
   ========================================================================== */
footer {
  background: #05070a;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 4.5rem 1.5rem 2rem 1.5rem;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-col-brand p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 1rem 0 1.5rem 0;
}

.footer-col-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-pure);
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

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

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-list a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.25s ease;
}

.footer-links-list a:hover {
  color: var(--accent-gold-light);
  padding-right: 4px;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   13. High-Conversion Sticky Bottom Mobile Conversion Dock (Retained & Optimized)
   ========================================================================== */
.bottom-conversion-dock {
  overflow: hidden !important;
  contain: paint !important;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 540px;
  background: rgba(11, 14, 20, 0.94);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(0, 229, 255, 0.35);
  border-radius: 40px;
  box-shadow: 
    0 14px 40px rgba(0, 0, 0, 0.75),
    0 0 25px rgba(0, 229, 255, 0.18),
    inset 0 1px 1px rgba(255, 255, 255, 0.15);
  padding: 8px 14px;
  z-index: 999;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  user-select: none;
}

.dock-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  direction: rtl;
}

.dock-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text-secondary);
  position: relative;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), color 0.22s ease;
  flex: 1;
  min-width: 0;
  padding: 4px 2px;
  border-radius: 16px;
}

.dock-btn:active {
  transform: scale(0.92);
}

.dock-btn-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.18rem;
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.dock-btn-call .dock-btn-icon {
  color: var(--accent-gold);
  background: rgba(0, 229, 255, 0.12);
  border-color: rgba(0, 229, 255, 0.25);
}

.dock-btn-call i {
  animation: gentlePhoneRing 4.5s infinite ease-in-out;
}

.dock-btn-portfolio .dock-btn-icon {
  color: var(--accent-gold-light);
  background: rgba(56, 189, 248, 0.08);
  border-color: rgba(56, 189, 248, 0.2);
}

.dock-btn-whatsapp .dock-btn-icon {
  color: #25d366;
  background: rgba(37, 211, 102, 0.14);
  border-color: rgba(37, 211, 102, 0.3);
}

.dock-live-indicator {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 8px #25d366;
  border: 1.5px solid #07090d;
}

.dock-live-indicator::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  border: 1.5px solid #25d366;
  animation: livePing 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.dock-btn-label {
  font-size: 0.74rem;
  font-weight: 700;
  margin-top: 4px;
  color: var(--text-secondary);
  white-space: nowrap;
  letter-spacing: -0.2px;
}

.dock-btn.active .dock-btn-icon {
  background: rgba(0, 229, 255, 0.28);
  border-color: var(--accent-gold);
  color: #ffffff;
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.45);
}

.dock-btn.active .dock-btn-label {
  color: var(--accent-gold-light);
  font-weight: 800;
}

.dock-btn-primary {
  overflow: hidden !important;
  contain: paint !important;
  flex: 1.45;
  min-width: 130px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 45%, var(--accent-gold-dark) 100%);
  color: #07090d !important;
  border-radius: 32px;
  padding: 10px 16px;
  flex-direction: row;
  box-shadow: 
    0 6px 20px rgba(0, 229, 255, 0.42),
    0 0 12px rgba(0, 229, 255, 0.25),
    inset 0 1px 2px rgba(255, 255, 255, 0.65);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.4);
  animation: dockAuraPulse 3.5s infinite ease-in-out;
}

.dock-primary-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  font-weight: 800;
  font-size: 0.88rem;
  color: #07090d;
  position: relative;
  z-index: 2;
}

.dock-shimmer-sweep {
  position: absolute;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-25deg);
  animation: shimmerSweep 3.8s infinite;
  z-index: 1;
  pointer-events: none;
}

/* Floating Scroll to Top */
.floating-widgets {
  position: fixed;
  bottom: 90px;
  left: 24px;
  right: auto;
  z-index: 99;
}

.floating-top {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 14, 26, 0.9);
  border: 1px solid var(--border-subtle);
  color: var(--text-pure);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.floating-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-top:hover {
  background: var(--accent-gold);
  color: #030712;
  border-color: var(--accent-cyan);
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
}

/* ==========================================================================
   Dynamic Immersive Lightbox Modal
   ========================================================================== */
.lightbox-modal {
  display: none !important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(3, 7, 18, 0.95);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-modal.active {
  display: flex !important;
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  left: 25px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: #ffffff;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 100000;
}

.lightbox-close:hover {
  background: rgba(0, 229, 255, 0.3);
  color: #00e5ff;
  transform: rotate(90deg) scale(1.1);
}

.lightbox-viewer {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

#lightboxMainImage {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 229, 255, 0.25);
  border: 1px solid rgba(0, 229, 255, 0.25);
}

.lightbox-caption {
  color: var(--text-main);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
  background: rgba(14, 23, 38, 0.85);
  padding: 0.6rem 1.6rem;
  border-radius: 30px;
  border: 1px solid var(--border-subtle);
}

/* Keyframes */
@keyframes gentlePhoneRing {
  0%, 86%, 100% { transform: rotate(0); }
  88% { transform: rotate(-14deg) scale(1.1); }
  90% { transform: rotate(14deg) scale(1.1); }
  92% { transform: rotate(-10deg) scale(1.05); }
  94% { transform: rotate(10deg) scale(1.05); }
  96% { transform: rotate(-4deg); }
  98% { transform: rotate(4deg); }
}

@keyframes livePing {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(2.4); opacity: 0; }
}

@keyframes shimmerSweep {
  0% { left: -100%; }
  32%, 100% { left: 200%; }
}

@keyframes dockAuraPulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(0, 229, 255, 0.35), 0 0 10px rgba(0, 229, 255, 0.2); }
  50% { box-shadow: 0 9px 30px rgba(0, 229, 255, 0.6), 0 0 22px rgba(56, 189, 248, 0.45); }
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-pillars-wrapper {
    height: 440px;
  }
  .bento-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-card.bento-large {
    grid-column: span 1;
  }
  .video-reels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .journey-roadmap {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  .estimator-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1240px) {
  header {
    max-width: calc(100% - 24px) !important;
    padding: 0.4rem 0.9rem !important;
  }
  .nav-menu {
    gap: 0.25rem !important;
  }
  .nav-link {
    font-size: 0.76rem !important;
    padding: 0.2rem 0.3rem !important;
  }
  .header-actions {
    gap: 0.35rem !important;
  }
  .header-phone-btn span {
    display: none !important;
  }
  .header-phone-btn {
    padding: 0.4rem !important;
    width: 36px !important;
    height: 36px !important;
    justify-content: center !important;
    border-radius: 50% !important;
  }
  .header-actions .btn-gold {
    padding: 0.4rem 0.8rem !important;
    font-size: 0.78rem !important;
  }
}

@media (max-width: 1040px) {
  .header-inner .nav-menu {
    display: none !important;
  }
  .hamburger {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    font-size: 1.15rem;
    padding: 0;
  }
}

@media (max-width: 768px) {
  .dock-shimmer-sweep { display: none !important; }

  /* Hide desktop nav from header on mobile */
  .header-inner .nav-menu {
    display: none !important;
  }


  /* Hide large ambient background blur balls on mobile */
  .ambient-glow,
  .ambient-glow-1,
  .ambient-glow-2 {
    display: none !important;
  }

  /* 1. Global Viewport Safety & Zero Horizontal Overflow */
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-bottom: calc(90px + env(safe-area-inset-bottom, 0px)) !important;
  }

  .section {
    padding: 3.5rem 1rem !important;
    overflow-x: hidden !important;
  }

  .section-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .section-header {
    margin-bottom: 2.2rem !important;
    padding: 0 0.5rem !important;
  }

  .section-tag {
    font-size: 0.78rem !important;
    padding: 0.35rem 0.9rem !important;
    margin-bottom: 0.8rem !important;
  }

  .section-title {
    font-size: 1.7rem !important;
    line-height: 1.35 !important;
    word-break: break-word !important;
  }

  .section-desc {
    font-size: 0.9rem !important;
    line-height: 1.7 !important;
  }

  /* 2. Floating Header: Perfect Alignment, No Overlap Bug */
  header {
    top: 8px !important;
    left: 8px !important;
    right: 8px !important;
    width: auto !important;
    max-width: none !important;
    transform: none !important;
    padding: 0.5rem 0.8rem !important;
    border-radius: 18px !important;
  }

  .header-brand {
    gap: 0.5rem !important;
  }

  .header-logo-img {
    height: 42px !important;
  }

  .brand-title {
    font-size: 0.95rem !important;
  }

  .brand-tagline {
    font-size: 0.64rem !important;
  }

  .header-actions {
    gap: 0.5rem !important;
  }

  .header-actions .btn-gold {
    padding: 0.45rem 0.75rem !important;
    font-size: 0.75rem !important;
    gap: 0.35rem !important;
  }

  .header-actions .header-phone-btn {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 1.15rem;
    padding: 0;
  }

  /* Mobile Menu Overlay */
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 9, 13, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .mobile-menu-overlay .mobile-nav-link {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-pure);
    padding: 0.5rem 1rem;
  }
  .mobile-menu-close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
  }

  .nav-link {
    font-size: 1.15rem !important;
  }

  /* 3. Hero Section: Fluid Typography & Zero Text Truncation */
  .hero-section {
    padding-top: 6.5rem !important;
    padding-bottom: 2.5rem !important;
    overflow-x: hidden !important;
  }

  .hero-editorial-header {
    margin-bottom: 1.8rem !important;
    padding: 0 0.5rem !important;
  }

  .hero-live-badge {
    font-size: 0.76rem !important;
    padding: 0.35rem 0.85rem !important;
    max-width: 100% !important;
    text-align: center !important;
    white-space: normal !important;
    line-height: 1.4 !important;
    margin-bottom: 1rem !important;
  }

  .hero-big-title {
    font-size: 1.7rem !important;
    line-height: 1.35 !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    margin-bottom: 1rem !important;
    padding: 0 0.2rem !important;
  }
  .hero-brand-line {
    display: block !important;
    font-size: 1.7rem !important;
    line-height: 1.35 !important;
  }
  .hero-sub-line {
    display: block !important;
    font-size: 1.35rem !important;
    line-height: 1.4 !important;
    margin-top: 0.35rem !important;
  }

  .hero-lead-text {
    font-size: 0.92rem !important;
    line-height: 1.75 !important;
    padding: 0 !important;
    margin-bottom: 1.8rem !important;
  }

  .hero-fast-ctas {
    flex-direction: column !important;
    gap: 0.75rem !important;
    margin-bottom: 2.2rem !important;
    width: 100% !important;
  }

  .hero-fast-ctas .btn {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0.85rem 1.2rem !important;
    font-size: 0.9rem !important;
  }

  /* 4. Hero Triple Pillars: Fully Visible, Auto Height, Zero Cutoff! */
  .hero-pillars-wrapper {
    flex-direction: column !important;
    height: auto !important;
    gap: 1.1rem !important;
    margin-bottom: 2rem !important;
    width: 100% !important;
  }

  .pillar-card {
    height: auto !important;
    min-height: 310px !important;
    flex: none !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    display: flex !important;
    position: relative !important;
  }

  .pillar-card.active {
    min-height: 330px !important;
  }

  .pillar-bg-img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .pillar-overlay {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 310px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    padding: 1.25rem !important;
    background: linear-gradient(180deg, rgba(7, 9, 13, 0.4) 0%, rgba(7, 9, 13, 0.82) 50%, rgba(7, 9, 13, 0.98) 100%) !important;
  }

  .pillar-top-badge {
    font-size: 0.75rem !important;
    padding: 0.35rem 0.8rem !important;
    margin-bottom: 1.5rem !important;
  }

  .pillar-content-box {
    margin-top: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.45rem !important;
  }

  .pillar-title {
    font-size: 1.25rem !important;
    line-height: 1.35 !important;
    margin-bottom: 0.2rem !important;
  }

  .pillar-details {
    opacity: 1 !important;
    max-height: none !important;
    display: block !important;
    font-size: 0.84rem !important;
    line-height: 1.65 !important;
    color: var(--text-secondary) !important;
    margin-bottom: 0.5rem !important;
  }

  .pillar-btn {
    font-size: 0.82rem !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    padding-top: 0.2rem !important;
    color: var(--accent-gold-light) !important;
  }

  /* 5. Ribbon Highlights Strip */
  .hero-ribbon-strip {
    grid-template-columns: 1fr !important;
    gap: 0.85rem !important;
    padding: 1.1rem !important;
    border-radius: 16px !important;
  }

  .ribbon-item {
    gap: 0.75rem !important;
  }

  .ribbon-icon {
    width: 38px !important;
    height: 38px !important;
    font-size: 1rem !important;
    border-radius: 10px !important;
  }

  .ribbon-label {
    font-size: 0.88rem !important;
  }

  .ribbon-desc {
    font-size: 0.74rem !important;
  }

  /* 6. Trust Strip Section */
  .trust-features-grid {
    grid-template-columns: 1fr !important;
    gap: 0.85rem !important;
  }

  .trust-feature-box {
    padding: 1rem !important;
    border-radius: 14px !important;
  }

  /* 7. Bento Grid Services */
  .bento-services-grid {
    grid-template-columns: 1fr !important;
    gap: 1.2rem !important;
  }

  .bento-card.bento-large {
    grid-column: span 1 !important;
  }

  .bento-card {
    border-radius: 18px !important;
  }

  .bento-media {
    height: 200px !important;
  }

  .bento-content {
    padding: 1.2rem 1.1rem !important;
  }

  .bento-title {
    font-size: 1.2rem !important;
  }

  .bento-desc {
    font-size: 0.86rem !important;
    line-height: 1.65 !important;
  }

  /* 8. Gallery & Filter Tabs */
  .gallery-filter-tabs {
    gap: 0.45rem !important;
    margin-bottom: 1.8rem !important;
    justify-content: center !important;
  }

  .filter-tab-btn {
    padding: 0.45rem 0.95rem !important;
    font-size: 0.78rem !important;
    border-radius: 30px !important;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }

  .gallery-item-card {
    height: 200px !important;
    border-radius: 14px !important;
  }

  .gallery-item-overlay {
    padding: 0.75rem !important;
  }

  .gallery-item-category {
    font-size: 0.65rem !important;
  }

  .gallery-item-title {
    font-size: 0.82rem !important;
    line-height: 1.2 !important;
  }

  .gallery-actions-box {
    margin-top: 2.2rem !important;
    gap: 0.85rem !important;
  }

  .gallery-counter-badge {
    font-size: 0.82rem !important;
    padding: 0.4rem 1rem !important;
  }

  .gallery-load-btn {
    width: 100% !important;
    max-width: 320px !important;
    padding: 0.8rem 1.2rem !important;
    font-size: 0.88rem !important;
  }

  /* 9. Execution Journey & Comparison */
  .journey-roadmap {
    grid-template-columns: 1fr !important;
    gap: 1.6rem !important;
  }

  .journey-step-card {
    padding: 1.5rem 1.2rem !important;
    border-radius: 16px !important;
  }

  /* Comparison Table transformed into Responsive Mobile Cards */
  .comparison-table-wrapper {
    overflow: visible !important;
    width: 100% !important;
    max-width: 100% !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .comparison-table,
  .comparison-table thead,
  .comparison-table tbody,
  .comparison-table th,
  .comparison-table td,
  .comparison-table tr {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .comparison-table thead {
    display: none !important;
  }

  .comparison-table tbody tr {
    background: var(--bg-surface) !important;
    border: 1px solid var(--border-subtle) !important;
    border-radius: 18px !important;
    margin-bottom: 1.1rem !important;
    padding: 1.1rem !important;
    overflow: hidden !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
  }

  .comparison-table td {
    padding: 0.45rem 0 !important;
    border: none !important;
    text-align: right !important;
  }

  .comparison-table td.comparison-feature {
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    color: var(--accent-gold-light) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding-bottom: 0.6rem !important;
    margin-bottom: 0.6rem !important;
  }

  .comparison-table td.col-ebtekar {
    background: rgba(0, 229, 255, 0.1) !important;
    border-radius: 10px !important;
    padding: 0.65rem 0.85rem !important;
    margin-bottom: 0.45rem !important;
    color: #ffffff !important;
    font-size: 0.88rem !important;
    border: 1px solid rgba(0, 229, 255, 0.25) !important;
  }

  .comparison-table td.comparison-market {
    color: var(--text-muted) !important;
    font-size: 0.82rem !important;
    padding: 0.4rem 0.85rem !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border-radius: 10px !important;
  }

  /* 10. Testimonials & FAQ */
  .testimonials-grid {
    grid-template-columns: 1fr !important;
    gap: 1.1rem !important;
  }

  .testimonial-card {
    padding: 1.4rem 1.2rem !important;
    border-radius: 16px !important;
  }

  .testimonial-text {
    font-size: 0.88rem !important;
    line-height: 1.7 !important;
  }

  .faq-question {
    padding: 1.1rem 1.2rem !important;
    font-size: 0.95rem !important;
  }

  .faq-answer {
    padding: 0 1.2rem !important;
    font-size: 0.88rem !important;
  }

  .faq-item.active .faq-answer {
    padding-bottom: 1.1rem !important;
  }

  /* 11. Contact & Booking Form */
  .contact-booking-wrapper {
    padding: 1.8rem 1.1rem !important;
    border-radius: 20px !important;
  }

  .contact-booking-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .contact-card-item {
    padding: 0.9rem 1rem !important;
    gap: 0.85rem !important;
  }

  .contact-card-icon {
    width: 42px !important;
    height: 42px !important;
    font-size: 1.1rem !important;
  }

  .contact-card-title {
    font-size: 0.76rem !important;
  }

  .contact-card-val {
    font-size: 0.95rem !important;
  }

  .form-group-row {
    grid-template-columns: 1fr !important;
    gap: 0.9rem !important;
  }

  .form-input,
  .form-select,
  .form-textarea {
    padding: 0.75rem 0.95rem !important;
    font-size: 0.88rem !important;
  }

  /* 12. Footer */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  /* 13. Sticky Bottom Conversion Dock */
  .bottom-conversion-dock {
    bottom: 8px !important;
    left: 8px !important;
    right: 8px !important;
    transform: none !important;
    width: auto !important;
    max-width: none !important;
    border-radius: 22px !important;
    padding: 6px 8px !important;
    padding-bottom: max(6px, env(safe-area-inset-bottom)) !important;
  }

  .dock-container {
    gap: 5px !important;
  }

  .dock-btn-icon {
    width: 36px !important;
    height: 36px !important;
    font-size: 1.05rem !important;
  }

  .dock-btn-label {
    font-size: 0.7rem !important;
  }

  .dock-btn-primary {
    min-width: 110px !important;
    padding: 8px 10px !important;
    border-radius: 28px !important;
  }

  .dock-primary-content {
    font-size: 0.8rem !important;
    gap: 5px !important;
  }

  .floating-widgets {
    bottom: calc(80px + env(safe-area-inset-bottom, 0px)) !important;
    right: 12px !important;
  }

  .floating-top {
    width: 40px !important;
    height: 40px !important;
    font-size: 1rem !important;
  }
}

@media (max-width: 380px) {
  .section-title {
    font-size: 1.5rem !important;
  }
  .hero-big-title {
    font-size: 1.55rem !important;
  }
  .gallery-grid {
    grid-template-columns: 1fr !important;
  }
  .dock-btn-icon {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.95rem !important;
  }
  .dock-btn-label {
    font-size: 0.65rem !important;
  }
  .dock-btn-primary {
    min-width: 95px !important;
    padding: 6px 8px !important;
  }
  .dock-primary-content {
    font-size: 0.74rem !important;
  }
}
