/* ============================================================
   أمتار — موقع كراء المنازل على شاطئ أمتار
   CSS الرئيسي | اللغة العربية | RTL
   ============================================================ */

/* ── Variables ── */
:root {
  --blue-900: #0a1628;
  --blue-800: #0d2240;
  --blue-700: #0f3460;
  --blue-600: #1565c0;
  --blue-500: #1976d2;
  --blue-400: #42a5f5;
  --blue-300: #90caf9;
  --blue-200: #bbdefb;
  --blue-100: #e3f2fd;
  --teal-500: #00897b;
  --teal-400: #26a69a;
  --teal-300: #80cbc4;
  --cyan-500: #00acc1;
  --cyan-400: #26c6da;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;
  --gold: #f59e0b;
  --shadow-sm: 0 2px 8px rgba(21,101,192,.10);
  --shadow-md: 0 4px 24px rgba(21,101,192,.15);
  --shadow-lg: 0 12px 48px rgba(21,101,192,.20);
  --shadow-xl: 0 24px 80px rgba(21,101,192,.28);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Cairo', 'Tajawal', sans-serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--gray-800);
  background: var(--white);
  direction: rtl;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ══════════════════════════════════════════
   NAVBAR — شريط التنقل الرئيسي
══════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; right: 0; left: 0; z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(21,101,192,.10);
  transition: box-shadow var(--transition), background var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,.99);
  box-shadow: 0 4px 24px rgba(21,101,192,.12);
}
.nav-container {
  max-width: 1240px; margin: 0 auto;
  padding: 0 28px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}

/* ── اللوغو ── */
.nav-logo {
  display: flex; align-items: center; gap: 11px;
  text-decoration: none; flex-shrink: 0;
  padding: 4px 0;
}
.nav-logo-img {
  width: 44px; height: 44px; flex-shrink: 0;
  transition: transform .3s ease;
}
.nav-logo:hover .nav-logo-img { transform: rotate(-6deg) scale(1.08); }
.nav-logo-text {
  display: flex; flex-direction: column; line-height: 1;
}
.nav-logo-ar {
  font-size: 1.5rem; font-weight: 900;
  color: var(--blue-700);
  letter-spacing: 3px;
  background: linear-gradient(135deg, #0f3460, #1565c0, #0288d1);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-logo-sub {
  font-size: .6rem; font-weight: 600; color: var(--gray-400);
  letter-spacing: 1.5px; margin-top: 2px;
  -webkit-text-fill-color: var(--gray-400);
}
/* يُبقى للتوافق مع الـ footer */
.logo-icon { font-size: 1.8rem; filter: drop-shadow(0 2px 4px rgba(21,101,192,.3)); }
.logo-text  { letter-spacing: 2px; font-weight: 900; }

/* ── اللوغو الجديد (img + نص) ── */
.nav-logo-img {
  width: 46px; height: 46px; flex-shrink: 0;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
  filter: drop-shadow(0 2px 6px rgba(21,101,192,.2));
}
.nav-logo:hover .nav-logo-img {
  transform: rotate(-8deg) scale(1.1);
}
.nav-logo-text {
  display: flex; flex-direction: column; line-height: 1; gap: 3px;
}
.nav-logo-ar {
  font-size: 1.45rem; font-weight: 900;
  letter-spacing: 3px;
  background: linear-gradient(135deg, #0f3460 0%, #1565c0 50%, #0288d1 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-logo-sub {
  font-size: .58rem; font-weight: 600;
  color: var(--gray-400); letter-spacing: 1.8px;
  text-transform: uppercase;
}
/* ── روابط التنقل ── */
.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-link {
  position: relative;
  padding: 8px 15px; border-radius: 50px;
  font-size: .92rem; font-weight: 600;
  color: var(--gray-600);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 5px; left: 50%; right: 50%;
  height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, #1565c0, #00acc1);
  transition: all var(--transition);
}
.nav-link:hover { color: var(--blue-600); background: var(--blue-100); }
.nav-link:hover::after,
.nav-link.active::after { left: 20%; right: 20%; }
.nav-link.active { color: var(--blue-700); background: var(--blue-100); font-weight: 700; }
.nav-link.nav-cta {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  color: var(--white);
  padding: 10px 22px;
  box-shadow: 0 4px 14px rgba(21,101,192,.25);
}
.nav-link.nav-cta::after { display: none; }
.nav-link.nav-cta:hover {
  background: linear-gradient(135deg, var(--blue-700), #0a2f6e);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(21,101,192,.35);
  color: #fff;
}

/* ── زر القائمة للجوال ── */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 9px; border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.nav-toggle:hover { background: var(--blue-100); }
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--blue-700); border-radius: 2px;
  transition: all var(--transition);
  display: block;
}

/* ── HERO ── */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 40%, var(--blue-700) 70%, #0d5c8e 100%);
  display: flex; align-items: center; justify-content: center;
  padding-top: 70px;
}
.hero-bg {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-wave {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 200px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23ffffff' fill-opacity='0.05' d='M0,64L48,80C96,96,192,128,288,128C384,128,480,96,576,80C672,64,768,64,864,80C960,96,1056,128,1152,128C1248,128,1344,96,1392,80L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom center;
  background-size: cover;
}
.wave2 { bottom: -40px; opacity: .6; animation: waveFloat 6s ease-in-out infinite alternate; }
@keyframes waveFloat { from { transform: translateX(0); } to { transform: translateX(-30px); } }
.hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 800px; margin: 0 auto; padding: 60px 24px;
  animation: fadeUp .8s ease both;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  color: var(--blue-200); padding: 6px 20px; border-radius: 50px;
  font-size: .9rem; font-weight: 600; margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900; color: var(--white);
  line-height: 1.2; margin-bottom: 20px;
}
.title-line { display: block; }
.title-accent {
  display: block;
  background: linear-gradient(90deg, var(--cyan-400), var(--teal-300));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  color: var(--blue-200); font-size: 1.1rem;
  max-width: 600px; margin: 0 auto 40px; line-height: 1.8;
}
.hero-search {
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-xl); padding: 24px;
  margin-bottom: 40px;
}
.search-box {
  display: flex; gap: 12px; margin-bottom: 16px;
}
.search-box input {
  flex: 1; padding: 14px 20px; border-radius: 50px;
  border: 2px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: var(--white); font-family: var(--font-main); font-size: 1rem;
  outline: none; transition: border-color var(--transition);
}
.search-box input::placeholder { color: rgba(255,255,255,.5); }
.search-box input:focus { border-color: var(--cyan-400); }
.search-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px;
  background: linear-gradient(135deg, var(--cyan-400), var(--blue-500));
  color: var(--white); font-weight: 700; font-size: 1rem;
  font-family: var(--font-main);
  transition: all var(--transition); white-space: nowrap;
}
.search-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,172,193,.4); }
.search-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.tag {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: var(--blue-200); padding: 6px 14px; border-radius: 50px;
  font-size: .85rem; cursor: pointer; transition: all var(--transition);
}
.tag:hover { background: rgba(255,255,255,.2); color: white; }
.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 32px;
}
.stat { text-align: center; }
.stat strong { display: block; font-size: 2rem; font-weight: 900; color: var(--white); }
.stat span { font-size: .85rem; color: var(--blue-300); }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.2); }
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
}
.scroll-indicator {
  width: 28px; height: 48px; border: 2px solid rgba(255,255,255,.3);
  border-radius: 50px; position: relative;
}
.scroll-indicator::after {
  content: ''; position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 10px; background: rgba(255,255,255,.6); border-radius: 4px;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(12px); opacity: 0; } }

