/* ===================================================
   Student Road to Germany — Myanmar to Deutschland
   Consultation Services — AlexSnow School
   =================================================== */

:root {
  --ivory: #F4EFE6;
  --ivory-deep: #EBE4D8;
  --ivory-card: #FAF7F2;
  --ivory-pure: #FDFCF9;
  --slate: #1A1916;
  --slate-mid: #2C2A27;
  --slate-soft: #4B4843;
  --stone: #8A8278;
  --stone-light: #B5AFA8;
  --parchment: #D6CCB8;
  --gold: #A8864A;
  --gold-warm: #C4A96A;
  --gold-muted: #7A6535;
  --rule: rgba(26, 25, 22, 0.10);
  --rule-gold: rgba(168, 134, 74, 0.28);
  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans: 'Jost', 'Helvetica Neue', sans-serif;
  --gradient-gold: linear-gradient(135deg, #A8864A 0%, #C4A96A 50%, #8C7040 100%);
  --gradient-hero: linear-gradient(180deg, rgba(26, 25, 22, 0.15) 0%, rgba(26, 25, 22, 0.60) 50%, rgba(26, 25, 22, 0.92) 100%);
  --shadow-card: 0 1px 20px rgba(26, 25, 22, 0.06);
  --shadow-lift: 0 4px 40px rgba(26, 25, 22, 0.12);
  --transition: 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  font-family: var(--font-sans);
  background: var(--ivory);
  color: var(--slate);
  line-height: 1.75;
  overflow-x: hidden;
  font-weight: 300;
  font-size: 15px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.18;
  color: var(--slate);
  font-weight: 300;
}

.gradient-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== SECTION SHARED ===== */
section {
  padding: 120px 0;
}

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

.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.60rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 5px;
  border-bottom: 1px solid var(--rule-gold);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.18;
  color: var(--slate);
  margin-bottom: 18px;
}

.section-desc {
  font-family: var(--font-sans);
  color: var(--stone);
  font-size: 0.88rem;
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto;
  line-height: 2;
  letter-spacing: 0.02em;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 40px;
  font-family: var(--font-sans);
  font-size: 0.70rem;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  border-radius: 0;
}

.btn-primary {
  background: var(--slate);
  color: var(--ivory);
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--ivory-pure);
}

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(244, 239, 230, 0.38);
}

.btn-ghost:hover {
  border-color: var(--gold-warm);
  color: var(--gold-warm);
}

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

.navbar.scrolled {
  background: rgba(244, 239, 230, 0.97);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid var(--rule);
  padding: 12px 0;
  box-shadow: 0 1px 12px rgba(26, 25, 22, 0.05);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 40px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--ivory);
  line-height: 1;
  transition: var(--transition);
}

.navbar.scrolled .logo-main {
  color: var(--slate);
}

.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.56rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-warm);
  transition: var(--transition);
}

.navbar.scrolled .logo-sub {
  color: var(--gold-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  padding: 8px 16px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.65);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--ivory);
}

.navbar.scrolled .nav-link {
  color: var(--stone);
}

.navbar.scrolled .nav-link:hover {
  color: var(--slate);
}

.nav-btn {
  padding: 9px 22px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory) !important;
  border: 1px solid rgba(244, 239, 230, 0.38);
  transition: var(--transition);
}

.nav-btn:hover {
  border-color: var(--gold-warm);
  color: var(--gold-warm) !important;
}

.navbar.scrolled .nav-btn {
  color: var(--slate) !important;
  border-color: var(--rule);
}

.navbar.scrolled .nav-btn:hover {
  border-color: var(--gold);
  color: var(--gold) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--ivory);
  transition: var(--transition);
}

.navbar.scrolled .hamburger span {
  background: var(--slate);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  color: var(--ivory);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero-content {
  max-width: 800px;
  padding: 0 40px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-warm);
  border-bottom: 1px solid var(--rule-gold);
  padding-bottom: 4px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ivory);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 300;
  max-width: 560px;
  margin-bottom: 48px;
  color: rgba(244, 239, 230, 0.65);
  line-height: 2;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 72px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  align-items: center;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold-warm);
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.60rem;
  font-weight: 300;
  color: rgba(244, 239, 230, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(244, 239, 230, 0.15);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.60rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.4);
}

