/*
 * Event Source - Main Stylesheet
 * Modern Design with Interactive Animations
 */

:root {
  /* Primary - Golden/Amber - Luxury & Energy */
  --primary: #e8a838;
  --primary-dark: #c98a1f;
  --primary-light: #f4c150;
  
  /* Secondary - Deep Blue - Trust & Professionalism */
  --secondary: #1e6091;
  --secondary-dark: #164b6e;
  --secondary-light: #2d8bc9;
  
  /* Accent - Teal - Freshness & Innovation */
  --accent: #14b8a6;
  --accent-dark: #0d9488;
  --accent-light: #2dd4bf;
  
  /* Success - Green */
  --success: #22c55e;
  
  /* Warning - Orange */
  --warning: #f97316;
  
  /* Error - Red */
  --error: #ef4444;
  
  /* Dark Theme - Rich Navy */
  --dark: #0a1628;
  --dark-light: #13243d;
  --dark-card: #162038;
  --dark-surface: #1a2847;
  
  /* Light Colors */
  --white: #ffffff;
  --gray-light: #e2e8f0;
  --gray: #94a3b8;
  --gray-dark: #64748b;
  
  /* Fonts */
  --font-ar: 'Cairo', sans-serif;
  --font-en: 'Poppins', sans-serif;
  
  /* Transitions */
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 40px rgba(232, 168, 56, 0.25);
  --shadow-glow-secondary: 0 0 40px rgba(30, 96, 145, 0.25);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  --gradient-dark: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-ar);
  background-color: var(--dark);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

