/* ========================================
   DR. DIGVIJAY SINGH THAKUR — PERSONAL BRAND
   Multi-Page Website Stylesheet
   Dark/Light Mode | Video Hero | Premium UI
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- ROOT VARIABLES ---------- */
:root {
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  /* Dark Mode (Default) */
  --bg: #0a0a0a;
  --bg-alt: #050505;
  --surface: #141414;
  --surface-hover: #1a1a1a;
  --text: #f0f0f0;
  --text-muted: #888888;
  --border: rgba(212, 175, 55, 0.12);
  --border-hover: rgba(212, 175, 55, 0.3);
  --gold: #D4AF37;
  --gold-light: #F4E4BC;
  --gold-dark: #B8941F;
  --shadow: rgba(0,0,0,0.6);
  --overlay: rgba(5,5,5,0.85);
}

/* Light Mode */
body.light {
  --bg: #f5f3ef;
  --bg-alt: #ebe8e2;
  --surface: #ffffff;
  --surface-hover: #f8f6f3;
  --text: #1a1a1a;
  --text-muted: #666666;
  --border: rgba(0,0,0,0.08);
  --border-hover: rgba(212, 175, 55, 0.5);
  --shadow: rgba(0,0,0,0.1);
  --overlay: rgba(245,243,239,0.9);
}

/* ---------- BASE ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
  transition: background 0.4s, color 0.4s;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

::selection { background: var(--gold); color: var(--bg); }

/* ---------- NAVIGATION ---------- */
nav {
  position: fixed;
  top: 0; width: 100%;
  z-index: 1000;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
  background: transparent;
}
nav.scrolled {
  background: var(--overlay);
  backdrop-filter: blur(25px);
  padding: 14px 5%;
  box-shadow: 0 4px 40px var(--shadow);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.logo span { color: var(--text); font-weight: 400; font-size: 1.3rem; }

.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Dark/Light Toggle */
.theme-toggle {
  width: 44px; height: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  padding: 0 3px;
}
.theme-toggle:hover { border-color: var(--gold); }
.theme-toggle .toggle-circle {
  width: 18px; height: 18px;
  background: var(--gold);
  border-radius: 50%;
  transition: transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--bg);
}
body.light .theme-toggle .toggle-circle {
  transform: translateX(20px);
}

.mobile-menu {
  display: none;
  font-size: 1.4rem;
  color: var(--gold);
  cursor: pointer;
}

/* ---------- SOCIAL SIDEBAR ---------- */
.social-sidebar {
  position: fixed;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
}
.social-sidebar a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.95rem;
  transition: all 0.3s;
  background: var(--surface);
  backdrop-filter: blur(10px);
  text-decoration: none;
}
.social-sidebar a:hover {
  background: var(--gold);
  color: var(--bg);
  transform: scale(1.15);
  border-color: var(--gold);
}

/* ---------- HERO (VIDEO) ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 5%;
}

.hero-video-container {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -2;
  overflow: hidden;
}
.hero-video-container video,
.hero-video-container .video-fallback {
  position: absolute;
  top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.hero-video-container .video-fallback {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1205 40%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--overlay) 0%, rgba(10,10,10,0.7) 50%, var(--overlay) 100%);
  z-index: -1;
}

#particles-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
  z-index: 2;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 8px 22px;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 28px;
  border-radius: 50px;
  background: rgba(212, 175, 55, 0.08);
  animation: fadeInUp 0.8s ease-out;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 18px;
  animation: fadeInUp 1s ease-out 0.1s both;
  background: linear-gradient(135deg, #fff 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  -webkit-text-fill-color: var(--gold-light);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--text-muted);
  margin-bottom: 35px;
  font-weight: 300;
  max-width: 520px;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.btn {
  padding: 14px 34px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.4s ease;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.25);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
}
.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--bg);
  transform: translateY(-3px);
}
.btn-white {
  border: 1.5px solid var(--text);
  color: var(--text);
  background: transparent;
}
.btn-white:hover {
  background: var(--text);
  color: var(--bg);
}

/* Hero Right - Image */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fadeIn 1.3s ease-out;
}
.hero-img-wrapper {
  position: relative;
  width: 360px;
  height: 460px;
}
.hero-img-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 40px 80px var(--shadow);
  transition: transform 0.5s;
}
.hero-img-wrapper:hover img { transform: scale(1.03); }
.hero-img-wrapper::before {
  content: '';
  position: absolute;
  top: -15px; left: -15px;
  width: 100%; height: 100%;
  border: 2px solid var(--gold);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.35;
}
.hero-img-wrapper::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 140px; height: 140px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.06;
  filter: blur(40px);
}