.scroll-indicator {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== PACKAGES ===== */
.packages {
  background: var(--ivory-card);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-bottom: 48px;
}

.package-card {
  background: var(--ivory-card);
  padding: 48px 40px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  background: var(--ivory-pure);
}

.package-popular {
  background: var(--ivory-pure);
}

.pkg-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}

.popular-badge { color: var(--gold); }
.premium-badge { color: var(--gold-warm); }

.pkg-icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--rule-gold);
  padding-bottom: 12px;
}

.pkg-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  color: var(--slate);
  margin-bottom: 8px;
}

.pkg-price {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 8px;
  line-height: 1;
}

.price-currency {
  font-size: 1.4rem;
  vertical-align: super;
}

.pkg-tagline {
  font-family: var(--font-sans);
  color: var(--stone);
  font-size: 0.82rem;
  font-weight: 300;
  margin-bottom: 32px;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.pkg-features {
  margin-bottom: 40px;
  flex: 1;
  border-top: 1px solid var(--rule);
  padding-top: 24px;
}

.pkg-features li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--slate-soft);
  letter-spacing: 0.01em;
}

.feat-check {
  color: var(--gold);
  font-weight: 400;
}

.feat-dim {
  color: var(--parchment);
  text-decoration: line-through;
}

.pkg-btn {
  display: block;
  text-align: center;
  padding: 14px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--slate);
  color: var(--slate);
  transition: var(--transition);
}

.pkg-btn:hover,
.pkg-btn-popular,
.pkg-btn-premium {
  background: var(--slate);
  color: var(--ivory);
  border-color: var(--slate);
}

.pkg-btn-popular:hover,
.pkg-btn-premium:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ivory-pure);
}

.packages-note {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.80rem;
  font-weight: 300;
  color: var(--stone);
  letter-spacing: 0.02em;
}

.packages-note a {
  color: var(--gold);
}

/* ===== PROCESS ===== */
.process {
  background: var(--slate);
}

.process .section-title,
.process h3 {
  color: var(--ivory);
}

.process .section-tag {
  color: var(--gold-warm);
  border-bottom-color: var(--rule-gold);
}

.process .section-desc {
  color: rgba(244, 239, 230, 0.5);
}

.process-steps {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(244, 239, 230, 0.04);
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  line-height: 1;
}

.step-icon {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(244, 239, 230, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 28px;
}

.step h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 12px;
}

.step p {
  font-family: var(--font-sans);
  color: rgba(244, 239, 230, 0.5);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.01em;
}

.step-arrow {
  color: var(--gold-muted);
  font-size: 1rem;
  padding-top: 30px;
  opacity: 0.5;
}

/* ===== WHY US ===== */
.why-us {
  background: var(--ivory);
}

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

.why-image-col {
  position: relative;
}

.why-img {
  box-shadow: var(--shadow-lift);
}

.why-img-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--ivory-pure);
  padding: 20px 24px;
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-card);
}

.badge-icon {
  font-size: 1.6rem;
}

.why-img-badge strong {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 400;
  font-style: italic;
  color: var(--slate);
  display: block;
}

.why-img-badge span {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--stone);
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

.why-desc {
  font-family: var(--font-sans);
  color: var(--stone);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.why-points {
  margin-top: 40px;
  display: grid;
  gap: 0;
}

.why-point {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
}

.why-point:last-child {
  border-bottom: none;
}

.point-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid var(--rule);
}

.why-point h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: var(--slate);
  margin-bottom: 6px;
}

.why-point p {
  font-family: var(--font-sans);
  color: var(--stone);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.01em;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--ivory-deep);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.testi-card {
  background: var(--ivory-card);
  padding: 40px 36px;
  transition: var(--transition);
}

.testi-card:hover {
  background: var(--ivory-pure);
}

.testi-stars {
  color: var(--gold);
  margin-bottom: 20px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
}

.testi-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--slate-soft);
  margin-bottom: 28px;
  line-height: 1.75;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--rule);
  padding-top: 20px;
}

