/* ===== AL QUDRA EES — Premium Visual System ===== */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --bg-dark: #0a0a0b;
  --bg-card: #121214;
  --bg-card-hover: #1a1a1e;
  --gold: #c9a227;
  --gold-light: #e5c76b;
  --gold-dim: #8b6914;
  --text: #f0f0f0;
  --text-muted: #a0a0a0;
  --border: rgba(201, 162, 39, 0.2);
  --shadow-gold: 0 0 40px rgba(201, 162, 39, 0.15);
  --font-heading: 'Cinzel', serif;
  --font-body: 'Cormorant Garamond', Georgia, serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#pricing {
  scroll-margin-top: 120px;
}

body {
  font-family: var(--font-body);
  margin: 0;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.7;
  font-size: 18px;
  overflow-x: hidden;
  animation: pageLoad 1s ease-out;
}

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

/* ----- Header & Nav ----- */
header {
  background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.8) 100%);
  padding: 18px 24px;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  animation: slideDown 0.6s ease-out;
}

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

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

nav > div:first-child {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: var(--gold);
}

nav a {
  color: var(--text);
  text-decoration: none;
  margin-left: 28px;
  font-weight: 600;
  letter-spacing: 0.05em;
  position: relative;
  transition: color var(--transition);
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

nav a:hover {
  color: var(--gold-light);
}

nav a:hover::after {
  width: 100%;
}

.lang-toggle {
  margin-left: 24px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all var(--transition);
}

.lang-toggle:hover {
  color: var(--gold-light);
  border-color: rgba(201, 162, 39, 0.6);
  background: rgba(255, 255, 255, 0.02);
}

/* ----- Hero ----- */
.hero {
  min-height: 100vh;
  background: 
    linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(10,10,11,0.6) 50%, rgba(0,0,0,0.85) 100%),
    url('https://images.unsplash.com/photo-1712959108949-9adc82bed883?w=1920&q=85') center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}

.hero > div {
  position: relative;
  z-index: 1;
  max-width: 800px;
  animation: heroFadeIn 1.2s ease-out 0.2s both;
}

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

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 20px;
  letter-spacing: 0.08em;
  color: #fff;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  letter-spacing: 0.02em;
}

.hero .btn-primary {
  display: inline-block;
  background: var(--gold);
  color: #000;
  padding: 16px 40px;
  border: none;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.3);
}

.hero .btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 162, 39, 0.4);
}

.hero .btn-primary:active {
  transform: translateY(0);
}

/* ----- Page hero (for inner pages) ----- */
.page-hero {
  min-height: 50vh;
  background: 
    linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(10,10,11,0.7) 100%),
    url('https://images.unsplash.com/photo-1712959108949-9adc82bed883?w=1920&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.08em;
  margin: 0;
  animation: heroFadeIn 0.8s ease-out both;
}

/* ----- Container & Sections ----- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

.container .section-title,
.container > h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  color: var(--text);
  animation: fadeInUp 0.8s ease-out both;
}

.container > p {
  max-width: 720px;
  margin-bottom: 16px;
  color: var(--text-muted);
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.section-intro {
  font-size: 1.15rem;
  margin-bottom: 24px;
}

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

/* ----- Grid & Cards ----- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.card {
  background: var(--bg-card);
  padding: 36px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.7s ease-out both;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }
.card:nth-child(6) { animation-delay: 0.6s; }

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dim));
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  border-color: rgba(201, 162, 39, 0.35);
  box-shadow: var(--shadow-gold);
}

.card:hover::before {
  opacity: 1;
}

.card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  color: var(--gold-light);
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
}

.card.card-image {
  background-size: cover;
  background-position: center;
  color: #fff;
  min-height: 200px;
}
.card.card-image.card-bedroom { background-image: url('photo_2026-03-11_21-13-05.jpg'); }
.card.card-image.card-kitchen { background-image: url('photo_2026-03-11_21-07-55.jpg'); }
.card.card-image.card-cinema { background-image: url('123.jpg'); }
.card.card-image.card-pool { background-image: url('11233.jpg'); }
.card.card-image.card-sauna { background-image: url('112.jpg'); }
.card.card-image.card-living { background-image: url('11111.jpg'); }
.card.card-image.card-medical { background-image: url('12123.jpg'); }
.card.card-image.card-gym { background-image: url('gym.jpg'); }

.card.card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.85) 100%);
  border-radius: var(--radius);
}

.card.card-image h3,
.card.card-image p {
  position: relative;
  z-index: 1;
  color: #fff;
}

.card.card-image p {
  color: rgba(255,255,255,0.85);
}

/* ----- Pricing ----- */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.price-card {
  background: var(--bg-card);
  padding: 44px 36px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
  text-align: center;
  animation: fadeInUp 0.7s ease-out both;
  display: flex;
  flex-direction: column;
}

