/* ============================================================ */
/* عالم الجمال - الريادة الطبية                                 */
/* أبوظبي - شارع الشيخة فاطمة بنت مبارك                        */
/* ============================================================ */

/* ============================================================ */
/* 1. GLOBAL RESET & BASE                                       */
/* ============================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #c9a84c;
  --gold-light: #f0d88a;
  --gold-dark: #a8883a;
  --gold-glow: rgba(201, 168, 76, 0.3);
  --bg-dark: #191919;
  --bg-card: #222222;
  --bg-card-hover: #2a2a2a;
  --text-light: #e8e0d4;
  --text-muted: #b0a898;
  --text-dark: #888080;
  --border-gold: rgba(201, 168, 76, 0.15);
  --shadow-gold: 0 0 30px rgba(201, 168, 76, 0.05);
  --radius-main: 28px;
  --radius-sm: 16px;
}

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  scroll-behavior: smooth;
  direction: rtl;
  line-height: 1.6;
}

/* ===== Import Font ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;400;500;600;700;800&display=swap');

/* ===== Scrollbar ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { 
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  border-radius: 20px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

/* ===== Selection ===== */
::selection {
  background: var(--gold);
  color: #0d0d0d;
}

/* ============================================================ */
/* 2. HEADER - عالم الجمال                                     */
/* ============================================================ */
.custom-header {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-gold);
  position: sticky;
  top: 0;
  z-index: 9999;
  transition: all 0.3s ease;
}

.custom-header .header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* ===== LOGO ===== */
.custom-header .logo-wrapper {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.custom-header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.custom-header .logo:hover { transform: scale(1.02); }

.custom-header .logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: brightness(1) drop-shadow(0 2px 4px rgba(0,0,0,0.2));
  transition: filter 0.3s ease;
}

.custom-header .logo:hover .logo-img {
  filter: brightness(1.1) drop-shadow(0 2px 8px var(--gold-glow));
}

.custom-header .logo-text {
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  transition: text-shadow 0.3s ease;
  letter-spacing: -0.3px;
}

.custom-header .logo:hover .logo-text {
  text-shadow: 0 0 30px var(--gold-glow);
}

/* ===== NAVIGATION (Desktop) ===== */
.custom-header .nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.custom-header .nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 40px;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
}

.custom-header .nav-link:hover {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
}

.custom-header .nav-link.active {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.custom-header .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}

/* ===== HEADER RIGHT ===== */
.custom-header .header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* ===== LANGUAGE SWITCH ===== */
.custom-header .lang-switch {
  display: flex;
  gap: 4px;
  align-items: center;
}

.custom-header .lang-btn {
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.06);
  color: var(--text-muted);
  padding: 5px 12px;
  border-radius: 40px;
  font-size: 11px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

.custom-header .lang-btn i {
  font-size: 11px;
  color: var(--gold);
}

.custom-header .lang-btn:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.15);
  color: var(--text-light);
}

.custom-header .lang-btn.active {
  background: rgba(201, 168, 76, 0.12);
  border-color: var(--gold);
  color: var(--gold);
}

/* ===== MOBILE TOGGLE ===== */
.custom-header .menu-toggle {
  display: none;
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.06);
  color: var(--text-light);
  padding: 8px 14px;
  border-radius: 40px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
}

.custom-header .menu-toggle:hover {
  background: rgba(201, 168, 76, 0.08);
}

/* ===== MOBILE MENU ===== */
.custom-header .mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9998;
  padding: 20px 24px 30px;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  border-bottom: 1px solid var(--border-gold);
}

.custom-header .mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}

.custom-header .mobile-menu-inner {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.custom-header .mobile-nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(201, 168, 76, 0.04);
}

.custom-header .mobile-nav-link i {
  color: var(--gold);
  font-size: 18px;
  width: 24px;
  text-align: center;
}

.custom-header .mobile-nav-link:hover {
  background: rgba(201, 168, 76, 0.06);
  color: var(--gold);
  border-color: rgba(201, 168, 76, 0.08);
}

.custom-header .mobile-nav-link.active {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.12);
}

.custom-header .mobile-lang-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  margin-top: 6px;
  border-top: 1px solid rgba(201, 168, 76, 0.06);
  flex-wrap: wrap;
}

.custom-header .mobile-lang-label {
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 500;
}

.custom-header .mobile-lang-label i {
  color: var(--gold);
  margin-left: 6px;
}

