:root {
  --navy: #1a3a52;
  --navy-dark: #162d3f;
  --gold: #d6a649;
  --gold-soft: #f6e3b4;
  --text: #1c2433;
  --muted: #5b677a;
  --bg: #f5f7fb;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(26, 58, 82, 0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", "Cairo", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(11, 30, 59, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 50px;
  width: auto;
  transition: var(--transition);
}

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

.nav-links {
  display: flex;
  gap: 1.2rem;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--navy);
}

.cta {
  padding: 0.65rem 1.2rem;
  background: var(--navy);
  color: var(--white);
  border-radius: 999px;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
  padding: 4rem 0 5rem;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 1.2rem;
  animation: fadeInDown 0.8s ease-out;
}

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.8rem;
  animation: fadeIn 0.8s ease-out 0.1s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero-sub {
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  animation: fadeIn 0.8s ease-out 0.2s both;
}

.arabic {
  font-family: "Cairo", sans-serif;
  margin-right: 0.4rem;
  color: var(--navy);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  animation: slideInUp 0.8s ease-out 0.3s both;
}

.btn {
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.btn.primary {
  background: var(--gold);
  color: var(--navy-dark);
}

.btn.ghost {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}

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

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  color: var(--muted);
}

.hero-stats strong {
  color: var(--navy);
  font-size: 1.1rem;
  display: block;
}

.hero-media {
  display: flex;
  justify-content: center;
}

.photo-frame {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 420px;
  animation: zoomIn 0.8s ease-out;
}

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

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

.photo-frame:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(11, 30, 59, 0.95);
  color: var(--white);
  padding: 0.7rem 1rem;
  border-radius: 14px;
  font-size: 0.85rem;
}

.badge strong {
  display: block;
  color: var(--gold);
}

section {
  padding: 4rem 0;
}

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

h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 1rem;
  animation: slideInLeft 0.6s ease-out;
}

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

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.about {
  background: var(--white);
}

.credentials {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.credentials strong {
  color: var(--navy);
}

.highlight-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  animation: slideInRight 0.6s ease-out;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(214, 166, 73, 0.1);
  transition: var(--transition);
  z-index: 0;
}

.highlight-card:hover::before {
  left: 100%;
}

.highlight-card > * {
  position: relative;
  z-index: 1;
}

.highlight-card ul {
  margin-top: 1rem;
  padding-left: 1.2rem;
}

.highlight-card li {
  margin-bottom: 0.6rem;
  transition: var(--transition);
}

.highlight-card li:hover {
  margin-left: 0.5rem;
  color: var(--gold-soft);
}

.services {
  background: #1a1a1a;
  color: var(--white);
  padding: 4rem 0;
}

.services h2 {
  color: var(--white);
}

.services .lead {
  color: rgba(255, 255, 255, 0.8);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.service-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  transition: var(--transition);
  animation: fadeIn 0.6s ease-out;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(214, 166, 73, 0.3);
}

.service-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.85) 40%, rgba(0, 0, 0, 0.95) 100%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition);
}

.service-overlay h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  transition: var(--transition);
}

.service-card:hover .service-overlay h3 {
  color: var(--gold);
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  opacity: 0.9;
}

.service-cta:hover {
  color: var(--gold);
  gap: 0.8rem;
  opacity: 1;
}

.service-cta .arrow {
  font-size: 1.2rem;
  transition: var(--transition);
}

.service-card:hover .service-cta .arrow {
  transform: translateX(4px);
}

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

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-card {
    aspect-ratio: 4 / 5;
  }

  .service-overlay {
    padding: 1.5rem 1rem;
  }

  .service-overlay h3 {
    font-size: 1.3rem;
  }

  .service-cta {
    font-size: 0.8rem;
  }
}

.presence {
  background: var(--white);
}

.section-head {
  margin-bottom: 2rem;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.social-card {
  background: var(--bg);
  padding: 1.2rem 1.5rem;
  border-radius: 16px;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  animation: fadeIn 0.6s ease-out;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.social-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
  z-index: 0;
}

.social-card span {
  color: var(--muted);
  display: block;
  margin-bottom: 0.4rem;
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
  font-weight: 500;
}

.social-card strong {
  color: var(--navy);
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.social-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 0.8rem;
  margin-top: 0.8rem;
  position: relative;
  z-index: 1;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.6rem;
  background: rgba(214, 166, 73, 0.08);
  border-radius: 8px;
  transition: var(--transition);
}

.stat-value {
  font-weight: 700;
  color: var(--gold);
  font-size: 0.95rem;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.2;
}

.social-card:hover .stat-item {
  background: rgba(214, 166, 73, 0.15);
}

.social-card > * {
  position: relative;
  z-index: 1;
}

.social-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 12px 25px rgba(214, 166, 73, 0.15);
}

.social-card:hover::after {
  opacity: 0.05;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  animation: slideInUp 0.6s ease-out;
}

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

.video-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(11, 30, 59, 0.1);
  transition: var(--transition);
  cursor: pointer;
  transform: translateZ(0);
  will-change: transform, box-shadow;
}

