:root {
  --color-primary: #1d9a5b;
  --color-primary-dark: #117444;
  --color-secondary: #f4a261;
  --color-dark: #0f1c1a;
  --color-gray: #6b7a88;
  --color-light: #f6f8f7;
  --font-arabic: "Tajawal", "Cairo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-soft: 0 25px 60px rgba(20, 47, 34, 0.15);
  --shadow-sharp: 0 15px 30px rgba(0, 0, 0, 0.1);
  --gradient-hero: linear-gradient(135deg, rgba(9, 30, 22, 0.9), rgba(29, 154, 91, 0.7));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-arabic);
  background: #fff;
  color: var(--color-dark);
  line-height: 1.8;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

section {
  padding: 4.5rem 0;
}

.wrapper {
  width: min(1200px, 90vw);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 600;
}

.site-nav a {
  color: var(--color-dark);
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--color-primary);
}

.lang-switch {
  display: inline-flex;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.lang-switch button {
  border: none;
  background: transparent;
  padding: 0.4rem 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.lang-switch button:hover,
.lang-switch button:focus {
  background: var(--color-primary);
  color: #fff;
}

.nav-toggle {
  display: none;
  border: none;
  background: var(--color-primary);
  font-size: 1.8rem;
  cursor: pointer;
  color: #fff;
  z-index: 1001;
  position: relative;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 12px rgba(29, 154, 91, 0.3);
  transition: all 0.3s ease;
}

.nav-toggle:hover {
  background: var(--color-primary-dark);
  transform: scale(1.05);
}

.nav-toggle i {
  display: block;
  pointer-events: none;
  font-size: 1.5rem;
  color: #fff;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: var(--color-primary) !important;
    color: #fff !important;
  }
  
  .nav-toggle i {
    color: #fff !important;
  }
}

.hero {
  min-height: 60vh;
  position: relative;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  width: 100%;
  min-height: 60vh;
}

.hero-slide {
  min-height: 60vh;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: grid;
  place-items: center;
  padding: 4rem;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  width: 100%;
}

.hero-slide.is-active {
  position: relative;
  opacity: 1;
  z-index: 1;
}

@media (max-width: 768px) {
  .hero-slider {
    min-height: 50vh;
  }
  
  .hero-slide {
    min-height: 50vh;
    background-size: cover;
    background-position: center center;
    padding: 2rem 1rem;
  }
  
  .hero-overlay {
    padding: 1.5rem !important;
    width: 95% !important;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 50vh;
  }
  
  .hero-slider {
    min-height: 50vh;
    width: 100%;
    overflow: hidden;
  }
  
  .hero-slide {
    min-height: 50vh;
    padding: 1.5rem 0.8rem;
    background-size: cover !important;
    background-position: center center !important;
    background-attachment: scroll;
  }
  
  .hero-overlay {
    padding: 1.2rem !important;
    width: 98% !important;
    max-width: 100% !important;
  }
  
  .hero-overlay h1 {
    font-size: 1.4rem !important;
    line-height: 1.3;
  }
  
  .hero-overlay p {
    font-size: 0.85rem !important;
    margin: 0.5rem 0;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
    min-width: auto;
  }
}

.hero-overlay {
  width: min(700px, 90vw);
  color: #fff;
  text-align: center;
  padding: 3rem;
  border-radius: var(--radius-lg);
  background: var(--gradient-hero);
  box-shadow: var(--shadow-soft);
}

.hero-label {
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.hero-overlay h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 15px 30px rgba(29, 154, 91, 0.35);
}

.btn.ghost {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  font-weight: 700;
  min-width: 140px;
  padding: 0.85rem 1.2rem;
}

.btn.ghost:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(29, 154, 91, 0.3);
  border-color: var(--color-primary);
}

/* White button for "تواصل معنا" */
.btn.ghost.contact-btn,
.hero-overlay .btn.ghost,
.contact-card .btn.ghost {
  background: #fff;
  border: 2px solid #fff;
  color: var(--color-primary);
}

.btn.ghost.contact-btn:hover,
.hero-overlay .btn.ghost:hover,
.contact-card .btn.ghost:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Ensure buttons are visible on light backgrounds */
.product-card .btn.ghost {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.product-card .btn.ghost:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn.secondary {
  background: var(--color-secondary);
  color: #fff;
  box-shadow: 0 15px 30px rgba(244, 162, 97, 0.35);
}

.btn.secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 35px rgba(244, 162, 97, 0.4);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 35px rgba(29, 154, 91, 0.4);
}

