/* ===== Al Amira Travel - WordPress Theme ===== */
/* Matches the original React design exactly */

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

:root {
  /* Exact colors from the React theme */
  --bg:          hsl(158, 35%, 7%);
  --bg-2:        hsl(158, 30%, 9%);
  --bg-3:        hsl(158, 30%, 8%);
  --bg-card:     hsl(158, 30%, 11%);
  --bg-card-2:   hsl(158, 28%, 11%);
  --bg-card-3:   hsl(158, 30%, 10%);
  --border:      hsl(158, 20%, 18%);
  --gold:        hsl(43, 62%, 52%);
  --gold-light:  hsl(43, 62%, 62%);
  --gold-dim:    hsl(43, 15%, 60%);
  --gold-text:   hsl(43, 30%, 90%);
  --text-muted:  hsl(43, 15%, 60%);
  --text-dim:    hsl(43, 15%, 55%);
  --white:       #ffffff;
  --emerald:     hsl(158, 45%, 35%);
  --blue:        hsl(220, 55%, 65%);
  --radius-lg:   16px;
  --radius-xl:   24px;
}

html { scroll-behavior: smooth; direction: rtl; }

body {
  font-family: 'Cairo', sans-serif;
  background: var(--bg);
  color: var(--gold-text);
  direction: rtl;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* ===== Gold text gradient ===== */
.gold-text {
  background: linear-gradient(135deg, hsl(43,62%,45%) 0%, hsl(43,80%,70%) 50%, hsl(43,62%,45%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gold-gradient {
  background: linear-gradient(135deg, hsl(43,62%,45%) 0%, hsl(43,70%,62%) 50%, hsl(43,62%,45%) 100%);
}

/* Gold divider line */
.gold-line {
  height: 1px;
  background: linear-gradient(to right, transparent, hsl(43,62%,52%,0.4), transparent);
  margin: 0 auto;
  max-width: 600px;
}

/* ===== Scroll Animations ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}
[data-animate]:nth-child(2) { transition-delay: 0.12s; }
[data-animate]:nth-child(3) { transition-delay: 0.24s; }
[data-animate]:nth-child(4) { transition-delay: 0.36s; }
[data-animate]:nth-child(5) { transition-delay: 0.10s; }
[data-animate]:nth-child(6) { transition-delay: 0.20s; }

/* ===== Card hover ===== */
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 30px rgba(180,140,30,0.08);
  border-color: hsla(43,62%,52%,0.5) !important;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.5s ease, border-bottom 0.5s ease, box-shadow 0.5s ease;
}
.navbar.scrolled {
  background: hsla(158,35%,7%,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsla(43,62%,52%,0.2);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  cursor: pointer;
}
.nav-logo .logo-main {
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(135deg, hsl(43,62%,45%) 0%, hsl(43,80%,70%) 50%, hsl(43,62%,45%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-logo .logo-sub {
  font-size: 0.65rem;
  color: hsl(43,20%,55%);
  letter-spacing: 3px;
  text-transform: uppercase;
}
/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: hsl(43,30%,80%);
  font-size: 0.9rem;
  font-weight: 600;
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }
/* CTA button */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  color: hsl(158,35%,7%) !important;
  background: linear-gradient(135deg, hsl(43,62%,45%), hsl(43,70%,62%), hsl(43,62%,45%));
  box-shadow: 0 4px 16px hsla(43,62%,52%,0.3);
  transition: all 0.2s ease;
}
.nav-cta:hover {
  box-shadow: 0 6px 24px hsla(43,62%,52%,0.5);
  transform: scale(1.05);
}
.nav-cta::after { display: none !important; }
/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: hsl(43,30%,80%);
  transition: color 0.2s;
}
.nav-toggle:hover { color: var(--gold-light); }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
/* Mobile menu */
.nav-mobile {
  display: none;
  background: hsl(158,35%,8%);
  border-top: 1px solid hsla(43,62%,52%,0.15);
  padding: 16px 24px 20px;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: hsl(43,30%,80%);
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 0;
  text-align: right;
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--gold-light); }
.nav-mobile .nav-cta {
  margin-top: 8px;
  justify-content: center;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5,22,14,0.65) 0%, rgba(5,22,14,0.45) 40%, rgba(5,22,14,0.75) 100%);
}
.hero-bg-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, hsla(158,35%,7%,0.8) 0%, transparent 50%, hsla(158,35%,7%,0.4) 100%);
  z-index: 1;
}
.hero-glow-1 {
  position: absolute;
  top: 25%;
  right: 40px;
  width: 256px;
  height: 256px;
  border-radius: 50%;
  background: hsla(43,62%,52%,0.05);
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}
.hero-glow-2 {
  position: absolute;
  bottom: 33%;
  left: 40px;
  width: 384px;
  height: 384px;
  border-radius: 50%;
  background: hsla(158,40%,25%,0.15);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}