body[dir="ltr"] {
  font-family: var(--font-en);
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Animations ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideLeft {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideRight {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
  50% { transform: scale(1.05); box-shadow: 0 0 20px 10px rgba(245, 158, 11, 0); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.animate-fade-in {
  animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
  animation: slideUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; opacity: 0; animation-fill-mode: forwards; }
.delay-2 { animation-delay: 0.4s; opacity: 0; animation-fill-mode: forwards; }
.delay-3 { animation-delay: 0.6s; opacity: 0; animation-fill-mode: forwards; }

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Header & Navigation ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(245, 158, 11, 0.1);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(15, 23, 42, 0.98);
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo img {
  height: 65px;
  transition: var(--transition);
}

.logo:hover img {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--white);
  font-weight: 500;
  position: relative;
  padding: 8px 0;
  font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.3s ease;
  border-radius: 2px;
}

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

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: linear-gradient(145deg, #1a2d4a 0%, #0f1f36 100%);
  border: 1px solid rgba(232, 168, 56, 0.2);
  border-radius: 16px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition);
  z-index: 100;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(232, 168, 56, 0.08);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

[dir="ltr"] .dropdown-menu {
  right: auto;
  left: 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
  position: relative;
}

.dropdown-menu a::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary);
  transform: scaleY(0);
  transition: var(--transition);
}

[dir="ltr"] .dropdown-menu a::before {
  right: auto;
  left: 0;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background: linear-gradient(90deg, rgba(232, 168, 56, 0.15) 0%, transparent 100%);
  color: var(--primary);
  padding-right: 28px;
}

[dir="ltr"] .dropdown-menu a:hover {
  padding-right: 22px;
  padding-left: 28px;
  background: linear-gradient(90deg, transparent 0%, rgba(232, 168, 56, 0.15) 100%);
}

.dropdown-menu a:hover::before {
  transform: scaleY(1);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--dark-light);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 12px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

[dir="ltr"] .dropdown-menu {
  right: auto;
  left: 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 14px 20px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background: rgba(245, 158, 11, 0.1);
  color: var(--primary);
  padding-right: 25px;
}

[dir="ltr"] .dropdown-menu a:hover {
  padding-right: 20px;
  padding-left: 25px;
}

/* Language Switch */
.lang-switch {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.lang-switch:hover {
  background: var(--primary);
  color: var(--dark);
  transform: scale(1.05);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
  position: relative;
  z-index: 1001;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 110vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

.hero-slide.active {
  opacity: 1;
}

.hero-slide img,
.hero-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-gradient {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 50%, #0f172a 100%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.6) 0%,
    rgba(15, 23, 42, 0.8) 50%,
    rgba(15, 23, 42, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1000px;
  padding: 0 24px;
  margin-top: 75px;
}

.hero-logo {
  width: 160px;
  height: auto;
  margin-bottom: 32px;
  filter: drop-shadow(0 10px 30px rgba(245, 158, 11, 0.3));
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--white) 0%, var(--gray) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.hero-subtitle {
  font-size: 1.4rem;
  color: var(--gray);
  margin-bottom: 48px;
  line-height: 1.8;
}

/* Hero Boxes */
.hero-boxes {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.hero-box {
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.2);
  padding: 28px 40px;
  border-radius: 16px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.hero-box:hover {
  background: rgba(245, 158, 11, 0.15);
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
}

.hero-box h3 {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 700;
}

.hero-box-icon {
  margin-bottom: 12px;
  color: var(--primary);
}

.hero-box-icon svg {
  stroke: currentColor;
}

.hero-box p {
  font-size: 0.95rem;
  color: var(--gray);
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

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

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.slider-dot.active {
  background: var(--primary);
  transform: scale(1.3);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
}

/* ===== Statistics Section ===== */
.stats {
  background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 50%, #0ea5e9 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 5px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item {
  padding: 24px;
  transition: var(--transition);
}

.stat-item:hover {
  transform: scale(1.05);
}

.stat-icon {
  margin-bottom: 15px;
  color: var(--primary);
}

.stat-icon svg {
  stroke: var(--primary);
}

.stat-icon img {
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}

.stat-number {
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* ===== Section Styling ===== */
.section {
  padding: 120px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 4px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 600px;
  margin: 24px auto 0;
  line-height: 1.8;
}

.section-footer {
  text-align: center;
  margin-top: 60px;
}

/* ===== About Section ===== */
.about {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--primary);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.3;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-image-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
}

.about-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
}

.about-content > p {
  font-size: 1.15rem;
  line-height: 2;
  color: var(--gray);
  margin-bottom: 32px;
}

.about-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.about-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px;
  border-radius: 16px;
  transition: var(--transition);
}

.about-box:hover {
  background: rgba(245, 158, 11, 0.05);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-5px);
}

.about-box.highlight {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
  border-color: rgba(245, 158, 11, 0.3);
}

.about-box h4 {
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.about-box p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.8;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  margin-top: 32px;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--dark);
  transform: translateX(-5px);
}

[dir="ltr"] .btn-outline:hover {
  transform: translateX(5px);
}

/* Values Section */
.values-section {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.values-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.value-item {
  text-align: center;
  padding: 24px;
  transition: var(--transition);
}

.value-item:hover {
  transform: translateY(-8px);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
  transition: var(--transition);
}

.value-item:hover .value-icon {
  transform: rotate(5deg) scale(1.1);
}

.value-icon svg {
  width: 36px;
  height: 36px;
  color: var(--dark);
}

.value-item h4 {
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 600;
}

/* ===== Services Section ===== */
.services-section {
  background: var(--dark-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.service-card {
  display: block;
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
}

.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.service-icon-large {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon-large svg {
  color: var(--white);
}

.service-content {
  padding: 28px;
}

.service-content h3 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 700;
}

.service-content p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== Products Section ===== */
/* ===== Category Page Toolbar ===== */
.category-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.items-count {
  font-size: 1rem;
  color: var(--gray);
}

.items-count span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-left: 8px;
}

[dir="ltr"] .items-count span {
  margin-left: 0;
  margin-right: 8px;
}

.search-form {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.search-form:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(232, 168, 56, 0.1);
}

.search-form input {
  padding: 12px 18px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 0.95rem;
  min-width: 200px;
}

.search-form input:focus {
  outline: none;
}

.search-form input::placeholder {
  color: var(--gray);
}

.search-form button {
  padding: 12px 18px;
  background: var(--primary);
  border: none;
  color: var(--dark);
  cursor: pointer;
  transition: var(--transition);
}

.search-form button:hover {
  background: var(--primary-light);
}

.products-section {
  background: var(--dark);
}

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

.product-card {
  display: block;
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: var(--secondary);
  box-shadow: 0 20px 40px rgba(14, 165, 233, 0.2);
}

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

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

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

.product-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.product-info {
  padding: 24px;
}

.product-info h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 700;
}

.product-info p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== Portfolio Section ===== */
.portfolio-section {
  background: linear-gradient(180deg, var(--dark-light) 0%, var(--dark) 100%);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.portfolio-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
  text-decoration: none;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.portfolio-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 30px;
  background: linear-gradient(transparent, rgba(15, 23, 42, 0.98));
  transform: translateY(20px);
  opacity: 0.8;
  transition: var(--transition);
}

.portfolio-card:hover .portfolio-overlay {
  transform: translateY(0);
  opacity: 1;
}

.portfolio-overlay h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 700;
}

.portfolio-overlay p {
  color: var(--primary);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.portfolio-overlay .view-btn {
  display: inline-block;
  padding: 8px 20px;
  background: var(--primary);
  color: var(--dark);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.portfolio-card:hover .portfolio-overlay .view-btn {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Partners Section ===== */
.partners-section {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 100%);
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}

.partners-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 25px 20px;
  min-height: 120px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.partner-logo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(232, 168, 56, 0.05) 100%);
  opacity: 0;
  transition: var(--transition);
}

.partner-logo:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(232, 168, 56, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(232, 168, 56, 0.1);
}

.partner-logo:hover::before {
  opacity: 1;
}

.partner-logo img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.partner-logo:hover img {
  transform: scale(1.08);
}



/* ===== CTA Section ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--secondary) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 800;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
    align-items: center;
    width: 100%;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    color: var(--dark);
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-primary.btn-large {
  padding: 20px 50px;
  font-size: 1.2rem;
}

/* About Buttons */
.about-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, #d97706 100%);
  color: var(--dark);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  position: relative;
  z-index: 10;
  cursor: pointer;
}

.download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.download-btn svg {
  stroke: currentColor;
}

/* ===== Contact Form ===== */
.contact-form {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--white);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

/* Select Dropdown Styling */
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23e8a838' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 15px center;
  padding-left: 45px;
  cursor: pointer;
}