.custom-header .mobile-lang-btn {
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.06);
  color: var(--text-muted);
  padding: 4px 12px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.custom-header .mobile-lang-btn:hover {
  background: rgba(201, 168, 76, 0.08);
  color: var(--text-light);
}

.custom-header .mobile-lang-btn.active {
  background: rgba(201, 168, 76, 0.12);
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================================ */
/* 3. HEADER RESPONSIVE                                         */
/* ============================================================ */

@media (max-width: 1024px) {
  .custom-header .nav-menu { display: none !important; }
  .custom-header .lang-switch { display: none !important; }
  .custom-header .menu-toggle { display: block !important; }
  .custom-header .header-container { padding: 10px 16px; }
}

@media (max-width: 768px) {
  .custom-header .header-container {
    padding: 8px 14px;
    gap: 10px;
    justify-content: center;
  }
  .custom-header .logo-wrapper { flex: 1; display: flex; justify-content: center; }
  .custom-header .logo-img { height: 38px; }
  .custom-header .logo-text { font-size: 20px; }
  .custom-header .logo { gap: 10px; }
  .custom-header .lang-switch { display: none !important; }
  .custom-header .menu-toggle {
    padding: 6px 12px;
    font-size: 16px;
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
  }
  .custom-header .mobile-menu { padding: 16px 16px 24px; }
  .custom-header .mobile-nav-link { font-size: 15px; padding: 10px 14px; }
  .custom-header .mobile-nav-link i { font-size: 16px; width: 22px; }
}

@media (max-width: 480px) {
  .custom-header .header-container { padding: 6px 10px; gap: 6px; }
  .custom-header .logo-img { height: 32px; }
  .custom-header .logo-text { font-size: 17px; }
  .custom-header .logo { gap: 8px; }
  .custom-header .menu-toggle { padding: 4px 10px; font-size: 14px; left: 10px; }
  .custom-header .mobile-menu { padding: 12px 12px 20px; }
  .custom-header .mobile-nav-link { font-size: 14px; padding: 8px 12px; gap: 10px; }
  .custom-header .mobile-nav-link i { font-size: 14px; width: 20px; }
  .custom-header .mobile-lang-switch { padding: 10px 12px; gap: 6px; }
  .custom-header .mobile-lang-btn { font-size: 11px; padding: 3px 10px; }
}

@media (max-width: 380px) {
  .custom-header .logo-img { height: 26px; }
  .custom-header .logo-text { font-size: 14px; }
  .custom-header .menu-toggle { padding: 3px 8px; font-size: 12px; left: 8px; }
}

/* ============================================================ */
/* 4. FOOTER - عالم الجمال                                     */
/* ============================================================ */
.footer {
  background: #111;
  color: var(--text-dark);
  padding: 45px 20px 30px;
  margin-top: 45px;
  border-top: 1px solid var(--border-gold);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.2fr;
  gap: 40px;
  text-align: right;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

/* ===== العمود 1: اللوجو ===== */
.footer-col-logo { max-width: 350px; }

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 12px;
  transition: transform 0.2s ease;
  justify-content: flex-end;
}

.footer-logo-link:hover { transform: scale(1.02); }

.footer-logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
  filter: brightness(1) drop-shadow(0 2px 4px rgba(0,0,0,0.2));
  transition: filter 0.3s ease;
}

.footer-logo-link:hover .footer-logo-img {
  filter: brightness(1.1) drop-shadow(0 2px 8px var(--gold-glow));
}

.footer-logo-text {
  font-size: 26px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  transition: text-shadow 0.3s ease;
}

.footer-logo-link:hover .footer-logo-text {
  text-shadow: 0 0 30px var(--gold-glow);
}

.footer-col .footer-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 6px;
  text-align: right;
}

.footer-col .footer-license {
  font-size: 12px;
  color: var(--text-dark);
  text-align: right;
}

/* ===== الأعمدة الأخرى ===== */
.footer-col h4 {
  color: var(--text-light);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 10px;
  text-align: right;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 35px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  border-radius: 2px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 5px;
  text-align: right;
}

.footer-col p a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col p a:hover { color: var(--gold); }

.footer-col p i {
  color: var(--gold);
  width: 24px;
  font-size: 14px;
  margin-left: 8px;
}

/* ===== وسائل التواصل ===== */
.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
  justify-content: flex-end;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.06);
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 20px;
}

.footer-social-link:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.15);
  color: var(--gold);
  transform: translateY(-3px);
}

/* ===== التذييل السفلي ===== */
.footer-bottom { text-align: center; }