.hero-badge {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 50px;
  border: 1px solid hsla(43,62%,52%,0.4);
  color: hsl(43,62%,65%);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 3px;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.hero-desc {
  font-size: 1.1rem;
  color: hsl(43,25%,82%);
  font-weight: 500;
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 50px;
  background: linear-gradient(135deg, hsl(43,62%,45%), hsl(43,70%,62%), hsl(43,62%,45%));
  color: hsl(158,35%,7%);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}
.btn-hero-primary:hover {
  box-shadow: 0 0 40px hsla(43,62%,52%,0.4);
  transform: scale(1.05);
}
.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 34px;
  border-radius: 50px;
  border: 2px solid hsla(43,62%,52%,0.5);
  color: hsl(43,25%,85%);
  font-weight: 700;
  font-size: 1.1rem;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}
.btn-hero-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}
/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, hsl(43,62%,45%), hsl(43,80%,70%), hsl(43,62%,45%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-label {
  display: block;
  font-size: 0.75rem;
  color: hsl(43,15%,60%);
  margin-top: 4px;
  font-weight: 500;
}
/* Scroll indicator */
.scroll-btn {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: none;
  border: none;
  cursor: pointer;
  color: hsla(43,62%,52%,0.7);
  animation: bounce 1.8s ease-in-out infinite;
  transition: color 0.2s;
}
.scroll-btn:hover { color: var(--gold-light); }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ===== SECTION BASE ===== */
.section { padding: 96px 0; }
.section-label {
  display: block;
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
}
.section-header { text-align: center; margin-bottom: 64px; }

/* ===== SERVICES ===== */
.services-section {
  background: linear-gradient(to bottom, var(--bg), var(--bg-2), var(--bg));
  position: relative;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  border-radius: var(--radius-lg);
  padding: 28px;
  cursor: default;
}
.service-card.gold-card {
  background: linear-gradient(135deg, hsla(43,62%,52%,0.2), hsla(43,62%,52%,0.05));
  border: 1px solid hsla(43,62%,52%,0.3);
}
.service-card.emerald-card {
  background: linear-gradient(135deg, hsla(158,40%,25%,0.2), hsla(158,40%,25%,0.05));
  border: 1px solid hsla(158,40%,35%,0.3);
}
.service-card.blue-card {
  background: linear-gradient(135deg, hsla(220,40%,25%,0.2), hsla(220,40%,25%,0.05));
  border: 1px solid hsla(220,40%,35%,0.3);
}
.service-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: hsla(158,35%,7%,0.8);
  margin-bottom: 20px;
  border: 1px solid currentColor;
  border-color: rgba(255,255,255,0.1);
}
.service-icon { font-size: 1.6rem; }
.service-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.service-card p { color: hsl(43,15%,62%); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.service-link {
  color: var(--gold-light);
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-link:hover { color: hsl(43,80%,72%); }

/* ===== PACKAGES ===== */
.packages-section {
  background: hsl(158,30%,8%);
  position: relative;
}
.packages-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(to right, transparent, hsla(43,62%,52%,0.3), transparent);
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.package-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid hsla(43,62%,52%,0.15);
  background: var(--bg-card-3);
}
.package-card:hover .pkg-img { transform: scale(1.1); }
.pkg-img-wrap {
  position: relative;
  height: 208px;
  overflow: hidden;
}
.pkg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.pkg-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(158,35%,7%), hsla(158,35%,7%,0.2), transparent);
}
.pkg-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}
.pkg-badge.gold { background: var(--gold); color: hsl(158,35%,7%); }
.pkg-badge.emerald { background: hsl(158,45%,35%); color: var(--white); }
.pkg-badge.blue { background: hsl(220,55%,50%); color: var(--white); }
.pkg-rating {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
}
.pkg-star { color: var(--gold-light); font-size: 0.7rem; }
.pkg-body { padding: 24px; }
.pkg-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.pkg-subtitle { color: hsl(43,62%,55%); font-size: 0.875rem; margin-bottom: 16px; }
.pkg-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid hsla(43,62%,52%,0.1);
}
.pkg-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.8rem;
}
.pkg-meta-icon { color: var(--gold); font-size: 0.8rem; }
.pkg-features { margin-bottom: 24px; }
.pkg-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
  font-size: 0.875rem;
  color: hsl(43,15%,65%);
  padding: 4px 0;
}
.pkg-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.btn-pkg {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.875rem;
  background: linear-gradient(135deg, hsl(43,62%,45%), hsl(43,70%,62%), hsl(43,62%,45%));
  color: hsl(158,35%,7%);
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.btn-pkg:hover { opacity: 0.9; transform: scale(1.02); }

/* ===== ABOUT ===== */
.about-section {
  background: linear-gradient(135deg, var(--bg), hsl(158,28%,10%));
  position: relative;
  overflow: hidden;
}
.about-glow-l {
  position: absolute;
  left: 0; top: 0;
  width: 384px; height: 384px;
  border-radius: 50%;
  background: hsla(43,62%,52%,0.05);
  filter: blur(80px);
  pointer-events: none;
}
.about-glow-r {
  position: absolute;
  right: 0; bottom: 0;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: hsla(158,40%,25%,0.1);
  filter: blur(80px);
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-col { position: relative; }
.about-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}
.about-img {
  width: 100%;
  height: 384px;
  object-fit: cover;
}
.about-img-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(158,35%,7%,0.7), transparent);
}
.about-stat-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--bg-card);
  border: 1px solid hsla(43,62%,52%,0.3);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.about-stat-num {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, hsl(43,62%,45%), hsl(43,80%,70%), hsl(43,62%,45%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.about-stat-label { color: var(--text-muted); font-size: 0.8rem; margin-top: 4px; }
.about-deco {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 96px;
  height: 96px;
  border-radius: 16px;
  border: 2px solid hsla(43,62%,52%,0.2);
}
.about-text h2 { margin-bottom: 24px; }
.about-text p { color: hsl(43,15%,62%); line-height: 1.8; margin-bottom: 16px; font-size: 0.95rem; }
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about-value {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 12px;
  background: hsl(158,25%,13%);
  border: 1px solid hsla(43,62%,52%,0.15);
  transition: border-color 0.3s;
}
.about-value:hover { border-color: hsla(43,62%,52%,0.35); }
.about-value-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold-light);
}
.about-value h4 { font-size: 0.875rem; font-weight: 700; color: var(--white); }
.about-value p { font-size: 0.75rem; color: hsl(43,15%,55%); margin: 0; }

