/* ===================================
   Event Source - Main Stylesheet
   كتابة جديدة من الصفر
   =================================== */

/* === CSS Variables === */
:root {
  --primary-black: #0a0a0a;
  --primary-white: #ffffff;
  --accent-gold: #c9a962;
  --accent-gold-light: #e4d4a5;
  --accent-gold-dark: #a68a3e;
  --gray-50: #f9f9f9;
  --gray-100: #f3f3f3;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;
  --font-arabic: "Tajawal", "Cairo", sans-serif;
  --font-english: "Poppins", sans-serif;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-arabic);
  background-color: var(--primary-white);
  color: var(--primary-black);
  line-height: 1.6;
  overflow-x: hidden;
}

body.en {
  font-family: var(--font-english);
  direction: ltr;
  text-align: left;
}

body.ar {
  font-family: var(--font-arabic);
  direction: rtl;
  text-align: right;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

/* === Container === */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* === Typography === */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary-black);
}

h1 {
  font-size: 2rem;
}
h2 {
  font-size: 1.75rem;
}
h3 {
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.25rem;
  }
  h3 {
    font-size: 1.5rem;
  }
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  font-family: inherit;
}

.btn-primary {
  background-color: var(--primary-black);
  color: var(--primary-white);
}

.btn-primary:hover {
  background-color: var(--gray-800);
  transform: translateY(-2px);
}

.btn-gold {
  background-color: var(--accent-gold);
  color: var(--primary-black);
}

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

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

.btn-outline:hover {
  background-color: var(--primary-black);
  color: var(--primary-white);
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* === Header === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--primary-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

@media (min-width: 768px) {
  .nav {
    height: 80px;
  }
}

.logo img {
  height: 40px;
  width: auto;
}

@media (min-width: 768px) {
  .logo img {
    height: 50px;
  }
}

.nav-links {
  display: none;
  list-style: none;
  gap: 0.5rem;
}

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

.nav-links a {
  padding: 0.5rem 0.75rem;
  color: var(--primary-black);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-switcher-flag img {
  width: 32px;
  height: 24px;
  object-fit: cover;
  border-radius: 4px;
}

/* === Mobile Menu Button === */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
}

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

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary-black);
  transition: all var(--transition-fast);
}

/* === Mobile Menu Overlay === */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

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

/* === Mobile Menu === */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  height: 100dvh;
  background: var(--primary-white);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  transition: right var(--transition-normal), left var(--transition-normal);
  z-index: 999;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  right: 0;
}

body.ar .mobile-menu {
  right: auto;
  left: -320px;
}

body.ar .mobile-menu.active {
  left: 0;
  right: auto;
}

.mobile-menu-header {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--gray-200);
  background: var(--gray-50);
  min-height: 70px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.mobile-menu-logo img {
  height: 40px;
  width: auto;
}

/* Mobile Menu Close Button */
.mobile-menu-close {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px;
  min-height: 44px;
  background: var(--primary-white) !important;
  border: 2px solid var(--accent-gold) !important;
  color: var(--accent-gold) !important;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition-fast);
  padding: 0;
  flex-shrink: 0;
  visibility: visible !important;
  opacity: 1 !important;
}

.mobile-menu-close svg {
  width: 24px !important;
  height: 24px !important;
  stroke: currentColor;
  display: block !important;
  visibility: visible !important;
}

.mobile-menu-close:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--primary-black);
  transform: rotate(90deg);
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.mobile-menu ul li {
  border-bottom: 1px solid var(--gray-100);
}

.mobile-menu ul li a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  color: var(--primary-black);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.mobile-menu ul li a:hover {
  background: var(--gray-50);
  color: var(--accent-gold);
}

.mobile-menu ul li a i {
  width: 24px;
  color: var(--accent-gold);
  font-size: 1rem;
}

.mobile-menu-lang {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--gray-200);
  background: var(--gray-50);
}

.mobile-menu-lang a,
.mobile-menu-lang-flag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--primary-white);
  border-radius: 0.5rem;
  text-decoration: none;
  color: var(--primary-black);
  font-weight: 500;
  border: 1px solid var(--gray-200);
}

.mobile-menu-lang a:hover,
.mobile-menu-lang-flag:hover {
  border-color: var(--accent-gold);
}

.mobile-menu-lang img {
  width: 28px;
  height: 21px;
  object-fit: cover;
  border-radius: 3px;
}