.video-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 35px rgba(214, 166, 73, 0.2);
}

.video-card:active {
  transform: translateY(-4px) scale(1.01);
}

.video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
  background: #000;
}

.video-card p {
  padding: 1rem;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  background: linear-gradient(135deg, rgba(214, 166, 73, 0.05), rgba(13, 30, 59, 0.05));
  text-align: center;
  transition: var(--transition);
}

.note {
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

/* SHORTS CAROUSEL SECTION */
.shorts-carousel {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.shorts-carousel h2 {
  color: var(--white);
  animation: slideInLeft 0.6s ease-out;
}

.shorts-carousel .lead {
  color: rgba(255, 255, 255, 0.8);
}

.shorts-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  position: relative;
  justify-content: center;
}

.shorts-container {
  width: 100%;
  max-width: 420px;
  height: 680px;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  background: rgba(0, 0, 0, 0.3);
  cursor: grab;
  flex-shrink: 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.shorts-container:active {
  cursor: grabbing;
}

.shorts-track {
  display: flex;
  flex-direction: row;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  height: 100%;
  user-select: none;
}

.short-card {
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  animation: zoomIn 0.6s ease-out;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
}

.short-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}

.short-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 50%);
  padding: 1.5rem 1rem 1rem;
  color: var(--white);
  z-index: 10;
}