/* ===== WHY US ===== */
.whyus-section {
  background: hsl(158,32%,9%);
  position: relative;
}
.whyus-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, hsla(43,62%,52%,0.25), transparent);
}
.whyus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.whyus-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: hsl(158,28%,11%);
  border: 1px solid hsla(43,62%,52%,0.12);
  transition: all 0.3s ease;
}
.whyus-card:hover {
  border-color: hsla(43,62%,52%,0.35);
  background: hsl(158,28%,13%);
}
.whyus-icon-wrap {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: hsla(43,62%,52%,0.1);
  border: 1px solid hsla(43,62%,52%,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: border-color 0.3s;
}
.whyus-card:hover .whyus-icon-wrap { border-color: hsla(43,62%,52%,0.4); }
.whyus-text h3 { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.whyus-text p { font-size: 0.85rem; color: hsl(43,15%,58%); line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: linear-gradient(135deg, var(--bg), hsl(158,30%,10%));
  position: relative;
  overflow: hidden;
}
.testimonials-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 800px; height: 500px;
  border-radius: 50%;
  background: hsla(43,62%,52%,0.03);
  filter: blur(80px);
  pointer-events: none;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid hsla(43,62%,52%,0.15);
  transition: all 0.3s ease;
}
.testimonial-card:hover { border-color: hsla(43,62%,52%,0.35); }
.testimonial-quote {
  position: absolute;
  top: 24px;
  left: 24px;
  font-size: 2.5rem;
  line-height: 1;
  color: hsla(43,62%,52%,0.2);
  font-family: serif;
  transition: color 0.3s;
}
.testimonial-card:hover .testimonial-quote { color: hsla(43,62%,52%,0.3); }
.testimonial-stars {
  display: flex;
  justify-content: flex-end;
  gap: 2px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.85rem;
}
.testimonial-text {
  color: hsl(43,15%,65%);
  font-size: 0.875rem;
  line-height: 1.8;
  text-align: right;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.author-info { text-align: right; }
.author-name { font-size: 0.875rem; font-weight: 700; color: var(--white); }
.author-loc { font-size: 0.75rem; color: hsl(43,15%,50%); }
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(43,62%,45%), hsl(43,70%,62%));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 900;
  color: hsl(158,35%,7%);
}

/* ===== CONTACT ===== */
.contact-section {
  background: hsl(158,32%,8%);
  position: relative;
}
.contact-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, hsla(43,62%,52%,0.2), transparent);
}
.contact-hero { text-align: center; margin-bottom: 80px; }
.contact-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: hsla(43,62%,52%,0.1);
  border: 1px solid hsla(43,62%,52%,0.25);
  margin-bottom: 24px;
  font-size: 2rem;
}
.btn-contact-main {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 48px;
  border-radius: 50px;
  background: linear-gradient(135deg, hsl(43,62%,45%), hsl(43,70%,62%), hsl(43,62%,45%));
  color: hsl(158,35%,7%);
  font-weight: 900;
  font-size: 1.2rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}
