/**
 * 🎯 Specialized CSS - التنسيقات المتخصصة
 * التاج بلس للديكور
 * 
 * هذا الملف يحتوي على التنسيقات المتخصصة:
 * - Service Hero
 * - Service Hero Enhanced
 * - Service Booking
 * - Service Related
 * - Testimonials
 * - Upload Page
 * - Admin Panel
 * - Login Page
 * - Local SEO
 * - Social Media Feeds
 * - Newsletter Enhanced
 */

/* ========================================
   Service Hero - بطل صفحة الخدمة
   ======================================== */
.service-hero {
  position: relative;
  padding: 140px 0 110px;
  background: radial-gradient(
    120% 120% at 0% 0%,
    rgba(255, 225, 245, 0.88),
    rgba(238, 215, 245, 0.52) 55%,
    rgba(248, 238, 255, 0)
  );
  overflow: hidden;
}

.service-hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -120px;
  height: 220px;
  border-radius: 50% 50% 0 0;
  background: var(--surface);
  z-index: 2;
}

.service-hero .container {
  position: relative;
  z-index: 2;
}

.service-hero__content {
  width: min(980px, 92%);
  margin: 0 auto;
  display: grid;
  gap: 26px;
  justify-items: center;
  text-align: center;
}

.service-hero__content .tag {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 22px;
  border-radius: var(--radius-full);
  background: rgba(115, 45, 96, 0.14);
  color: var(--primary);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.6px;
}

.service-hero__content h1 {
  font-size: clamp(36px, 5.5vw, 52px);
  font-weight: var(--font-weight-black);
  line-height: 1.35;
  color: var(--primary-dark);
  max-width: 720px;
}

.service-hero__content p {
  font-size: 17px;
  color: var(--muted);
  max-width: 680px;
  line-height: 1.85;
}

.service-hero__card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--surface);
}

.service-hero__media img,
.service-hero__media video {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* CTA Group */
.cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.cta-group--centered {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out 0.8s both;
}

/* ========================================
   Service Hero Enhanced - بطل محسّن
   ======================================== */
.service-hero--enhanced {
  background: linear-gradient(
      140deg,
      rgba(53, 19, 45, 0.85) 0%,
      rgba(123, 51, 102, 0.75) 55%,
      rgba(123, 51, 102, 0.45) 100%
    ),
    url('../uploads/madia/hero/hero-3.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 8rem 0 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.service-hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.service-hero__overlay {
  display: none;
}

.service-hero--enhanced .container {
  position: relative;
  z-index: 2;
}

.service-hero--enhanced .service-hero__content {
  max-width: 900px;
  margin: 0 auto;
}

.service-hero__content .tag--light {
  background: rgba(255, 255, 255, 0.25);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: var(--font-weight-semibold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.service-hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: var(--font-weight-black);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: white;
}

.service-hero__description {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.95);
}

/* Service Hero Stats */
.service-hero__content .hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.service-hero__content .hero-stats .stat {
  text-align: center;
  color: white;
}

.service-hero__content .hero-stats .stat span {
  display: block;
  font-size: 28px;
  font-weight: var(--font-weight-black);
  margin-bottom: 6px;
}

/* Scroll Indicator */
.scroll-indicator {
  animation: fadeInUp 1s ease-out 1s both;
}

.scroll-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(5px);
}

/* Service Details */
.service-details {
  padding: 90px 0;
  background: var(--surface);
}

.service-details article {
  background: var(--surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: clamp(28px, 5vw, 46px);
  display: grid;
  gap: 20px;
  width: min(820px, 92%);
  margin: 0 auto;
  line-height: 1.9;
  color: var(--muted-dark, #5d4154);
}

.service-details article h2 {
  font-size: clamp(26px, 4vw, 32px);
  font-weight: var(--font-weight-black);
  color: var(--primary-dark);
}

.service-benefits,
.service-points {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
}

.service-benefits li,
.service-points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: var(--font-weight-semibold);
  color: var(--primary-dark);
}

.service-benefits i,
.service-points i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(115, 45, 96, 0.12);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ========================================
   Service Related - المشاريع المرتبطة
   ======================================== */
.service-related {
  padding: 90px 0;
  background: var(--soft-3, #fbf6ff);
}

.related-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.related-project-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  transition: all var(--transition-base);
  cursor: pointer;
}

.related-project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.related-project-card__media {
  position: relative;
  overflow: hidden;
}

.related-project-card__media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.related-project-card:hover .related-project-card__media img {
  transform: scale(1.05);
}

.related-project-card__body {
  display: grid;
  gap: 14px;
  padding: 22px 24px 26px;
}

.related-project-card__body h3 {
  font-size: 20px;
  font-weight: var(--font-weight-black);
  color: var(--primary-dark);
  line-height: 1.3;
  transition: color var(--transition-base);
}

.related-project-card:hover .related-project-card__body h3 {
  color: var(--primary);
}

.related-project-card__body p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.related-project-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: var(--font-weight-medium);
}

.related-project-card__meta i {
  color: var(--primary);
  font-size: 13px;
}

.related-project-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.related-project-card__actions .btn {
  flex: 1 1 140px;
  font-size: 14px;
  padding: 10px 18px;
}

/* ========================================
   Service Booking - حجز الخدمة
   ======================================== */
.service-booking {
  padding: 100px 0;
  background: radial-gradient(
    120% 120% at 100% 0%,
    rgba(115, 45, 96, 0.08),
    rgba(255, 255, 255, 0)
  );
}

.booking-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(255, 240, 250, 0.9)
  );
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: clamp(28px, 5vw, 42px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  transition: all var(--transition-base);
}