[dir="ltr"] .form-group select {
  background-position: right 15px center;
  padding-left: 20px;
  padding-right: 45px;
}

.form-group select option {
  background: #1a1a1a;
  color: #ffffff;
  padding: 15px 20px;
  font-size: 1rem;
  border: none;
}

.form-group select option:hover,
.form-group select option:focus,
.form-group select option:checked {
  background: linear-gradient(135deg, #d4af37 0%, #b8962f 100%);
  color: #0a0a0a;
}

.form-group select option:disabled {
  color: #666666;
  background: #1a1a1a;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  background-color: rgba(232, 168, 56, 0.08);
  box-shadow: 0 0 20px rgba(232, 168, 56, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray);
}

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

.btn-submit {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: none;
  border-radius: 12px;
  color: var(--dark);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

/* ===== Footer ===== */
.footer {
  background: var(--dark);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 24px;
  font-weight: 700;
}

.footer-col p,
.footer-col a {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 2.2;
  display: block;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

[dir="rtl"] .footer-col a:hover {
  transform: translateX(-5px);
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.social-links a {
  width: 48px;
  height: 48px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-5px);
}

.social-links a svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
  transition: var(--transition);
}

.social-links a:hover svg {
  color: var(--dark);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray);
  font-size: 0.95rem;
}

/* ===== WhatsApp Button ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  animation: pulse 2s infinite;
}

[dir="ltr"] .whatsapp-btn {
  left: auto;
  right: 30px;
}

.whatsapp-btn svg {
  width: 32px;
  height: 32px;
  color: white;
}

/* ===== Page Header ===== */
.page-header {
  padding: 180px 0 100px;
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.85) 100%);
}

.page-header h1 {
  position: relative;
  z-index: 2;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
}

.page-header p {
  position: relative;
  z-index: 2;
  font-size: 1.3rem;
  color: var(--gray);
  margin-top: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Services Page ===== */
.services-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
}

