:root {
  --primary: #c28e46; /* Gold/Sand */
  --primary-dark: #a37231;
  --secondary: #1a1a1a;
  --bg-dark: #0f0f0f;
  --text-light: #f5f5f5;
  --text-muted: #a0a0a0;
  --white: #ffffff;
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

/* Reusables */
.gold { color: var(--primary); }
.text-center { text-align: center; }
.w-full { width: 100%; }

.btn-gold {
  display: inline-block;
  background-color: var(--primary);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.btn-gold:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(194, 142, 70, 0.4);
}

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: var(--white);
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  border: 2px solid var(--white);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.btn-outline:hover {
  background-color: var(--white);
  color: var(--bg-dark);
}

.eyebrow {
  display: block;
  font-family: var(--font-main);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}
.section-head h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.section-head p {
  color: var(--text-muted);
}

section {
  padding: 100px 5%;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 5%;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}
header.scrolled {
  background: rgba(15, 15, 15, 0.95);
  padding: 15px 5%;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-emoji {
  font-size: 2rem;
}
.logo-main {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}
.logo-sub {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a:hover {
  color: var(--primary);
}
.nav-book {
  background: var(--primary);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 4px;
}
.nav-book:hover {
  background: var(--primary-dark);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* Hero */
#hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/hero.png'); /* Assumes image is present */
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(15,15,15,1) 100%);
  z-index: -1;
}
#sand-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.5;
  pointer-events: none;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  z-index: 1;
  padding: 0 20px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(5px);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.2);
}
.hero-badge i {
  color: var(--primary);
  font-size: 0.7rem;
}
.hero-content h1 {
  font-size: 4.5rem;
  margin-bottom: 20px;
}
.hero-content em {
  color: var(--primary);
  font-style: italic;
}
.hero-sub {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 30px;
}
.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}
.hero-viator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.hero-viator i {
  color: #00aa6c; /* TripAdvisor/Viator green */
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.7;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--white);
  animation: scrollAnim 2s infinite;
}
@keyframes scrollAnim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.1% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Stats */
#stats {
  background: var(--secondary);
  padding: 50px 5%;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

/* Tours */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 30px;
}
.tour-card {
  background: var(--secondary);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.tour-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.tour-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.tour-price {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(0,0,0,0.8);
  padding: 5px 10px;
  border-radius: 4px;
  font-weight: 600;
  color: var(--primary);
}
.tour-body {
  padding: 25px;
}
.tour-body h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.tour-meta {
  display: flex;
  gap: 15px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}
.tour-meta i {
  color: var(--primary);
}
.tour-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.viator-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 40px;
}
.viator-note i {
  color: #00aa6c;
  margin-right: 5px;
}

/* How it Works */
#how {
  background: var(--secondary);
}
.steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.step {
  text-align: center;
  width: 30%;
  position: relative;
  z-index: 2;
}
.step-num {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: rgba(255,255,255,0.05);
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  font-weight: 700;
}
.step-icon {
  width: 80px;
  height: 80px;
  background: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.step h3 {
  margin-bottom: 10px;
}
.step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.step-line {
  flex-grow: 1;
  height: 2px;
  background: dashed 2px var(--primary);
  opacity: 0.3;
  margin: 0 10px;
  position: relative;
  top: -40px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay i {
  color: var(--white);
  font-size: 2rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}
.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 4px;
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
}
.lb-close { top: 20px; right: 30px; }
.lb-prev { left: 30px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 30px; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { color: var(--primary); }

/* Viator Booking Section */
#book {
  background: linear-gradient(rgba(15,15,15,0.9), rgba(15,15,15,0.9)), url('https://images.unsplash.com/photo-1546272989-40c92939c6c2?w=1600&q=80') center/cover fixed;
}
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.book-info h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.book-info p {
  color: var(--text-light);
  margin-bottom: 30px;
  font-size: 1.1rem;
}
.book-features {
  margin-bottom: 40px;
}
.book-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.book-features i {
  color: var(--primary);
}
.widget-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  color: var(--secondary);
}
.widget-head {
  background: #00aa6c;
  color: var(--white);
  padding: 15px 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.widget-body {
  padding: 30px;
}
.wf-group {
  margin-bottom: 20px;
}
.wf-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.wf-group label i {
  color: #00aa6c;
  width: 20px;
}
.wf-group input, .wf-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-main);
}
.widget-foot {
  background: #f5f5f5;
  padding: 10px;
  text-align: center;
  font-size: 0.8rem;
  color: #666;
}
.widget-foot i { color: #00aa6c; }

/* Testimonials */
.testimonials-track {
  display: flex;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  scrollbar-width: none;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.review-card {
  min-width: 100%;
  background: var(--secondary);
  padding: 40px;
  border-radius: 8px;
  scroll-snap-align: center;
  text-align: center;
}
.review-stars {
  color: var(--primary);
  margin-bottom: 20px;
}
.review-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.review-author {
  font-weight: 600;
}
.review-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: var(--transition);
}
.dot.active {
  background: var(--primary);
}

/* About */
#about {
  background: var(--secondary);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.about-img-col {
  position: relative;
  height: 500px;
}
.about-img-main {
  width: 80%;
  height: 80%;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 0;
}
.about-img-accent {
  width: 50%;
  height: 50%;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  position: absolute;
  bottom: 0;
  right: 0;
  border: 10px solid var(--secondary);
}
.about-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary);
  color: var(--white);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 0 0 10px rgba(194, 142, 70, 0.3);
}
.about-badge i { font-size: 1.5rem; margin-bottom: 5px; }
.about-content h2 { font-size: 2.5rem; margin-bottom: 20px; }
.about-content p { color: var(--text-muted); margin-bottom: 20px; }
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}
.about-tags span {
  background: rgba(255,255,255,0.05);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.about-tags i { color: var(--primary); }

/* Article / Discover */
#discover {
  background: var(--bg-dark);
  position: relative;
  padding-top: 50px;
}
.article-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--secondary);
  padding: 60px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border-left: 4px solid var(--primary);
}
.article-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
}
.article-content h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin: 40px 0 15px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 10px;
}
.article-content strong {
  color: var(--primary);
  font-weight: 600;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--secondary);
  margin-bottom: 15px;
  border-radius: 4px;
  overflow: hidden;
}
.faq-q {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}
.faq-q:hover { color: var(--primary); }
.faq-q i { transition: var(--transition); }
.faq-item.active .faq-q i { transform: rotate(180deg); color: var(--primary); }
.faq-a {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--text-muted);
}
.faq-item.active .faq-a {
  padding-bottom: 20px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 50px;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}