.short-counter {
  display: inline-block;
  background: rgba(214, 166, 73, 0.3);
  color: var(--gold);
  padding: 0.4rem 0.8rem;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.short-info p {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border: 2px solid var(--gold);
  background: rgba(214, 166, 73, 0.15);
  color: var(--gold);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  transition: var(--transition);
  position: relative;
  z-index: 5;
}

.carousel-btn:hover {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(214, 166, 73, 0.4);
}

.carousel-btn:active {
  transform: scale(0.95);
}

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.dots-container {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  animation: fadeIn 0.6s ease-out 0.3s both;
}

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

.dot.active {
  background: var(--gold);
  box-shadow: 0 0 12px rgba(214, 166, 73, 0.5);
  width: 12px;
  height: 12px;
}

.dot:hover {
  background: rgba(214, 166, 73, 0.6);
}

@media (max-width: 1024px) {
  .shorts-container {
    max-width: 360px;
    height: 580px;
  }

  .carousel-btn {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .shorts-wrapper {
    gap: 0.8rem;
    flex-wrap: wrap;
  }

  .shorts-container {
    max-width: 320px;
    height: 510px;
    order: 2;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .carousel-btn.prev {
    order: 1;
  }

  .carousel-btn.next {
    order: 3;
  }
}

@media (max-width: 640px) {
  .shorts-wrapper {
    gap: 0.5rem;
  }

  .shorts-container {
    max-width: 100%;
    height: 400px;
    width: 280px;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  .short-card {
    max-height: 400px;
  }

  .short-info {
    padding: 1rem 0.6rem 0.6rem;
  }

  .short-info p {
    font-size: 0.85rem;
  }

  .dots-container {
    gap: 0.4rem;
    margin-top: 1rem;
  }
}

@media (max-width: 480px) {
  .shorts-container {
    max-width: 100%;
    width: 240px;
    height: 360px;
  }

  .carousel-btn {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .short-card {
    max-height: 360px;
  }
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }

  .short-card {
    max-height: 350px;
  }
}

@media (max-width: 480px) {
  .shorts-wrapper {
    grid-template-columns: 32px 1fr 32px;
    gap: 0.5rem;
  }

  .carousel-btn {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .dot {
    width: 8px;
    height: 8px;
  }

  .dot.active {
    width: 10px;
    height: 10px;
  }
}

.quotes {
  background: linear-gradient(135deg, rgba(11, 30, 59, 0.95), rgba(11, 30, 59, 0.85));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.quotes::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(214, 166, 73, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(214, 166, 73, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 1;
  animation: slideInUp 0.6s ease-out;
}

blockquote {
  background: rgba(255, 255, 255, 0.08);
  padding: 2rem;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

blockquote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 10px;
  font-size: 4rem;
  opacity: 0.1;
  font-family: Georgia, serif;
}

blockquote:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px rgba(214, 166, 73, 0.2);
  transform: translateY(-4px);
}

blockquote p {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

blockquote cite {
  color: var(--gold-soft);
  font-style: normal;
  display: block;
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.contact {
  background: linear-gradient(135deg, #fafbfc 0%, #f5f7fb 100%);
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
  animation: slideInUp 0.6s ease-out;
}

.contact-details a {
  padding: 0.6rem 1rem;
  border-radius: 12px;
  border: 2px solid transparent;
  background: var(--white);
  transition: var(--transition);
  color: var(--navy);
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(11, 30, 59, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 140px;
  text-align: center;
}

.contact-details a span {
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-details a strong {
  font-size: 0.95rem;
  color: var(--gold);
}

.contact-details a:hover {
  border-color: var(--gold);
  background: var(--gold-soft);
  color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(214, 166, 73, 0.2);
}

.contact-details a:hover strong {
  color: var(--navy);
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(11, 30, 59, 0.12);
  display: grid;
  gap: 1.2rem;
  animation: slideInUp 0.6s ease-out 0.1s both;
  border: 1px solid rgba(214, 166, 73, 0.1);
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-form input,
.contact-form textarea {
  border: 2px solid rgba(11, 30, 59, 0.15);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(214, 166, 73, 0.1);
  background: rgba(214, 166, 73, 0.02);
}

.contact-form button {
  align-self: flex-start;
}

.form-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0.5rem 0;
}

.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11, 30, 59, 0.15), transparent);
}

.form-divider span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.instagram-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: var(--white);
  border: none;
  padding: 0.85rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(131, 58, 180, 0.3);
}

.instagram-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(131, 58, 180, 0.4);
}

.instagram-btn svg {
  flex-shrink: 0;
}

.site-footer {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(214, 166, 73, 0.03) 10px,
    rgba(214, 166, 73, 0.03) 20px
  );
  pointer-events: none;
  animation: slide 20s linear infinite;
}

@keyframes slide {
  0% { left: -100%; }
  100% { left: 100%; }
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 860px) {
  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
  }

  .cta {
    width: 100%;
    max-width: 200px;
  }

  .hero {
    padding-top: 2.5rem;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-media {
    order: -1;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .video-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100%, 95%);
  }

  .nav {
    padding: 0.8rem 0;
    gap: 0.5rem;
  }

  .brand {
    flex-shrink: 0;
  }

  .brand-logo {
    height: 40px;
  }

  .brand-text {
    font-size: 0.85rem;
  }

  .brand-sub {
    font-size: 0.7rem;
  }

  .nav-links {
    font-size: 0.9rem;
    gap: 0.6rem;
  }

  .cta {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .hero {
    padding: 2rem 0 3rem;
  }

  .hero-content h1 {
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: 0.8rem;
  }

  .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-bottom: 0.6rem;
  }

  .hero-sub {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .arabic {
    font-size: 0.9rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .btn {
    padding: 0.75rem 1.2rem;
    font-size: 0.95rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-stats strong {
    font-size: 1rem;
  }

  .photo-frame {
    max-width: 100%;
    height: auto;
  }

  h2 {
    font-size: 1.5rem;
  }

  .lead {
    font-size: 1rem;
  }

  .split {
    gap: 1.5rem;
  }

  .highlight-card {
    padding: 1.2rem;
  }

  .highlight-card h3 {
    font-size: 1.1rem;
  }

  .social-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .social-stats {
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
  }

  .stat-value {
    font-size: 0.85rem;
  }

  .stat-label {
    font-size: 0.65rem;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .video-card {
    border-radius: 12px;
  }

  .video-card iframe {
    aspect-ratio: 16 / 9;
  }

  .video-card p {
    padding: 0.8rem;
    font-size: 0.9rem;
  }

  .quote-grid {
    grid-template-columns: 1fr;
  }

  blockquote {
    padding: 1.2rem;
  }

  blockquote p {
    font-size: 1rem;
  }

  .contact-form {
    padding: 1.2rem;
    gap: 0.8rem;
  }

  .contact-form label {
    gap: 0.3rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 0.7rem 0.9rem;
    font-size: 1rem;
  }

  .site-footer .container {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  section {
    padding: 2.5rem 0;
  }
}

@media (max-width: 480px) {
  .nav {
    padding: 0.6rem 0;
  }
  .brand-logo {
    height: 35px;
  }

  .nav-links {
    display: none;
  }

  .hero-content h1 {
    font-size: 1.2rem;
  }

  .hero-sub {
    font-size: 0.9rem;
  }

  .hero-actions {
    gap: 0.6rem;
  }

  .btn {
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  .video-grid {
    gap: 0.6rem;
  }

  .cards {
    gap: 1rem;
  }

  .credentials {
    gap: 0.8rem;
  }

  .social-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .social-card {
    padding: 1rem;
  }

  section {
    padding: 2rem 0;
  }
}

@media (max-width: 360px) {
  .container {
    width: 98%;
  }

  .hero-content h1 {
    font-size: 1.1rem;
    line-height: 1.1;
  }

  .eyebrow {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
  }

  h2 {
    font-size: 1.2rem;
  }

  .hero-stats {
    gap: 0.8rem;
    font-size: 0.85rem;
  }

  .video-card p {
    font-size: 0.85rem;
    padding: 0.6rem;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1140px;
  }

  section {
    padding: 5rem 0;
  }

  .hero {
    gap: 4rem;
    padding: 4rem 0 5rem;
  }
}

@media (orientation: landscape) and (max-height: 500px) {
  .hero {
    padding: 1.5rem 0;
  }

  .hero-content h1 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }

  .hero-sub {
    display: none;
  }

  .hero-stats {
    display: none;
  }

  .nav {
    padding: 0.5rem 0;
  }

  section {
    padding: 1.5rem 0;
  }
}

@supports (padding: max(0px)) {
  body {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  .nav {
    padding-left: max(0, env(safe-area-inset-left));
    padding-right: max(0, env(safe-area-inset-right));
  }
}