.footer-bottom p {
  font-size: 13px;
  color: var(--text-dark);
  margin: 4px 0;
}

.footer-bottom p span {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.footer-bottom .footer-dev {
  font-size: 12px;
  color: #666;
  margin-top: 6px;
}

.footer-bottom .footer-dev i { color: var(--gold); }

/* ============================================================ */
/* 5. FOOTER RESPONSIVE                                         */
/* ============================================================ */

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-col-logo {
    max-width: 100%;
    grid-column: 1 / -1;
    text-align: center;
  }
  .footer-logo-link { justify-content: center; }
  .footer-col .footer-desc,
  .footer-col .footer-license,
  .footer-col h4,
  .footer-col p { text-align: center; }
  .footer-col h4::after {
    right: 50%;
    transform: translateX(50%);
  }
  .footer-social { justify-content: center; }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .footer-col-logo { text-align: center; }
  .footer-logo-link { justify-content: center; }
  .footer-col .footer-desc {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .footer-col .footer-license { text-align: center; }
  .footer-col h4::after {
    right: 50%;
    transform: translateX(50%);
  }
  .footer-col p i { margin-left: 4px; }
  .footer-social { justify-content: center; }
}

@media (max-width: 480px) {
  .footer { padding: 30px 16px 20px; }
  .footer-logo-img { height: 35px; }
  .footer-logo-text { font-size: 22px; }
  .footer-bottom p { font-size: 12px; }
  .footer-social-link { width: 38px; height: 38px; font-size: 16px; }
}

/* ============================================================ */
/* 6. CONTAINER                                                */
/* ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 30px 20px;
}

/* ============================================================ */
/* 7. SECTION TITLES                                            */
/* ============================================================ */
.section-title {
  text-align: center;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.section-title span {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-size: 15px;
}

/* ============================================================ */
/* 8. HERO SECTION                                              */
/* ============================================================ */
.hero-section {
  background: linear-gradient(145deg, #2a2a2a, #222222);
  border-radius: var(--radius-main);
  padding: 60px 50px;
  margin-bottom: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  border: 1px solid var(--border-gold);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.05), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.3); opacity: 1; }
}

.hero-text {
  flex: 1.2;
  min-width: 280px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: #0d0d0d;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero-text h1 {
  font-size: clamp(34px, 7vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 18px;
}

.hero-text h1 span {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: clamp(16px, 4vw, 19px);
  color: var(--text-muted);
  max-width: 550px;
  line-height: 1.6;
}

.hero-image {
  flex: 1;
  text-align: center;
  min-width: 280px;
  position: relative;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(201, 168, 76, 0.05);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  border: 1px solid var(--border-gold);
}

.hero-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 60px rgba(201, 168, 76, 0.1);
}

/* ============================================================ */
/* 9. HERO RESPONSIVE                                           */
/* ============================================================ */

@media (max-width: 768px) {
  .hero-section {
    padding: 30px 20px;
    flex-direction: column;
    text-align: center;
  }
  .hero-text p { margin: 0 auto; }
  .hero-image img { max-width: 280px; }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 24px 16px;
    border-radius: 24px;
  }
  .hero-image img { max-width: 220px; }
  .hero-badge { font-size: 10px; }
}

/* ============================================================ */
/* 10. SERVICES GRID                                            */
/* ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin: 40px 0 35px;
}

.service-card {
  background: linear-gradient(145deg, #2a2a2a, #222222);
  border-radius: var(--radius-main);
  padding: 0 0 28px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(201, 168, 76, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), var(--shadow-gold);
}

.service-card.highlight {
  border-color: rgba(201, 168, 76, 0.25);
  background: linear-gradient(145deg, #2a2518, #222016);
}

.service-card.highlight::before {
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
}

.service-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.service-card:hover .service-img { transform: scale(1.03); }

.service-content {
  padding: 22px 24px 0 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.service-card:hover h3 { color: var(--gold-light); }

.service-card p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  font-size: 14px;
  flex: 1;
}

.price-tag {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  display: inline-block;
  margin-top: auto;
  align-self: flex-start;
  border: 1px solid rgba(201, 168, 76, 0.15);
  transition: all 0.3s;
}

.service-card:hover .price-tag {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0d0d0d;
  border-color: var(--gold);
}

/* ============================================================ */
/* 11. SERVICES RESPONSIVE                                      */
/* ============================================================ */

@media (max-width: 992px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .service-img { height: 160px; }
  .service-card h3 { font-size: 18px; }
  .service-card p { font-size: 13px; }
  .price-tag { font-size: 11px; }
}