.price-card.active {
  border-color: rgba(201, 162, 39, 0.7);
  box-shadow: 0 0 40px rgba(201, 162, 39, 0.35);
  transform: translateY(-4px);
}

.price-card:nth-child(1) { animation-delay: 0.15s; }
.price-card:nth-child(2) { animation-delay: 0.25s; }
.price-card:nth-child(3) { animation-delay: 0.35s; }

.price-card:hover {
  border-color: rgba(201, 162, 39, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.price-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  color: var(--text);
}

.price {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin: 20px 0 24px;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.price-card p {
  margin: 8px 0;
  color: var(--text-muted);
  font-size: 1rem;
}

/* Emphasis for USDT payment cards */
#pay-summary-card h3,
#pay-usdt-card h3 {
  font-size: 1.6rem;
  letter-spacing: 0.12em;
}

#pay-summary-card p,
#pay-usdt-card p {
  font-size: 1.1rem;
}

.price-card button {
  margin-top: auto;
  margin-bottom: 0;
  background: var(--gold);
  color: #000;
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all var(--transition);
}

.price-card button:hover {
  background: var(--gold-light);
  transform: scale(1.03);
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.35);
}

/* ----- USDT payment QR & timer ----- */
.usdt-qr-timer {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin: 16px 0 8px;
}

.usdt-qr-placeholder {
  border-radius: 8px;
  border: 1px dashed rgba(201, 162, 39, 0.6);
  padding: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

.usdt-qr-placeholder img {
  max-width: 100%;
  height: auto;
  display: block;
}

.usdt-timer {
  text-align: left;
}

.usdt-timer p:first-child {
  margin: 0 0 4px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.usdt-timer p#pay-usdt-timer {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: var(--gold-light);
}

.plan-toggle {
  margin-top: 12px;
  margin-bottom: 4px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}

.plan-toggle:hover {
  color: var(--gold-light);
  border-color: rgba(201, 162, 39, 0.6);
  background: rgba(255, 255, 255, 0.02);
}

.plan-details {
  margin-top: 12px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.plan-details.open {
  max-height: 400px;
  opacity: 1;
}

.plan-deposit {
  margin-top: 16px;
}

/* ----- Booking block ----- */
#booking {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: radial-gradient(circle at top left, rgba(201, 162, 39, 0.08), transparent 55%);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  margin-top: 24px;
  align-items: start;
}

.booking-highlight {
  padding-right: 12px;
}

.booking-highlight p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.booking-metrics {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.booking-metric {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.35);
  background: rgba(0, 0, 0, 0.4);
  color: var(--gold-light);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-form {
  background: rgba(0, 0, 0, 0.55);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 28px 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.booking-form h3 {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
  margin-top: 12px;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.booking-field label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.booking-field input,
.booking-field select {
  background: #000;
  border-radius: 6px;
  border: 1px solid var(--border);
  padding: 10px 12px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.booking-field input:focus,
.booking-field select:focus {
  outline: none;
  border-color: rgba(201, 162, 39, 0.7);
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.35);
}

.booking-actions {
  grid-column: 1 / -1;
  margin-top: 8px;
}

.booking-actions .btn-primary {
  width: 100%;
  text-align: center;
}

/* ----- Buttons (global) ----- */
button,
.btn-primary {
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
}

a[href="contact.html"] button,
a[href="contact.html"].btn-primary {
  text-decoration: none;
  color: inherit;
}

/* ----- Footer ----- */
footer {
  background: linear-gradient(180deg, #050506 0%, #000 100%);
  padding: 48px 24px;
  text-align: center;
  margin-top: 80px;
  border-top: 1px solid var(--border);
}

footer p {
  margin: 6px 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ----- Contact page ----- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.contact-item {
  background: var(--bg-card);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
  animation: fadeInUp 0.6s ease-out both;
}

.contact-item:nth-child(1) { animation-delay: 0.1s; }
.contact-item:nth-child(2) { animation-delay: 0.2s; }
.contact-item:nth-child(3) { animation-delay: 0.3s; }

.contact-item:hover {
  border-color: rgba(201, 162, 39, 0.35);
  box-shadow: var(--shadow-gold);
}

.contact-item .label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-item .value {
  font-size: 1.15rem;
  color: var(--text);
}

.contact-item .value a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color var(--transition);
}

.contact-item .value a:hover {
  color: var(--gold);
}

/* ----- Membership ----- */
.membership-section {
  margin-bottom: 48px;
  animation: fadeInUp 0.7s ease-out both;
}

.membership-section h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin: 40px 0 16px;
  color: var(--gold-light);
}

.membership-section h2:first-child {
  margin-top: 0;
}

/* ----- Utility ----- */
.animate-in {
  animation: fadeInUp 0.8s ease-out both;
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  nav a {
    margin-left: 16px;
    margin-right: 16px;
  }
  .hero {
    background-attachment: scroll;
  }
  .container {
    padding: 48px 20px;
  }
  .booking-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
}
