/* ============================================
   Abrisham Beauty Clinic
   Emerald + Gold palette (matched to IG)
   ============================================ */

:root {
  --gold: #d3af37;
  --gold-light: #e0c45c;
  --gold-dark: #b49430;
  --gold-glow: rgba(211, 175, 55, 0.15);

  --dark: #021f16;
  --dark-mid: #033d2b;
  --dark-emerald: #056843;
  --dark-surface: #054a32;

  --cream: #f5faf7;
  --cream-mid: #e8f2ec;
  --white: #f9fcfa;

  --teal: #2daf89;
  --teal-light: #70c8a9;
  --frost: rgba(100, 180, 150, 0.12);

  --text-dark: #1a3a2a;
  --text-mid: #4a6b5a;
  --text-light: #edf5f0;
  --text-muted: rgba(237, 245, 240, 0.6);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --shadow-sm: 0 2px 8px rgba(2, 31, 22, 0.06);
  --shadow-md: 0 8px 32px rgba(2, 31, 22, 0.1);
  --shadow-lg: 0 16px 48px rgba(2, 31, 22, 0.14);
  --shadow-gold: 0 8px 32px rgba(211, 175, 55, 0.25);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --font-body: 'Vazirmatn', system-ui, -apple-system, sans-serif;
  --font-heading: 'Vazirmatn', system-ui, sans-serif;
  --font-brand: 'Playfair Display', Georgia, serif;
}

html[dir="ltr"] {
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
}

/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.footer {
  margin-top: auto;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Skip link (a11y)
   ============================================ */

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 10000;
  padding: 12px 20px;
  background: var(--gold);
  color: var(--dark);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
  outline: 2px solid var(--dark-emerald);
  outline-offset: 2px;
}

html[dir="rtl"] .skip-link {
  left: auto;
  right: 16px;
}

/* ============================================
   Language Switch
   ============================================ */

.lang-switch {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 3px;
  z-index: 1001;
}

.lang-btn {
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  transition: var(--transition);
  font-family: 'Inter', system-ui, sans-serif;
}

.lang-btn:hover {
  color: var(--text-light);
}

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

/* ============================================
   Navigation
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(2, 31, 22, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  z-index: 1001;
}

.logo-icon {
  color: var(--gold);
  display: flex;
}

.logo-text {
  font-family: var(--font-brand);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.06);
}

.nav-link--cta {
  background: var(--gold);
  color: var(--dark) !important;
  font-weight: 600;
  padding: 8px 20px;
}

.nav-link--cta:hover {
  background: var(--gold-light) !important;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 31, 22, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav-menu.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    font-size: 1.25rem;
    padding: 12px 24px;
  }

  .nav-link--cta {
    margin-top: 12px;
    padding: 14px 32px;
    font-size: 1.1rem;
  }
}

/* ============================================
   Hero
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-mid) 50%, var(--dark-emerald) 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
}

.hero-orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(211, 175, 55, 0.15), transparent 70%);
  top: -10%;
  right: -10%;
  animation: orbFloat1 12s ease-in-out infinite;
}

.hero-orb--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(45, 175, 137, 0.2), transparent 70%);
  bottom: -10%;
  left: -10%;
  animation: orbFloat2 15s ease-in-out infinite;
}

.hero-orb--3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(5, 104, 67, 0.4), transparent 70%);
  top: 40%;
  left: 30%;
  animation: orbFloat3 10s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-40px, 30px) scale(1.1); }
  66% { transform: translate(20px, -20px) scale(0.95); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(1.1); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, -30px); }
}

/* Botanical decorations */
.hero-botanical {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-leaf {
  position: absolute;
  opacity: 0.06;
  color: var(--teal-light);
}

.hero-leaf--1 {
  top: 8%;
  left: 5%;
  width: 200px;
  transform: rotate(-25deg);
  animation: leafSway1 8s ease-in-out infinite;
}

.hero-leaf--2 {
  bottom: 12%;
  right: 3%;
  width: 160px;
  transform: rotate(15deg) scaleX(-1);
  animation: leafSway2 10s ease-in-out infinite;
}

.hero-leaf--3 {
  top: 30%;
  right: 12%;
  width: 120px;
  transform: rotate(40deg);
  opacity: 0.04;
  animation: leafSway1 12s ease-in-out infinite reverse;
}

@keyframes leafSway1 {
  0%, 100% { transform: rotate(-25deg) translateY(0); }
  50% { transform: rotate(-20deg) translateY(-10px); }
}

@keyframes leafSway2 {
  0%, 100% { transform: rotate(15deg) scaleX(-1) translateY(0); }
  50% { transform: rotate(20deg) scaleX(-1) translateY(-8px); }
}

.hero-silk {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  pointer-events: none;
}

.hero-silk svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 24px 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 20px;
  border: 1px solid rgba(211, 175, 55, 0.3);
  border-radius: 100px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(211, 175, 55, 0.05);
}