.booking-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-2px);
}

.booking-content {
  display: grid;
  gap: 14px;
  flex: 1 1 320px;
}

.booking-content .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  background: rgba(115, 45, 96, 0.12);
  color: var(--primary);
  font-weight: var(--font-weight-bold);
  width: fit-content;
}

.booking-content h2 {
  font-size: clamp(28px, 4.6vw, 36px);
  font-weight: var(--font-weight-black);
  color: var(--primary-dark);
  line-height: 1.3;
}

.booking-content p {
  color: var(--muted);
  line-height: 1.8;
  max-width: 540px;
  font-size: 15px;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  flex: 1 1 260px;
}

.booking-actions .btn {
  min-width: 190px;
  gap: 8px;
}

.booking-actions .btn i {
  font-size: 16px;
}

/* ========================================
   Upload Page - صفحة الرفع
   ======================================== */
.upload-page {
  background: linear-gradient(160deg, #fdf6ff 0%, #f3e5f7 40%, #ffffff 100%);
  color: var(--primary-dark);
  min-height: 100vh;
}

.upload-header {
  padding: 28px 0 18px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(115, 45, 96, 0.12);
  box-shadow: 0 18px 38px rgba(54, 29, 53, 0.05);
  position: sticky;
  top: 0;
  z-index: 60;
}

.upload-header__layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.upload-brand {
  display: grid;
  gap: 12px;
}

.upload-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(115, 45, 96, 0.12);
  border-radius: var(--radius-full);
  padding: 6px 18px;
  color: var(--primary);
  font-weight: var(--font-weight-bold);
  font-size: 13px;
}

.upload-brand h1 {
  font-size: clamp(28px, 4.6vw, 40px);
  font-weight: var(--font-weight-black);
}

.upload-brand p {
  color: var(--muted);
  max-width: 540px;
  line-height: 1.8;
}

.upload-header__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.upload-main {
  padding: 42px 0 90px;
}

.upload-section {
  background: rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-xl);
  box-shadow: 0 34px 70px -40px rgba(74, 22, 61, 0.35);
  padding: clamp(28px, 5vw, 48px);
}