.floating-card {
  position: absolute;
  background: var(--surface);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out infinite;
  box-shadow: 0 10px 30px var(--shadow);
}
.floating-card.card-1 { top: 20px; left: -35px; animation-delay: 0s; }
.floating-card.card-2 { bottom: 50px; right: -45px; animation-delay: 2s; }
.floating-card i { font-size: 1.3rem; color: var(--gold); }
.floating-card div strong { display: block; font-size: 0.82rem; color: var(--text); }
.floating-card div span { font-size: 0.72rem; color: var(--text-muted); }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-15px)} }

/* ---------- SECTIONS ---------- */
section { padding: 100px 5%; position: relative; }
.section-header {
  text-align: center;
  margin-bottom: 65px;
}
.section-label {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.section-subtitle {
  color: var(--text-muted);
  max-width: 550px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ---------- PAGE HERO (smaller) ---------- */
.page-hero {
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding-top: 100px;
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 15px;
}
.page-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- STATS ---------- */
.stats { background: var(--bg-alt); padding: 80px 5%; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}
.stat-card {
  text-align: center;
  padding: 35px 20px;
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.stat-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px var(--shadow);
}
.stat-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 14px;
}
.stat-card h4 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 6px;
}
.stat-card p {
  color: var(--text-muted);
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ---------- ABOUT ---------- */
.about { background: var(--bg-alt); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-img {
  position: relative;
}
.about-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 60px var(--shadow);
  transition: transform 0.5s;
}
.about-img:hover img { transform: scale(1.02); }
.about-img::before {
  content: '';
  position: absolute;
  top: -18px; left: -18px;
  width: 100%; height: 100%;
  border: 2px solid var(--gold);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.3;
}
.about-content h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin-bottom: 22px;
  color: var(--gold-light);
  line-height: 1.2;
}
.about-content h3 em { color: var(--gold); font-style: italic; }
.about-content p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 1.02rem;
}
.about-content p strong { color: var(--text); }
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.about-tag {
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  background: var(--surface);
}
.about-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.about-tag i { color: var(--gold); font-size: 0.85rem; }

/* ---------- TRAVEL / COUNTRIES ---------- */
.travel { background: var(--bg); }
.travel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
}
.country-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 25px 15px;
  text-align: center;
  transition: all 0.3s;
  cursor: default;
}
.country-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 15px 30px var(--shadow);
}
.country-card .flag {
  font-size: 2.5rem;
  margin-bottom: 10px;
  display: block;
}
.country-card h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.country-card span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ---------- SERVICES ---------- */
.services { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 35px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: 0 25px 50px var(--shadow);
}
.service-icon {
  width: 55px; height: 55px;
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 1.4rem;
  color: var(--gold);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 18px;
}
.service-list {
  list-style: none;
}
.service-list li {
  padding: 7px 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.service-list li:last-child { border-bottom: none; }
.service-list li i { color: var(--gold); font-size: 0.7rem; }

.service-arrow {
  margin-top: 20px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}
.service-card:hover .service-arrow { gap: 14px; }

/* Pricing mini */
.pricing-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 18px;
}
.pricing-mini {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  transition: all 0.3s;
}
.pricing-mini:hover { border-color: var(--gold); }
.pricing-mini h4 { font-size: 0.85rem; margin-bottom: 6px; }
.pricing-mini .price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
}
.pricing-mini .price span { font-size: 0.8rem; color: var(--text-muted); }
.pricing-mini.featured {
  border: 1.5px solid var(--gold);
  position: relative;
}
.pricing-mini.featured::after {
  content: 'BEST';
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg);
  padding: 3px 14px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 20px;
}