.service-image-card {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.service-image-card:hover {
  border-color: var(--primary);
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-img {
  height: 240px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.service-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.service-info {
  padding: 28px;
}

.service-info h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 700;
}

.service-info p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ===== CTA Section in Pages ===== */
.cta-section h2 {
  color: var(--white);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 30px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
  }

  [dir="ltr"] .nav-menu {
    right: auto;
    left: -100%;
  }

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

  [dir="ltr"] .nav-menu.active {
    right: auto;
    left: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-boxes {
    flex-direction: column;
    align-items: center;
  }

  .hero-box {
    width: 100%;
    max-width: 350px;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .services-image-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .stat-number {
    font-size: 2.8rem;
  }

  .about-boxes {
    grid-template-columns: 1fr;
  }

  .values-grid {
    justify-content: center;
  }

  .value-item {
    flex: 0 0 45%;
  }

  .services-grid,
  .products-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .page-header {
    padding: 140px 0 80px;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-box {
    padding: 20px 28px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .values-grid {
    flex-direction: column;
    align-items: center;
  }

  .value-item {
    flex: 0 0 100%;
  }

  .btn-primary.btn-large {
    padding: 16px 35px;
    font-size: 1rem;
  }
}

/* ===== Utility Classes ===== */
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-white { color: var(--white); }
.text-gray { color: var(--gray); }

.bg-dark { background: var(--dark); }
.bg-dark-light { background: var(--dark-light); }
.bg-primary { background: var(--primary); }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

/* ===== About Page Sections Grid ===== */
.about-sections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.about-section-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
}

.about-section-card:hover {
  background: rgba(245, 158, 11, 0.05);
  border-color: rgba(245, 158, 11, 0.2);
  transform: translateY(-5px);
}

.about-section-card.highlight {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(14, 165, 233, 0.05) 100%);
  border-color: rgba(245, 158, 11, 0.3);
}

.about-section-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.about-section-icon svg {
  color: var(--dark);
  stroke: var(--dark);
}

.about-section-card h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.about-section-card p {
  color: var(--gray);
  line-height: 1.9;
  font-size: 1rem;
}

.about-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  color: var(--gray);
}

/* ===== Contact Page Grid ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px;
}

.contact-info h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 30px;
  font-weight: 700;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  color: var(--primary);
  stroke: var(--primary);
}

.info-item h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 5px;
}

.info-item p,
.info-item a {
  color: var(--gray);
  font-size: 0.95rem;
  transition: var(--transition);
}

.info-item a:hover {
  color: var(--primary);
}

.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px;
}

.contact-form-wrapper h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 30px;
  font-weight: 700;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ===== Rental Categories Grid ===== */
.rental-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.rental-category-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 50px 30px;
  text-align: center;
  transition: var(--transition);
  display: block;
}

.rental-category-card:hover {
  background: rgba(245, 158, 11, 0.05);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.rental-category-card.highlight {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(14, 165, 233, 0.05) 100%);
  border-color: rgba(245, 158, 11, 0.3);
}

.category-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.category-icon svg {
  color: var(--dark);
  stroke: var(--dark);
}

.rental-category-card h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 700;
}

.rental-category-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* ===== Join Cards Grid ===== */
.join-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.join-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.join-card:hover {
  border-color: var(--primary);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.join-card.selected {
  border-color: var(--primary);
  background: rgba(245, 158, 11, 0.05);
}

.join-card-image {
  height: 200px;
  overflow: hidden;
}

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

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

.join-card-content {
  padding: 25px;
  text-align: center;
}

.join-card-content h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 700;
}

.join-card-content p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== Categories Grid (Activities/Equipment) ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.category-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  display: block;
}

.category-card:hover {
  border-color: var(--primary);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.category-image {
  height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.placeholder-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.category-info {
  padding: 25px;
}

.category-info h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 700;
}

.category-info p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== Portfolio Detail Card ===== */
.portfolio-detail-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 40px;
}

.portfolio-detail-header {
  margin-bottom: 25px;
}

.portfolio-detail-info h2 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 700;
}

.portfolio-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 1rem;
}

.portfolio-location svg {
  stroke: var(--primary);
}

.portfolio-description {
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 30px;
}

.portfolio-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
  padding: 30px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
}

.portfolio-stat {
  text-align: center;
}

.portfolio-stat .stat-icon {
  margin-bottom: 12px;
  color: var(--primary);
}

.portfolio-stat .stat-icon svg {
  stroke: var(--primary);
}

.portfolio-stat .stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}

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

/* ===== Portfolio Slider ===== */
.portfolio-slider {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.slider-container {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--dark-card);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slide.active {
  opacity: 1;
}

.slide img,
.slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-slider .slider-nav {
  position: absolute;
  top: 50%;
  left: 20px;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.portfolio-slider .prev-btn,
.portfolio-slider .next-btn {
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: var(--transition);
  color: var(--white);
}

.portfolio-slider .prev-btn:hover,
.portfolio-slider .next-btn:hover {
  background: var(--primary);
  color: var(--dark);
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

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

.slider-dots .dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* ===== Page Hero ===== */
.page-hero {
  padding: 180px 0 100px;
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.85) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 1.2rem;
  color: var(--gray);
}

/* ===== No Items State ===== */
.no-items {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray);
  grid-column: 1 / -1;
}

/* ===== Alert Messages ===== */
.alert {
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.alert-success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid #10b981;
  color: #10b981;
}

.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid #ef4444;
  color: #ef4444;
}

/* ===== Section BG ===== */
.section-bg {
  position: relative;
  background: var(--dark-light);
}

.section-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.5) 100%);
  pointer-events: none;
}

