:root {
  --black: #050505;
  --black-soft: #0b0b0b;
  --black-card: #111111;
  --gold: #d4af37;
  --gold-dark: #a98520;
  --white: #ffffff;
  --gray: #b8b8b8;
  --gray-soft: #e8e8e8;
  --border: rgba(212, 175, 55, 0.24);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 22px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
}

body.rtl {
  direction: rtl;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.brand-mer {
  color: var(--gold);
}

.brand-thatun {
  color: var(--white);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.84);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.16);
}

.navbar {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.brand-logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(212, 175, 55, 0.16));
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  letter-spacing: 0.8px;
}

.brand-name {
  font-size: 22px;
  font-weight: 900;
}

.brand-text small {
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 3px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.lang-btn {
  border: none;
  cursor: pointer;
  color: var(--gray-soft);
  background: transparent;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.lang-btn.active {
  background: var(--gold);
  color: #111111;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  min-height: 44px;
  padding: 12px 22px;
  font-weight: 900;
  letter-spacing: 0.2px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: 0.2s ease;
  white-space: nowrap;
}

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

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #f4d46c);
  color: #111111;
  box-shadow: 0 12px 34px rgba(212, 175, 55, 0.22);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #f4d46c, var(--gold));
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.btn-outline:hover {
  border-color: var(--gold);
}

.btn-large {
  min-height: 54px;
  padding-inline: 28px;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 16px 70px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 15%, rgba(212, 175, 55, 0.18), transparent 32%),
    radial-gradient(circle at 90% 70%, rgba(212, 175, 55, 0.12), transparent 28%),
    linear-gradient(135deg, #030303, #111111 58%, #050505);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 52px 52px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  text-align: center;
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}

.hero-logo {
  width: min(340px, 78vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 46px rgba(212, 175, 55, 0.22));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  margin-bottom: 22px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-size: 13px;
}

.hero-title {
  font-size: clamp(44px, 8vw, 92px);
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 22px;
  font-weight: 900;
}

.hero-title-transfer {
  display: block;
  margin-top: 16px;
  color: var(--gold);
  font-size: clamp(18px, 2.4vw, 30px);
  line-height: 1;
  letter-spacing: clamp(8px, 1.8vw, 18px);
  font-weight: 800;
}

.hero-subtitle {
  max-width: 760px;
  margin: 0 auto 34px;
  color: var(--gray-soft);
  font-size: clamp(18px, 2.3vw, 25px);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 50px;
}

.hero-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 780px;
  margin-inline: auto;
}

.hero-info div {
  padding: 20px 16px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(12px);
}

.hero-info strong {
  display: block;
  color: var(--gold);
  font-size: 26px;
  line-height: 1;
  margin-bottom: 8px;
}

.hero-info span {
  color: var(--gray-soft);
  font-size: 14px;
}

.section {
  padding: 92px 0;
}

.intro-section,
.gallery-section,
.contact-section {
  background: var(--black);
}

.services-section,
.cta-section {
  background: var(--black-soft);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 48px;
}

.intro-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--black-card);
}

.image-card img {
  width: 100%;
  height: 100%;
  max-height: 580px;
  object-fit: cover;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 13px;
}

.intro-content h2,
.section-heading h2,
.cta-box h2,
.contact-brand-title {
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.contact-brand-title {
  font-weight: 900;
}

.contact-brand-transfer {
  display: block;
  margin-top: 10px;
  color: var(--gold);
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: 8px;
}

.intro-content p,
.section-heading p,
.cta-box p,
.contact-grid p {
  color: var(--gray);
  font-size: 17px;
  margin-bottom: 18px;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-soft);
}

.feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold);
  font-weight: 900;
  flex: 0 0 auto;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  padding: 32px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    var(--black-card);
  transition: 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.42);
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold);
  font-size: 28px;
  margin-bottom: 22px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-item {
  border: 1px solid rgba(212, 175, 55, 0.16);
  background: var(--black-card);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 0.78;
  padding: 0;
  transition: 0.2s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.5);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 46px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background:
    radial-gradient(circle at 15% 10%, rgba(212, 175, 55, 0.18), transparent 32%),
    linear-gradient(135deg, #101010, #050505);
  box-shadow: var(--shadow);
}

.cta-box p {
  max-width: 680px;
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 36px;
  align-items: start;
}

.contact-card {
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--black-card);
  box-shadow: var(--shadow);
}

.contact-row {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-row:first-child {
  padding-top: 0;
}

.contact-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.contact-label {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.9px;
}

.contact-link {
  color: var(--white);
  font-weight: 900;
}

.contact-link:hover {
  color: var(--gold);
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.16);
  background: #030303;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--gray);
}

.footer-inner strong {
  color: var(--white);
}

.footer-whatsapp {
  color: var(--gold);
  font-weight: 900;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 98;
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #25d366;
  color: #081d10;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.26);
}

body.rtl .floating-whatsapp {
  right: auto;
  left: 18px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.88);
}

.lightbox.active {
  display: grid;
}

.lightbox img {
  width: min(100%, 1100px);
  max-height: 84vh;
  object-fit: contain;
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.26);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 26px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

body.rtl .lightbox-close {
  right: auto;
  left: 26px;
}

@media (max-width: 980px) {

  .intro-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .navbar {
    min-height: 82px;
  }

  .brand-logo {
    width: 58px;
    height: 58px;
  }

  .brand {
    gap: 9px;
  }

  .brand-name {
    font-size: 15px;
  }

  .brand-text small {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-actions>.btn {
    display: none;
  }

  .lang-switcher {
    gap: 3px;
    padding: 4px;
  }

  .lang-btn {
    padding: 6px 7px;
    font-size: 11px;
  }

  .hero {
    padding-top: 126px;
  }

  .hero-logo {
    width: min(250px, 78vw);
  }

  .hero-title {
    letter-spacing: -1px;
  }

  .hero-title-transfer {
    letter-spacing: 8px;
  }

  .hero-info {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .section {
    padding: 68px 0;
  }

  .intro-content h2,
  .section-heading h2,
  .cta-box h2,
  .contact-brand-title {
    font-size: 32px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .cta-box {
    padding: 28px;
    border-radius: 24px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-whatsapp {
    left: 16px;
    right: 16px;
    bottom: 14px;
  }

  body.rtl .floating-whatsapp {
    left: 16px;
    right: 16px;
  }
}

@media (max-width: 420px) {
  .brand-text {
    display: none;
  }

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

  .btn {
    padding-inline: 18px;
  }
}