/* ---------- SERVICE DETAIL PAGE ---------- */
.service-detail { background: var(--bg); }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.service-detail-content h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.service-detail-content h2 em { color: var(--gold); font-style: italic; }
.service-detail-content > p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 30px;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0;
}
.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.process-step:hover {
  border-color: var(--gold);
  transform: translateX(5px);
}
.step-number {
  width: 45px; height: 45px;
  border-radius: 12px;
  background: var(--gold);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.step-content h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.step-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.service-detail-sidebar {
  background: var(--surface);
  border-radius: 20px;
  padding: 35px;
  border: 1px solid var(--border);
  position: sticky;
  top: 100px;
}
.service-detail-sidebar h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.sidebar-list {
  list-style: none;
  margin-bottom: 25px;
}
.sidebar-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.sidebar-list li i { color: var(--gold); font-size: 0.85rem; }

/* ---------- GALLERY ---------- */
.gallery { background: var(--bg-alt); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  border: 1px solid var(--border);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  padding: 25px 20px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: white;
}
.gallery-overlay span {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.gallery-overlay h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-top: 4px;
}

/* ---------- WHY ---------- */
.why { background: var(--bg-alt); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}
.why-card {
  padding: 40px 30px;
  background: linear-gradient(135deg, rgba(212,175,55,0.04) 0%, transparent 100%);
  border-radius: 20px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s;
}
.why-card:hover {
  background: linear-gradient(135deg, rgba(212,175,55,0.08) 0%, transparent 100%);
  transform: translateY(-6px);
  border-color: var(--border-hover);
}
.why-card i {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 18px;
}
.why-card h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-weight: 600;
}
.why-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ---------- BLOG ---------- */
.blog { background: var(--bg); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}
.blog-card {
  background: var(--surface);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.blog-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
}
.blog-img {
  height: 180px;
  background: linear-gradient(135deg, var(--surface), var(--bg-alt));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--gold);
  position: relative;
  overflow: hidden;
}
.blog-img::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(45deg, rgba(212,175,55,0.1), transparent);
}
.blog-content { padding: 28px; }
.blog-tag {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 12px;
  line-height: 1.3;
}
.blog-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* ---------- CONTACT ---------- */
.contact { background: var(--bg-alt); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin-bottom: 18px;
}
.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 35px;
  font-size: 1.05rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  padding: 14px 18px;
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
}
.contact-item:hover {
  border-color: var(--gold);
  transform: translateX(5px);
}
.contact-icon {
  width: 45px; height: 45px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item div strong {
  display: block;
  margin-bottom: 2px;
  color: var(--text);
  font-size: 0.95rem;
}
.contact-item div span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.contact-form {
  background: var(--surface);
  padding: 45px;
  border-radius: 20px;
  border: 1px solid var(--border);
}
.form-group {
  margin-bottom: 22px;
}
.form-group label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.08);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--bg-alt);
  padding: 60px 5% 25px;
  border-top: 1px solid var(--border);
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 45px;
}
.footer-brand h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.8;
}
.footer-social {
  margin-top: 18px;
  display: flex;
  gap: 14px;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.95rem;
  transition: all 0.3s;
  text-decoration: none;
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.footer-links h4 {
  font-size: 0.9rem;
  margin-bottom: 18px;
  color: var(--text);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.87rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ---------- ANIMATIONS ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.9s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-right { display: none; }
  .hero-subtitle { margin: 0 auto 35px; }
  .hero-buttons { justify-content: center; }
  .about-grid, .contact-grid, .service-detail-grid { grid-template-columns: 1fr; gap: 50px; }
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .travel-grid { grid-template-columns: repeat(3, 1fr); }
  .social-sidebar { display: none; }
  .footer-content { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-actions { gap: 12px; }
  .mobile-menu { display: block; }
  .blog-grid, .why-grid, .stats-grid, .gallery-grid, .travel-grid { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; }
  .contact-form { padding: 30px; }
  section { padding: 70px 5%; }
  .pricing-row { grid-template-columns: 1fr; }
}