.btn-contact-main:hover {
  box-shadow: 0 0 50px hsla(43,62%,52%,0.35);
  transform: scale(1.05);
}
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.contact-method {
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: transform 0.3s ease;
}
.contact-method:hover { transform: scale(1.05); }
.contact-method.whatsapp-m {
  background: linear-gradient(135deg, hsla(140,60%,25%,0.3), hsla(140,60%,20%,0.1));
  border: 1px solid hsla(140,50%,35%,0.3);
}
.contact-method.instagram-m {
  background: linear-gradient(135deg, hsla(300,50%,25%,0.2), hsla(30,80%,30%,0.1));
  border: 1px solid hsla(300,40%,35%,0.2);
}
.contact-method.facebook-m {
  background: linear-gradient(135deg, hsla(220,60%,25%,0.2), hsla(220,60%,20%,0.1));
  border: 1px solid hsla(220,50%,40%,0.2);
}
.contact-method-icon { font-size: 2.2rem; margin: 0 auto 12px; }
.contact-method h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.contact-method p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; }
.btn-method {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.2s;
}
.btn-method.wa { background: hsl(140,55%,35%); color: var(--white); }
.btn-method.wa:hover { background: hsl(140,55%,40%); }
.btn-method.ig { background: linear-gradient(to right, hsl(300,60%,45%), hsl(30,90%,55%)); color: var(--white); }
.btn-method.ig:hover { opacity: 0.9; }
.btn-method.fb { background: hsl(220,65%,45%); color: var(--white); }
.btn-method.fb:hover { background: hsl(220,65%,50%); }
.contact-info-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: color 0.2s;
}
.contact-info-item:hover { color: var(--gold-light); }
.contact-info-icon { color: var(--gold); font-size: 0.9rem; }

/* ===== FOOTER ===== */
.footer {
  background: hsl(158,35%,5%);
  border-top: 1px solid hsla(43,62%,52%,0.15);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .brand-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 16px;
}
.footer-brand .brand-main {
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, hsl(43,62%,45%), hsl(43,80%,70%), hsl(43,62%,45%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.footer-brand .brand-sub {
  font-size: 0.65rem;
  color: hsl(43,20%,55%);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.footer-brand p {
  color: hsl(43,15%,55%);
  font-size: 0.875rem;
  line-height: 1.8;
  text-align: right;
  margin-bottom: 24px;
}
.footer-socials { display: flex; align-items: center; justify-content: flex-end; gap: 12px; }
.footer-social {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(158,25%,14%);
  border: 1px solid hsla(43,62%,52%,0.2);
  color: hsl(43,30%,70%);
  font-size: 0.9rem;
  transition: all 0.2s;
}
.footer-social:hover { color: var(--gold-light); border-color: hsla(43,62%,52%,0.5); }
.footer-col h4 {
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 20px;
  text-align: right;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li { text-align: right; }
.footer-col ul li a {
  color: hsl(43,15%,55%);
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  justify-content: flex-end;
  margin-bottom: 16px;
}
.footer-contact-icon { color: var(--gold); font-size: 0.9rem; flex-shrink: 0; margin-top: 2px; }
.footer-contact-text { color: hsl(43,15%,55%); font-size: 0.875rem; text-align: right; }
.footer-bottom {
  border-top: 1px solid hsl(158,20%,18%);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: hsl(43,15%,45%); font-size: 0.8rem; }
.footer-bottom-brand { display: flex; align-items: center; gap: 8px; }
.footer-bottom-brand .label { color: var(--gold); font-size: 0.75rem; font-weight: 600; }
.footer-bottom-brand .sep { color: hsl(43,15%,35%); font-size: 0.75rem; }
.footer-bottom-brand .tagline { color: hsl(43,15%,45%); font-size: 0.75rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid, .packages-grid, .whyus-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-stat-card { left: 16px; bottom: -16px; }
  .contact-methods { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .services-grid, .packages-grid, .whyus-grid, .testimonials-grid, .contact-methods { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-stats { gap: 24px; }
  .about-values { grid-template-columns: 1fr; }
  .contact-info-row { flex-direction: column; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-stat-card { position: relative; left: auto; bottom: auto; margin-top: 20px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.5rem; }
  .hero-stats { flex-direction: column; gap: 12px; }
  .btn-contact-main { font-size: 1rem; padding: 16px 32px; }
}