.upload-layout {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  align-items: flex-start;
}

.upload-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  display: grid;
  gap: 26px;
}

.upload-card h2 {
  font-size: 24px;
  font-weight: var(--font-weight-black);
}

.upload-note {
  background: rgba(115, 45, 96, 0.08);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 14px;
  color: var(--primary-dark);
  line-height: 1.7;
}

.upload-review {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.upload-review__box {
  background: rgba(115, 45, 96, 0.08);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  display: grid;
  gap: 10px;
}

.upload-review__box h3 {
  font-size: 16px;
  font-weight: var(--font-weight-black);
  color: var(--primary-dark);
}

.upload-review__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.upload-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.upload-sidebar {
  display: grid;
  gap: 22px;
}

.tips-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 14px;
}

.tips-card h3 {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 18px;
  font-weight: var(--font-weight-black);
  color: var(--primary-dark);
}

.tips-list {
  list-style: none;
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.tips-list--compact {
  gap: 8px;
  font-family: 'Cairo', sans-serif;
}

.tips-list code {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(115, 45, 96, 0.08);
  color: var(--primary);
  font-weight: var(--font-weight-bold);
}

/* ========================================
   Admin Panel - لوحة الإدارة
   ======================================== */
.admin-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  padding: 24px 0;
  box-shadow: var(--shadow-md);
}

.admin-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.tab-btn {
  padding: 10px 20px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: var(--font-weight-medium);
  transition: all var(--transition-base);
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.tab-btn.active {
  background: var(--surface);
  color: var(--primary);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* ========================================
   Login Page - صفحة تسجيل الدخول
   ======================================== */
.login-body {
  background: linear-gradient(135deg, #fdf6ff, #f3e5f7);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-container {
  background: var(--surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 40px;
  max-width: 420px;
  width: 90%;
}

.login-header {
  text-align: center;
  margin-bottom: 30px;
}

.login-header h1 {
  font-size: 28px;
  font-weight: var(--font-weight-black);
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.login-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: var(--muted);
}

.btn-login {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-weight: var(--font-weight-bold);
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.demo-credentials {
  background: rgba(115, 45, 96, 0.08);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-top: 20px;
  font-size: 13px;
  color: var(--primary-dark);
}

/* ========================================
   Booking Section - قسم الحجز
   ======================================== */
.booking-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 240, 250, 0.9));
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: clamp(32px, 6vw, 54px);
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
}

.booking-content {
  display: grid;
  gap: 14px;
  flex: 1 1 320px;
}

.booking-content .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(115, 45, 96, 0.12);
  border-radius: var(--radius-full);
  padding: 6px 20px;
  color: var(--primary);
  font-weight: var(--font-weight-bold);
  font-size: 14px;
  width: fit-content;
}

.booking-content h2 {
  font-size: clamp(28px, 4.6vw, 36px);
  font-weight: var(--font-weight-black);
  color: var(--primary-dark);
}

.booking-content p {
  color: var(--muted);
  line-height: 1.8;
  max-width: 540px;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  flex: 1 1 260px;
}

.booking-actions .btn {
  min-width: 190px;
}

/* ========================================
   Testimonials - آراء العملاء
   ======================================== */
.testimonials {
  background: #2f2134;
  color: #fff;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: -60px;
  height: 110px;
  background: var(--soft);
  border-radius: 0 0 50% 50%;
  z-index: 1;
}

.testimonials .section-head {
  color: #fff;
  position: relative;
  z-index: 2;
}

.testimonials .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.testimonial-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.testimonial-card {
  background: #3d2a42;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.25);
  display: grid;
  gap: 14px;
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.35);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 20px;
  font-weight: var(--font-weight-black);
  flex-shrink: 0;
}

.testimonial-meta {
  flex: 1;
}

.testimonial-meta h4 {
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  color: #fff;
  margin-bottom: 4px;
}