.badge-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-heading);
  color: var(--text-light);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title-line {
  display: block;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.5em;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

html[dir="ltr"] .hero-title-line {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.45em;
}

.hero-title-accent {
  display: block;
  font-family: var(--font-brand);
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-doctor {
  color: var(--text-light);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  opacity: 0.5;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}

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

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

.btn-outline {
  border: 1.5px solid rgba(211, 175, 55, 0.4);
  color: var(--gold);
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(211, 175, 55, 0.08);
}

.btn-instagram {
  background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
  color: #fff;
  padding: 16px 40px;
  font-size: 1.1rem;
  border-radius: var(--radius-md);
}

.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(225, 48, 108, 0.3);
}

/* ============================================
   Sections
   ============================================ */

.section {
  padding: 100px 0;
  position: relative;
}

.section--light {
  background: var(--cream);
}

.section--dark {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-mid) 100%);
}

.section--accent {
  background: var(--dark-mid);
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  background: var(--gold-glow);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-tag--light {
  background: rgba(211, 175, 55, 0.1);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
}

.section-title--light {
  color: var(--text-light);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 540px;
  margin: 16px auto 0;
  line-height: 1.8;
}

.section-desc--light {
  color: var(--text-muted);
}

/* Botanical ornament between sections */
.section-ornament {
  display: flex;
  justify-content: center;
  padding: 0;
  margin: -20px 0;
  position: relative;
  z-index: 1;
}

.section-ornament svg {
  color: var(--teal);
  opacity: 0.15;
}

/* ============================================
   About
   ============================================ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-text {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 2;
}

.about-lead {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.about-lead strong {
  color: var(--dark-emerald);
}

.about-lead em {
  font-style: italic;
  color: var(--gold-dark);
}

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(5, 104, 67, 0.1);
  transition: var(--transition);
}

.about-card:hover {
  border-color: rgba(5, 104, 67, 0.25);
  box-shadow: var(--shadow-sm);
}

.about-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  color: var(--dark-emerald);
}

.about-card-icon svg {
  width: 100%;
  height: 100%;
}

.about-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.about-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ============================================
   Services
   ============================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  padding: 32px 24px;
  background: var(--dark-surface);
  border: 1px solid rgba(45, 175, 137, 0.08);
  border-radius: var(--radius-md);
  transition: var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html[dir="rtl"] .service-card::before {
  transform-origin: left;
}

.service-card:hover {
  border-color: rgba(45, 175, 137, 0.2);
  background: rgba(5, 74, 50, 0.7);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

html[dir="rtl"] .service-card:hover::before {
  transform-origin: right;
}

.service-icon {
  width: 56px;
  height: 56px;
  color: var(--teal);
  margin-bottom: 20px;
  opacity: 0.7;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card:hover .service-icon {
  opacity: 1;
  color: var(--gold);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold);
  background: rgba(211, 175, 55, 0.08);
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

html[dir="ltr"] .service-tag {
  text-transform: uppercase;
}

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

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

/* ============================================
   Features / Why Us
   ============================================ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.feature {
  padding: 36px 32px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(5, 104, 67, 0.08);
  transition: var(--transition);
}

.feature:hover {
  border-color: rgba(5, 104, 67, 0.2);
  box-shadow: var(--shadow-md);
}

.feature-number {
  font-family: var(--font-brand);
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--dark-emerald), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
  display: inline-block;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.8;
}

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

/* ============================================
   Service / Subpage hero
   ============================================ */

.service-hero {
  position: relative;
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-mid) 50%, var(--dark-emerald) 100%);
  overflow: hidden;
  padding: 140px 0 80px;
}

