/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --white: #ffffff;
  --off-white: #f8f7f5;
  --light-gray: #f0eeeb;
  --mid-gray: #9a9690;
  --dark-gray: #3a3733;
  --near-black: #1a1917;
  --gold: #b8972a;
  --gold-light: #d4b24a;
  --gold-pale: #f5edcc;
  --green: #2d6a4f;
  --green-light: #40916c;
  --green-pale: #d8f3dc;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', Arial, sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.13);
  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--near-black);
  background: var(--white);
  line-height: 1.7;
  font-size: 15px;
  overflow-x: hidden;
}

body[dir="rtl"] { font-family: 'Segoe UI', Tahoma, Arial, sans-serif; }

img { width: 100%; height: 100%; object-fit: cover; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-tag.gold { color: var(--gold-light); }

/* ===== FIXED CTA BAR ===== */
.cta-bar {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.05em;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.25); }
.cta-phone { background: var(--near-black); color: var(--gold-light); }
.cta-wa { background: #25D366; color: white; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(184,151,42,0.15);
  backdrop-filter: blur(12px);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-tree { font-size: 1.8rem; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--near-black); letter-spacing: 0.1em; }
.logo-sub { font-size: 0.65rem; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark-gray);
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--near-black); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.lang-switcher { display: flex; gap: 4px; margin-left: 16px; }
.lang-btn {
  padding: 4px 8px;
  border: 1px solid var(--light-gray);
  background: transparent;
  border-radius: var(--radius);
  font-size: 0.68rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.08em;
  transition: all var(--transition);
  color: var(--mid-gray);
}
.lang-btn:hover, .lang-btn.active { background: var(--gold); color: white; border-color: var(--gold); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--near-black); display: block; transition: all var(--transition); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--near-black);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(184,151,42,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(45,106,79,0.10) 0%, transparent 50%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,25,23,0.95) 0%, rgba(26,25,23,0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 60px 24px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid rgba(184,151,42,0.5);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease both;
}

.hero-title {
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s 0.2s ease both;
  font-weight: 300;
}
.hero-gold { color: var(--gold-light); font-style: italic; }

.hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 40px;
  animation: fadeInUp 0.8s 0.4s ease both;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.6s ease both;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeIn 1s 1s ease both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(184,151,42,0.6));
  animation: scrollAnim 2s ease-in-out infinite;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--near-black);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,151,42,0.3); }
.btn-primary.large { padding: 18px 40px; font-size: 0.85rem; }
.btn-primary.mt-2 { margin-top: 24px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }
.btn-secondary.large { padding: 18px 40px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 40px;
  background: transparent;
  color: var(--near-black);
  border: 1.5px solid var(--near-black);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.btn-outline:hover { background: var(--near-black); color: var(--white); }

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #25D366;
  color: white;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.btn-wa:hover { background: #1ebe5d; transform: translateY(-2px); }
.btn-wa.large { padding: 18px 40px; font-size: 0.85rem; }

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--near-black);
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 12px 40px; }
.trust-num { font-family: var(--font-display); font-size: 2.2rem; color: var(--gold-light); font-weight: 700; line-height: 1; }
.trust-label { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.trust-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.1); }