.contact-card i {
  font-size: 1.5rem;
  color: var(--primary);
  background: rgba(194, 142, 70, 0.1);
  padding: 15px;
  border-radius: 50%;
}
.contact-card h4 { margin-bottom: 5px; }
.contact-card a, .contact-card span { color: var(--text-muted); }
.contact-card a:hover { color: var(--primary); }
.contact-socials {
  display: flex;
  gap: 15px;
  margin-top: 40px;
}
.contact-socials a {
  width: 40px;
  height: 40px;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.contact-socials a:hover {
  background: var(--primary);
  color: var(--white);
}

.contact-form {
  background: var(--secondary);
  padding: 40px;
  border-radius: 8px;
}
.contact-form h3 { margin-bottom: 25px; font-size: 1.5rem; }
.form-row { display: flex; gap: 20px; }
.form-group { margin-bottom: 20px; width: 100%; }
.form-group label { display: block; margin-bottom: 8px; font-size: 0.9rem; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px;
  background: var(--bg-dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--font-main);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.form-success {
  margin-top: 20px;
  padding: 15px;
  background: rgba(0, 170, 108, 0.1);
  color: #00aa6c;
  border-radius: 4px;
  text-align: center;
}

/* Footer */
#footer {
  background: #0a0a0a;
  padding: 80px 5% 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 50px;
}
.footer-brand p {
  color: var(--text-muted);
  margin: 20px 0;
  font-size: 0.9rem;
}
.footer-socials { display: flex; gap: 15px; }
.footer-socials a { color: var(--text-muted); font-size: 1.2rem; }
.footer-socials a:hover { color: var(--primary); }

.footer-col h4 { margin-bottom: 20px; font-size: 1.1rem; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: var(--text-muted); font-size: 0.9rem; }
.footer-col ul a:hover { color: var(--primary); padding-left: 5px; }

.viator-partner-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255,255,255,0.05);
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.1);
}
.viator-partner-badge i { font-size: 2rem; color: #00aa6c; }
.viator-partner-badge strong { display: block; font-size: 0.95rem; }
.viator-partner-badge small { color: var(--text-muted); font-size: 0.8rem; }
.viator-partner-badge:hover { background: rgba(255,255,255,0.1); }
.footer-contact { margin-bottom: 10px; color: var(--text-muted); font-size: 0.9rem; }
.footer-contact i { color: var(--primary); width: 20px; }

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

/* Floating Elements */
.float-wa {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: var(--transition);
}
.float-wa:hover { transform: scale(1.1); }

.float-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--primary);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.float-top.visible { opacity: 1; pointer-events: auto; }
.float-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* Loader */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}
.loader-inner { text-align: center; }
.loader-icon { font-size: 3rem; margin-bottom: 10px; animation: bounce 1s infinite alternate; }
.loader-brand { font-family: var(--font-heading); letter-spacing: 2px; margin-bottom: 20px; font-weight: 700; }
.loader-track { width: 150px; height: 2px; background: rgba(255,255,255,0.1); margin: 0 auto; overflow: hidden; }
.loader-fill { width: 0; height: 100%; background: var(--primary); animation: loadFill 1.5s ease-in-out forwards; }

@keyframes bounce { 0% { transform: translateY(0); } 100% { transform: translateY(-15px); } }
@keyframes loadFill { 0% { width: 0; } 100% { width: 100%; } }

/* Responsive */
@media (max-width: 992px) {
  .hero-content h1 { font-size: 3.5rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .book-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; gap: 40px; }
  .step { width: 100%; }
  .step-line { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: var(--secondary);
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
  }
  .nav-links.active { right: 0; box-shadow: -5px 0 20px rgba(0,0,0,0.5); }
  .hero-content h1 { font-size: 2.5rem; }
  .hero-btns { flex-direction: column; }
  .stats-grid { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}