.service-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.service-back {
  display: inline-block;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 24px;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.service-back:hover {
  color: var(--gold);
}

.service-page-title {
  font-family: var(--font-heading);
  color: var(--text-light);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.service-page-lead {
  color: var(--text-muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Service article body */
.service-article {
  max-width: 760px;
  margin: 0 auto;
}

.service-article h2 {
  font-family: var(--font-heading);
  color: var(--dark-emerald);
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  font-weight: 700;
  margin-top: 48px;
  margin-bottom: 14px;
  line-height: 1.3;
}

.service-article h2:first-child {
  margin-top: 0;
}

.service-article p {
  color: var(--text-mid);
  font-size: 1.02rem;
  line-height: 2;
  margin-bottom: 12px;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.contact-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(5, 104, 67, 0.1);
  transition: var(--transition);
}

.contact-card:hover {
  border-color: rgba(211, 175, 55, 0.4);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--dark-emerald);
}

.contact-card-icon svg {
  width: 100%;
  height: 100%;
}

.contact-card h2 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.contact-card p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.contact-card-cta {
  margin-top: 8px;
}

.contact-grid .contact-card.reveal:nth-child(1) { transition-delay: 0s; }
.contact-grid .contact-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.contact-grid .contact-card.reveal:nth-child(3) { transition-delay: 0.2s; }

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* Blog index */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1140px;
  margin: 0 auto;
}

.blog-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(5, 104, 67, 0.1);
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html[dir="rtl"] .blog-card::before {
  transform-origin: left;
}

.blog-card:hover {
  border-color: rgba(211, 175, 55, 0.4);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.blog-card:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

html[dir="rtl"] .blog-card:hover::before {
  transform-origin: right;
}

.blog-card-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold-dark);
  background: var(--gold-glow);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 14px;
}

.blog-card-lead {
  flex: 1;
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(5, 104, 67, 0.08);
  font-size: 0.82rem;
}

.blog-card-meta time {
  color: var(--text-mid);
  opacity: 0.7;
}

.blog-card-more {
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-card-more {
  color: var(--gold);
}

.blog-grid .blog-card.reveal:nth-child(1) { transition-delay: 0s; }
.blog-grid .blog-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.blog-grid .blog-card.reveal:nth-child(3) { transition-delay: 0.2s; }

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

/* Blog post (single) — hero with SVG background, content over dark overlay */
.post-hero {
  padding: 140px 0 80px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  isolation: isolate;
}

.post-hero .hero-bg {
  /* SVG bg replaces the orb decor on blog posts */
  display: none;
}

.post-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(2, 31, 22, 0.55) 0%,
    rgba(2, 31, 22, 0.7) 50%,
    rgba(2, 31, 22, 0.92) 100%
  );
  z-index: 0;
  pointer-events: none;
}

.post-hero .service-hero-content {
  position: relative;
  z-index: 1;
}

.post-hero::after {
  /* subtle gold edge separating hero from article body */
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(211, 175, 55, 0.4), transparent);
  z-index: 1;
}

.post-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.post-meta time {
  color: var(--gold);
  font-weight: 500;
}

/* Clickable service cards on home — equal-height tiles via flex */
.service-card-link {
  display: flex;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.services-grid .service-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 1;
}

.services-grid .service-desc {
  flex: 1;
  margin-bottom: 16px;
}

.services-grid .service-tag {
  align-self: flex-start;
}