.testimonial-meta span {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.testimonial-badge {
  font-size: 12px;
  font-weight: var(--font-weight-bold);
  color: var(--accent);
  margin-top: 4px;
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-size: 15px;
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  color: var(--accent);
  font-size: 14px;
}

/* ========================================
   Why Section - لماذا نحن
   ======================================== */
.why {
  background: var(--soft-3);
  padding: 90px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.why-gallery {
  display: grid;
  gap: 18px;
}

.why-gallery img {
  width: 100%;
  display: block;
  transition: transform var(--transition-base);
}

.why-gallery img:hover {
  transform: scale(1.02);
}

.why-gallery img:first-child {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.why-gallery img:last-child {
  width: 72%;
  margin-inline-start: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.why-content {
  display: grid;
  gap: 18px;
}

.why-content h2 {
  position: relative;
  font-size: clamp(28px, 4.2vw, 36px);
  font-weight: var(--font-weight-black);
  line-height: 1.4;
  letter-spacing: 0.3px;
  color: var(--primary-dark);
  padding-bottom: 16px;
}

.why-content h2::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  width: 96px;
  height: 5px;
  border-radius: var(--radius-full);
  background: linear-gradient(
    90deg,
    rgba(115, 45, 96, 0.95) 0%,
    rgba(245, 178, 83, 0.88) 65%,
    rgba(245, 178, 83, 0) 100%
  );
}

.why-content p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}

.why-list {
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-weight: var(--font-weight-semibold);
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.why-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ========================================
   Newsletter Enhanced - النشرة البريدية المحسّنة
   ======================================== */
.newsletter {
  background: var(--soft-2);
  padding: 90px 0;
}

.newsletter-card {
  background: linear-gradient(135deg, #7b3265, #47133b);
  border-radius: var(--radius-xl);
  padding: 52px 42px;
  color: #fff;
  display: grid;
  gap: 26px;
  justify-items: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.newsletter-card h2 {
  position: relative;
  font-size: clamp(26px, 4vw, 34px);
  font-weight: var(--font-weight-black);
  line-height: 1.4;
  letter-spacing: 0.3px;
  padding-bottom: 18px;
}

.newsletter-card h2::after {
  content: "";
  position: absolute;
  inset-inline: 50% auto;
  bottom: 0;
  transform: translateX(-50%);
  width: 88px;
  height: 4px;
  border-radius: var(--radius-full);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(245, 178, 83, 0.9) 60%,
    rgba(255, 255, 255, 0) 100%
  );
}

.newsletter-card p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/* Enhanced Contact Section */
.newsletter-card-new {
  background: linear-gradient(135deg, #7b3265, #47133b);
  border-radius: var(--radius-xl);
  padding: 55px 50px;
  color: #fff;
  box-shadow: 0 20px 60px rgba(71, 19, 59, 0.4);
  position: relative;
  overflow: hidden;
}

.newsletter-card-new::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(245, 178, 83, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.newsletter-card-new::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

/* Header Section */
.contact-section-header {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  justify-items: center;
}

.contact-section-header h2 {
  font-size: clamp(22px, 3.5vw, 28px);
  font-weight: var(--font-weight-black);
  line-height: 1.3;
  letter-spacing: 0.3px;
  margin-bottom: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.contact-section-header .brand-logo {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  padding: 16px;
}

.contact-section-header .brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-section-header p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 400px;
}

/* Two Column Layout */
.contact-two-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

/* Contact Info Side */
.contact-info-side {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  order: -1;
}

.contact-info-side h3 {
  display: none;
}

.contact-desc {
  display: none;
}

.contact-methods {
  display: contents;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.method-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.contact-method:hover .method-icon {
  transform: scale(1.05);
}

.contact-method.whatsapp .method-icon {
  background: linear-gradient(135deg, #25d366, #20bd5a);
  color: #fff;
}

.contact-method.phone .method-icon {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.25),
    rgba(255, 255, 255, 0.15)
  );
  color: #fff;
}

.contact-method.email .method-icon {
  background: linear-gradient(135deg, var(--accent), #d4a64a);
  color: #fff;
}

.method-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  text-align: right;
}

.method-info h4 {
  font-size: 15px;
  font-weight: var(--font-weight-bold);
  color: #fff;
  margin: 0;
  order: 2;
}

.method-info span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: var(--font-weight-medium);
  order: 1;
  direction: ltr;
  text-align: left;
}

/* Contact Form Side */
.contact-form-side {
  padding: 0;
  order: 1;
}

.contact-form-elegant {
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  padding: 36px 32px;
  border-radius: 16px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

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

.form-field.full-width {
  grid-column: 1 / -1;
}

.contact-form-elegant input,
.contact-form-elegant select,
.contact-form-elegant textarea {
  border: 2px solid rgba(115, 45, 96, 0.15);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 15px;
  font-family: inherit;
  background: var(--surface);
  color: var(--primary-dark);
  transition: all 0.3s ease;
  outline: none;
}

.contact-form-elegant input::placeholder,
.contact-form-elegant textarea::placeholder {
  color: rgba(115, 45, 96, 0.4);
}

.contact-form-elegant input:focus,
.contact-form-elegant select:focus,
.contact-form-elegant textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(115, 45, 96, 0.1);
  transform: translateY(-1px);
}

.contact-form-elegant select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23732d60' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 16px center;
  padding-left: 42px;
  cursor: pointer;
}

.contact-form-elegant textarea {
  resize: vertical;
  min-height: 85px;
  font-family: inherit;
  line-height: 1.6;
}

.btn-send-whatsapp {
  width: 100%;
  background: linear-gradient(135deg, #25d366, #20bd5a);
  color: #fff;
  border: none;
  padding: 16px 28px;
  font-size: 17px;
  font-weight: var(--font-weight-bold);
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  margin-top: 10px;
  position: relative;
  overflow: hidden;
}

.btn-send-whatsapp::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-send-whatsapp:hover::before {
  width: 300px;
  height: 300px;
}

.btn-send-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
}

.btn-send-whatsapp:active {
  transform: translateY(-1px);
}

.btn-send-whatsapp i {
  font-size: 22px;
  position: relative;
  z-index: 1;
}

.btn-send-whatsapp span {
  position: relative;
  z-index: 1;
}

/* ========================================
   Social Follow - تابعنا على السوشيال ميديا
   ======================================== */
.social-follow {
  background: var(--surface);
  padding: 80px 0 100px;
}

.social-follow-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12),
    rgba(115, 45, 96, 0.22)
  );
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  display: grid;
  gap: 20px;
  justify-items: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.social-follow-card h2 {
  position: relative;
  font-size: clamp(28px, 4vw, 34px);
  font-weight: var(--font-weight-black);
  color: var(--primary-dark);
  line-height: 1.45;
  letter-spacing: 0.3px;
  padding-bottom: 16px;
}

.social-follow-card h2::after {
  content: "";
  position: absolute;
  inset-inline: 50% auto;
  bottom: 0;
  transform: translateX(-50%);
  width: 90px;
  height: 4px;
  border-radius: var(--radius-full);
  background: linear-gradient(
    90deg,
    rgba(115, 45, 96, 0.95) 0%,
    rgba(245, 178, 83, 0.85) 60%,
    rgba(245, 178, 83, 0) 100%
  );
}

.social-follow-card p {
  max-width: 620px;
  color: var(--muted);
  font-weight: var(--font-weight-semibold);
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  color: var(--primary-dark);
  padding: 12px 22px;
  border-radius: var(--radius-full);
  font-weight: var(--font-weight-bold);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  text-decoration: none;
}

.social-links a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.social-links a i {
  font-size: 18px;
}

/* ========================================
   Local SEO - تحسين محركات البحث المحلية
   ======================================== */
.local-seo {
  background: var(--surface);
  padding-block: clamp(64px, 9vw, 116px);
}

.local-seo .section-head {
  text-align: center;
  display: grid;
  gap: 14px;
  margin-bottom: 48px;
}
.local-seo .section-head h2 {
  font-size: clamp(26px, 4.4vw, 36px);
  line-height: 1.5;
  color: var(--primary-dark);
  font-weight: var(--font-weight-black);
}

.local-seo .section-head p {
  max-width: 720px;
  justify-self: center;
  color: var(--muted);
  line-height: 1.7;
}

.local-seo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.seo-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(236, 209, 245, 0.76)
  );
  border-radius: var(--radius-xl);
  padding: 34px 30px;
  box-shadow: 0 22px 48px -32px rgba(115, 45, 96, 0.45);
  display: grid;
  gap: 18px;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.seo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 52px -28px rgba(115, 45, 96, 0.55);
}