/* ===== ABOUT ===== */
.about {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.about-img-wrap { position: relative; }
.about-img {
  border-radius: var(--radius-lg);
  height: 500px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.about-badge-img {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--near-black);
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.badge-gold { color: var(--gold-light); font-family: var(--font-display); font-size: 1rem; font-style: italic; }

.about-text h2 { margin-bottom: 20px; color: var(--near-black); }
.about-text p { color: var(--mid-gray); margin-bottom: 24px; }

.about-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 8px; }
.about-list li { font-size: 0.85rem; color: var(--dark-gray); font-weight: 500; }

/* ===== SERVICES PREVIEW ===== */
.services-preview {
  background: var(--off-white);
  padding: 100px 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 { color: var(--near-black); }
.section-header.light h2 { color: var(--white); }
.section-header.light .section-tag { color: var(--gold-light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: block;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured-card { background: var(--near-black); color: var(--white); }
.service-card.featured-card h3 { color: var(--gold-light); }
.service-card.featured-card p { color: rgba(255,255,255,0.65); }
.service-card.featured-card .card-arrow { color: var(--gold-light); }

.service-icon { font-size: 2rem; margin-bottom: 20px; }
.service-card h3 { color: var(--near-black); margin-bottom: 12px; font-size: 1.2rem; }
.service-card p { color: var(--mid-gray); font-size: 0.85rem; line-height: 1.7; margin-bottom: 20px; }
.card-arrow { font-size: 1.2rem; color: var(--gold); font-family: var(--font-body); }

.section-cta { text-align: center; margin-top: 48px; }

/* ===== WHY US ===== */
.why-us {
  background: var(--near-black);
  padding: 100px 24px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-card { padding: 32px 0; border-top: 1px solid rgba(255,255,255,0.1); }
.why-num { font-family: var(--font-display); font-size: 3rem; color: rgba(184,151,42,0.2); font-weight: 700; margin-bottom: 16px; }
.why-card h3 { color: var(--gold-light); font-family: var(--font-display); margin-bottom: 12px; font-size: 1.2rem; }
.why-card p { color: rgba(255,255,255,0.55); font-size: 0.85rem; line-height: 1.8; }

/* ===== GALLERY PREVIEW ===== */
.gallery-preview { padding: 100px 24px; }

.gallery-grid-home {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
  display: block;
}
.gallery-item img { transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(26,25,23,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-hover span {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
}
.gallery-item:hover .gallery-hover { opacity: 1; }

.gi-tall { grid-row: span 2; }
.gi-wide { grid-column: span 2; }

/* ===== CONTACT CTA ===== */
.contact-cta {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  padding: 100px 24px;
  text-align: center;
}

.cta-content { max-width: 700px; margin: 0 auto; }
.cta-content h2 { color: var(--white); margin-bottom: 20px; }
.cta-content p { color: rgba(255,255,255,0.8); margin-bottom: 40px; font-size: 1rem; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer { background: var(--near-black); padding: 80px 24px 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.logo-tree-f { font-size: 2rem; }
.footer-name { display: block; font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--white); letter-spacing: 0.1em; }
.footer-sub { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.82rem; line-height: 1.8; }

.footer-links h4, .footer-contact h4, .footer-hours h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.footer-links a { display: block; color: rgba(255,255,255,0.5); font-size: 0.82rem; margin-bottom: 10px; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact p { color: rgba(255,255,255,0.5); font-size: 0.82rem; margin-bottom: 10px; }
.footer-contact a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-contact a:hover { color: var(--gold-light); }
.footer-hours p { color: rgba(255,255,255,0.5); font-size: 0.82rem; margin-bottom: 10px; }

.footer-lang { display: flex; gap: 6px; margin-top: 20px; }
.lang-btn-f {
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: rgba(255,255,255,0.4);
  font-size: 0.68rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.lang-btn-f:hover { border-color: var(--gold); color: var(--gold); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.25); font-size: 0.75rem; }
.footer-bottom a { color: var(--gold); }

/* ===== SERVICES PAGE ===== */
.page-hero {
  min-height: 45vh;
  background: var(--near-black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(184,151,42,0.1) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); font-size: clamp(2.5rem, 5vw, 4.5rem); }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 600px; margin: 16px auto 0; }

/* ===== SERVICES FULL ===== */
.services-full { padding: 100px 24px; max-width: 1200px; margin: 0 auto; }
.services-full-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

.service-detail-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  padding: 40px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  background: var(--white);
}
.service-detail-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.service-icon-lg { font-size: 2.5rem; text-align: center; padding-top: 8px; }
.service-detail-card h3 { color: var(--near-black); margin-bottom: 10px; }
.service-detail-card p { color: var(--mid-gray); font-size: 0.85rem; }

/* COFFIN SHOWCASE */
.coffin-section {
  background: var(--off-white);
  padding: 100px 24px;
}
.coffin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.coffin-img { border-radius: var(--radius-lg); height: 400px; object-fit: cover; }
.coffin-text h2 { margin-bottom: 20px; }
.coffin-text p { color: var(--mid-gray); margin-bottom: 16px; }

/* PROCESS */
.process { padding: 100px 24px; max-width: 1200px; margin: 0 auto; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 60px; }
.process-step { text-align: center; }
.step-num {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.4rem; color: var(--gold);
  margin: 0 auto 20px;
}
.process-step h3 { font-size: 1rem; margin-bottom: 10px; }
.process-step p { font-size: 0.82rem; color: var(--mid-gray); }
.process-arrow { align-self: center; text-align: center; color: var(--gold); font-size: 1.5rem; }

/* ===== GALLERY PAGE ===== */
.gallery-full { padding: 80px 24px; max-width: 1200px; margin: 0 auto; }
.gallery-tabs { display: flex; gap: 12px; margin-bottom: 48px; flex-wrap: wrap; }
.gallery-tab {
  padding: 8px 24px;
  border: 1.5px solid var(--light-gray);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  background: transparent;
  transition: all var(--transition);
}
.gallery-tab.active, .gallery-tab:hover { background: var(--near-black); color: var(--gold-light); border-color: var(--near-black); }

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-full-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.gallery-full-item img { height: 280px; }
.gallery-full-item.tall img { height: 420px; }

/* ===== MAP PAGE ===== */
.map-info { padding: 80px 24px; max-width: 1200px; margin: 0 auto; }
.map-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.info-block { margin-bottom: 32px; }
.info-block h3 { font-family: var(--font-body); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; font-weight: 600; }
.info-block p, .info-block a { font-size: 1rem; color: var(--dark-gray); line-height: 1.8; display: block; }
.info-block a:hover { color: var(--gold); }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.map-embed iframe { width: 100%; height: 450px; border: none; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; max-width: 1200px; margin: 0 auto; padding: 80px 24px; }
.contact-form-wrap h2 { margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: var(--font-body);
  background: var(--white);
  transition: border-color var(--transition);
  color: var(--near-black);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-info { padding-top: 20px; }
.contact-info h2 { margin-bottom: 32px; }
.contact-method {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 24px 0; border-bottom: 1px solid var(--light-gray);
}
.contact-method-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 4px; }
.contact-method h4 { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; font-family: var(--font-body); font-weight: 600; }
.contact-method a, .contact-method p { color: var(--dark-gray); font-size: 0.95rem; display: block; margin-bottom: 4px; }
.contact-method a:hover { color: var(--gold); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scrollAnim { 0%, 100% { transform: scaleY(0.6); opacity: 0.5; } 50% { transform: scaleY(1); opacity: 1; } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid, .coffin-grid, .map-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-img { height: 380px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: var(--white); flex-direction: column; align-items: center; justify-content: center; gap: 32px; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 1rem; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid-home { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gi-tall { grid-row: span 1; }
  .gi-wide { grid-column: span 2; }
  .gallery-masonry { grid-template-columns: 1fr 1fr; }
  .trust-strip { flex-direction: column; gap: 0; }
  .trust-divider { width: 40px; height: 1px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-bar { bottom: 16px; right: 16px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .cta-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .gallery-grid-home { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}

/* ===== RTL (Arabic) ===== */
[dir="rtl"] .about-grid { direction: rtl; }
[dir="rtl"] .nav-links { flex-direction: row-reverse; }
[dir="rtl"] .hero-btns { flex-direction: row-reverse; }
[dir="rtl"] .footer-grid { direction: rtl; }
[dir="rtl"] .service-detail-card { direction: rtl; }
[dir="rtl"] .cta-bar { right: auto; left: 24px; }
[dir="rtl"] .btn-primary.mt-2 { margin-right: 0; }