.service-card-link:hover .service-card {
  border-color: rgba(45, 175, 137, 0.3);
  background: rgba(5, 74, 50, 0.85);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.service-card-link:hover .service-card::before {
  transform: scaleX(1);
  transform-origin: left;
}

html[dir="rtl"] .service-card-link:hover .service-card::before {
  transform-origin: right;
}

.service-card-link:hover .service-icon {
  opacity: 1;
  color: var(--gold);
}

.service-card-more {
  display: inline-block;
  margin-top: 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.service-card-link:hover .service-card-more {
  opacity: 1;
}

/* ============================================
   Gallery
   ============================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  grid-auto-rows: 220px;
}

.gallery-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--dark-mid);
  cursor: default;
  isolation: isolate;
}

.gallery-item img,
.gallery-item video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.06);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(2, 31, 22, 0.85) 100%);
  opacity: 0.7;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 0.95;
}

.gallery-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  color: var(--text-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  transform: translateY(4px);
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
  opacity: 1;
  color: var(--gold-light);
}

.gallery-item--video {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-play-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(2, 31, 22, 0.55);
  backdrop-filter: blur(4px);
  color: var(--gold);
  border: 1px solid rgba(211, 175, 55, 0.4);
  pointer-events: none;
}

html[dir="rtl"] .gallery-play-icon {
  right: auto;
  left: 16px;
}

/* Layout variations: portraits (360x640) span 2 rows, squares span 1, video is hero 2x2 */
.gallery-item:nth-child(4),
.gallery-item:nth-child(5),
.gallery-item:nth-child(6),
.gallery-item:nth-child(7) {
  grid-row: span 2;
}

.gallery-cta {
  text-align: center;
  margin-top: 32px;
}

.gallery-grid .gallery-item.reveal:nth-child(1) { transition-delay: 0s; }
.gallery-grid .gallery-item.reveal:nth-child(2) { transition-delay: 0.06s; }
.gallery-grid .gallery-item.reveal:nth-child(3) { transition-delay: 0.12s; }
.gallery-grid .gallery-item.reveal:nth-child(4) { transition-delay: 0.18s; }
.gallery-grid .gallery-item.reveal:nth-child(5) { transition-delay: 0.24s; }
.gallery-grid .gallery-item.reveal:nth-child(6) { transition-delay: 0.30s; }
.gallery-grid .gallery-item.reveal:nth-child(7) { transition-delay: 0.36s; }
.gallery-grid .gallery-item.reveal:nth-child(8) { transition-delay: 0.42s; }
.gallery-grid .gallery-item.reveal:nth-child(9) { transition-delay: 0.48s; }
.gallery-grid .gallery-item.reveal:nth-child(10) { transition-delay: 0.54s; }

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-item--video {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    gap: 8px;
  }
  .gallery-item--video {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6),
  .gallery-item:nth-child(7) {
    grid-row: span 1;
  }
}

/* ============================================
   Testimonials
   ============================================ */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial {
  position: relative;
  padding: 32px 28px 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(5, 104, 67, 0.1);
  transition: var(--transition);
  overflow: hidden;
}

.testimonial:hover {
  border-color: rgba(211, 175, 55, 0.4);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.testimonial-quote-mark {
  position: absolute;
  top: -10px;
  right: 24px;
  font-family: var(--font-brand);
  font-size: 5.5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.18;
  pointer-events: none;
}

html[dir="rtl"] .testimonial-quote-mark {
  right: auto;
  left: 24px;
  transform: scaleX(-1);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.testimonial-quote {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

html[lang="fa"] .testimonial-quote,
html[lang="ar"] .testimonial-quote {
  font-style: normal;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(5, 104, 67, 0.08);
}

.testimonial-avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dark-emerald), var(--teal));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-brand);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0;
}

.testimonial-author {
  flex: 1;
  min-width: 0;
}

.testimonial-name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.testimonial-info {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--text-mid);
  font-size: 0.82rem;
  margin-top: 2px;
}

.testimonial-dot {
  opacity: 0.5;
}

.testimonials-grid .testimonial.reveal:nth-child(1) { transition-delay: 0s; }
.testimonials-grid .testimonial.reveal:nth-child(2) { transition-delay: 0.08s; }
.testimonials-grid .testimonial.reveal:nth-child(3) { transition-delay: 0.16s; }
.testimonials-grid .testimonial.reveal:nth-child(4) { transition-delay: 0.24s; }

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* ============================================
   Booking
   ============================================ */

.booking-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.booking-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.booking-orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(211, 175, 55, 0.12), transparent 70%);
  top: -20%;
  left: -10%;
}