.seo-card h3 {
  font-size: 22px;
  font-weight: var(--font-weight-black);
  color: var(--primary);
}

.seo-card ul {
  display: grid;
  gap: 12px;
  line-height: 1.8;
  color: var(--text-muted, var(--muted));
  padding-inline-start: 1.3rem;
  list-style: disc;
}

.seo-card ul li::marker {
  color: var(--accent);
}

.local-faq {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.local-faq details {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.95);
  padding: 18px 20px;
  box-shadow: 0 18px 36px -28px rgba(115, 45, 96, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.local-faq details[open] {
  transform: translateY(-2px);
  box-shadow: 0 24px 40px -26px rgba(115, 45, 96, 0.55);
}

.local-faq summary {
  cursor: pointer;
  font-weight: var(--font-weight-bold);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 16px;
}

.local-faq summary::-webkit-details-marker {
  display: none;
}

.local-faq summary::after {
  content: "\f0d7";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5b253, #7b3265);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.local-faq details[open] summary::after {
  transform: rotate(180deg);
}

.local-faq p {
  margin-top: 12px;
  color: var(--text-muted, var(--muted));
  line-height: 1.8;
  font-size: 15px;
}

/* ========================================
   Newsletter Enhanced - النشرة البريدية المحسنة
   ======================================== */
.newsletter-card-new {
  background: linear-gradient(135deg, #7b3265, #47133b);
  border-radius: var(--radius-xl);
  padding: 55px 50px;
  display: grid;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.newsletter-card-new::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 178, 83, 0.15), transparent);
  pointer-events: none;
}

.newsletter-card-new::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent);
  pointer-events: none;
}