@media (max-width: 480px) {
  .service-img { height: 140px; }
}

/* ============================================================ */
/* 12. FEATURED SERVICE                                         */
/* ============================================================ */
.featured-service {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  background: linear-gradient(145deg, #2a2518, #222016);
  border-radius: var(--radius-main);
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 280px;
  position: relative;
}

.featured-service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(201, 168, 76, 0.04), transparent 70%);
  pointer-events: none;
}

.featured-service:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), var(--shadow-gold);
}

.featured-service .featured-image {
  flex: 1 1 40%;
  min-height: 250px;
  overflow: hidden;
}

.featured-service .featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.featured-service:hover .featured-image img { transform: scale(1.03); }

.featured-service .featured-content {
  flex: 1 1 50%;
  padding: 35px 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.featured-service .featured-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.featured-service .featured-content h3 span { color: var(--gold); }

.featured-service .featured-content p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 18px;
  max-width: 600px;
}

.featured-service .featured-content .price-tag { align-self: flex-start; }

/* ============================================================ */
/* 13. FEATURED RESPONSIVE                                      */
/* ============================================================ */

@media (max-width: 768px) {
  .featured-service { flex-direction: column; }
  .featured-service .featured-image { min-height: 200px; }
  .featured-service .featured-content { padding: 25px 20px; }
  .featured-service .featured-content h3 { font-size: 20px; }
  .featured-service .featured-content p { font-size: 13px; }
}

/* ============================================================ */
/* 14. GALLERY SECTION                                          */
/* ============================================================ */
.gallery-section { margin: 60px 0 40px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery-item {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.08);
  transition: all 0.4s ease;
  background: #2a2a2a;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.2);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.gallery-item img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-caption {
  padding: 12px 16px;
  text-align: center;
  font-weight: 500;
  font-size: 13px;
  color: var(--text-muted);
  background: #2a2a2a;
  border-top: 1px solid rgba(201, 168, 76, 0.05);
}

/* ============================================================ */
/* 15. GALLERY RESPONSIVE                                       */
/* ============================================================ */

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item img { height: 180px; }
}

@media (max-width: 480px) {
  .gallery-item img { height: 160px; }
}

/* ============================================================ */
/* 16. CONTACT CARD - أيقونات احترافية                         */
/* ============================================================ */
.contact-card {
  background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
  border-radius: 40px;
  padding: 50px 35px;
  text-align: center;
  color: var(--text-light);
  margin: 45px 0 20px;
  border: 1px solid var(--border-gold);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.05), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.03), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: pulseGlow 8s ease-in-out infinite;
}