/* ── SECTION COMMON ── */
section { padding: 100px 24px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--blue-900); margin: 12px 0; }
.section-header p { color: var(--gray-600); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,.75); }
.section-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue-100); color: var(--blue-700);
  padding: 6px 16px; border-radius: 50px; font-size: .85rem; font-weight: 700;
  margin-bottom: 12px;
}
.section-badge.white { background: rgba(255,255,255,.15); color: var(--white); }
.section-cta { text-align: center; margin-top: 48px; }
.btn-outline {
  display: inline-block; padding: 14px 32px;
  border: 2px solid var(--blue-500); color: var(--blue-600);
  border-radius: 50px; font-weight: 700; font-size: 1rem;
  transition: all var(--transition);
}
.btn-outline:hover { background: var(--blue-600); color: white; transform: translateY(-2px); }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  color: var(--white); border-radius: 50px; font-weight: 700; font-size: 1rem;
  transition: all var(--transition); border: none; cursor: pointer; font-family: var(--font-main);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary {
  display: inline-block; padding: 14px 32px;
  border: 2px solid rgba(255,255,255,.4); color: var(--white);
  border-radius: 50px; font-weight: 700; font-size: 1rem;
  transition: all var(--transition);
}
.btn-secondary:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

/* ── VIDEO SECTION ── */
.videos-section { background: var(--white); }
.videos-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.video-card {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
}
.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.video-tag {
  padding: 12px 20px; font-size: .85rem; font-weight: 700;
  letter-spacing: .5px;
}
.beach-card .video-tag { background: linear-gradient(135deg, var(--blue-700), var(--cyan-500)); color: white; }
.house-card .video-tag { background: linear-gradient(135deg, var(--teal-500), var(--blue-500)); color: white; }
.video-wrapper { position: relative; }
.video-placeholder {
  position: relative; height: 240px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.beach-placeholder { background: linear-gradient(135deg, #0a3d62, #1565c0, #00acc1); }
.house-placeholder { background: linear-gradient(135deg, #004d40, #00695c, #26a69a); }
.play-btn {
  width: 72px; height: 72px; background: rgba(255,255,255,.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px); border: 2px solid rgba(255,255,255,.4);
  transition: all var(--transition); z-index: 2; position: relative;
}
.play-btn:hover { background: rgba(255,255,255,.35); transform: scale(1.1); }
.video-overlay-text {
  position: absolute; bottom: 20px; right: 20px; text-align: right;
  color: rgba(255,255,255,.8);
}
.video-overlay-text span { font-size: 2rem; }
.video-overlay-text p { font-size: .85rem; font-weight: 600; }
.video-shimmer {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.06) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
.video-info { padding: 24px; }
.video-info h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; color: var(--blue-900); }
.video-info p { color: var(--gray-600); font-size: .95rem; margin-bottom: 20px; }
.video-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 50px;
  font-weight: 700; font-size: .9rem; transition: all var(--transition);
}
.beach-btn { background: var(--blue-600); color: white; }
.beach-btn:hover { background: var(--blue-700); transform: translateX(-4px); }
.house-btn { background: var(--teal-500); color: white; }
.house-btn:hover { background: var(--teal-400); transform: translateX(-4px); }

/* ── FEATURES ── */
.features-section {
  background: linear-gradient(180deg, var(--blue-900) 0%, var(--blue-800) 100%);
}
.features-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.feature-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md); padding: 32px 24px;
  text-align: center; transition: all var(--transition);
  backdrop-filter: blur(8px);
}
.feature-card:hover {
  background: rgba(255,255,255,.10);
  transform: translateY(-4px);
  border-color: rgba(144,202,249,.3);
}
.feature-icon { font-size: 2.8rem; margin-bottom: 16px; }
.feature-card h3 { color: var(--white); font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.feature-card p { color: var(--blue-300); font-size: .9rem; line-height: 1.7; }

/* ── PROPERTIES ── */
.properties-section { background: var(--gray-50); }
.properties-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.property-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.property-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.property-img { position: relative; }
.img-placeholder {
  height: 200px; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-size: 3.5rem; gap: 8px;
}
.img-placeholder p { font-size: .9rem; color: rgba(255,255,255,.7); font-weight: 600; }
.blue-grad { background: linear-gradient(135deg, #0a3d62, #1565c0); }
.teal-grad { background: linear-gradient(135deg, #004d40, #26a69a); }
.sky-grad { background: linear-gradient(135deg, #0277bd, #29b6f6); }
.ocean-grad { background: linear-gradient(135deg, #01579b, #0288d1, #26c6da); }
.property-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--whatsapp); color: white;
  padding: 4px 12px; border-radius: 50px; font-size: .78rem; font-weight: 700;
}
/* ── بطاقة "للكراء بأثمنة مناسبة" ── */
.prop-badge-price {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, #e3f2fd, #e0f2f1);
  border: 1.5px solid rgba(21,101,192,.18);
  color: var(--blue-700);
  padding: 6px 14px; border-radius: 50px;
  font-size: .82rem; font-weight: 700;
  white-space: nowrap;
  letter-spacing: .3px;
}
.property-body { padding: 20px; }
.property-body h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 6px; color: var(--blue-900); }
.property-location { color: var(--gray-400); font-size: .85rem; margin-bottom: 12px; }
.property-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.property-features span {
  background: var(--blue-100); color: var(--blue-700);
  padding: 4px 10px; border-radius: 50px; font-size: .8rem; font-weight: 600;
}
.property-cta {
  display: block; text-align: center;
  padding: 12px; background: var(--blue-600); color: white;
  border-radius: var(--radius-sm); font-weight: 700; font-size: .95rem;
  transition: all var(--transition);
}
.property-cta:hover { background: var(--blue-700); }

/* ── MAP ── */
.map-section { background: var(--white); }
.map-container {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 300px 1fr; gap: 32px;
  align-items: start;
}
.map-info-card {
  background: linear-gradient(160deg, var(--blue-700), var(--blue-900));
  border-radius: var(--radius-lg); padding: 32px 24px;
  color: white; text-align: center;
}
.map-icon { font-size: 3rem; margin-bottom: 16px; }
.map-info-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
.map-info-card p { font-size: .9rem; color: var(--blue-200); margin-bottom: 8px; }
.map-coords {
  background: rgba(255,255,255,.1); border-radius: var(--radius-sm);
  padding: 8px 16px; margin: 16px 0; font-size: .85rem; color: var(--blue-200);
}
.map-link {
  display: inline-block; margin-top: 16px;
  padding: 12px 20px; background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3); border-radius: 50px;
  font-size: .9rem; font-weight: 700; transition: all var(--transition);
}
.map-link:hover { background: rgba(255,255,255,.25); transform: translateY(-2px); }
.map-embed iframe { width: 100%; border-radius: var(--radius-md); }

/* ── CONTACT ── */
.contact-section {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-900), #0d5c8e);
  text-align: center;
}
.contact-bg {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.contact-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.contact-content h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: white; font-weight: 900; margin: 16px 0 12px; }
.contact-content > p { color: var(--blue-200); margin-bottom: 40px; font-size: 1.05rem; }
.contact-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 32px; background: var(--whatsapp); color: white;
  border-radius: 50px; font-weight: 800; font-size: 1.05rem;
  transition: all var(--transition);
  box-shadow: 0 8px 32px rgba(37,211,102,.3);
}
.whatsapp-btn:hover { background: var(--whatsapp-dark); transform: translateY(-3px); box-shadow: 0 16px 48px rgba(37,211,102,.4); }
.phone-num {
  background: rgba(255,255,255,.2); padding: 2px 10px; border-radius: 50px; font-size: .9rem;
}
.phone-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; background: rgba(255,255,255,.1);
  border: 2px solid rgba(255,255,255,.3); color: white;
  border-radius: 50px; font-weight: 700; font-size: 1rem;
  transition: all var(--transition);
}
.phone-btn:hover { background: rgba(255,255,255,.2); border-color: white; }
.contact-hours { color: var(--blue-300); margin-top: 24px; font-size: .9rem; }

/* ── FOOTER ── */
.footer {
  background: var(--blue-900); color: var(--blue-200);
  padding: 60px 24px 0;
}
.footer-container {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .nav-logo { margin-bottom: 16px; color: white; }
.footer-brand p { font-size: .9rem; line-height: 1.7; color: var(--blue-300); }
.footer-nav h4, .footer-contact h4 {
  color: var(--white); font-weight: 700; margin-bottom: 16px; font-size: 1rem;
}
.footer-nav ul li { margin-bottom: 10px; }
.footer-nav ul li a, .footer-contact a {
  color: var(--blue-300); font-size: .9rem;
  transition: color var(--transition);
}
.footer-nav ul li a:hover, .footer-contact a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact p { font-size: .9rem; }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  padding: 24px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: .85rem; color: var(--blue-400);
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed; bottom: 32px; left: 32px; z-index: 999;
  width: 60px; height: 60px; background: var(--whatsapp);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,.4);
  transition: all var(--transition);
}
.whatsapp-float:hover { background: var(--whatsapp-dark); transform: scale(1.1); }
.float-tooltip {
  position: absolute; bottom: 72px; left: 50%; transform: translateX(-50%);
  background: var(--blue-900); color: white; padding: 6px 14px; border-radius: 50px;
  font-size: .8rem; white-space: nowrap; pointer-events: none;
  opacity: 0; transition: opacity var(--transition);
}
.whatsapp-float:hover .float-tooltip { opacity: 1; }

/* ── PAGE HERO ── */
.page-hero {
  position: relative; padding: 140px 24px 80px;
  text-align: center; overflow: hidden;
}
.about-hero .page-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--blue-900) 0%, #006064 60%, var(--teal-500) 100%);
}
.videos-hero .page-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 50%, #0d5c8e 100%);
}
.page-hero-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--blue-300); font-size: .9rem; margin-bottom: 20px; }
.breadcrumb a { color: var(--blue-200); transition: color var(--transition); }
.breadcrumb a:hover { color: white; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: white; font-weight: 900; margin-bottom: 16px; }
.page-hero p { color: var(--blue-200); font-size: 1.1rem; }