/* Mobile Menu Social - No Circle Background */
.mobile-menu-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 1.25rem;
  border-top: 1px solid var(--gray-200);
  background: var(--gray-50);
}

.mobile-menu-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  border-radius: 0;
  color: var(--primary-black);
  font-size: 1.5rem;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.mobile-menu-social a:hover {
  color: var(--accent-gold);
  transform: scale(1.2);
}

/* === Hero Slider === */
.hero-slider {
  position: relative;
  margin-top: 70px;
  height: 70vh;
  min-height: 500px;
  max-height: 700px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-slider {
    margin-top: 80px;
    height: 80vh;
    max-height: 800px;
  }
}

.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease;
}

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

.hero-slider .slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* دعم الفيديو في السلايدر */
.hero-slider video.slide-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}

.hero-slider .slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

.hero-slider .slide-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  padding: 2rem;
  color: var(--primary-white);
}

.hero-slider .slide-content h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-white);
}

@media (min-width: 768px) {
  .hero-slider .slide-content h1 {
    font-size: 3.5rem;
  }
}

.hero-slider .slide-content p {
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

@media (min-width: 768px) {
  .hero-slider .slide-content p {
    font-size: 1.25rem;
  }
}

.slider-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  z-index: 10;
  pointer-events: none;
}

.slider-arrow {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary-black);
  transition: all var(--transition-fast);
  pointer-events: auto;
}

.slider-arrow:hover {
  background: var(--accent-gold);
}

.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-dot.active {
  background: var(--accent-gold);
  transform: scale(1.3);
}

/* === Sections === */
.section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 5rem 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--accent-gold);
}

.section-header-light h2 {
  color: var(--accent-gold);
}

.section-header-light p {
  color: var(--accent-gold-light);
}

/* === View All Button === */
.view-all-btn {
  text-align: center;
  margin-top: 2.5rem;
}

.view-all-btn .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  transition: all var(--transition-normal);
}

.view-all-btn .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201, 169, 98, 0.3);
}

.view-all-btn .btn svg {
  transition: transform var(--transition-fast);
}

.view-all-btn .btn:hover svg {
  transform: translateX(4px);
}

[dir="rtl"] .view-all-btn .btn:hover svg {
  transform: translateX(-4px);
}

/* === About Section === */
.about-section {
  background: var(--gray-50);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.about-card {
  background: var(--primary-white);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition-normal);
}

.about-card:hover {
  transform: translateY(-5px);
}

.about-icon {
  width: 80px;
  height: 80px;
  background: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.about-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--primary-black);
}

.about-card h3 {
  margin-bottom: 1rem;
}

.about-card p {
  color: var(--gray-600);
}

.about-profile-btn {
  text-align: center;
  margin-top: 2rem;
}