/* ===== Pagination ===== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
}

.page-link {
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--white);
  transition: var(--transition);
}

.page-link:hover,
.page-link.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--dark);
}

/* ===== Responsive Styles for All Pages ===== */
@media (max-width: 1024px) {
  .about-grid {
    gap: 50px;
  }
  
  .contact-grid {
    gap: 40px;
  }
  
  .rental-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .join-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* About Page */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-sections-grid {
    grid-template-columns: 1fr;
  }
  
  .about-section-card {
    padding: 30px 20px;
  }
  
  .about-placeholder {
    height: 300px;
  }
  
  /* Contact Page */
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info,
  .contact-form-wrapper {
    padding: 30px 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  /* Rental Page */
  .rental-categories-grid {
    grid-template-columns: 1fr;
  }
  
  .rental-category-card {
    padding: 40px 25px;
  }
  
  /* Join Page */
  .join-cards {
    grid-template-columns: 1fr;
  }
  
  .join-card-image {
    height: 180px;
  }
  
  /* Portfolio Page */
  .portfolio-detail-card {
    padding: 25px;
  }
  
  .portfolio-detail-info h2 {
    font-size: 1.5rem;
  }
  
  .portfolio-stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;
    gap: 15px;
  }
  
  .portfolio-stat .stat-value {
    font-size: 1.5rem;
  }
  
  /* Categories Grid */
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  /* Values Grid */
  .values-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .value-item {
    width: 100%;
    max-width: 250px;
  }
  
  /* Section Headers */
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  /* Page Header */
  .page-header,
  .page-hero {
    padding: 140px 0 60px;
  }
  
  .page-header h1,
  .page-hero h1 {
    font-size: 2rem;
  }
  
  /* Statistics */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .about-sections-grid {
    gap: 20px;
  }
  
  .about-section-icon {
    width: 60px;
    height: 60px;
  }
  
  .about-section-icon svg {
    width: 28px;
    height: 28px;
  }
  
  .about-section-card h3 {
    font-size: 1.2rem;
  }
  
  .category-icon {
    width: 70px;
    height: 70px;
  }
  
  .category-icon svg {
    width: 35px;
    height: 35px;
  }
  
  .portfolio-stats {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-item {
    padding: 15px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

/* ===== Service Modal (Popup) ===== */
.service-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px;
}

.service-modal.active {
  opacity: 1;
  visibility: visible;
}

.service-modal-content {
  position: relative;
  background: linear-gradient(145deg, var(--dark-light) 0%, var(--dark-card) 100%);
  border: 1px solid rgba(232, 168, 56, 0.25);
  border-radius: 24px;
  width: 100%;
  max-width: 700px;
  max-height: 90vh;
  overflow: hidden;
  transform: scale(0.8) translateY(50px);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(232, 168, 56, 0.15);
}

.service-modal.active .service-modal-content {
  transform: scale(1) translateY(0);
}

.service-modal .modal-close {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

[dir="ltr"] .service-modal .modal-close {
  left: auto;
  right: 20px;
}

.service-modal .modal-close:hover {
  background: var(--primary);
  color: var(--dark);
  transform: rotate(90deg);
}

.service-modal-image {
  height: 280px;
  position: relative;
  overflow: hidden;
}

.service-modal-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(transparent, var(--dark-card));
}

.service-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomIn 0.6s ease forwards;
}

@keyframes zoomIn {
  from {
    transform: scale(1.2);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.service-modal-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-modal-placeholder svg {
  color: var(--white);
  opacity: 0.8;
}

.service-modal-body {
  padding: 35px;
  overflow-y: auto;
  max-height: calc(90vh - 280px);
}

.service-modal-body h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.service-modal-body h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 3px;
}

[dir="ltr"] .service-modal-body h3::after {
  right: auto;
  left: 0;
}

.service-modal-body p {
  font-size: 1.05rem;
  line-height: 2;
  color: var(--gray);
  margin-bottom: 30px;
}

.service-modal-body .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--dark);
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.service-modal-body .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
}

@media (max-width: 768px) {
  .service-modal-content {
    max-width: 95%;
  }
  
  .service-modal-image {
    height: 200px;
  }
  
  .service-modal-body {
    padding: 25px;
  }
  
  .service-modal-body h3 {
    font-size: 1.4rem;
  }
  
  .service-modal-body p {
    font-size: 0.95rem;
  }
}

/* ===== Enhanced Animations ===== */
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-bounce-in {
  animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.animate-slide-in-up {
  animation: slideInUp 0.6s ease forwards;
}

.animate-fade-in-scale {
  animation: fadeInScale 0.5s ease forwards;
}
