@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --navy: #1B2A4A;
  --navy-dark: #111E35;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --white: #FFFFFF;
  --off-white: #F7F5F0;
  --text: #2C2C2C;
  --text-light: #6B6B6B;
  --border: rgba(27,42,74,0.1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--navy);
  padding: 0 48px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo-text { line-height: 1.2; }
.nav-logo-text .brand { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--white); letter-spacing: 0.04em; }
.nav-logo-text .sub { font-size: 8px; font-weight: 400; color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: rgba(255,255,255,0.7); font-size: 12px; font-weight: 500; text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.nav-right { display: flex; align-items: center; gap: 16px; }
.lang-toggle { display: flex; gap: 4px; }
.lang-btn { background: none; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.5); font-size: 10px; font-weight: 600; padding: 4px 10px; border-radius: 3px; cursor: pointer; letter-spacing: 0.06em; transition: all 0.2s; font-family: 'Montserrat', sans-serif; }
.lang-btn.active { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.nav-cta { background: var(--gold); color: var(--navy); font-size: 11px; font-weight: 600; padding: 9px 20px; border-radius: 4px; text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase; transition: background 0.2s; }
.nav-cta:hover { background: var(--gold-light); }

/* ── PAGE WRAPPER ── */
.page { display: none; padding-top: 68px; min-height: 100vh; }
.page.active { display: block; }

/* ── HERO ── */
.hero {
  background: var(--navy);
  padding: 90px 48px 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: repeating-linear-gradient(45deg, rgba(201,168,76,0.03) 0, rgba(201,168,76,0.03) 1px, transparent 1px, transparent 50px),
    repeating-linear-gradient(-45deg, rgba(201,168,76,0.03) 0, rgba(201,168,76,0.03) 1px, transparent 1px, transparent 50px);
}
.hero-inner { max-width: 1100px; margin: 0 auto; position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-tag { display: inline-block; border: 1px solid rgba(201,168,76,0.35); color: var(--gold); font-size: 10px; font-weight: 500; letter-spacing: 0.18em; padding: 5px 14px; border-radius: 2px; text-transform: uppercase; margin-bottom: 22px; }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; color: var(--white); line-height: 1.2; margin-bottom: 16px; }
.hero h1 em { color: var(--gold); font-style: italic; }
.hero p { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 32px; max-width: 420px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-gold { background: var(--gold); color: var(--navy); font-size: 12px; font-weight: 600; padding: 13px 28px; border-radius: 4px; text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase; transition: background 0.2s; border: none; cursor: pointer; font-family: 'Montserrat', sans-serif; }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline { border: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.7); font-size: 12px; font-weight: 500; padding: 13px 28px; border-radius: 4px; text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase; transition: all 0.2s; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(201,168,76,0.2); border-radius: 10px; padding: 36px; }
.hero-card-title { font-size: 10px; font-weight: 500; letter-spacing: 0.15em; color: var(--gold); text-transform: uppercase; margin-bottom: 20px; }
.hero-services { display: flex; flex-direction: column; gap: 14px; }
.hero-svc { display: flex; align-items: center; gap: 14px; padding: 12px; background: rgba(255,255,255,0.04); border-radius: 6px; }
.hero-svc-icon { width: 36px; height: 36px; background: var(--gold); border-radius: 5px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; }
.hero-svc-text strong { display: block; font-size: 12px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.hero-svc-text span { font-size: 10px; color: rgba(255,255,255,0.4); }

/* ── TRUST BAR ── */
.trust-bar { background: var(--gold); padding: 18px 48px; }
.trust-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-around; align-items: center; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-item span { font-size: 11px; font-weight: 600; color: var(--navy); letter-spacing: 0.06em; }

/* ── SECTION ── */
section { padding: 80px 48px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; margin-bottom: 8px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 400; color: var(--navy); margin-bottom: 12px; line-height: 1.2; }
.section-title em { color: var(--gold); font-style: italic; }
.section-sub { font-size: 13px; color: var(--text-light); max-width: 520px; line-height: 1.75; margin-bottom: 48px; }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card { background: var(--off-white); border: 1px solid var(--border); border-top: 3px solid var(--gold); border-radius: 8px; padding: 28px 24px; transition: box-shadow 0.2s; }
.svc-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.svc-icon { font-size: 28px; margin-bottom: 14px; }
.svc-card h3 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.svc-card p { font-size: 12px; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.svc-list { list-style: none; }
.svc-list li { font-size: 11px; color: var(--text-light); padding: 4px 0; padding-left: 14px; position: relative; }
.svc-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.why-card { display: flex; gap: 16px; padding: 20px; background: var(--white); border: 1px solid var(--border); border-radius: 8px; }
.why-num { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 300; color: var(--gold); line-height: 1; flex-shrink: 0; width: 36px; }
.why-body h4 { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.why-body p { font-size: 11px; color: var(--text-light); line-height: 1.65; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-badge { background: var(--navy); border-radius: 10px; padding: 40px; }
.about-badge-title { font-size: 10px; font-weight: 600; letter-spacing: 0.16em; color: var(--gold); text-transform: uppercase; margin-bottom: 24px; }
.about-stat { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.about-stat:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.about-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300; color: var(--gold); }
.about-stat-label { font-size: 11px; color: rgba(255,255,255,0.45); letter-spacing: 0.06em; }
.about-text h2 { font-family: 'Cormorant Garamond', serif; font-size: 34px; font-weight: 400; color: var(--navy); margin-bottom: 16px; line-height: 1.25; }
.about-text p { font-size: 13px; color: var(--text-light); line-height: 1.8; margin-bottom: 14px; }
.about-certs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.cert-tag { background: var(--off-white); border: 1px solid var(--border); font-size: 10px; font-weight: 600; color: var(--navy); padding: 6px 14px; border-radius: 20px; letter-spacing: 0.06em; }

/* ── CONTACT / BOOKING ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; color: var(--navy); margin-bottom: 24px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 20px; }
.contact-icon { width: 40px; height: 40px; background: var(--off-white); border: 1px solid var(--border); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-item-body strong { display: block; font-size: 11px; font-weight: 600; color: var(--navy); letter-spacing: 0.06em; margin-bottom: 3px; }
.contact-item-body span { font-size: 12px; color: var(--text-light); }

.booking-form { background: var(--off-white); border: 1px solid var(--border); border-radius: 10px; padding: 36px; }
.booking-form h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; color: var(--navy); margin-bottom: 6px; }
.booking-form .form-sub { font-size: 11px; color: var(--text-light); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: 10px; font-weight: 600; color: var(--navy); letter-spacing: 0.08em; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea {
  background: var(--white); border: 1px solid var(--border); border-radius: 5px;
  padding: 11px 14px; font-size: 12px; color: var(--text);
  font-family: 'Montserrat', sans-serif; transition: border-color 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-success { display: none; text-align: center; padding: 20px; background: #f0faf0; border: 1px solid #b0ddb0; border-radius: 6px; font-size: 13px; color: #2d7d2d; margin-top: 14px; }

/* ── FOOTER ── */
footer { background: var(--navy-dark); padding: 40px 48px 24px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer-brand .brand-name { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--white); margin-bottom: 6px; }
.footer-brand p { font-size: 11px; color: rgba(255,255,255,0.35); line-height: 1.7; max-width: 240px; }
.footer-col h4 { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; color: var(--gold); text-transform: uppercase; margin-bottom: 14px; }
.footer-col a, .footer-col p { display: block; font-size: 11px; color: rgba(255,255,255,0.4); text-decoration: none; margin-bottom: 8px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 10px; color: rgba(255,255,255,0.2); letter-spacing: 0.06em; }

/* ── RTL FARSI ── */
[lang="fa"] body, body.fa { direction: rtl; }
.fa-text { display: none; }
body.fa .fa-text { display: block; }
body.fa .en-text { display: none; }
body.fa { direction: rtl; }
body.fa nav { direction: rtl; }
body.fa .hero-inner { direction: rtl; }

@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero-inner, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  section { padding: 60px 20px; }
  .hero { padding: 60px 20px; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