/* === Services Grid === */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.service-card {
  background: var(--primary-white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 1.5rem;
}

.service-content h3 {
  margin-bottom: 0.5rem;
}

.service-content p {
  color: var(--gray-600);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.service-price {
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* === Products Grid === */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.product-card {
  background: var(--primary-white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition-normal);
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-content {
  padding: 1.5rem;
}

.product-content h3 {
  margin-bottom: 0.5rem;
}

.product-content p {
  color: var(--gray-600);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.product-price {
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* === New Product Card Design === */
.products-grid-new {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

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

.product-card-new {
  background: #f5f0e8;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-normal);
}

.product-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.product-card-new:hover .product-card-image img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(20, 20, 20, 0.85);
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

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

.product-card-content {
  padding: 1.5rem;
  text-align: center;
}

.product-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.product-card-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #c9a962 0%, #e8a0b0 50%, #c9a962 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-card-price {
  font-size: 1.35rem;
  font-weight: 700;
  color: #c9a962;
  margin-bottom: 1.25rem;
}

.product-card-btn {
  display: block;
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: #1a1a2e;
  color: #fff;
  border: none;
  border-radius: 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.product-card-btn:hover {
  background: #c9a962;
  color: #1a1a2e;
}

/* === Styled Product Card (التصميم الأصلي) === */
.products-grid-styled {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.product-card-styled {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.product-card-styled:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-card-styled-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.product-card-styled-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-styled-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: var(--accent-gold);
  color: var(--primary-black);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
}

[dir="ltr"] .product-card-styled-badge {
  left: auto;
  right: 0.5rem;
}

.product-card-styled-content {
  padding: 1.25rem;
}

.product-card-styled-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-black);
  margin-bottom: 0.5rem;
}

.product-card-styled-desc {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.product-card-styled-price {
  font-weight: 700;
  color: var(--accent-gold-dark);
  margin-bottom: 1rem;
}

.product-card-styled-btn {
  display: block;
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: var(--primary-black);
  color: var(--primary-white);
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-card-styled-btn:hover {
  background: var(--gray-800);
  transform: translateY(-2px);
}

/* === Portfolio Section === */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.portfolio-card {
  background: var(--primary-white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.portfolio-image {
  position: relative;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

.portfolio-link {
  width: 50px;
  height: 50px;
  background: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-black);
  text-decoration: none;
}

.portfolio-content {
  padding: 1.5rem;
}

.portfolio-content h3 {
  margin-bottom: 0.5rem;
}

.portfolio-meta {
  color: var(--gray-500);
  font-size: 0.9rem;
}

/* === Partners Section with Arrows === */
.partners-section {
  background: var(--gray-50);
  overflow: hidden;
}

.partners-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.partners-arrow {
  width: 45px;
  height: 45px;
  min-width: 45px;
  background: var(--primary-white);
  border: 2px solid var(--gray-200);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--primary-black);
  transition: all var(--transition-fast);
  z-index: 5;
}

.partners-arrow:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
}

.partners-track-wrapper {
  flex: 1;
  overflow: hidden;
}

.partners-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s ease;
}

.partner-item {
  flex-shrink: 0;
  width: 160px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-white);
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--gray-200);
}

.partner-item:hover {
  border-color: var(--accent-gold);
}

.partner-item img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
}

.partner-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.partner-text-logo {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-600);
  text-align: center;
}

/* === Booking Section === */
.booking-section {
  background: var(--primary-black);
  padding: 4rem 0;
}

.booking-section .section-header h2 {
  color: var(--accent-gold);
}

.booking-section .section-header p {
  color: var(--accent-gold-light);
}

.booking-form {
  max-width: 900px;
  margin: 0 auto;
}

.booking-form-title {
  color: var(--primary-white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.booking-form-title svg {
  stroke: var(--accent-gold);
}

.booking-form-subtitle {
  color: var(--accent-gold);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.event-types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

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

.event-type-card {
  position: relative;
  background: var(--gray-800);
  border-radius: 0.75rem;
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
}

.event-type-card:hover {
  background: var(--gray-700);
  border-color: var(--accent-gold);
}

.event-type-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.event-type-card:has(input:checked) {
  border-color: var(--accent-gold);
  background: var(--gray-700);
}

.event-type-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.event-type-icon i {
  font-size: 1.5rem;
  color: var(--primary-black);
}

.event-type-icon .emoji-icon {
  font-size: 1.75rem;
}

.event-type-name {
  display: block;
  color: var(--primary-white);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.event-type-price {
  display: block;
  color: var(--accent-gold);
  font-size: 0.85rem;
}

.booking-form-section {
  background: var(--gray-800);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.booking-form-section h3 {
  color: var(--primary-white);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.booking-form-section h3 svg {
  stroke: var(--accent-gold);
}

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

@media (min-width: 768px) {
  .booking-form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.booking-form-half {
  background: var(--gray-800);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

/* === Form Elements === */
.form-group {
  margin-bottom: 1rem;
}

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

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

.form-row .form-group {
  margin-bottom: 0;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.booking-section .form-label,
.booking-form-half .form-label,
.booking-form-section .form-label {
  color: var(--gray-300);
}

.form-input,
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-family: inherit;
  border: 1px solid var(--gray-300);
  border-radius: 0.5rem;
  background: var(--primary-white);
  color: var(--primary-black);
  transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-control:focus {
  outline: none;
  border-color: var(--accent-gold);
}

.booking-section .form-input,
.booking-form-half .form-input,
.booking-form-section .form-input {
  background: var(--gray-700);
  border-color: var(--gray-600);
  color: var(--primary-white);
}

.booking-section .form-input:focus,
.booking-form-half .form-input:focus,
.booking-form-section .form-input:focus {
  border-color: var(--accent-gold);
}

.form-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='%23737373' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 1rem center;
  padding-left: 2.5rem;
}

body.en .form-select {
  background-position: right 1rem center;
  padding-left: 1rem;
  padding-right: 2.5rem;
}

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

/* === Contact Section === */
.contact-section {
  background: var(--gray-50);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

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

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary-black);
}

.contact-info-item h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-info-item p {
  color: var(--gray-600);
  font-size: 0.9rem;
}

.contact-form-side {
  background: var(--primary-white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-form-compact .form-label {
  color: var(--gray-700);
}

/* === Alerts === */
.alert {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.alert svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error,
.alert-danger {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* === Footer Social Section === */
.social-section-footer {
  padding: 3rem 0 2rem;
  text-align: center;
}

.social-title-footer {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-black);
  margin-bottom: 1.5rem;
}

.social-links-centered {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-link-black {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  background: transparent;
  border: none;
  color: var(--primary-black);
  font-size: 1.75rem;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.social-link-black:hover {
  color: var(--accent-gold);
  transform: scale(1.15);
}

.social-link-black i {
  color: inherit;
}

/* === Footer === */
.footer {
  background: var(--gray-100);
  padding: 1.5rem 0;
  text-align: center;
  border-top: 1px solid var(--gray-200);
}

.footer-content p {
  color: var(--gray-600);
  font-size: 0.9rem;
}

/* === Back to Top Button === */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 45px;
  height: 45px;
  background: var(--accent-gold);
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 100;
}

body.ar .back-to-top {
  right: auto;
  left: 2rem;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent-gold-dark);
  transform: translateY(-3px);
}

.back-to-top svg {
  stroke: var(--primary-black);
}

/* ==========================================
   BOOKING PAGE (booking.php) STYLES
   ========================================== */

.page-hero {
  background: var(--accent-gold);
  padding: 6rem 0 3rem;
  margin-top: 70px;
  text-align: center;
}

@media (min-width: 768px) {
  .page-hero {
    margin-top: 80px;
    padding: 7rem 0 4rem;
  }
}

.page-hero h1 {
  color: var(--primary-black);
  font-size: 2rem;
}

@media (min-width: 768px) {
  .page-hero h1 {
    font-size: 2.5rem;
  }
}

.booking-page {
  background: var(--gray-50);
}

.booking-page .booking-form {
  max-width: 100%;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

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

.booking-summary {
  position: relative;
}

/* Cards */
.card {
  background: var(--primary-white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.card.sticky {
  position: sticky;
  top: 100px;
}

.card-header {
  background: var(--primary-black);
  color: var(--primary-white);
  padding: 1rem 1.5rem;
}

.card-header h3 {
  color: var(--primary-white);
  font-size: 1.1rem;
  margin: 0;
}

.card-body {
  padding: 1.5rem;
}

/* Checkbox Grid for Services */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

.checkbox-card {
  position: relative;
  cursor: pointer;
}

.checkbox-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: 0.5rem;
  text-align: center;
  transition: all var(--transition-fast);
  min-height: 60px;
}

.checkbox-card:hover .checkbox-content {
  border-color: var(--accent-gold);
}

.checkbox-card input:checked + .checkbox-content {
  background: var(--accent-gold-light);
  border-color: var(--accent-gold);
}

.checkbox-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-black);
}

/* Products Selection */
.products-selection {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-select-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  background: var(--gray-50);
  border-radius: 0.5rem;
  border: 1px solid var(--gray-200);
}

.product-select-info {
  flex: 1;
}

.product-select-name {
  display: block;
  font-weight: 500;
  color: var(--primary-black);
  margin-bottom: 0.25rem;
}

.product-select-price {
  font-size: 0.85rem;
  color: var(--accent-gold);
  font-weight: 600;
}

/* Quantity Input */
.quantity-input {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--gray-300);
  border-radius: 0.5rem;
  overflow: hidden;
}

.qty-btn {
  width: 36px;
  height: 36px;
  background: var(--gray-100);
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-black);
  transition: background var(--transition-fast);
}

.qty-btn:hover {
  background: var(--accent-gold);
}

.qty-input {
  width: 50px;
  height: 36px;
  text-align: center;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--primary-white);
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Summary */
.summary-items {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.9rem;
}

.empty-summary {
  text-align: center;
  color: var(--gray-500);
  padding: 1rem 0;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 1rem 0;
  margin-bottom: 1rem;
}

/* === Utility Classes === */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}

.mt-0 {
  margin-top: 0;
}
.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}

/* === Responsive Adjustments === */
@media (max-width: 767px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info-side {
    order: -1;
  }

  .booking-form-row {
    grid-template-columns: 1fr;
  }

  .event-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}