.contact-card h3 {
  font-size: clamp(26px, 5vw, 36px);
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.contact-card h3 span {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerGold 3s ease-in-out infinite;
}

@keyframes shimmerGold {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.contact-card p {
  font-size: 15px;
  margin-bottom: 28px;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

/* ===== أيقونات الاتصال ===== */
.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ===== تصميم الأيقونات الذهبي الاحترافي ===== */
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  text-decoration: none;
  position: relative;
  background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
  border: 2px solid rgba(201, 168, 76, 0.2);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 30px rgba(201, 168, 76, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

/* ===== حلقة ذهبية متحركة حول الأيقونة ===== */
.contact-icon::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  padding: 3px;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(201, 168, 76, 0.2),
    var(--gold),
    var(--gold-light),
    var(--gold),
    rgba(201, 168, 76, 0.2),
    transparent
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: rotateGold 4s linear infinite;
  opacity: 0.6;
}

@keyframes rotateGold {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ===== بريق متحرك ===== */
.contact-icon::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.1),
    transparent 60%
  );
  pointer-events: none;
  transition: all 0.6s ease;
  opacity: 0;
}

.contact-icon:hover::after {
  opacity: 1;
  top: -30%;
  left: -30%;
}

/* ===== الأيقونة الداخلية ===== */
.contact-icon i {
  position: relative;
  z-index: 5;
  font-size: 32px;
  color: var(--gold);
  text-shadow: 
    0 0 20px rgba(201, 168, 76, 0.3),
    0 0 40px rgba(201, 168, 76, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== HOVER: تأثير مميز ===== */
.contact-icon:hover {
  transform: translateY(-8px) scale(1.08);
  border-color: var(--gold);
  box-shadow: 
    0 12px 48px rgba(201, 168, 76, 0.3),
    0 0 60px rgba(201, 168, 76, 0.15),
    0 0 100px rgba(201, 168, 76, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, #2a2518, #1f1a10);
}

.contact-icon:hover i {
  color: var(--gold-light);
  text-shadow: 
    0 0 30px rgba(201, 168, 76, 0.6),
    0 0 60px rgba(201, 168, 76, 0.3),
    0 0 90px rgba(201, 168, 76, 0.15);
  transform: scale(1.1);
}

/* ===== حلقة توهج إضافية ===== */
.contact-icon .glow-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.15);
  opacity: 0;
  transition: all 0.6s ease;
  pointer-events: none;
}

.contact-icon:hover .glow-ring {
  opacity: 1;
  transform: scale(1.15);
  animation: pulseRing 1.5s ease-in-out infinite;
}

@keyframes pulseRing {
  0%, 100% { transform: scale(1.1); opacity: 0.3; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

/* ============================================================ */
/* 17. CONTACT RESPONSIVE                                       */
/* ============================================================ */

@media (max-width: 768px) {
  .contact-card { padding: 30px 20px; }
  .contact-buttons { gap: 14px; }
  .contact-icon { width: 64px; height: 64px; }
  .contact-icon i { font-size: 26px; }
}

@media (max-width: 480px) {
  .contact-card { padding: 24px 16px; }
  .contact-buttons { gap: 10px; }
  .contact-icon { width: 54px; height: 54px; }
  .contact-icon i { font-size: 22px; }
}

@media (max-width: 380px) {
  .contact-icon { width: 48px; height: 48px; }
  .contact-icon i { font-size: 18px; }
}

/* ============================================================ */
/* 18. INTERIOR GALLERY (صور العيادة)                          */
/* ============================================================ */
.interior-gallery {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.interior-item {
  flex: 1 1 calc(50% - 30px);
  max-width: 600px;
  min-width: 280px;
  background: #222;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.interior-item:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(201, 168, 76, 0.2);
}

.interior-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
  background: #1a1a1a;
}

.interior-item:hover img { transform: scale(1.03); }

.interior-caption {
  padding: 18px 20px;
  background: #1a1a1a;
  color: #eee;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  letter-spacing: 0.5px;
}

/* ============================================================ */
/* 19. INTERIOR RESPONSIVE                                      */
/* ============================================================ */

@media (max-width: 992px) {
  .interior-item { flex: 1 1 calc(50% - 20px); max-width: 50%; }
  .interior-item img { height: 280px; }
}

@media (max-width: 768px) {
  .interior-gallery { gap: 20px; padding: 0 10px; }
  .interior-item { flex: 1 1 100%; max-width: 100%; border-radius: var(--radius-sm); }
  .interior-item img { height: 240px; }
  .interior-caption { font-size: 0.95rem; padding: 14px 16px; }
}

@media (max-width: 480px) {
  .interior-gallery { gap: 15px; padding: 0 5px; }
  .interior-item { border-radius: 14px; }
  .interior-item img { height: 180px; }
  .interior-caption { font-size: 0.85rem; padding: 12px 14px; }
}

@media (max-width: 380px) {
  .interior-item img { height: 150px; }
  .interior-caption { font-size: 0.8rem; padding: 10px 12px; }
}

/* ============================================================ */
/* 20. UTILITY & SUPPORT                                        */
/* ============================================================ */

/* دعم الصور المتكسرة */
.interior-item img[src=""],
.interior-item img:not([src]) {
  background: #2a2a2a;
  min-height: 320px;
}

@media (max-width: 768px) {
  .interior-item img[src=""],
  .interior-item img:not([src]) { min-height: 240px; }
}

@media (max-width: 480px) {
  .interior-item img[src=""],
  .interior-item img:not([src]) { min-height: 180px; }
}

/* ===== دعم الوضع الفاتح ===== */
@media (prefers-color-scheme: light) {
  .interior-item {
    background: #f5f5f5;
    border-color: rgba(201, 168, 76, 0.3);
  }
  .interior-caption {
    background: #ffffff;
    color: #222;
    border-top-color: rgba(201, 168, 76, 0.2);
  }
  .interior-item img { background: #e0e0e0; }
}

/* ===== تحسين الأداء ===== */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== تنسيق النصوص العربية ===== */
html[dir="rtl"] .footer-col h4::after {
  right: 0;
  left: auto;
}

html[dir="rtl"] .footer-col p i {
  margin-left: 8px;
  margin-right: 0;
}

html[dir="rtl"] .custom-header .mobile-lang-label i {
  margin-left: 6px;
  margin-right: 0;
}