/* ── ABOUT PAGE ── */
.about-intro { max-width: 1100px; margin: 0 auto; }
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-text .section-badge { margin-bottom: 16px; }
.about-text h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; color: var(--blue-900); margin-bottom: 20px; }
.lead-text { font-size: 1.15rem; font-weight: 600; color: var(--blue-700); margin-bottom: 16px; line-height: 1.8; }
.about-text p { color: var(--gray-600); line-height: 1.85; margin-bottom: 16px; }
.about-img-card.big-img .img-placeholder { height: 360px; border-radius: var(--radius-lg); font-size: 5rem; }

.about-stats { background: var(--blue-900); padding: 80px 24px; }
.stats-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md); padding: 32px 20px; text-align: center;
  transition: all var(--transition);
}
.stat-card:hover { background: rgba(255,255,255,.10); transform: translateY(-4px); }
.stat-num { font-size: 2rem; font-weight: 900; color: var(--cyan-400); margin-bottom: 8px; }
.stat-label { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.stat-desc { font-size: .85rem; color: var(--blue-300); }

.nature-section { background: var(--gray-50); }
.nature-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.nature-card {
  background: white; border-radius: var(--radius-md); padding: 28px 24px;
  border: 1px solid var(--gray-200); transition: all var(--transition);
}
.nature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-300); }
.nature-icon { font-size: 2.4rem; margin-bottom: 16px; }
.nature-card h3 { font-size: 1rem; font-weight: 800; color: var(--blue-900); margin-bottom: 10px; }
.nature-card p { font-size: .9rem; color: var(--gray-600); line-height: 1.7; }

.directions-section { background: white; }
.directions-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.direction-card {
  border-radius: var(--radius-md); padding: 32px 24px; text-align: center;
  background: var(--blue-100); border: 1px solid var(--blue-200);
  transition: all var(--transition);
}
.direction-card:hover { background: var(--blue-200); transform: translateY(-4px); }
.dir-icon { font-size: 2.8rem; margin-bottom: 16px; }
.direction-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--blue-900); margin-bottom: 12px; }
.direction-card p { font-size: .9rem; color: var(--blue-700); line-height: 1.7; }