.newsletter-card-new h2 {
  font-size: clamp(26px, 4vw, 32px);
  font-weight: var(--font-weight-black);
  color: #fff;
  position: relative;
  z-index: 2;
}

.newsletter-card-new p {
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 2;
}

/* ========================================
   Social Media Feeds - خلاصات وسائل التواصل
   ======================================== */
.social-follow {
  background: var(--surface);
  padding: 80px 0 100px;
}

.social-follow-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(115, 45, 96, 0.22));
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  display: grid;
  gap: 28px;
  justify-items: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.social-follow-card h2 {
  position: relative;
  font-size: clamp(28px, 4vw, 34px);
  font-weight: var(--font-weight-black);
  color: var(--primary-dark);
  line-height: 1.4;
  letter-spacing: 0.3px;
  padding-bottom: 16px;
}

.social-follow-card h2::after {
  content: "";
  position: absolute;
  inset-inline: 50% auto;
  bottom: 0;
  transform: translateX(-50%);
  width: 92px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(115, 45, 96, 0.95) 0%, rgba(245, 178, 83, 0.85) 60%, rgba(245, 178, 83, 0) 100%);
}

.social-follow-card p {
  max-width: 620px;
  color: var(--muted);
  font-weight: var(--font-weight-semibold);
}

.social-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.social-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
  color: #fff;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.social-icon:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.social-icon.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.snapchat {
  background: #fffc00;
  color: #000;
}