.grid {
  display: grid;
  gap: 2rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.stat-card {
  padding: 1.8rem;
  border-radius: var(--radius-md);
  background: var(--color-light);
  box-shadow: var(--shadow-sharp);
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  color: var(--color-primary);
  font-weight: 800;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.card {
  border-radius: var(--radius-md);
  padding: 1.5rem;
  background: #fff;
  box-shadow: var(--shadow-sharp);
}

.service-card .icon {
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 1rem;
  background: rgba(29, 154, 91, 0.15);
  display: grid;
  place-items: center;
  color: var(--color-primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.product-card .product-image-link {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.product-card .product-image-link:hover {
  transform: scale(1.02);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.3s ease;
}

.product-card .product-image-link:hover img {
  transform: scale(1.1);
}

.product-card .card-body {
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.badge {
  display: inline-flex;
  background: rgba(29, 154, 91, 0.12);
  color: var(--color-primary);
  padding: 0.25rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.price {
  font-weight: 800;
  color: var(--color-primary);
}

.card-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.card-actions .btn {
  flex: 1;
  min-width: 140px;
  text-align: center;
  white-space: nowrap;
  font-size: 0.95rem;
  padding: 0.85rem 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.card-actions .btn.primary {
  flex: 1.2;
  min-width: 150px;
}
.activities {
  background: var(--color-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sharp);
}

.video-wrapper {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.video-container {
  position: relative;
  width: min(800px, 100%);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.video-container iframe {
  width: 100%;
  border-radius: var(--radius-md);
  display: block;
}

.video-fullscreen-btn {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  z-index: 10;
}

.video-fullscreen-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

.video-container.fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  border-radius: 0;
}

.video-container.fullscreen iframe {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.filters button {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: transparent;
  border-radius: 999px;
  padding: 0.6rem 1.3rem;
  cursor: pointer;
  font-weight: 600;
}

.filters button.is-active,
.filters button:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.product-details-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  position: relative;
}

.product-details-grid {
  position: relative;
  padding: 2rem 0;
}

.product-details-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(29, 154, 91, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(244, 162, 97, 0.05) 0%, transparent 50%),
    linear-gradient(135deg, rgba(29, 154, 91, 0.02) 0%, rgba(244, 162, 97, 0.02) 100%);
  z-index: -1;
  pointer-events: none;
  border-radius: var(--radius-lg);
}

.product-details-grid > * {
  position: relative;
  z-index: 1;
}

.product-gallery {
  display: grid;
  gap: 1rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sharp);
}

.gallery-item img {
  border-radius: var(--radius-md);
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.product-info {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(29, 154, 91, 0.1);
  position: relative;
  overflow: hidden;
}

.product-info::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(29, 154, 91, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
}

.product-info .lead {
  font-size: 1.15rem;
  color: var(--color-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.product-info h1 {
  background: linear-gradient(120deg, var(--color-primary), var(--color-secondary));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  font-size: 2.2rem;
  position: relative;
  z-index: 1;
}

.product-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  background: linear-gradient(135deg, rgba(29, 154, 91, 0.08) 0%, rgba(244, 162, 97, 0.08) 100%);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(29, 154, 91, 0.15);
  margin: 1.5rem 0;
  position: relative;
  z-index: 1;
}

.product-meta > div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-meta span {
  font-size: 0.9rem;
  color: var(--color-gray);
  font-weight: 600;
}

.product-meta strong {
  font-size: 1.1rem;
  color: var(--color-primary);
}

.benefits {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  position: relative;
  z-index: 1;
}

.benefits li {
  padding: 0.8rem 0;
  padding-right: 1.5rem;
  border-bottom: 1px dashed rgba(29, 154, 91, 0.2);
  position: relative;
  transition: padding-right 0.3s ease;
}

.benefits li::before {
  content: "✓";
  position: absolute;
  right: 0;
  color: var(--color-primary);
  font-weight: bold;
  font-size: 1.2rem;
}

.benefits li:hover {
  padding-right: 2rem;
  color: var(--color-primary);
}

.detail-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.detail-actions .btn {
  flex: 1;
  min-width: 140px;
  text-align: center;
  white-space: nowrap;
}

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  z-index: 60;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
  display: block;
  color: #fff;
  font-size: 2rem;
}

.order-form {
  display: grid;
  gap: 1rem;
}

.order-form .form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.order-form label {
  font-weight: 600;
  margin-bottom: 0.3rem;
  display: inline-block;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-family: inherit;
}

.order-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-card {
  background: var(--color-primary);
  color: #fff;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.contact-card ul {
  list-style: none;
  padding: 0;
}

.contact-card li {
  margin-bottom: 0.8rem;
}

.customer-lines p {
  margin: 0.4rem 0;
}

.customer-lines a {
  color: var(--color-primary);
  font-weight: 600;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 1rem;
}

.modal-overlay.is-visible {
  display: flex;
}

.modal-content {
  background: #fff;
  border-radius: var(--radius-lg);
  width: min(520px, 100%);
  padding: 2rem;
  position: relative;
  box-shadow: var(--shadow-soft);
  max-height: 90vh;
  overflow: auto;
  direction: rtl;
  text-align: right;
}

.modal-content label,
.modal-content input,
.modal-content select,
.modal-content textarea {
  direction: rtl;
  text-align: right;
}

.modal-content label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--color-dark);
}

.modal-content label input,
.modal-content label select,
.modal-content label textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-family: inherit;
  font-size: 1rem;
}

/* Hide any text that might display IDs - IDs are for functionality only, not display */
.modal-content label[for*="qo"]::after,
.modal-content label[for*="quickOrder"]::after {
  display: none !important;
}

.modal-close {
  position: absolute;
  top: 1rem;
  inset-inline-end: 1rem;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-gray);
}

.modal-note {
  margin-top: 1rem;
  font-weight: 700;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--color-gray);
  margin-bottom: 1rem;
}

.breadcrumbs span,
.breadcrumbs a {
  color: inherit;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 110;
}

.lightbox-overlay.is-visible {
  display: flex;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.about-hero {
  background: var(--color-light);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.about-hero-text h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
  background: linear-gradient(120deg, #0f1c1a, #1d9a5b);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-hero-text p {
  margin-bottom: 1rem;
}

.about-values {
  margin-top: 1.5rem;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.about-values ul {
  padding-inline-start: 1.2rem;
  margin: 0.8rem 0 0;
  line-height: 2;
}

.about-hero-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 6px solid #fff;
}

.about-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.owner-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.owner-card img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  margin-inline: auto;
  box-shadow: var(--shadow-sharp);
}

.owner-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  text-align: center;
  line-height: 2;
  color: var(--color-gray);
}

.brand-proof {
  position: relative;
  background: linear-gradient(135deg, #0f1c1a, #1d9a5b);
  color: #fff;
  padding: 4rem 0;
  overflow: hidden;
}

.brand-proof::before,
.brand-proof::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(0);
  animation: drift 18s ease-in-out infinite;
}

.brand-proof::before {
  top: -100px;
  inset-inline-start: -80px;
}

.brand-proof::after {
  bottom: -120px;
  inset-inline-end: -60px;
  animation-direction: reverse;
}

.brand-proof-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.brand-proof-logo {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-soft);
  color: var(--color-primary);
}

.brand-proof-logo img {
  width: min(260px, 80%);
  margin-inline: auto;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.35));
}

.brand-proof-logo span {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--color-primary);
}

.brand-proof-content {
  background: rgba(0, 0, 0, 0.25);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.brand-proof-content p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.92);
}

.brand-proof-content ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.6rem;
}

.brand-proof-content li {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  letter-spacing: 0.5px;
}

@keyframes drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(20px, -30px, 0) scale(1.05);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.site-footer {
  background: #081410;
  color: rgba(255, 255, 255, 0.8);
  padding: 2rem 0;
  text-align: center;
}

.site-footer a {
  color: #fff;
}

@media (max-width: 920px) {
  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #fff;
    flex-direction: column;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 1001;
  }

  .card-actions {
    flex-direction: column;
  }

  .detail-actions {
    flex-direction: column;
  }

  .hero-overlay {
    padding: 2rem;
  }

  .hero-slide {
    padding: 2rem;
  }
}

[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .hero-overlay {
  text-align: center;
}

[dir="rtl"] .contact-card li {
  text-align: right;
}