.about-cta {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  text-align: center;
}
.about-cta-content { max-width: 600px; margin: 0 auto; }
.about-cta h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: white; font-weight: 900; margin-bottom: 12px; }
.about-cta p { color: var(--blue-200); margin-bottom: 32px; font-size: 1.05rem; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── VIDEOS PAGE ── */
.filter-section { background: white; padding: 24px 24px 0; }
.filter-container { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.filter-label { font-weight: 700; color: var(--gray-600); font-size: .95rem; white-space: nowrap; }
.filter-buttons { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 18px; border-radius: 50px;
  border: 2px solid var(--gray-200); color: var(--gray-600); font-family: var(--font-main);
  font-size: .88rem; font-weight: 600; transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--blue-500); background: var(--blue-600); color: white;
}

.featured-video-section { background: white; }
.featured-video-card {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 420px; gap: 40px; align-items: start;
  background: white; border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.featured-video-wrapper { position: relative; }
.featured-placeholder {
  height: 400px;
  background: linear-gradient(135deg, #0a2744, #1565c0, #0097a7);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.play-btn-large {
  width: 100px; height: 100px; background: rgba(255,255,255,.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px); border: 3px solid rgba(255,255,255,.4);
  transition: all var(--transition); cursor: pointer;
}
.play-btn-large:hover { background: rgba(255,255,255,.35); transform: scale(1.1); }
.featured-overlay {
  position: absolute; bottom: 24px; right: 24px; text-align: right; color: white;
}
.feat-emoji { font-size: 3rem; }
.featured-overlay h3 { font-size: 1.1rem; font-weight: 800; margin: 8px 0 4px; }
.featured-overlay p { font-size: .85rem; color: rgba(255,255,255,.7); }
.featured-info { padding: 36px 36px 36px 0; }
.featured-badge {
  display: inline-block; background: var(--gold); color: var(--gray-800);
  padding: 4px 14px; border-radius: 50px; font-size: .8rem; font-weight: 800;
  margin-bottom: 16px;
}
.featured-info h3 { font-size: 1.5rem; font-weight: 900; color: var(--blue-900); margin-bottom: 12px; }
.featured-info > p { color: var(--gray-600); font-size: .95rem; line-height: 1.7; margin-bottom: 24px; }
.featured-details { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
.detail-item { display: flex; align-items: center; gap: 8px; font-size: .9rem; }
.detail-icon { font-size: 1.1rem; }
.featured-price { margin-bottom: 24px; }
.price-num { font-size: 2.2rem; font-weight: 900; color: var(--blue-700); }
.price-unit { font-size: .9rem; color: var(--gray-400); margin-right: 6px; }
.whatsapp-booking { background: var(--whatsapp); }
.whatsapp-booking:hover { background: var(--whatsapp-dark); }

.gallery-section { background: var(--gray-50); }
.videos-gallery {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.gallery-card {
  background: white; border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.gallery-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.gallery-video .video-placeholder { height: 180px; cursor: pointer; }
.card-placeholder { background: linear-gradient(135deg, #0a3d62, #1565c0); position: relative; }
.green-card { background: linear-gradient(135deg, #1b5e20, #388e3c); }
.sky-card { background: linear-gradient(135deg, #01579b, #0288d1); }
.orange-card { background: linear-gradient(135deg, #bf360c, #e64a19, #ff7043); }
.purple-card { background: linear-gradient(135deg, #4a148c, #7b1fa2, #ba68c8); }
.teal-card { background: linear-gradient(135deg, #004d40, #00796b, #26a69a); }
.card-emoji { font-size: 3rem; }
.play-btn-sm {
  position: absolute; top: 12px; left: 12px;
  width: 44px; height: 44px; background: rgba(255,255,255,.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.3);
  transition: all var(--transition); cursor: pointer;
}
.play-btn-sm:hover { background: rgba(255,255,255,.35); transform: scale(1.1); }
.gallery-info { padding: 16px; }
.gallery-category {
  display: inline-block; padding: 3px 10px; border-radius: 50px;
  font-size: .75rem; font-weight: 700; margin-bottom: 8px;
}
.gallery-category.beach { background: var(--blue-100); color: var(--blue-700); }
.gallery-category.villa { background: #e8f5e9; color: #2e7d32; }
.gallery-category.chalet { background: #fff3e0; color: #e65100; }
.gallery-category.apartment { background: #f3e5f5; color: #6a1b9a; }
.gallery-info h3 { font-size: 1rem; font-weight: 800; color: var(--blue-900); margin-bottom: 10px; }
.gallery-specs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.gallery-specs span { background: var(--gray-100); color: var(--gray-600); padding: 3px 8px; border-radius: 50px; font-size: .78rem; }
.gallery-footer { display: flex; align-items: center; justify-content: space-between; }
.gallery-price strong { font-size: 1.2rem; font-weight: 900; color: var(--blue-700); }
.gallery-price span { font-size: .78rem; color: var(--gray-400); }
.gallery-book {
  padding: 8px 18px; background: var(--blue-600); color: white;
  border-radius: 50px; font-size: .85rem; font-weight: 700;
  transition: all var(--transition);
}
.gallery-book:hover { background: var(--blue-700); transform: translateY(-2px); }

.beach-videos-section { background: var(--blue-900); }
.beach-videos-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.beach-video-card { border-radius: var(--radius-md); overflow: hidden; transition: all var(--transition); }
.beach-video-card:hover { transform: translateY(-4px); }
.beach-v { height: 180px; position: relative; cursor: pointer; }
.blue-beach { background: linear-gradient(135deg, #0a1628, #1565c0); }
.teal-beach { background: linear-gradient(135deg, #004d40, #00bcd4); }
.sunset-beach { background: linear-gradient(135deg, #bf360c, #e91e63, #ffd54f); }
.aerial-beach { background: linear-gradient(135deg, #1a237e, #0288d1, #26c6da); }
.beach-video-title { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-top: none; padding: 14px 16px; }
.beach-video-title h3 { font-size: .9rem; font-weight: 700; color: white; margin-bottom: 4px; }
.beach-video-title p { font-size: .78rem; color: var(--blue-300); }

/* ══════════════════════════════════════════════
   HERO VIDEOS — الفيديوهان في أعلى الصفحة
   ══════════════════════════════════════════════ */

/* الحاوية الكاملة للـ Hero */
/* ══════════════════════════════════════════
   HERO VIDEOS — الفيديوهان في أعلى الصفحة
   ══════════════════════════════════════════ */
.hero-videos {
  position: relative;
  padding-top: 70px; /* ارتفاع الـ navbar */
  background: linear-gradient(160deg, var(--blue-900) 0%, var(--blue-800) 45%, #0d5c8e 100%);
  overflow: hidden;
}

/* خلفية زخرفية */
.hv-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(21,101,192,.25) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='18'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* المحتوى الداخلي — عرض أقصى لإظهار الفيديوهات كبيرة */
.hv-inner {
  position: relative; z-index: 1;
  max-width: 1400px; margin: 0 auto;
  padding: 28px 20px 52px;
}

/* كتلة العنوان — مضغوطة أكثر لإفساح المجال للفيديوهات */
.hv-title-block {
  text-align: center;
  margin-bottom: 28px;
}

.hv-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.20);
  color: var(--blue-200);
  padding: 5px 18px; border-radius: 50px;
  font-size: .85rem; font-weight: 600;
  margin-bottom: 12px;
  backdrop-filter: blur(8px);
}

.hv-title {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 900; color: var(--white);
  line-height: 1.2; margin-bottom: 8px;
}

.hv-accent {
  background: linear-gradient(90deg, #26c6da, #80deea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hv-sub {
  color: var(--blue-200); font-size: .95rem;
  max-width: 560px; margin: 0 auto;
}

/* ════ DUO VIDEOS — جنباً إلى جنب، حجم كبير ════ */
.hv-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
  /* نستخدم كامل عرض hv-inner */
  width: 100%;
}

/* كل بطاقة فيديو — أكبر وأوضح */
.hv-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 20px 56px rgba(0,0,0,.4);
  transition: transform .35s ease, box-shadow .35s ease;
}
.hv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
}

/* شريط الوسم العلوي */
.hv-card-label {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  font-size: .88rem; font-weight: 700; letter-spacing: .4px;
}
.hv-beach .hv-card-label {
  background: linear-gradient(90deg, var(--blue-700), #0097a7);
  color: #fff;
}
.hv-house .hv-card-label {
  background: linear-gradient(90deg, var(--teal-500), #1565c0);
  color: #fff;
}

/* حاوية الـ iframe — نسبة 16:9، أكبر */
.hv-iframe-wrap {
  position: relative;
  width: 100%;
  padding-top: 58%; /* أكبر قليلاً من 16:9 لزيادة الحجم */
  background: #000;
}
.hv-iframe-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
  display: block;
}

/* Footer الكارد: معلومات + زر */
.hv-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  background: rgba(0,0,0,.25);
}

.hv-card-info h2 {
  font-size: 1.05rem; font-weight: 800;
  color: var(--white); margin-bottom: 4px;
}
.hv-card-info p {
  font-size: .82rem; color: var(--blue-300);
}

/* أزرار "المزيد" */
.hv-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 11px 20px; border-radius: 50px;
  font-weight: 700; font-size: .85rem;
  white-space: nowrap; transition: all var(--transition);
  flex-shrink: 0;
}
.hv-btn-beach { background: var(--blue-600); color: #fff; }
.hv-btn-beach:hover { background: var(--blue-500); transform: translateX(-3px); }
.hv-btn-house { background: var(--teal-500); color: #fff; }
.hv-btn-house:hover { background: var(--teal-400); transform: translateX(-3px); }

/* ════ شريط البحث داخل الـ Hero ════ */
.hv-search-wrap {
  max-width: 700px; margin: 0 auto 32px;
}
.hv-search-box {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 50px;
  padding: 8px 8px 8px 20px;
  margin-bottom: 14px;
  backdrop-filter: blur(8px);
}
.hv-search-box svg { flex-shrink: 0; }
.hv-search-box input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--white); font-family: var(--font-main); font-size: .95rem;
}
.hv-search-box input::placeholder { color: rgba(255,255,255,.4); }
.hv-search-btn {
  padding: 10px 24px; background: var(--blue-600);
  color: #fff; border-radius: 50px;
  font-weight: 700; font-size: .9rem; font-family: var(--font-main);
  transition: all var(--transition); white-space: nowrap;
}
.hv-search-btn:hover { background: var(--blue-500); }
.hv-tags {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
}
.hv-tag {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.20);
  color: var(--blue-200);
  padding: 6px 14px; border-radius: 50px;
  font-size: .82rem; cursor: pointer; font-family: var(--font-main);
  transition: all var(--transition);
}
.hv-tag:hover { background: rgba(255,255,255,.22); color: #fff; }

/* ════ إحصائيات Hero ════ */
.hv-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 28px; flex-wrap: wrap;
}
.hv-stat { text-align: center; }
.hv-stat strong { display: block; font-size: 1.7rem; font-weight: 900; color: var(--white); }
.hv-stat span { font-size: .8rem; color: var(--blue-300); }
.hv-stat-div { width: 1px; height: 36px; background: rgba(255,255,255,.2); }

/* ════ Responsive للفيديوهات ════ */
@media (max-width: 900px) {
  .hv-duo { gap: 20px; }
  .hv-card-footer { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hv-btn { width: 100%; justify-content: center; }
}
@media (max-width: 700px) {
  .hv-duo { grid-template-columns: 1fr; gap: 20px; }
  .hv-title { font-size: 1.65rem; }
  .hv-inner { padding: 28px 16px 44px; }
  .hv-search-box { flex-wrap: wrap; border-radius: var(--radius-lg); padding: 12px 16px; }
  .hv-search-btn { width: 100%; text-align: center; justify-content: center; }
  .hv-stats { gap: 16px; }
  .hv-stat strong { font-size: 1.4rem; }
}
@media (max-width: 480px) {
  .hv-badge { font-size: .78rem; }
  .hv-card-footer { padding: 12px 14px; }
  .hv-card-info h2 { font-size: .88rem; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .videos-grid { gap: 24px; }
  .properties-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .map-container { grid-template-columns: 1fr; }
  .map-info-card { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; text-align: right; }
  .featured-video-card { grid-template-columns: 1fr; }
  .featured-info { padding: 24px; }
  .beach-videos-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-container { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  section { padding: 60px 20px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 72px; right: 0; left: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(20px);
    flex-direction: column; padding: 16px 20px 24px;
    box-shadow: 0 12px 40px rgba(21,101,192,.15);
    border-top: 1px solid rgba(21,101,192,.08);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-link { width: 100%; text-align: center; padding: 12px 16px; border-radius: 12px; }
  .nav-link.nav-cta { margin-top: 8px; }
  .hero-stats { gap: 16px; }
  .stat strong { font-size: 1.5rem; }
  .search-box { flex-direction: column; }
  .videos-grid { grid-template-columns: 1fr; }
  .properties-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .about-intro-grid { grid-template-columns: 1fr; }
  .nature-grid { grid-template-columns: 1fr; }
  .directions-grid { grid-template-columns: 1fr; }
  .videos-gallery { grid-template-columns: 1fr; }
  .beach-videos-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .whatsapp-float { bottom: 20px; left: 20px; width: 52px; height: 52px; }
  .contact-buttons { flex-direction: column; align-items: center; }
  .map-info-card { grid-template-columns: 1fr; text-align: center; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .hero-badge { font-size: .8rem; }
  .stat-divider { display: none; }
  .hero-stats { justify-content: space-around; }
  .search-tags { gap: 6px; }
  .tag { font-size: .78rem; padding: 5px 10px; }
}

/* ══ قائمة مضغوطة تلقائياً عند كثرة الروابط ══ */
@media (max-width: 1280px) {
  .nav-link { padding: 8px 9px; font-size: .82rem; }
  .nav-link.nav-cta { padding: 9px 14px; font-size: .82rem; }
}
@media (max-width: 768px) {
  .nav-link { padding: 12px 16px; font-size: .92rem; width: 100%; text-align: center; border-radius: 12px; }
  .nav-link.nav-cta { padding: 12px 16px; margin-top: 8px; }
}

/* ══════════════════════════════════════════
   SEDO "FOR SALE" TOP & BOTTOM BANNERS
══════════════════════════════════════════ */
.sedo-top {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1200;
  height: 40px; display: flex; align-items: center; justify-content: center;
  gap: 8px; padding: 0 16px;
  background: linear-gradient(90deg, #0f3460, #1565c0, #0f3460);
  color: #bbdefb; font-size: .78rem; font-weight: 700;
  text-align: center; letter-spacing: .3px;
  border-bottom: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 2px 14px rgba(0,0,0,.35);
}
.sedo-top a { color: #fff; text-decoration: underline; }
.sedo-top a:hover { color: #80cbc4; }
.sedo-top .sedo-dot { color: #f59e0b; font-size: .85rem; }
.navbar { top: 40px; }

.sedo-bottom {
  background: linear-gradient(90deg, #0f3460, #1565c0, #0f3460);
  color: #bbdefb; text-align: center;
  padding: 14px 16px; font-size: .78rem; font-weight: 700;
  border-top: 1px solid rgba(255,255,255,.15);
  letter-spacing: .3px;
}
.sedo-bottom a { color: #fff; text-decoration: underline; }
.sedo-bottom a:hover { color: #80cbc4; }
.sedo-bottom .sedo-dot { color: #f59e0b; font-size: .85rem; }

/* ══════════════════════════════════════════
   LANGUAGE SWITCH (AR / FR / EN)
══════════════════════════════════════════ */
.lang-switch {
  display: flex; align-items: center; gap: 4px;
  margin-inline-start: 6px; flex-shrink: 0;
}
.lang-btn {
  padding: 6px 11px; border-radius: 50px;
  border: 1.5px solid #e2e8f0; background: #fff;
  color: #475569; font-family: 'Cairo', 'Tajawal', sans-serif;
  font-size: .76rem; font-weight: 700; cursor: pointer;
  transition: all .25s; line-height: 1;
}
.lang-btn.active {
  background: #1565c0; border-color: #1565c0; color: #fff;
  box-shadow: 0 4px 12px rgba(21,101,192,.3);
}
.lang-btn:hover:not(.active) { border-color: #1565c0; color: #1565c0; }

/* ══════════════════════════════════════════
   CATEGORY SECTION HEADERS (houses page)
══════════════════════════════════════════ */
.cat-section { padding: 70px 24px 80px; }
.cat-section:nth-child(odd) { background: #f8fafc; }
.cat-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.cat-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 18px; border-radius: 50px;
  font-size: .85rem; font-weight: 800; letter-spacing: .4px;
  margin-bottom: 14px;
}
.cat-badge.sea   { background: #e3f2fd; color: #1565c0; border: 1px solid #bbdefb; }
.cat-badge.near  { background: #e0f7fa; color: #00838f; border: 1px solid #b2ebf2; }
.cat-badge.other { background: #f1f5f9; color: #475569; border: 1px solid #e2e8f0; }
.cat-badge.lux   { background: #ede7f6; color: #5e35b1; border: 1px solid #d1c4e9; }
.cat-head h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 900; color: #0f3460; margin-bottom: 8px; }
.cat-head p  { color: #64748b; font-size: .98rem; }

.gh-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
  max-width: 1200px; margin: 0 auto;
}
@media (max-width: 1024px) { .gh-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .gh-grid { grid-template-columns: 1fr; } }

.gh-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  border: 1px solid #e2e8f0; box-shadow: 0 4px 20px rgba(21,101,192,.07);
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.gh-card:hover { transform: translateY(-7px); box-shadow: 0 20px 56px rgba(21,101,192,.16); }
.gh-media { position: relative; width: 100%; padding-bottom: 56.25%; background: #000; flex-shrink: 0; }
.gh-media iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; display: block; }
.gh-media .img-ph {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; font-size: 3rem; color: rgba(255,255,255,.85);
}
.gh-media .img-ph p { font-size: .85rem; font-weight: 700; color: rgba(255,255,255,.75); }
.gh-media.grad-sea   { background: linear-gradient(135deg, #0a3d62, #1565c0, #00acc1); }
.gh-media.grad-near  { background: linear-gradient(135deg, #004d40, #00897b, #26a69a); }
.gh-media.grad-other { background: linear-gradient(135deg, #263238, #37474f, #546e7a); }
.gh-media.grad-lux   { background: linear-gradient(135deg, #1a237e, #512da8, #7b1fa2); }
.gh-top-tag {
  position: absolute; top: 12px; inset-inline-start: 12px; z-index: 2;
  padding: 4px 12px; border-radius: 50px; font-size: .74rem; font-weight: 800;
}
.gh-top-tag.sea   { background: rgba(255,255,255,.92); color: #1565c0; }
.gh-top-tag.near  { background: rgba(255,255,255,.92); color: #00838f; }
.gh-top-tag.other { background: rgba(255,255,255,.92); color: #475569; }
.gh-top-tag.lux   { background: rgba(255,255,255,.92); color: #5e35b1; }
.gh-body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.gh-title { font-size: 1.02rem; font-weight: 800; color: #0f3460; }
.gh-loc { font-size: .8rem; color: #64748b; display: flex; align-items: center; gap: 6px; }
.gh-specs { display: flex; flex-wrap: wrap; gap: 6px; }
.gh-spec { background: #f1f5f9; color: #475569; padding: 3px 9px; border-radius: 50px; font-size: .76rem; font-weight: 600; }
.gh-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; padding-top: 10px; border-top: 1px solid #f1f5f9; }
.gh-price {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, #e3f2fd, #e0f2f1);
  border: 1.5px solid rgba(21,101,192,.18); color: #0f3460;
  padding: 6px 12px; border-radius: 50px; font-size: .78rem; font-weight: 700; white-space: nowrap;
}
.gh-book {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px; background: #25d366; color: #fff;
  border-radius: 50px; font-size: .82rem; font-weight: 700;
  transition: all .25s; white-space: nowrap;
}
.gh-book:hover { background: #128c7e; transform: translateY(-2px); }

/* ══════════════════════════════════════════
   TOUR & BEACH CARDS (sea-tours / nearby-beaches)
══════════════════════════════════════════ */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
@media (max-width: 900px)  { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .feature-grid { grid-template-columns: 1fr; } }
.feature-card {
  background: #fff; border-radius: 20px; padding: 30px 24px;
  border: 1px solid #e2e8f0; box-shadow: 0 4px 20px rgba(21,101,192,.07);
  text-align: center; transition: all .3s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 18px 50px rgba(21,101,192,.15); }
.feature-card .f-icon { font-size: 2.6rem; margin-bottom: 14px; }
.feature-card h3 { font-size: 1.05rem; font-weight: 800; color: #0f3460; margin-bottom: 8px; }
.feature-card p { font-size: .9rem; color: #64748b; line-height: 1.75; }

/* ═══ بطاقات جولات البحر ═══ */
.tour-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; max-width: 1160px; margin: 0 auto; }
@media (max-width: 900px) { .tour-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tour-grid { grid-template-columns: 1fr; } }
.tour-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  border: 1px solid #e2e8f0; box-shadow: 0 4px 20px rgba(21,101,192,.07);
  display: flex; flex-direction: column; transition: all .3s;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: 0 18px 50px rgba(21,101,192,.15); }
.tour-banner { height: 140px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
.tour-banner span { font-size: 3.2rem; }
.tour-banner small { font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.9); }
.tb-blue { background: linear-gradient(135deg, #0a3d62, #1565c0, #00acc1); }
.tb-teal { background: linear-gradient(135deg, #004d40, #00897b, #26c6da); }
.tb-purple{ background: linear-gradient(135deg, #1a237e, #512da8, #00bcd4); }
.tb-sunset{ background: linear-gradient(135deg, #bf360c, #e64a19, #ffb300); }
.tb-gold  { background: linear-gradient(135deg, #5d4037, #8d6e63, #d7ccc8); }
.tour-body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.tour-body h3 { font-size: 1.05rem; font-weight: 800; color: #0f3460; }
.tour-body p { font-size: .88rem; color: #64748b; line-height: 1.75; flex: 1; }
.tour-dur { font-size: .8rem; font-weight: 700; color: #00897b; }
.tour-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; border-top: 1px solid #f1f5f9; padding-top: 10px; }
.tour-price { font-size: .8rem; color: #475569; }
.tour-price strong { color: #1565c0; font-size: .95rem; }

/* ═══ بطاقات الشواطئ المجاورة ═══ */
.beach-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
@media (max-width: 1024px) { .beach-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .beach-grid { grid-template-columns: 1fr; } }
.nb-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  border: 1px solid #e2e8f0; box-shadow: 0 4px 20px rgba(21,101,192,.07);
  transition: all .3s; display: flex; flex-direction: column;
}
.nb-card:hover { transform: translateY(-6px); box-shadow: 0 18px 50px rgba(21,101,192,.15); }
.nb-media { height: 150px; position: relative; display: flex; align-items: center; justify-content: center; font-size: 3.4rem; }
.nb-media.g1 { background: linear-gradient(135deg, #0a3d62, #1565c0, #26c6da); }
.nb-media.g2 { background: linear-gradient(135deg, #004d40, #00897b, #80cbc4); }
.nb-media.g3 { background: linear-gradient(135deg, #1a237e, #3949ab, #26c6da); }
.nb-media.g4 { background: linear-gradient(135deg, #e65100, #f57c00, #ffcc80); }
.nb-body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.nb-body h3 { font-size: 1.05rem; font-weight: 800; color: #0f3460; }
.nb-body p { font-size: .86rem; color: #64748b; line-height: 1.7; flex: 1; }
.nb-dist { font-size: .8rem; font-weight: 800; color: #00897b; }
.nb-visit {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 9px 14px; background: #1565c0; color: #fff; border-radius: 50px;
  font-size: .8rem; font-weight: 700; transition: all .25s;
}
.nb-visit:hover { background: #0d47a1; }

/* ═══ فيديو مميز (wrapper لموقع يوتيوب) ═══ */
.video-feature {
  max-width: 980px; margin: 0 auto;
  border-radius: 24px; overflow: hidden;
  border: 1px solid #e2e8f0; box-shadow: 0 20px 60px rgba(21,101,192,.15);
  background: #000;
}
.video-feature iframe { display: block; width: 100%; height: 520px; border: none; }
@media (max-width: 768px) { .video-feature iframe { height: 240px; } }
.video-feature-cap { background: #fff; padding: 20px 24px; text-align: center; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; }
.video-feature-cap h3 { font-size: 1.1rem; font-weight: 800; color: #0f3460; }
.video-feature-cap p { font-size: .85rem; color: #64748b; }
.lux-badge { color: #5e35b1; }

/* ═══ اتجاهات عامة عند تبديل اللغة ═══ */
html[dir="ltr"] body { direction: ltr; text-align: left; }
html[dir="ltr"] .lang-switch { margin-inline-start: 6px; }

/* ══════════════════════════════════════════
   HERO TOPO — أجزاء منفصلة لكل صفحة
   ══════════════════════════════════════════ */
.beach-hero .page-hero-bg {
  background: linear-gradient(135deg, #0a3d62 0%, #1565c0 45%, #00acc1 100%);
}
.tours-hero .page-hero-bg {
  background: linear-gradient(135deg, #003049 0%, #00695c 50%, #00acc1 100%);
}
.nearby-hero .page-hero-bg {
  background: linear-gradient(135deg, #0d2240 0%, #1565c0 45%, #26a69a 100%);
}
.houses-hero .page-hero-bg {
  background: linear-gradient(135deg, #0a1628 0%, #0f3460 50%, #0288d1 100%);
}

/* ══════════════════════════════════════════
   HOUSES PAGE — 4 أقسام مخصصة
   ══════════════════════════════════════════ */
.house-section { padding: 72px 24px; }
.house-section:nth-of-type(even) { background: var(--gray-50); }
.hs-header { text-align: center; margin-bottom: 44px; }
.hs-icon { font-size: 2.2rem; margin-bottom: 8px; display: block; }
.hs-header h2 { font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 800; color: var(--blue-900); margin-bottom: 8px; }
.hs-header p { color: var(--gray-600); font-size: .98rem; max-width: 620px; margin: 0 auto; }
.hs-anchor { scroll-margin-top: 90px; }
.hs-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 18px; border-radius: 50px;
  font-size: .82rem; font-weight: 700; margin-bottom: 14px;
}
.hs-tag.sea   { background: linear-gradient(135deg, #e3f2fd, #e1f5fe); color: #0d47a1; border: 1px solid rgba(13,71,161,.18); }
.hs-tag.near  { background: linear-gradient(135deg, #e0f2f1, #e0f7fa); color: #00695c; border: 1px solid rgba(0,105,92,.18); }
.hs-tag.other { background: linear-gradient(135deg, #f1f5f9, #e2e8f0); color: #475569; border: 1px solid rgba(71,85,105,.2); }
.hs-tag.lux   { background: linear-gradient(135deg, #fef3c7, #fde68a); color: #92400e; border: 1px solid rgba(146,64,14,.2); }

/* ══════════════════════════════════════════
   CARD GRID — جديد (منازل/جولات/شواطئ)
   ══════════════════════════════════════════ */
.card-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
  max-width: 1200px; margin: 0 auto;
}
.amt-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm);
  transition: all var(--transition); display: flex; flex-direction: column;
}
.amt-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.amt-thumb {
  position: relative; overflow: hidden;
}
.amt-thumb img {
  width: 100%; height: 200px; object-fit: cover;
  transition: transform .6s ease;
}
.amt-card:hover .amt-thumb img { transform: scale(1.06); }
.amt-img-placeholder {
  height: 200px; display: flex; align-items: center; justify-content: center;
  font-size: 3.2rem;
}
.aip-sea   { background: linear-gradient(135deg, #0a3d62, #1565c0, #00acc1); }
.aip-near  { background: linear-gradient(135deg, #004d40, #00897b, #26c6da); }
.aip-other { background: linear-gradient(135deg, #37474f, #607d8b, #90a4ae); }
.aip-lux   { background: linear-gradient(135deg, #4a148c, #7b1fa2, #fbc02d); }
.aip-beach { background: linear-gradient(135deg, #01579b, #0288d1, #26c6da); }
.aip-mont  { background: linear-gradient(135deg, #1a237e, #283593, #42a5f5); }
.aip-cave  { background: linear-gradient(135deg, #00695c, #00897b, #4db6ac); }
.aip-cove  { background: linear-gradient(135deg, #0d47a1, #1565c0, #4fc3f7); }
.amt-badge {
  position: absolute; top: 12px; right: 12px;
  background: rgba(255,255,255,.92); color: var(--blue-700);
  padding: 4px 12px; border-radius: 50px; font-size: .74rem; font-weight: 800;
}
.amt-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 9px; }
.amt-card-title { font-size: 1.02rem; font-weight: 800; color: var(--blue-900); }
.amt-card-loc { font-size: .8rem; color: var(--gray-400); display: flex; align-items: center; gap: 5px; }
.amt-card-desc { font-size: .86rem; color: var(--gray-600); line-height: 1.7; }
.amt-card-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.amt-card-tags span { background: var(--gray-100); color: var(--gray-600); padding: 3px 9px; border-radius: 50px; font-size: .74rem; font-weight: 600; }
.amt-card-foot {
  margin-top: auto; padding-top: 12px; border-top: 1px solid var(--gray-100);
  display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap;
}
.amt-price { font-size: .84rem; font-weight: 800; color: var(--gold); }
.amt-price small { color: var(--gray-400); font-weight: 600; }
.amt-book {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px; background: #25d366; color: #fff;
  border-radius: 50px; font-size: .8rem; font-weight: 700; transition: all .25s;
}
.amt-book:hover { background: #128c7e; transform: translateY(-2px); }

/* ══════════════════════════════════════════
   VIDEO WRAPPER — إطار يوتيوب بارز
   ══════════════════════════════════════════ */
.featured-video {
  max-width: 960px; margin: 0 auto;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-xl); border: 1px solid var(--gray-200);
  background: #000;
}
.fv-wrap { position: relative; width: 100%; padding-bottom: 56.25%; background: #000; }
.fv-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.fv-caption {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 16px 22px; flex-wrap: wrap;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
}
.fv-caption h3 { color: #fff; font-size: 1rem; font-weight: 800; }
.fv-caption span { color: var(--blue-300); font-size: .82rem; }

/* ══════════════════════════════════════════
   SEA TOURS — بطاقات جولات
   ══════════════════════════════════════════ */
.tour-specs { display: flex; flex-wrap: wrap; gap: 7px; }
.tour-specs span { background: var(--blue-100); color: var(--blue-700); padding: 4px 10px; border-radius: 50px; font-size: .76rem; font-weight: 700; }
.tour-itinerary { font-size: .82rem; color: var(--gray-400); line-height: 1.6; }
.tour-itinerary strong { color: var(--blue-700); }

/* ══════════════════════════════════════════
   NEARBY BEACHES — بطاقات شواطئ
   ══════════════════════════════════════════ */
.beach-highlight {
  display: inline-block; padding: 3px 10px; border-radius: 50px;
  font-size: .72rem; font-weight: 800; margin-bottom: 8px;
}
.bh-jebha { background: #e3f2fd; color: #0d47a1; }
.bh-mont { background: #e8f5e9; color: #1b5e20; }
.bh-cove { background: #fff3e0; color: #e65100; }
.bh-sandy { background: #fef9e7; color: #8d6e00; }

/* ══════════════════════════════════════════
   INFO STRIP GENERAL
   ══════════════════════════════════════════ */
.info-strip-fill {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  border-radius: var(--radius-lg);
  padding: 40px 32px; max-width: 1200px; margin: 60px auto 0;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: center;
}
.isf-left h3 { color: #fff; font-size: 1.25rem; font-weight: 800; margin-bottom: 10px; }
.isf-left p { color: var(--blue-300); font-size: .92rem; line-height: 1.8; }
.isf-right { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.isf-chip {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  color: #fff; padding: 8px 18px; border-radius: 50px; font-size: .84rem; font-weight: 700;
}

/* ══════════════════════════════════════════
   RESPONSIVE — الإضافات الجديدة
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .info-strip-fill { grid-template-columns: 1fr; }
  .isf-right { justify-content: flex-start; }
}
@media (max-width: 768px) {
  .lang-switcher { order: 3; margin-top: 8px; }
}
@media (max-width: 640px) {
  .card-grid { grid-template-columns: 1fr; }
  .amt-thumb img, .amt-img-placeholder { height: 180px; }
}

/* ══════════════════════════════════════════
   LTR — تصحيحات اللغة الفرنسية / الإنجليزية
   ══════════════════════════════════════════ */
body[data-lang="fr"] .video-overlay-text,
body[data-lang="en"] .video-overlay-text { right: auto; left: 20px; text-align: left; }
body[data-lang="fr"] .featured-overlay,
body[data-lang="en"] .featured-overlay { right: auto; left: 24px; text-align: left; }
body[data-lang="fr"] .property-badge,
body[data-lang="en"] .property-badge,
body[data-lang="fr"] .amt-badge,
body[data-lang="en"] .amt-badge { right: auto; left: 12px; }
body[data-lang="fr"] .amt-book,
body[data-lang="en"] .amt-book { direction: ltr; }
body[data-lang="fr"] .whatsapp-btn,
body[data-lang="en"] .whatsapp-btn { flex-direction: row-reverse; }
body[data-lang="fr"] .ht-btn.beach:hover,
body[data-lang="en"] .ht-btn.beach:hover,
body[data-lang="fr"] .ht-btn.house:hover,
body[data-lang="en"] .ht-btn.house:hover,
body[data-lang="fr"] .hv-btn-beach:hover,
body[data-lang="en"] .hv-btn-beach:hover,
body[data-lang="fr"] .hv-btn-house:hover,
body[data-lang="en"] .hv-btn-house:hover { transform: translateX(3px); }
body[data-lang="fr"] .footer-bottom,
body[data-lang="en"] .footer-bottom { direction: ltr; }

/* ══════════════════════════════════════════
   NAVBAR مدمج — قائمة موسعة (8 روابط + لغة)
   ══════════════════════════════════════════ */
@media (max-width: 1240px) {
  .nav-container { padding: 0 16px; gap: 8px; }
  .nav-link { padding: 8px 9px; font-size: .82rem; }
  .nav-logo-ar { font-size: 1.2rem; letter-spacing: 2px; }
  .nav-logo-sub { font-size: .5rem; letter-spacing: 1.2px; }
  .nav-logo-img { width: 40px; height: 40px; }
  .lang-btn { padding: 4px 8px; font-size: .72rem; }
}
@media (max-width: 1080px) {
  .nav-links { gap: 0; }
  .nav-link.nav-cta { padding: 8px 14px; }
}
@media (max-width: 900px) {
  .nav-container { gap: 10px; }
  .lang-switcher { margin-inline-start: auto; }
  .nav-links { margin-top: 8px; }
}