.social-icon.tiktok {
  background: #000;
}

/* Instagram Feed */
.instagram-feed {
  background: var(--surface);
  padding: 80px 0;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1400px;
  margin-inline: auto;
}

.instagram-post {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.instagram-post:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.instagram-video-clickable {
  position: relative;
  cursor: pointer;
}

.instagram-thumbnail-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.instagram-thumbnail {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
  filter: brightness(0.9);
  transition: transform 0.35s ease;
}

.instagram-video-clickable:hover .instagram-thumbnail {
  transform: scale(1.03);
}

.instagram-logo {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 3;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.instagram-logo i {
  font-size: 20px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.instagram-video-clickable:hover .instagram-logo {
  transform: scale(1.1);
}

.instagram-play-overlay {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: grid;
  place-items: center;
  z-index: 3;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.instagram-play-overlay i {
  font-size: 24px;
  color: #dc2743;
  margin-left: 4px;
}

.instagram-video-clickable:hover .instagram-play-overlay {
  opacity: 1;
  transform: scale(1);
}

.instagram-post-footer {
  padding: 16px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.instagram-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.instagram-link:hover {
  transform: scale(1.05);
}

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

/* Snapchat Feed */
.snapchat-feed {
  background: #fffc00;
  padding: 80px 0;
}

.snapchat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

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

/* ========================================
   Error Pages - صفحات الأخطاء
   ======================================== */
.error-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fdf6ff, #f3e5f7);
  text-align: center;
  padding: 40px 20px;
}

.error-code {
  font-size: clamp(80px, 15vw, 150px);
  font-weight: var(--font-weight-black);
  color: var(--primary);
  line-height: 1;
  margin-bottom: 20px;
}

.icon-404 {
  font-size: 60px;
  color: var(--primary);
  margin-bottom: 20px;
}

/* ========================================
   Why Section - لماذا نحن
   ======================================== */
.why {
  background: var(--soft-3);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.why-gallery {
  display: grid;
  gap: 18px;
}

.why-gallery img:first-child {
  border-radius: var(--radius-xl);
}

.why-gallery img:last-child {
  width: 72%;
  margin-inline-start: auto;
  border-radius: var(--radius-xl);
}

.why-content {
  display: grid;
  gap: 18px;
}

.why-content h2 {
  position: relative;
  font-size: clamp(28px, 4.2vw, 36px);
  font-weight: var(--font-weight-black);
  color: var(--primary-dark);
  padding-bottom: 18px;
}

.why-content h2::after {
  content: "";
  position: absolute;
  inset-inline: 0 auto;
  bottom: 0;
  width: 92px;
  height: 5px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 60%, transparent 100%);
}

.why-list {
  list-style: none;
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
}

.why-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.why-list li i {
  color: var(--primary);
  font-size: 20px;
  flex-shrink: 0;
}

/* ========================================
   Responsive - التنسيقات المتجاوبة
   ======================================== */
@media (max-width: 1024px) {
  .upload-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .upload-sidebar {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .local-seo-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .instagram-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .booking-card {
    justify-content: center;
    text-align: center;
  }

  .booking-content,
  .booking-actions {
    justify-content: center;
  }

  .newsletter-card-new {
    padding: 40px 25px;
  }
}

@media (max-width: 640px) {
  .upload-section {
    padding: 22px;
  }

  .upload-card {
    padding: 24px;
  }

  .upload-form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .upload-header {
    position: static;
  }

  .booking-card {
    padding: 26px 22px;
  }

  .booking-actions .btn {
    min-width: 0;
    width: 100%;
  }

  .newsletter-card-new {
    padding: 35px 20px;
  }
}

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

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

@media (min-width: 480px) and (max-width: 767px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