.booking-orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(45, 175, 137, 0.15), transparent 70%);
  bottom: -20%;
  right: -10%;
}

.booking-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.booking-actions {
  margin-top: 40px;
  margin-bottom: 24px;
}

.booking-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ============================================
   Location
   ============================================ */

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.location-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-top: 16px;
  margin-bottom: 32px;
  line-height: 1.8;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.location-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-mid);
  font-size: 0.95rem;
}

.location-item svg {
  flex-shrink: 0;
  color: var(--dark-emerald);
}

.location-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.location-map-wrap {
  position: relative;
  width: 360px;
  max-width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(211, 175, 55, 0.18);
  box-shadow: var(--shadow-md);
  background: var(--dark);
}

.isfahan-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.location-map-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 55%, rgba(2, 31, 22, 0.35) 100%);
  pointer-events: none;
  z-index: 400;
}

.location-map-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 410;
}

.location-map-rings svg {
  width: 100%;
  height: 100%;
  animation: pulse 4s ease-in-out infinite;
}

.location-map-label {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-family: var(--font-brand);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
  z-index: 420;
  pointer-events: none;
}

html[lang="fa"] .location-map-label {
  font-family: var(--font-body);
  letter-spacing: 0;
  font-size: 1.15rem;
}

/* Leaflet attribution — kept readable but discreet */
.location-map-wrap .leaflet-control-attribution {
  background: rgba(2, 31, 22, 0.7) !important;
  color: rgba(237, 245, 240, 0.55) !important;
  font-size: 0.62rem !important;
  padding: 2px 6px !important;
  backdrop-filter: blur(4px);
}

.location-map-wrap .leaflet-control-attribution a {
  color: var(--gold) !important;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@media (max-width: 768px) {
  .location-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .location-visual {
    order: -1;
  }

  .location-map-wrap {
    width: 280px;
  }
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--dark);
  padding: 48px 0 32px;
  color: var(--text-muted);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(45, 175, 137, 0.08);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
}

.footer-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-light);
}

.footer-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(45, 175, 137, 0.15);
  color: var(--text-muted);
  transition: var(--transition);
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(211, 175, 55, 0.08);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-credit {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(237, 245, 240, 0.2);
}

.footer-credit a {
  color: rgba(45, 175, 137, 0.4);
  transition: var(--transition);
}

.footer-credit a:hover {
  color: var(--teal);
}

@media (max-width: 640px) {
  .footer-top {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-links {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ============================================
   Reveal Animations
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

.services-grid .service-card.reveal:nth-child(1) { transition-delay: 0s; }
.services-grid .service-card.reveal:nth-child(2) { transition-delay: 0.08s; }
.services-grid .service-card.reveal:nth-child(3) { transition-delay: 0.16s; }
.services-grid .service-card.reveal:nth-child(4) { transition-delay: 0.24s; }
.services-grid .service-card.reveal:nth-child(5) { transition-delay: 0.32s; }
.services-grid .service-card.reveal:nth-child(6) { transition-delay: 0.4s; }
.services-grid .service-card.reveal:nth-child(7) { transition-delay: 0.48s; }
.services-grid .service-card.reveal:nth-child(8) { transition-delay: 0.56s; }

.features-grid .feature.reveal:nth-child(1) { transition-delay: 0s; }
.features-grid .feature.reveal:nth-child(2) { transition-delay: 0.1s; }
.features-grid .feature.reveal:nth-child(3) { transition-delay: 0.2s; }
.features-grid .feature.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ============================================
   Language transition
   ============================================ */

.lang-transitioning {
  opacity: 0.3;
  transition: opacity 0.2s ease;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .hero-content {
    padding: 100px 16px 60px;
  }

  .hero-scroll {
    display: none;
  }

  .hero-leaf--1 { width: 120px; }
  .hero-leaf--2 { width: 100px; }
  .hero-leaf--3 { display: none; }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .btn-instagram {
    padding: 14px 32px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

::selection {
  background: rgba(45, 175, 137, 0.25);
  color: var(--dark);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: rgba(45, 175, 137, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(45, 175, 137, 0.5);
}