.testi-avatar {
  width: 36px;
  height: 36px;
  border: 1px solid var(--rule-gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--slate);
}

.testi-author span {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--stone);
  letter-spacing: 0.02em;
}

/* ===== FAQ ===== */
.faq {
  background: var(--ivory-pure);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid var(--rule);
}

.faq-item {
  border-bottom: 1px solid var(--rule);
}

.faq-question {
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  text-align: left;
  cursor: pointer;
  color: var(--slate);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-arrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: var(--gold);
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease-out;
}

.faq-answer p {
  font-family: var(--font-sans);
  padding-bottom: 28px;
  color: var(--stone);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.02em;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--slate);
}

.contact .section-title {
  color: var(--ivory);
}

.contact .section-tag {
  color: var(--gold-warm);
  border-bottom-color: var(--rule-gold);
}

.contact-desc {
  font-family: var(--font-sans);
  color: rgba(244, 239, 230, 0.5);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.02em;
  margin-bottom: 40px;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  margin-bottom: 1px;
  border: 1px solid rgba(244, 239, 230, 0.08);
  transition: var(--transition);
}

.channel:hover {
  border-color: rgba(168, 134, 74, 0.38);
}

.ch-icon {
  font-size: 1.2rem;
  opacity: 0.8;
}

.channel strong {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ivory);
  display: block;
}

.channel span {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(244, 239, 230, 0.4);
  letter-spacing: 0.04em;
  display: block;
  margin-top: 2px;
}

.contact-form-wrap {
  background: var(--ivory-card);
  padding: 48px 40px;
  border: 1px solid var(--rule);
}

.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 300;
  font-style: italic;
  color: var(--slate);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid var(--rule);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  background: transparent;
  color: var(--slate);
  transition: var(--transition);
  letter-spacing: 0.02em;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--stone-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--gold);
}

.form-submit {
  width: 100%;
  margin-top: 16px;
  justify-content: center;
}

.form-success {
  display: none;
  margin-top: 20px;
  padding: 12px;
  border: 1px solid var(--rule-gold);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.80rem;
  font-weight: 300;
  text-align: center;
  letter-spacing: 0.05em;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--slate-mid);
  border-top: 1px solid rgba(244, 239, 230, 0.06);
  padding: 80px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(244, 239, 230, 0.06);
}

.footer-brand .nav-logo {
  margin-bottom: 20px;
}

.footer-brand p {
  font-family: var(--font-sans);
  opacity: 0.4;
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.02em;
  color: var(--ivory);
}

.footer-links h4 {
  font-family: var(--font-sans);
  color: var(--ivory);
  margin-bottom: 24px;
  text-transform: uppercase;
  font-size: 0.60rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  opacity: 0.4;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 300;
  opacity: 0.45;
  color: var(--ivory);
  letter-spacing: 0.02em;
  transition: var(--transition);
}

.footer-links ul li a:hover {
  opacity: 0.9;
  color: var(--gold-warm);
}

.footer-bottom {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 300;
  opacity: 0.3;
  color: var(--ivory);
  letter-spacing: 0.08em;
  line-height: 2;
}

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--slate);
  color: var(--gold-warm);
  border: 1px solid rgba(168, 134, 74, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 100;
  border-radius: 0;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ivory);
}

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.8s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .why-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .container,
  .nav-container {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 24px;
    right: 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: rgba(26, 25, 22, 0.97);
    border: 1px solid rgba(244, 239, 230, 0.08);
    padding: 16px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link,
  .nav-btn {
    display: block;
    width: 100%;
    padding: 10px 12px;
  }

  .navbar.scrolled .nav-links {
    background: rgba(244, 239, 230, 0.97);
    border-color: var(--rule);
  }

  .navbar.scrolled .nav-link {
    color: var(--stone);
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

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

  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-content {
    padding: 0 24px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

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

  .process-steps {
    flex-direction: column;
    gap: 48px;
  }

  .step-arrow {
    display: none;
  }

  .packages-grid,
  .testi-grid {
    grid-template-columns: 1fr;
  }

  .why-img-badge {
    position: static;
    margin-top: 20px;
  }

  section {
    padding: 80px 0;
  }
}
