/* ===================================
   MS GLOBAL VISA CONSULTANCY - PREMIUM CSS
   Color: #001F2D (Dark Navy) & #cc8e4a (Gold)
   Fonts: Playfair Display + Inter
   =================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary-dark: #001F2D;
  --primary-gold: #cc8e4a;
  --secondary-light: #f5f5f5;
  --text-dark: #1a1a1a;
  --text-light: #666;
  --white: #ffffff;
  --accent-blue: #003d5c;
  --hover-gold: #d9a45e;
  --success: #28a745;
  --warning: #ffc107;
  --danger: #dc3545;
  --info: #17a2b8;
  --glass-bg: rgba(255,255,255,0.08);
  --shadow-sm: 0 2px 10px rgba(0,31,45,0.08);
  --shadow-md: 0 5px 25px rgba(0,31,45,0.12);
  --shadow-lg: 0 15px 40px rgba(0,31,45,0.18);
  --radius: 12px;
  --radius-lg: 42px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; }

/* ===================================
   LOADING SCREEN
   =================================== */
.loading-screen {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--primary-dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}
.loading-screen.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.loader { text-align: center; }
.loader-icon { font-size: 3rem; color: var(--primary-gold); animation: pulse 1.5s ease-in-out infinite; }
.loader-text {
  color: var(--primary-gold); font-size: 1.5rem;
  font-family: 'Playfair Display', serif; letter-spacing: 3px; margin: 1rem 0;
}
.loader-bar { width: 200px; height: 3px; background: rgba(204,142,74,0.2); border-radius: 10px; overflow: hidden; margin: 0 auto; }
.loader-fill { width: 0; height: 100%; background: var(--primary-gold); border-radius: 10px; animation: loaderFill 1.5s ease forwards; }
@keyframes loaderFill { to { width: 100%; } }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.2); } }

/* ===================================
   PAGE TRANSITION
   =================================== */
.page-transition-overlay {
  position: fixed; inset: 0; z-index: 99998;
  pointer-events: none; overflow: hidden;
}
.page-transition-overlay .curtain-left,
.page-transition-overlay .curtain-right {
  position: absolute; top: 0; width: 50%; height: 100%;
}
.page-transition-overlay .curtain-left {
  left: 0; background: var(--primary-dark);
  transform: scaleX(0); transform-origin: left center;
}
.page-transition-overlay .curtain-right {
  right: 0; background: var(--primary-gold);
  transform: scaleX(0); transform-origin: right center;
}
.page-transition-overlay .transition-logo {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  opacity: 0; z-index: 2; text-align: center; color: var(--white);
  font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700;
  letter-spacing: 3px; white-space: nowrap;
}
.page-transition-overlay .transition-logo span { color: var(--primary-gold); }
.page-transition-overlay .transition-spinner {
  display: block; width: 30px; height: 30px; margin: 1rem auto 0;
  border: 2px solid rgba(255,255,255,0.2); border-top-color: var(--primary-gold);
  border-radius: 50%; animation: transSpin 0.8s linear infinite;
  opacity: 0;
}
@keyframes transSpin { to { transform: rotate(360deg); } }

.page-transition-overlay.active .curtain-left {
  transform: scaleX(1);
  transition: transform 0.6s cubic-bezier(0.86, 0, 0.07, 1);
}
.page-transition-overlay.active .curtain-right {
  transform: scaleX(1);
  transition: transform 0.6s cubic-bezier(0.86, 0, 0.07, 1) 0.08s;
}
.page-transition-overlay.active .transition-logo {
  opacity: 1; transform: translate(-50%, -50%) scale(1);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.45s,
              transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.45s;
}
.page-transition-overlay.active .transition-spinner {
  opacity: 1;
  transition: opacity 0.3s ease 0.65s;
}

/* Page entrance animation */
/* Only fades opacity — animating transform/filter on body leaves a lingering
   (non-"none") transform via fill-mode: both, which silently changes the
   containing block for every position:fixed element on the page (nav menu,
   floating buttons, toasts) from the viewport to body itself. */
.page-enter { animation: pageEnter 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both; }
@keyframes pageEnter {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===================================
   TOAST NOTIFICATIONS
   =================================== */
.toast-container {
  position: fixed; top: 100px; right: 20px; z-index: 10000;
  display: flex; flex-direction: column; gap: 10px;
}
.toast {
  display: flex; align-items: center; gap: 12px;
  background: var(--white); padding: 1rem 1.5rem;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 320px; max-width: 420px;
  animation: slideInRight 0.4s ease;
  border-left: 4px solid var(--primary-gold);
}
.toast.success { border-left-color: var(--success); }
.toast.error { border-left-color: var(--danger); }
.toast.info { border-left-color: var(--info); }
.toast-icon { font-size: 1.3rem; }
.toast.success .toast-icon { color: var(--success); }
.toast.error .toast-icon { color: var(--danger); }
.toast.info .toast-icon { color: var(--info); }
.toast-message { flex: 1; font-size: 0.9rem; color: var(--text-dark); }
.toast-close {
  background: none; border: none; cursor: pointer;
  color: var(--text-light); font-size: 1rem; padding: 0 0 0 8px;
}
.toast.removing { animation: slideOutRight 0.3s ease forwards; }
@keyframes slideInRight { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes slideOutRight { to { transform: translateX(100%); opacity: 0; } }

/* ===================================
   HEADER & NAVIGATION
   =================================== */
.header-top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.7);
  padding: 0.5rem 0;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(204,142,74,0.15);
}
.top-bar-content {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1400px; margin: 0 auto; padding: 0 2rem;
}
.top-bar-left { display: flex; gap: 1.5rem; }
.top-bar-left span { display: flex; align-items: center; gap: 0.4rem; }
.top-bar-left i { color: var(--primary-gold); font-size: 0.75rem; }
.top-bar-right { display: flex; gap: 0.8rem; }
.top-bar-right a {
  color: rgba(255,255,255,0.6); transition: var(--transition); font-size: 0.85rem;
}
.top-bar-right a:hover { color: var(--primary-gold); }

header {
  background: var(--primary-dark);
  color: var(--white);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
  border-bottom: none;
  transition: var(--transition);
  overflow: visible;
}
header::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: var(--primary-gold);
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}
header.scrolled {
  background: var(--primary-dark);
  box-shadow: 0 8px 32px rgba(0,31,45,0.35);
}

.navbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.2rem 2rem; max-width: 1400px; margin: 0 auto;
  position: relative; z-index: 1;
}

.logo {
  display: flex; align-items: center; gap: 0.5rem;
  text-decoration: none;
}
.logo-icon { font-size: 1.5rem; color: var(--primary-gold); }
.nav-logo-img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; }
.footer-logo-img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; }
.logo-text {
  font-size: 2rem; font-weight: 700; color: var(--white);
  font-family: 'Playfair Display', serif; letter-spacing: 1px;
}
.logo-accent { color: var(--primary-gold); }

.nav-menu { display: flex; list-style: none; gap: 0.3rem; align-items: center; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  color: var(--white); font-size: 0.9rem; font-weight: 600;
  padding: 0.6rem 0.9rem; border-radius: 8px;
  transition: var(--transition); display: flex; align-items: center; gap: 0.4rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--primary-dark); background: rgba(255,255,255,0.2);
}
.dropdown-arrow { font-size: 0.6rem; margin-left: 0.2rem; transition: var(--transition); }
.dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute; top: 100%; left: 0;
  background: rgba(255,255,255,0.85); min-width: 220px;
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius); box-shadow: 0 8px 32px rgba(0,31,45,0.2);
  padding: 0.5rem; opacity: 0; visibility: hidden;
  transform: translateY(10px); transition: var(--transition);
  z-index: 100;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li { list-style: none; }
.dropdown-menu li a {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.7rem 1rem; color: var(--text-dark); font-size: 0.88rem;
  border-radius: 8px; transition: var(--transition);
}
.dropdown-menu li a i { color: var(--primary-gold); width: 18px; text-align: center; }
.dropdown-menu li a:hover { background: rgba(204,142,74,0.1); color: var(--primary-gold); }

.nav-actions { display: flex; align-items: center; gap: 0.8rem; }
.nav-cta-btn {
  background: linear-gradient(135deg, var(--primary-gold), var(--hover-gold));
  color: var(--primary-dark); padding: 0.55rem 1.2rem;
  border-radius: 50px; font-weight: 600; font-size: 0.85rem;
  display: flex; align-items: center; gap: 0.4rem;
  transition: var(--transition);
}
.nav-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(204,142,74,0.4); }
.nav-login-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(204,142,74,0.15); border: 1px solid rgba(204,142,74,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-gold); font-size: 0.9rem;
  transition: var(--transition);
}
.nav-login-btn:hover { background: var(--primary-gold); color: var(--primary-dark); }

.hamburger {
  display: none; flex-direction: column; cursor: pointer;
  gap: 5px; background: none; border: none; padding: 5px;
}
.hamburger span {
  width: 25px; height: 3px; background: var(--white);
  border-radius: 3px; transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  background: #000; color: var(--white);
  padding: 12rem 2rem 8rem; text-align: center;
  position: relative; overflow: hidden; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(0,31,45,0.20) 0%, rgba(0,61,92,0.15) 100%);
}
.hero-slideshow {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero-slideshow .slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top; background-repeat: no-repeat;
  opacity: 0; transition: opacity 1.5s ease;
}
.hero-slideshow .slide.active { opacity: 1; }
.hero-content { max-width: 900px; margin: 0 auto; position: relative; z-index: 3; }

/* Glassmorphism Card */
.glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.25),
    inset 0 0 8px rgba(255, 255, 255, 0.08);
  padding: 40px;
}

.hero-glass {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  animation: fadeInUp 1s ease;
}

@media (max-width: 768px) {
  .hero-glass {
    padding: 28px 20px;
    border-radius: 18px;
  }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(204,142,74,0.15); border: 1px solid rgba(204,142,74,0.3);
  padding: 0.5rem 1.2rem; border-radius: 50px;
  color: #000000; font-size: 0.85rem; font-weight: 600;
  margin-bottom: 1.5rem; backdrop-filter: blur(10px);
  animation: fadeInDown 0.8s ease;
}

.hero h1 {
  font-size: 3.5rem; margin-bottom: 1rem; font-weight: 800;
  line-height: 1.15; animation: fadeInUp 0.8s ease 0.2s both;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.hero p {
  font-size: 1.2rem; margin-bottom: 2rem;
  color: rgba(255,255,255,0.9); line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.4s both;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.hero-buttons {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-trust-badges {
  display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap;
  margin-top: 3rem; animation: fadeInUp 0.8s ease 0.8s both;
}
.trust-badge {
  display: flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.7); font-size: 0.88rem;
}
.trust-badge i { color: var(--primary-gold); }

.hero-scroll-indicator {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 3; text-align: center; animation: fadeInUp 1s ease 1s both;
}
.scroll-mouse {
  width: 26px; height: 40px; border: 2px solid rgba(255,255,255,0.4);
  border-radius: 13px; margin: 0 auto 0.5rem; position: relative;
}
.scroll-wheel {
  width: 4px; height: 8px; background: var(--primary-gold);
  border-radius: 2px; position: absolute; top: 8px; left: 50%;
  transform: translateX(-50%); animation: scrollWheel 1.5s ease-in-out infinite;
}
.hero-scroll-indicator span {
  color: rgba(255,255,255,0.5); font-size: 0.75rem; letter-spacing: 1px;
}
@keyframes scrollWheel { 0% { opacity: 1; top: 8px; } 100% { opacity: 0; top: 22px; } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ===================================
   BUTTONS
   =================================== */
.cta-button {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary-gold), var(--hover-gold));
  color: var(--primary-dark); padding: 0.9rem 2rem;
  border-radius: 50px; font-weight: 600; font-size: 0.95rem;
  border: 2px solid var(--primary-gold); cursor: pointer;
  transition: var(--transition); font-family: 'Inter', sans-serif;
}
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(204,142,74,0.35);
}

.cta-button-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--primary-gold);
  padding: 0.9rem 2rem; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  border: 2px solid var(--primary-gold); cursor: pointer;
  transition: var(--transition); font-family: 'Inter', sans-serif;
}
.cta-button-secondary:hover {
  background: var(--primary-gold); color: var(--primary-dark);
  transform: translateY(-3px);
}

.cta-button:disabled,
.cta-button-secondary:disabled {
  opacity: 0.5; cursor: not-allowed; transform: none !important;
  box-shadow: none !important;
}

/* ===================================
   CONTAINER & SECTIONS
   =================================== */
.container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

section { padding: 6rem 2rem; }

.section-title { text-align: center; margin-bottom: 3.5rem; }
.section-title h2 {
  font-size: 2.8rem; color: var(--primary-dark);
  margin-bottom: 0.8rem; font-weight: 700;
}
.section-title p {
  font-size: 1.05rem; color: var(--text-light);
  max-width: 600px; margin: 0 auto;
}

.section-badge {
  display: inline-block; background: rgba(204,142,74,0.1);
  color: var(--primary-gold); padding: 0.3rem 1rem; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 2px;
  margin-bottom: 0.8rem; font-family: 'Inter', sans-serif;
  text-transform: uppercase;
}
.section-badge.light {
  background: rgba(255,255,255,0.15); color: var(--primary-gold);
}

.title-accent {
  color: var(--primary-gold); position: relative; display: inline-block;
}
.title-accent::after {
  content: ''; position: absolute; bottom: -8px; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--primary-gold), transparent);
}

/* ===================================
   QUICK ACTIONS STRIP
   =================================== */
.quick-actions {
  padding: 0 2rem; margin-top: -3rem; position: relative; z-index: 10;
  max-width: 1400px; margin-left: auto; margin-right: auto;
}
.quick-actions-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.quick-action-card {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(255,255,255,0.7); padding: 1.5rem;
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  backdrop-filter: blur(16px) saturate(180%);
  border-radius: var(--radius); box-shadow: 0 8px 32px rgba(0,31,45,0.1);
  transition: var(--transition); text-decoration: none;
  border: 1px solid rgba(255,255,255,0.4);
}
.quick-action-card:hover {
  transform: translateY(-5px); box-shadow: 0 12px 40px rgba(204,142,74,0.15);
  border-color: rgba(204,142,74,0.4);
  background: rgba(255,255,255,0.9);
}
.qa-icon {
  width: 50px; height: 50px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary-gold), var(--hover-gold));
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-dark); font-size: 1.2rem; flex-shrink: 0;
}
.qa-text h4 {
  color: var(--primary-dark); font-size: 1rem;
  font-family: 'Inter', sans-serif; font-weight: 600;
}
.qa-text p { color: var(--text-light); font-size: 0.82rem; }
.qa-arrow {
  color: var(--primary-gold); margin-left: auto;
  transition: var(--transition); flex-shrink: 0;
}
.quick-action-card:hover .qa-arrow { transform: translateX(5px); }

/* ===================================
   GLASS CARD
   =================================== */
.glass-card {
  background: rgba(255,255,255,0.02);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  backdrop-filter: blur(2px) saturate(115%);
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 8px 32px rgba(0,31,45,0.08);
  border-radius: var(--radius-lg);
}
.glass-card:hover {
  background: rgba(255,255,255,0.15);
  box-shadow: 0 12px 40px rgba(0,31,45,0.12);
  border-color: rgba(204,142,74,0.25);
}

/* ===================================
   GRID LAYOUTS
   =================================== */
.grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; margin-top: 2rem; }
.grid-3 > * { flex: 0 1 340px; max-width: 380px; }
.grid-2 > * { flex: 0 1 400px; max-width: 500px; }

/* ===================================
   CARDS
   =================================== */
.card {
  background: rgba(255,255,255,0.65); border-radius: var(--radius); padding: 2rem;
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  backdrop-filter: blur(12px) saturate(160%);
  box-shadow: 0 4px 24px rgba(0,31,45,0.06); transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.5);
}
.card:hover {
  transform: translateY(-8px); box-shadow: 0 16px 40px rgba(204,142,74,0.12);
  border-color: rgba(204,142,74,0.3);
  background: rgba(255,255,255,0.85);
}
.card h3 { color: var(--primary-dark); margin-bottom: 0.8rem; font-size: 1.4rem; }
.card p { color: var(--text-light); line-height: 1.8; }
.card-icon {
  width: 55px; height: 55px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary-gold), var(--hover-gold));
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-dark); font-size: 1.4rem; margin-bottom: 1rem;
}
.premium-card { border-left: 4px solid var(--primary-gold); }

/* ===================================
   MISSION & VISION
   =================================== */
.mission-vision { background: linear-gradient(135deg, #f9f7f4, var(--secondary-light)); }
.mission-vision-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2.5rem; margin-top: 2rem;
  max-width: 1200px; margin-left: auto; margin-right: auto;
}
.mv-card { padding: 2.5rem; text-align: center; transition: var(--transition); }
.mv-card:hover { transform: translateY(-5px); }
.mv-card .icon { font-size: 2.5rem; color: var(--primary-gold); margin-bottom: 1rem; }
.mv-card h3 { color: var(--primary-dark); font-size: 1.6rem; margin-bottom: 1rem; }
.mv-card p { color: var(--text-light); line-height: 1.9; }

/* ===================================
   ABOUT
   =================================== */
.about { background: linear-gradient(135deg, #f9f7f4, var(--secondary-light)); }
.about-content {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.about-text h3 { color: var(--primary-dark); font-size: 2rem; margin-bottom: 1.5rem; }
.about-text p { color: var(--text-light); margin-bottom: 1.2rem; line-height: 1.9; }
.about-stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem; margin-top: 2rem;
}
.stat-box {
  background: rgba(255,255,255,0.6); padding: 1.5rem; border-radius: var(--radius);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  backdrop-filter: blur(12px) saturate(160%);
  text-align: center; box-shadow: 0 4px 20px rgba(0,31,45,0.06);
  transition: var(--transition); border: 1px solid rgba(255,255,255,0.4);
}
.stat-box:hover {
  border-color: rgba(204,142,74,0.4); transform: translateY(-3px);
  background: rgba(255,255,255,0.85); box-shadow: 0 8px 30px rgba(204,142,74,0.1);
}
.stat-box h4 {
  color: var(--primary-gold); font-size: 2.2rem; margin-bottom: 0.3rem;
  font-family: 'Inter', sans-serif; font-weight: 700;
}
.stat-box p { color: var(--text-light); font-size: 0.85rem; }

.about-image-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: 40px;
  width: 100%;
  box-sizing: border-box;
}
.about-image {
  width: 320px;
  height: 380px;
  position: relative;
  background: none;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-img-custom {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  border-radius: inherit;
  display: block;
}
.about-image-badge {
  position: absolute; bottom: 20px; right: 20px;
  background: var(--primary-gold); color: var(--primary-dark);
  padding: 1rem 1.5rem; border-radius: var(--radius);
  text-align: center;
}
.about-image-badge span {
  font-size: 1.8rem; font-weight: 800; display: block;
  font-family: 'Inter', sans-serif;
}
.about-image-badge small { font-size: 0.75rem; font-weight: 600; }

/* ===================================
   PROCESS / HOW IT WORKS
   =================================== */
.process-section { background: var(--white); }
.process-timeline {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 0; flex-wrap: wrap; margin-top: 3rem;
  max-width: 1100px; margin-left: auto; margin-right: auto;
}
.process-step {
  text-align: center; flex: 0 0 200px; padding: 1rem;
  position: relative;
}
.step-number {
  font-size: 3rem; font-weight: 800;
  color: rgba(204,142,74,0.15);
  font-family: 'Inter', sans-serif; line-height: 1;
}
.step-icon {
  width: 70px; height: 70px; margin: 0.5rem auto;
  background: linear-gradient(135deg, var(--primary-gold), var(--hover-gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-dark); font-size: 1.5rem;
  box-shadow: 0 5px 20px rgba(204,142,74,0.3);
}
.process-step h3 {
  color: var(--primary-dark); font-size: 1.1rem; margin: 0.8rem 0 0.5rem;
}
.process-step p { color: var(--text-light); font-size: 0.88rem; line-height: 1.6; }
.process-connector {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--primary-gold), rgba(204,142,74,0.2));
  margin-top: 4.5rem; flex-shrink: 0;
}

/* ===================================
   CORE VALUES
   =================================== */
.values { background: var(--primary-dark); color: var(--white); }
.values .section-title h2,
.values .section-title p { color: var(--white); }
.values .section-title p { color: rgba(255,255,255,0.6); }
.values-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1.5rem; margin-top: 2.5rem;
  max-width: 1200px; margin-left: auto; margin-right: auto;
}
.value-card {
  flex: 0 1 340px; max-width: 380px;
}
.value-card {
  background: rgba(255,255,255,0.05); padding: 2rem;
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  backdrop-filter: blur(12px) saturate(150%);
  border-radius: var(--radius);
  border: 1px solid rgba(204,142,74,0.12); transition: var(--transition);
  /* flex sizing set above in .values-grid context */
}
.value-card:hover {
  background: rgba(204,142,74,0.1); transform: translateY(-5px);
  border-color: rgba(204,142,74,0.35);
  box-shadow: 0 8px 32px rgba(204,142,74,0.08);
}
.value-icon { font-size: 2rem; color: var(--primary-gold); margin-bottom: 1rem; }
.value-card h3 {
  color: var(--primary-gold); margin-bottom: 0.8rem; font-size: 1.3rem;
}
.value-card p { color: #ffffff; line-height: 1.7; }

/* ===================================
   WHY CHOOSE US
   =================================== */
.why-choose { background: linear-gradient(135deg, #f9f7f4, var(--secondary-light)); }

/* ===================================
   SERVICES
   =================================== */
.services { background: var(--secondary-light); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem; margin-top: 2.5rem;
  max-width: 1200px; margin-left: auto; margin-right: auto;
}
.service-card {
  background: rgba(255,255,255,0.7); border-radius: var(--radius); overflow: hidden;
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  backdrop-filter: blur(12px) saturate(160%);
  box-shadow: 0 4px 24px rgba(0,31,45,0.06); transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.5);
}
.service-card:hover {
  transform: translateY(-8px); box-shadow: 0 16px 40px rgba(204,142,74,0.12);
  border-color: rgba(204,142,74,0.3);
  background: rgba(255,255,255,0.9);
}
.service-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--accent-blue));
  color: var(--primary-gold); padding: 2rem; text-align: center; font-size: 2.5rem;
}
.service-body { padding: 1.5rem; }
.service-body h3 { color: var(--primary-dark); margin-bottom: 0.8rem; font-size: 1.3rem; }
.service-body p {
  color: var(--text-light); margin-bottom: 1rem;
  line-height: 1.7; font-size: 0.92rem;
}
.service-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--primary-gold); font-weight: 600; font-size: 0.88rem;
  transition: var(--transition);
}
.service-link:hover { gap: 0.8rem; }

/* ===================================
   DESTINATIONS
   =================================== */
.destinations { background: linear-gradient(135deg, #f9f7f4, var(--secondary-light)); }

/* Category Tab Buttons */
.dest-categories {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem;
  margin-top: 2rem; margin-bottom: 0.5rem;
}
.dest-cat-btn {
  padding: 0.85rem 1.8rem; border: 2px solid var(--primary-gold);
  background: transparent; color: var(--primary-dark);
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.95rem;
  border-radius: 50px; cursor: pointer; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.dest-cat-btn:hover {
  background: rgba(204,142,74,0.1); transform: translateY(-2px);
}
.dest-cat-btn.active {
  background: var(--primary-gold); color: var(--white);
  box-shadow: 0 4px 15px rgba(204,142,74,0.4);
}
.dest-cat-btn i { font-size: 0.9rem; }

/* Dropdown Panels */
.dest-dropdown {
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease, margin 0.4s ease;
  margin-top: 0;
}
.dest-dropdown.active {
  max-height: 5000px; opacity: 1; margin-top: 2rem;
}

/* Cards Wrapper - centered justify */
.dest-cards-wrap {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1.5rem; max-width: 1200px; margin: 0 auto;
}

/* Individual Flag Cards */
.dest-flag-card {
  width: 180px; height: 130px; border-radius: var(--radius);
  overflow: hidden; position: relative;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  cursor: pointer; background: #e8e8e8;
}
.dest-flag-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
}

/* Flag area fills the entire card */
.dest-flag {
  width: 100%; height: 100%; position: absolute; top: 0; left: 0;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
}
.dest-flag span { font-size: 5.5rem; line-height: 1; }
.dest-flag img {
  width: 100%; height: 100%; object-fit: cover;
}

/* Country name strip at bottom */
.dest-flag-card h4 {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(43, 65, 75, 0.6); color: var(--primary-gold);
  font-family: 'Inter', sans-serif; font-size: 0.85rem;
  font-weight: 600; margin: 0; padding: 0.45rem 0.5rem;
  text-align: center; z-index: 2;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ===================================
   REQUIREMENTS
   =================================== */
.requirements { background: var(--secondary-light); }
.requirements-content {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem;
  max-width: 1100px; margin: 0 auto;
}
.requirement-box { padding: 2rem; border-radius: var(--radius-lg); }
.req-header {
  display: flex; align-items: center; gap: 0.8rem;
  color: var(--primary-dark); font-size: 1.3rem; font-weight: 700;
  font-family: 'Playfair Display', serif; margin-bottom: 1.5rem;
  padding-bottom: 1rem; border-bottom: 2px solid rgba(204,142,74,0.2);
}
.req-header i { color: var(--primary-gold); }
.requirement-list { list-style: none; }
.requirement-list li {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.7rem 0; color: var(--text-light); font-size: 0.92rem;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.requirement-list li i {
  color: var(--primary-gold); font-size: 0.85rem; flex-shrink: 0;
}

/* ===================================
   PRICING
   =================================== */
.pricing { background: var(--white); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem; margin-top: 2.5rem;
  max-width: 1100px; margin-left: auto; margin-right: auto;
}
.pricing-card {
  border: 1px solid rgba(255,255,255,0.4); border-radius: var(--radius-lg);
  padding: 2.5rem 2rem; text-align: center; transition: var(--transition);
  position: relative; background: rgba(255,255,255,0.6);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 4px 24px rgba(0,31,45,0.06);
}
.pricing-card.featured {
  border-color: var(--primary-gold); transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(204,142,74,0.2);
  background: rgba(255,255,255,0.8);
}
.pricing-card:hover {
  border-color: rgba(204,142,74,0.4);
  box-shadow: 0 16px 48px rgba(204,142,74,0.15);
  background: rgba(255,255,255,0.85);
}
.pricing-badge {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: var(--primary-gold); color: var(--primary-dark);
  padding: 0.4rem 1.2rem; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700;
  display: flex; align-items: center; gap: 0.4rem;
  font-family: 'Inter', sans-serif; white-space: nowrap;
}
.pricing-header-section { margin-bottom: 1.5rem; }
.pricing-name {
  font-size: 1.4rem; color: var(--primary-dark); margin-bottom: 0.5rem;
}
.pricing-amount {
  font-size: 2.8rem; color: var(--primary-gold); font-weight: 800;
  font-family: 'Inter', sans-serif;
}
.pricing-duration { color: var(--text-light); font-size: 0.9rem; }
.pricing-features { list-style: none; margin-bottom: 2rem; text-align: left; }
.pricing-features li {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.6rem 0; color: var(--text-light); font-size: 0.92rem;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.pricing-features li i { color: var(--primary-gold); font-size: 0.8rem; }
.pricing-btn { width: 100%; justify-content: center; }

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonials {
  background: linear-gradient(135deg, var(--primary-dark), var(--accent-blue));
  color: var(--white);
}
.testimonials .section-title h2 { color: var(--white); }
.testimonials .section-title p { color: rgba(255,255,255,0.6); }
.testimonial-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem; margin-top: 2.5rem;
  max-width: 1200px; margin-left: auto; margin-right: auto;
}
.testimonial-card {
  background: rgba(255,255,255,0.06); padding: 2rem;
  border-radius: var(--radius); border: 1px solid rgba(204,142,74,0.15);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  backdrop-filter: blur(16px) saturate(180%); transition: var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.12); transform: translateY(-5px);
  border-color: rgba(204,142,74,0.3);
  box-shadow: 0 8px 32px rgba(204,142,74,0.1);
}
.testimonial-quote {
  color: rgba(204,142,74,0.3); font-size: 1.5rem; margin-bottom: 0.5rem;
}
.testimonial-stars {
  color: var(--primary-gold); font-size: 0.9rem; margin-bottom: 1rem;
  display: flex; gap: 0.2rem;
}
.testimonial-text {
  color: rgba(255,255,255,0.7); margin-bottom: 1.5rem;
  line-height: 1.8; font-style: italic;
}
.testimonial-footer { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar { font-size: 2.5rem; color: var(--primary-gold); }
.testimonial-author {
  font-weight: 600; color: var(--white);
  font-family: 'Inter', sans-serif;
}
.testimonial-role { color: var(--primary-gold); font-size: 0.82rem; }

/* ===================================
   FAQ
   =================================== */
.faq-section { background: var(--secondary-light); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white); border-radius: var(--radius); margin-bottom: 1rem;
  overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid transparent;
  transition: var(--transition);
}
.faq-item.active { border-color: var(--primary-gold); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.3rem 1.5rem; cursor: pointer; transition: var(--transition);
}
.faq-question:hover { background: rgba(204,142,74,0.03); }
.faq-question h4 {
  color: var(--primary-dark); font-size: 1.05rem;
  font-family: 'Inter', sans-serif; font-weight: 600;
  flex: 1; padding-right: 1rem;
}
.faq-toggle { color: var(--primary-gold); transition: var(--transition); flex-shrink: 0; }
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding: 0 1.5rem 1.3rem; color: var(--text-light); line-height: 1.8; }

/* ===================================
   CTA BANNER
   =================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--accent-blue));
  padding: 4rem 2rem; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(204,142,74,0.08);
}
.cta-banner-content {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 2rem;
  max-width: 1200px; margin: 0 auto;
  position: relative; z-index: 1;
}
.cta-banner-text h2 { color: var(--white); font-size: 2.2rem; margin-bottom: 0.5rem; }
.cta-banner-text p { color: rgba(255,255,255,0.7); font-size: 1.05rem; }
.cta-banner-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===================================
   CONTACT — iOS Liquid Glass (near-zero opacity + 3D depth)
   =================================== */
.contact {
  background: url('../images/contact-bg.png') center center / cover no-repeat;
  position: relative;
  perspective: 1200px;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 10, 25, 0.15);
  z-index: 0;
}
.contact > * { position: relative; z-index: 1; }
.contact .container { position: relative; z-index: 1; }
.contact-container {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem;
  max-width: 1100px; margin: 0 auto; position: relative; z-index: 1;
}

/* --- iOS glass: section heading badge --- */
.contact .section-badge {
  background: rgba(255,255,255,0.02);
  color: var(--primary-gold);
  border: 1px solid rgba(255,255,255,0.06);
  -webkit-backdrop-filter: blur(60px) saturate(220%) brightness(1.2);
  backdrop-filter: blur(60px) saturate(220%) brightness(1.2);
  box-shadow:
    inset 0 0.5px 0 rgba(255,255,255,0.15),
    inset 0 -0.5px 0 rgba(255,255,255,0.03),
    0 4px 20px rgba(0,0,0,0.10);
}
.contact .section-title h2 { color: #ffffff; text-shadow: 0 2px 16px rgba(0,0,0,0.20); }
.contact .section-title p { color: rgba(255,255,255,0.75); }

/* --- iOS glass: info panel wrapper --- */
.contact-info {
  display: flex; flex-direction: column; gap: 1rem;
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 28px;
  padding: 1.8rem 1.5rem;
  -webkit-backdrop-filter: blur(60px) saturate(220%) brightness(1.15);
  backdrop-filter: blur(60px) saturate(220%) brightness(1.15);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 -1px 0 rgba(255,255,255,0.02),
    0 20px 60px rgba(0,0,0,0.18),
    0 8px 24px rgba(0,0,0,0.10),
    0 0 0 0.5px rgba(255,255,255,0.04);
}

/* --- iOS glass: each contact item card --- */
.contact-item {
  display: flex; gap: 1.2rem; align-items: flex-start;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 1rem 1.2rem;
  -webkit-backdrop-filter: blur(44px) saturate(200%) brightness(1.12);
  backdrop-filter: blur(44px) saturate(200%) brightness(1.12);
  box-shadow:
    inset 0 0.5px 0 rgba(255,255,255,0.10),
    inset 0 -0.5px 0 rgba(255,255,255,0.02),
    0 6px 20px rgba(0,0,0,0.10),
    0 2px 6px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.contact-item:hover {
  background: rgba(255,255,255,0.05);
  transform: translateY(-4px);
  box-shadow:
    inset 0 0.5px 0 rgba(255,255,255,0.18),
    0 16px 40px rgba(0,0,0,0.16),
    0 4px 12px rgba(0,0,0,0.08);
}

/* --- iOS glass: icon bubble --- */
.contact-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(204,142,74,0.03);
  border: 1px solid rgba(204,142,74,0.08);
  -webkit-backdrop-filter: blur(40px) saturate(200%) brightness(1.15);
  backdrop-filter: blur(40px) saturate(200%) brightness(1.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-gold); font-size: 1.2rem; flex-shrink: 0;
  box-shadow:
    inset 0 0.5px 0 rgba(255,255,255,0.15),
    0 6px 16px rgba(0,0,0,0.10);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.contact-item:hover .contact-icon {
  transform: scale(1.05);
  box-shadow:
    inset 0 0.5px 0 rgba(255,255,255,0.22),
    0 8px 24px rgba(204,142,74,0.12);
}
.contact-details h3 {
  color: #ffffff; margin-bottom: 0.2rem;
  font-size: 1rem; font-family: 'Inter', sans-serif;
}
.contact-details p { color: rgba(255,255,255,0.75); font-size: 0.9rem; }

/* --- iOS glass: contact form panel --- */
.contact-form {
  background: rgba(255,255,255,0.015);
  padding: 2.5rem; border-radius: 28px;
  -webkit-backdrop-filter: blur(60px) saturate(220%) brightness(1.15);
  backdrop-filter: blur(60px) saturate(220%) brightness(1.15);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 -1px 0 rgba(255,255,255,0.02),
    0 24px 64px rgba(0,0,0,0.20),
    0 8px 24px rgba(0,0,0,0.10),
    0 0 0 0.5px rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.05);
}
.form-title {
  color: #ffffff; margin-bottom: 1.5rem; font-size: 1.4rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.form-title i { color: var(--primary-gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block; margin-bottom: 0.4rem;
  color: rgba(255,255,255,0.85); font-weight: 500; font-size: 0.88rem;
}
.form-group label i { color: var(--primary-gold); margin-right: 0.3rem; }

/* --- iOS glass: form inputs --- */
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 0.75rem 1rem;
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 14px; font-family: 'Inter', sans-serif;
  font-size: 0.92rem; transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  background: rgba(255,255,255,0.015);
  color: #ffffff;
  -webkit-backdrop-filter: blur(40px) saturate(200%) brightness(1.08);
  backdrop-filter: blur(40px) saturate(200%) brightness(1.08);
  box-shadow:
    inset 0 0.5px 0 rgba(255,255,255,0.08),
    inset 0 -0.5px 0 rgba(255,255,255,0.02),
    0 4px 12px rgba(0,0,0,0.06);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.30); }
.form-group select option { background: #0a1628; color: #ffffff; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: rgba(204,142,74,0.20);
  background: rgba(255,255,255,0.03);
  box-shadow:
    0 0 0 3px rgba(204,142,74,0.06),
    inset 0 0.5px 0 rgba(255,255,255,0.12),
    0 8px 24px rgba(0,0,0,0.10);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { cursor: pointer; }

.form-checkbox { display: flex; align-items: flex-start; gap: 0.5rem; }
.form-checkbox input[type="checkbox"] {
  margin-top: 0.3rem; accent-color: var(--primary-gold);
  width: 16px; height: 16px;
}
.form-checkbox label { font-size: 0.82rem; color: rgba(255,255,255,0.60); }
.form-checkbox a { color: var(--primary-gold); }

/* --- iOS glass: submit button --- */
.submit-btn {
  background: rgba(204,142,74,0.06);
  color: var(--primary-gold); padding: 0.9rem 2rem;
  border: 1px solid rgba(204,142,74,0.10);
  border-radius: 50px; font-weight: 600; cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  font-size: 0.95rem; width: 100%;
  font-family: 'Inter', sans-serif;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  -webkit-backdrop-filter: blur(40px) saturate(200%) brightness(1.15);
  backdrop-filter: blur(40px) saturate(200%) brightness(1.15);
  box-shadow:
    inset 0 0.5px 0 rgba(255,255,255,0.15),
    0 8px 28px rgba(0,0,0,0.12);
  text-shadow: 0 0 16px rgba(204,142,74,0.25);
}
.submit-btn:hover {
  background: rgba(204,142,74,0.12);
  border-color: rgba(204,142,74,0.18);
  transform: translateY(-3px);
  box-shadow:
    inset 0 0.5px 0 rgba(255,255,255,0.22),
    0 16px 40px rgba(204,142,74,0.14),
    0 6px 16px rgba(0,0,0,0.10);
}
.submit-btn:active {
  transform: translateY(-2px);
  box-shadow:
    inset 0 0.5px 0 rgba(255,255,255,0.28),
    0 8px 28px rgba(204,142,74,0.18);
}

/* ===================================
   BLOG
   =================================== */
.blog-section { background: var(--white); }
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem; margin-top: 2.5rem;
  max-width: 1200px; margin-left: auto; margin-right: auto;
}
.blog-card {
  background: rgba(255,255,255,0.65); border-radius: var(--radius); overflow: hidden;
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  backdrop-filter: blur(12px) saturate(160%);
  box-shadow: 0 4px 24px rgba(0,31,45,0.06); transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.4);
}
.blog-card:hover {
  transform: translateY(-8px); box-shadow: 0 16px 40px rgba(204,142,74,0.12);
  border-color: rgba(204,142,74,0.3);
  background: rgba(255,255,255,0.85);
}
.blog-image {
  width: 100%; height: 200px;
  background: linear-gradient(135deg, var(--primary-dark), var(--accent-blue));
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-gold); font-size: 2.5rem;
}
.blog-content { padding: 1.5rem; }
.blog-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.8rem; }
.blog-date {
  color: var(--text-light); font-size: 0.8rem;
  display: flex; align-items: center; gap: 0.3rem;
}
.blog-date i { color: var(--primary-gold); }
.blog-category {
  background: rgba(204,142,74,0.1); color: var(--primary-gold);
  padding: 0.2rem 0.7rem; border-radius: 50px;
  font-size: 0.72rem; font-weight: 600;
}
.blog-card h3 { color: var(--primary-dark); margin-bottom: 0.6rem; font-size: 1.2rem; }
.blog-card p {
  color: var(--text-light); margin-bottom: 1rem;
  line-height: 1.7; font-size: 0.9rem;
}
.read-more {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--primary-gold); font-weight: 600; font-size: 0.88rem;
  transition: var(--transition);
}
.read-more:hover { gap: 0.8rem; }

/* ===================================
   FOOTER
   =================================== */
footer { background: var(--primary-dark); color: var(--white); }
.footer-top { padding: 4rem 2rem 2rem; max-width: 1400px; margin: 0 auto; }
.footer-content {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 2.5rem;
}
.footer-logo { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.footer-about p {
  color: rgba(255,255,255,0.6); line-height: 1.8;
  margin-bottom: 1.5rem; font-size: 0.9rem;
}
.footer-section h4 { color: var(--primary-gold); margin-bottom: 1.2rem; font-size: 1.1rem; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.6rem; }
.footer-section ul li a,
.footer-section ul li {
  color: rgba(255,255,255,0.6); font-size: 0.9rem;
  transition: var(--transition);
  display: flex; align-items: center; gap: 0.5rem;
}
.footer-section ul li a:hover { color: var(--primary-gold); padding-left: 0.3rem; }
.footer-section ul li i { color: var(--primary-gold); font-size: 0.7rem; width: 12px; }
.footer-contact-list li { display: flex !important; align-items: flex-start !important; }
.footer-contact-list li i { margin-top: 0.2rem; }

.social-links { display: flex; gap: 0.7rem; }
.social-links a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(204,142,74,0.1); border: 1px solid rgba(204,142,74,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-gold); font-size: 0.9rem; transition: var(--transition);
}
.social-links a:hover {
  background: var(--primary-gold); color: var(--primary-dark);
  transform: translateY(-3px);
}

.newsletter-form { display: flex; gap: 0; margin-top: 0.8rem; }
.newsletter-form input {
  flex: 1; padding: 0.65rem 1rem;
  border: 1.5px solid rgba(204,142,74,0.3);
  border-radius: 10px 0 0 10px;
  background: rgba(255,255,255,0.05);
  color: var(--white); font-size: 0.88rem; font-family: 'Inter', sans-serif;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { outline: none; border-color: var(--primary-gold); }
.newsletter-form button {
  background: var(--primary-gold); color: var(--primary-dark); border: none;
  padding: 0.65rem 1rem; border-radius: 0 10px 10px 0; cursor: pointer;
  transition: var(--transition); font-size: 0.9rem;
}
.newsletter-form button:hover { background: var(--hover-gold); }

.footer-bottom {
  border-top: 1px solid rgba(204,142,74,0.15); padding: 1.2rem 2rem;
  max-width: 1400px; margin: 0 auto;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a {
  color: rgba(255,255,255,0.5); font-size: 0.85rem; transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--primary-gold); }

/* ===================================
   WHATSAPP FLOAT
   =================================== */
.whatsapp-float {
  position: fixed; bottom: 90px; right: 25px; z-index: 998;
  width: 55px; height: 55px; border-radius: 50%;
  background: #25D366; color: var(--white); font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 5px 20px rgba(37,211,102,0.4);
  transition: var(--transition); animation: floatBounce 2s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}
@keyframes floatBounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* ===================================
   LIVE CHAT WIDGET
   =================================== */
.chat-widget {
  position: fixed; bottom: 90px; right: 25px; z-index: 999;
  width: 370px; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: scale(0); transform-origin: bottom right;
  transition: transform 0.3s ease;
  display: flex; flex-direction: column; max-height: 500px;
  background: var(--white);
}
.chat-widget.open { transform: scale(1); }
.chat-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--accent-blue));
  color: var(--white); padding: 1rem 1.2rem;
  display: flex; justify-content: space-between; align-items: center;
}
.chat-header-info { display: flex; align-items: center; gap: 0.7rem; }
.chat-status-dot { width: 8px; height: 8px; border-radius: 50%; background: #25D366; }
.chat-close {
  background: none; border: none; color: var(--white);
  cursor: pointer; font-size: 1rem;
}
.chat-body {
  background: #f0f2f5; display: flex; flex-direction: column; flex: 1;
}
.chat-messages {
  padding: 1rem; overflow-y: auto; flex: 1;
  max-height: 280px; min-height: 200px;
}
.chat-msg { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.chat-msg.bot .chat-bubble {
  background: var(--white); color: var(--text-dark);
  border-radius: 0 12px 12px 12px;
}
.chat-msg.user { flex-direction: row-reverse; }
.chat-msg.user .chat-bubble {
  background: var(--primary-dark); color: var(--white);
  border-radius: 12px 0 12px 12px;
}
.chat-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--primary-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-dark); font-size: 0.7rem; flex-shrink: 0;
}
.chat-msg.user .chat-avatar { background: var(--accent-blue); color: var(--white); }
.chat-bubble { padding: 0.7rem 1rem; max-width: 80%; box-shadow: var(--shadow-sm); }
.chat-bubble p { font-size: 0.88rem; line-height: 1.5; }
.chat-time {
  font-size: 0.7rem; color: var(--text-light);
  margin-top: 0.3rem; display: block;
}

.chat-quick-replies { padding: 0.5rem 1rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.quick-reply {
  background: var(--white); border: 1px solid var(--primary-gold);
  color: var(--primary-gold);
  padding: 0.4rem 0.8rem; border-radius: 50px;
  font-size: 0.78rem; cursor: pointer;
  transition: var(--transition); font-family: 'Inter', sans-serif;
}
.quick-reply:hover { background: var(--primary-gold); color: var(--primary-dark); }

.chat-input-form {
  display: flex; gap: 0; padding: 0.8rem; background: var(--white);
  border-top: 1px solid #e0e0e0;
}
.chat-input-form input {
  flex: 1; border: 1.5px solid #e0e0e0; border-radius: 50px 0 0 50px;
  padding: 0.6rem 1rem; font-size: 0.88rem; font-family: 'Inter', sans-serif;
}
.chat-input-form input:focus { outline: none; border-color: var(--primary-gold); }
.chat-input-form button {
  background: var(--primary-gold); border: none; color: var(--primary-dark);
  padding: 0.6rem 1rem; border-radius: 0 50px 50px 0; cursor: pointer;
  transition: var(--transition);
}

.chat-fab {
  position: fixed; bottom: 25px; right: 25px; z-index: 999;
  width: 55px; height: 55px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-gold), var(--hover-gold));
  color: var(--primary-dark); font-size: 1.3rem;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 5px 20px rgba(204,142,74,0.4);
  transition: var(--transition);
}
.chat-fab:hover { transform: scale(1.1); }
.chat-notification {
  position: absolute; top: -5px; right: -5px;
  background: var(--danger); color: var(--white);
  width: 20px; height: 20px; border-radius: 50%;
  font-size: 0.7rem; display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}

/* ===================================
   PAGE HERO (Sub-pages)
   =================================== */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--accent-blue));
  padding: 8rem 2rem 4rem; position: relative; overflow: hidden;
  text-align: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(204,142,74,0.1), transparent);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: 2.8rem; margin-bottom: 1rem; }
.page-hero p {
  color: rgba(255,255,255,0.7); font-size: 1.1rem;
  max-width: 600px; margin: 0 auto 1.5rem;
}
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  justify-content: center; font-size: 0.88rem;
}
.breadcrumb a { color: var(--primary-gold); }
.breadcrumb i { color: rgba(255,255,255,0.3); font-size: 0.6rem; }
.breadcrumb span { color: rgba(255,255,255,0.6); }

/* ===================================
   APPOINTMENT BOOKING
   =================================== */
.appointment-section {
  padding: 4rem 2rem;
  max-width: 1100px; margin: 0 auto;
}

.booking-progress {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 3rem;
}
.progress-step {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  min-width: 120px;
}
.progress-circle {
  width: 45px; height: 45px; border-radius: 50%;
  background: #e0e0e0; color: var(--text-light);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; transition: var(--transition);
  font-family: 'Inter', sans-serif;
}
.progress-step.active .progress-circle {
  background: var(--primary-gold); color: var(--primary-dark);
  box-shadow: 0 5px 15px rgba(204,142,74,0.3);
}
.progress-step.completed .progress-circle { background: var(--success); color: var(--white); }
.progress-step span { font-size: 0.78rem; color: var(--text-light); font-weight: 500; }
.progress-step.active span,
.progress-step.completed span { color: var(--primary-dark); }
.progress-line {
  width: 60px; height: 3px; background: #e0e0e0; margin-bottom: 1.5rem;
}
.progress-line.completed { background: var(--success); }

.booking-step { animation: fadeInUp 0.5s ease; }
.booking-step.hidden { display: none; }
.booking-step h2 {
  text-align: center; font-size: 2rem;
  color: var(--primary-dark); margin-bottom: 0.5rem;
}
.step-subtitle { text-align: center; color: var(--text-light); margin-bottom: 2rem; }
.step-actions {
  display: flex; justify-content: center; gap: 1rem;
  margin-top: 2.5rem; flex-wrap: wrap;
}

/* Service Selection */
.service-selection-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}
.service-option input { display: none; }
.service-option-card {
  padding: 1.5rem; text-align: center;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius); cursor: pointer;
  transition: var(--transition); background: var(--white);
}
.service-option-card:hover { border-color: var(--primary-gold); }
.service-option input:checked + .service-option-card {
  border-color: var(--primary-gold);
  background: rgba(204,142,74,0.05);
  box-shadow: 0 5px 20px rgba(204,142,74,0.15);
}
.service-option-card i {
  font-size: 2rem; color: var(--primary-gold);
  margin-bottom: 0.8rem; display: block;
}
.service-option-card h4 {
  color: var(--primary-dark); font-size: 1rem; margin-bottom: 0.3rem;
  font-family: 'Inter', sans-serif;
}
.service-option-card p { color: var(--text-light); font-size: 0.8rem; margin-bottom: 0.5rem; }
.service-price { color: var(--primary-gold); font-weight: 700; font-size: 0.9rem; }
.featured-option {
  background: rgba(204,142,74,0.05); border-color: rgba(204,142,74,0.3);
}

/* Calendar */
.datetime-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.calendar-container {
  background: var(--white); padding: 1.5rem; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); border: 1px solid #e8e8e8;
}
.calendar-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem;
}
.calendar-header h3 {
  color: var(--primary-dark); font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
}
.cal-nav {
  width: 35px; height: 35px; border-radius: 50%;
  border: 1px solid #e0e0e0; background: var(--white);
  cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: var(--transition); font-size: 0.8rem;
  color: var(--text-dark);
}
.cal-nav:hover {
  background: var(--primary-gold); color: var(--primary-dark);
  border-color: var(--primary-gold);
}
.calendar-weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 0; text-align: center; margin-bottom: 0.5rem;
}
.calendar-weekdays span {
  font-size: 0.78rem; font-weight: 600; color: var(--text-light); padding: 0.5rem;
}
.calendar-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: 10px; cursor: pointer; font-size: 0.9rem;
  transition: var(--transition); font-weight: 500;
}
.cal-day:hover:not(.disabled):not(.empty) { background: rgba(204,142,74,0.1); }
.cal-day.today { border: 2px solid var(--primary-gold); }
.cal-day.selected {
  background: var(--primary-gold); color: var(--primary-dark); font-weight: 700;
}
.cal-day.disabled { color: #ccc; cursor: not-allowed; }
.cal-day.empty { cursor: default; }
.calendar-note {
  margin-top: 1rem; font-size: 0.78rem; color: var(--text-light);
  display: flex; align-items: center; gap: 0.3rem;
}
.calendar-note i { color: var(--info); }

.time-slots-container {
  background: var(--white); padding: 1.5rem; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); border: 1px solid #e8e8e8;
}
.time-slots-container h3 {
  color: var(--primary-dark); margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
}
.selected-date-display {
  color: var(--primary-gold); font-weight: 600;
  margin-bottom: 1rem; font-size: 0.9rem;
}
.time-slots { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
.time-slot {
  padding: 0.8rem; text-align: center;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px; cursor: pointer; transition: var(--transition);
  font-size: 0.88rem; font-weight: 500; background: var(--white);
}
.time-slot:hover { border-color: var(--primary-gold); }
.time-slot.selected {
  background: var(--primary-gold); color: var(--primary-dark);
  border-color: var(--primary-gold); font-weight: 700;
}
.time-slot.unavailable {
  opacity: 0.4; cursor: not-allowed; text-decoration: line-through;
}
.no-slots {
  grid-column: 1/-1; text-align: center;
  color: var(--text-light); padding: 2rem;
}

/* Booking form */
.booking-form { max-width: 700px; margin: 0 auto; }
.booking-form .form-row { margin-bottom: 0; }

/* Booking Confirmation */
.confirmation-container { text-align: center; max-width: 700px; margin: 0 auto; }
.confirmation-icon {
  font-size: 4rem; color: var(--success); margin-bottom: 1rem;
  animation: pulse 1.5s ease infinite;
}
.booking-summary {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: 2rem; margin: 2rem 0;
  text-align: left; border: 1px solid rgba(204,142,74,0.2);
}
.booking-summary h3 {
  color: var(--primary-dark); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.summary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.summary-item {
  display: flex; flex-direction: column; padding: 0.8rem;
  background: var(--secondary-light); border-radius: 8px;
}
.summary-label {
  font-size: 0.78rem; color: var(--text-light); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.summary-value {
  color: var(--primary-dark); font-weight: 600;
  font-size: 0.95rem; margin-top: 0.2rem;
}
.confirmation-actions {
  display: flex; justify-content: center; gap: 1rem;
  margin: 2rem 0; flex-wrap: wrap;
}
.confirmation-note {
  display: flex; align-items: flex-start; gap: 0.8rem; text-align: left;
  background: rgba(23,162,184,0.08); padding: 1.2rem; border-radius: var(--radius);
  border: 1px solid rgba(23,162,184,0.2);
}
.confirmation-note i {
  color: var(--info); font-size: 1.2rem; flex-shrink: 0; margin-top: 0.2rem;
}
.confirmation-note p { color: var(--text-light); font-size: 0.88rem; line-height: 1.7; }

/* ===================================
   TRACKER
   =================================== */
.tracker-section {
  padding: 4rem 2rem; max-width: 900px; margin: 0 auto;
}
.tracker-search-box {
  max-width: 600px; margin: 0 auto 3rem; text-align: center;
  background: var(--white); padding: 2.5rem; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.tracker-search-box h2 { color: var(--primary-dark); margin-bottom: 0.5rem; }
.tracker-search-box > p {
  color: var(--text-light); margin-bottom: 1.5rem; font-size: 0.92rem;
}
.tracker-input-group { display: flex; gap: 0; }
.tracker-input-group input {
  flex: 1; padding: 0.85rem 1.2rem;
  border: 2px solid #e0e0e0;
  border-radius: 50px 0 0 50px; font-size: 1rem; font-family: 'Inter', sans-serif;
}
.tracker-input-group input:focus {
  outline: none; border-color: var(--primary-gold);
}
.tracker-input-group .cta-button {
  border-radius: 0 50px 50px 0; padding: 0.85rem 1.5rem;
}
.tracker-hint {
  margin-top: 1rem; font-size: 0.82rem; color: var(--text-light);
}

.tracker-header-card {
  text-align: center; padding: 2rem;
  background: linear-gradient(135deg, var(--primary-dark), var(--accent-blue));
  border-radius: var(--radius-lg); color: var(--white); margin-bottom: 2.5rem;
}
.tracker-status-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1.5rem; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; margin-bottom: 1rem;
  background: rgba(204,142,74,0.2); color: var(--primary-gold);
}
.tracker-status-badge.processing { background: rgba(255,193,7,0.2); color: var(--warning); }
.tracker-status-badge.approved { background: rgba(40,167,69,0.2); color: var(--success); }

/* Timeline */
.tracker-timeline { max-width: 600px; margin: 0 auto 2.5rem; padding-left: 2rem; }
.timeline-item {
  position: relative; padding: 0 0 2rem 2.5rem;
  border-left: 3px solid #e0e0e0;
}
.timeline-item:last-child { border-left: none; padding-bottom: 0; }
.timeline-item.completed { border-left-color: var(--success); }
.timeline-item.active { border-left-color: var(--warning); }
.timeline-dot {
  position: absolute; left: -14px; top: 0;
  width: 25px; height: 25px; border-radius: 50%;
  background: #e0e0e0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; color: var(--white);
}
.timeline-item.completed .timeline-dot { background: var(--success); }
.timeline-item.active .timeline-dot {
  background: var(--warning); animation: pulse 1.5s infinite;
}
.timeline-content h4 {
  color: var(--primary-dark); font-family: 'Inter', sans-serif;
  font-size: 1rem; margin-bottom: 0.3rem;
}
.timeline-content p { color: var(--text-light); font-size: 0.85rem; }
.timeline-date { font-size: 0.78rem; color: var(--primary-gold); font-weight: 600; }

.tracker-details-card {
  background: var(--white); padding: 2rem; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); margin-bottom: 2rem;
}
.tracker-details-card h3 {
  color: var(--primary-dark); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.tracker-details-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.detail-item { padding: 1rem; background: var(--secondary-light); border-radius: 8px; }
.detail-label {
  font-size: 0.75rem; color: var(--text-light); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px; display: block;
}
.detail-value {
  color: var(--primary-dark); font-weight: 600; margin-top: 0.3rem; display: block;
}
.tracker-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.tracker-not-found { text-align: center; padding: 3rem; }
.not-found-icon { font-size: 3rem; color: var(--warning); margin-bottom: 1rem; }
.tracker-not-found h3 { color: var(--primary-dark); margin-bottom: 0.5rem; }
.not-found-tips {
  text-align: left; max-width: 500px; margin: 1.5rem auto 0;
  background: rgba(255,193,7,0.08); padding: 1.5rem; border-radius: var(--radius);
}
.not-found-tips h4 { color: var(--primary-dark); margin-bottom: 0.5rem; }
.not-found-tips ul { list-style: none; }
.not-found-tips li {
  padding: 0.3rem 0; color: var(--text-light); font-size: 0.88rem;
  padding-left: 1rem; position: relative;
}
.not-found-tips li::before {
  content: '•'; position: absolute; left: 0; color: var(--primary-gold);
}

/* ===================================
   CLIENT PORTAL
   =================================== */
.portal-section {
  padding: 4rem 2rem; max-width: 1100px; margin: 0 auto;
}
.login-container { display: flex; justify-content: center; }
.login-card {
  background: var(--white); width: 100%; max-width: 460px;
  padding: 2.5rem; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); border: 1px solid rgba(204,142,74,0.15);
}
.login-header { text-align: center; margin-bottom: 2rem; }
.login-icon {
  width: 70px; height: 70px; margin: 0 auto 1rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-gold), var(--hover-gold));
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-dark); font-size: 1.5rem;
}
.login-header h2 {
  color: var(--primary-dark); font-size: 1.6rem; margin-bottom: 0.3rem;
}
.login-header p { color: var(--text-light); font-size: 0.9rem; }
.login-form .form-group { margin-bottom: 1.2rem; }
.password-input { position: relative; }
.password-input input { padding-right: 40px; }
.password-toggle {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer;
  color: var(--text-light); font-size: 0.9rem;
}
.login-options {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.5rem; font-size: 0.85rem;
}
.remember-me {
  display: flex; align-items: center; gap: 0.4rem;
  color: var(--text-light); cursor: pointer;
}
.remember-me input { accent-color: var(--primary-gold); }
.forgot-password { color: var(--primary-gold); font-weight: 500; }
.login-btn { width: 100%; justify-content: center; }
.login-divider {
  text-align: center; margin: 1.5rem 0; position: relative;
}
.login-divider::before {
  content: ''; position: absolute; top: 50%; left: 0; right: 0;
  height: 1px; background: #e0e0e0;
}
.login-divider span {
  background: var(--white); padding: 0 1rem; position: relative;
  color: var(--text-light); font-size: 0.85rem;
}
.login-alt { text-align: center; }
.login-alt p {
  font-size: 0.88rem; color: var(--text-light); margin-bottom: 0.5rem;
}
.signup-link { color: var(--primary-gold); font-weight: 600; }
.demo-hint {
  font-size: 0.82rem; color: var(--text-light); margin-top: 1rem;
  background: rgba(204,142,74,0.05); padding: 0.8rem; border-radius: 8px;
}

/* Dashboard */
.dashboard-container { animation: fadeInUp 0.5s ease; }
.dashboard-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem;
}
.dashboard-welcome h2 { color: var(--primary-dark); }
.dashboard-welcome p { color: var(--text-light); }

.dashboard-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-bottom: 2.5rem;
}
.dash-stat-card {
  background: var(--white); padding: 1.5rem; border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: 1rem;
  border: 1px solid transparent; transition: var(--transition);
}
.dash-stat-card:hover { border-color: var(--primary-gold); }
.dash-stat-icon {
  width: 50px; height: 50px; border-radius: var(--radius);
  background: rgba(204,142,74,0.1); color: var(--primary-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.dash-stat-icon.processing { background: rgba(255,193,7,0.1); color: var(--warning); }
.dash-stat-icon.approved { background: rgba(40,167,69,0.1); color: var(--success); }
.dash-stat-info h3 {
  font-size: 1.8rem; color: var(--primary-dark);
  font-family: 'Inter', sans-serif;
}
.dash-stat-info p { font-size: 0.82rem; color: var(--text-light); }

.dashboard-tabs {
  display: flex; gap: 0;
  border-bottom: 2px solid #e8e8e8; margin-bottom: 2rem;
  overflow-x: auto;
}
.dash-tab {
  padding: 0.8rem 1.5rem; background: none; border: none; cursor: pointer;
  color: var(--text-light); font-weight: 500; font-size: 0.92rem;
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  display: flex; align-items: center; gap: 0.5rem;
  transition: var(--transition); font-family: 'Inter', sans-serif;
  white-space: nowrap;
}
.dash-tab.active { color: var(--primary-gold); border-bottom-color: var(--primary-gold); }
.dash-tab:hover { color: var(--primary-gold); }

.dash-tab-content { display: none; animation: fadeInUp 0.3s ease; }
.dash-tab-content.active { display: block; }
.tab-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem;
}
.tab-header h3 { color: var(--primary-dark); }

.empty-state { text-align: center; padding: 3rem; color: var(--text-light); }
.empty-state i {
  font-size: 3rem; color: rgba(204,142,74,0.3);
  margin-bottom: 1rem; display: block;
}
.empty-state h4 { color: var(--primary-dark); margin-bottom: 0.5rem; }

/* Appointment Card in Dashboard */
.appointment-card {
  background: var(--white); border-radius: var(--radius); padding: 1.5rem;
  box-shadow: var(--shadow-sm); margin-bottom: 1rem;
  display: grid; grid-template-columns: auto 1fr auto; gap: 1.5rem;
  align-items: center; border-left: 4px solid var(--primary-gold);
  transition: var(--transition);
}
.appointment-card:hover { box-shadow: var(--shadow-md); }
.appt-date-box {
  text-align: center; background: rgba(204,142,74,0.1);
  padding: 0.8rem 1.2rem; border-radius: var(--radius);
}
.appt-date-box .month {
  font-size: 0.75rem; color: var(--primary-gold); font-weight: 700;
  text-transform: uppercase;
}
.appt-date-box .day {
  font-size: 1.8rem; font-weight: 800; color: var(--primary-dark);
  line-height: 1; font-family: 'Inter', sans-serif;
}
.appt-info h4 {
  color: var(--primary-dark); font-family: 'Inter', sans-serif;
  font-size: 1rem; margin-bottom: 0.3rem;
}
.appt-info p { color: var(--text-light); font-size: 0.85rem; }
.appt-info .appt-meta {
  display: flex; gap: 1rem; margin-top: 0.3rem; font-size: 0.82rem;
}
.appt-info .appt-meta span { display: flex; align-items: center; gap: 0.3rem; }
.appt-info .appt-meta i { color: var(--primary-gold); }
.appt-status {
  padding: 0.3rem 1rem; border-radius: 50px; font-size: 0.78rem;
  font-weight: 600; white-space: nowrap;
}
.appt-status.confirmed { background: rgba(40,167,69,0.1); color: var(--success); }
.appt-status.pending { background: rgba(255,193,7,0.1); color: var(--warning); }

/* Document Checklist */
.document-checklist { margin-bottom: 1.5rem; }
.doc-item {
  display: flex; align-items: center; gap: 1rem; padding: 1rem;
  background: var(--white); border-radius: var(--radius);
  margin-bottom: 0.5rem; box-shadow: var(--shadow-sm);
  border: 1px solid transparent; transition: var(--transition);
}
.doc-item:hover { border-color: rgba(204,142,74,0.2); }
.doc-check input { display: none; }
.doc-check label {
  width: 24px; height: 24px; border: 2px solid #d0d0d0;
  border-radius: 6px; display: block; cursor: pointer;
  transition: var(--transition); position: relative;
}
.doc-check input:checked + label {
  background: var(--success); border-color: var(--success);
}
.doc-check input:checked + label::after {
  content: '✓'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); color: var(--white);
  font-size: 0.8rem; font-weight: 700;
}
.doc-info { flex: 1; }
.doc-info h4 {
  font-size: 0.92rem; color: var(--primary-dark);
  font-family: 'Inter', sans-serif;
}
.doc-info p { font-size: 0.78rem; color: var(--text-light); }
.doc-status {
  padding: 0.2rem 0.8rem; border-radius: 50px;
  font-size: 0.72rem; font-weight: 600;
}
.doc-status.pending { background: rgba(255,193,7,0.1); color: var(--warning); }
.doc-status.uploaded { background: rgba(40,167,69,0.1); color: var(--success); }

.doc-progress-bar {
  width: 100%; height: 8px; background: #e8e8e8;
  border-radius: 10px; overflow: hidden; margin-bottom: 0.5rem;
}
.doc-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-gold), var(--success));
  border-radius: 10px; transition: width 0.5s ease;
}
.doc-progress-text {
  text-align: center; font-size: 0.85rem; color: var(--text-light);
}

/* Messages */
.message-item {
  display: flex; gap: 1rem; padding: 1.2rem;
  background: var(--white); border-radius: var(--radius);
  margin-bottom: 0.8rem; box-shadow: var(--shadow-sm);
  border-left: 3px solid transparent; transition: var(--transition);
}
.message-item.unread {
  border-left-color: var(--primary-gold);
  background: rgba(204,142,74,0.02);
}
.msg-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(204,142,74,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-gold); flex-shrink: 0;
}
.msg-content { flex: 1; }
.msg-header {
  display: flex; justify-content: space-between; margin-bottom: 0.3rem;
}
.msg-header h4 {
  font-size: 0.92rem; color: var(--primary-dark);
  font-family: 'Inter', sans-serif;
}
.msg-time { font-size: 0.78rem; color: var(--text-light); }
.msg-content p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }

.profile-form { max-width: 600px; }

/* ===================================
   VISA CALCULATOR
   =================================== */
.calculator-section {
  padding: 4rem 2rem; max-width: 1100px; margin: 0 auto;
}
.calculator-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.calc-input-panel,
.calc-results-panel {
  background: var(--white); padding: 2rem; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.calc-input-panel h2,
.calc-results-panel h2 {
  color: var(--primary-dark); font-size: 1.4rem; margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.calc-extras { margin: 1.5rem 0; }
.calc-extras h4 {
  color: var(--primary-dark); margin-bottom: 0.8rem;
  font-family: 'Inter', sans-serif;
}
.calc-checkbox {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.5rem 0; color: var(--text-light); font-size: 0.9rem; cursor: pointer;
}
.calc-checkbox input { accent-color: var(--primary-gold); width: 16px; height: 16px; }
.calc-btn { width: 100%; justify-content: center; margin-top: 1rem; }

.calc-empty { text-align: center; padding: 3rem 1rem; }
.calc-empty i {
  font-size: 3rem; color: rgba(204,142,74,0.2); display: block; margin-bottom: 1rem;
}
.calc-empty p { color: var(--text-light); }

.calc-breakdown.hidden { display: none; }
.breakdown-item {
  display: flex; justify-content: space-between;
  padding: 0.8rem 0; border-bottom: 1px solid #f0f0f0;
  font-size: 0.92rem; color: var(--text-light);
}
.breakdown-item span:last-child { font-weight: 600; color: var(--primary-dark); }
.breakdown-item.total {
  border-top: 2px solid var(--primary-gold); border-bottom: none; padding-top: 1rem;
}
.breakdown-item.total span {
  font-size: 1.2rem; color: var(--primary-gold); font-weight: 800;
}
.breakdown-divider { height: 0; }
.calc-disclaimer {
  font-size: 0.78rem; color: var(--text-light); margin: 1.5rem 0;
  display: flex; align-items: flex-start; gap: 0.4rem;
}
.calc-disclaimer i { color: var(--info); flex-shrink: 0; margin-top: 0.15rem; }
.calc-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===================================
   SCROLL TO TOP
   =================================== */
.scroll-top-btn {
  position: fixed; bottom: 25px; left: 25px; z-index: 990;
  width: 45px; height: 45px; border-radius: 50%;
  background: var(--primary-dark); color: var(--primary-gold);
  border: 1px solid rgba(204,142,74,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
}
.scroll-top-btn.visible { opacity: 1; visibility: visible; }
.scroll-top-btn:hover {
  background: var(--primary-gold); color: var(--primary-dark);
  transform: translateY(-3px);
}

/* ===================================
   UTILITY
   =================================== */
.hidden { display: none !important; }
.text-center { text-align: center; }
.text-gold { color: var(--primary-gold); }

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
  .quick-actions-grid { grid-template-columns: repeat(2, 1fr); }
  .dashboard-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-content { grid-template-columns: repeat(2, 1fr); }
  .calculator-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-menu {
    position: fixed; top: 0; left: -100%; width: 80%; height: 100vh;
    flex-direction: column; background: var(--primary-dark);
    padding: 5rem 2rem 2rem; gap: 0; z-index: 1001;
    transition: left 0.3s ease; overflow-y: auto;
  }
  .nav-menu.active { left: 0; }
  .nav-menu > li > a { padding: 0.8rem 0; font-size: 1rem; }
  .dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: rgba(255,255,255,0.05); box-shadow: none;
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
    padding: 0;
  }
  .dropdown.open .dropdown-menu { max-height: 400px; padding: 0.5rem; }
  .dropdown-menu li a { color: rgba(255,255,255,0.7); }
  .nav-actions { display: none; }

  .header-top-bar { display: none; }
  header::before { display: none; }
  .hero { padding: 8rem 1.5rem 4rem; min-height: auto; }
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1rem; }
  .section-title h2 { font-size: 2rem; }
  .about-content { grid-template-columns: 1fr; }
  .about-image-block {
    margin-left: 0;
    margin-top: 2rem;
    width: 100%;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
  .contact-container { grid-template-columns: 1fr; }
  .mission-vision-grid { grid-template-columns: 1fr; }
  .requirements-content { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: scale(1); }
  .quick-actions-grid { grid-template-columns: 1fr; }
  .quick-actions { margin-top: -2rem; }
  .process-timeline { flex-direction: column; align-items: center; }
  .process-connector {
    width: 3px; height: 40px;
    background: linear-gradient(180deg, var(--primary-gold), rgba(204,142,74,0.2));
    margin: 0;
  }
  .datetime-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .dashboard-stats { grid-template-columns: 1fr 1fr; }
  .appointment-card { grid-template-columns: 1fr; text-align: center; }
  .footer-content { grid-template-columns: 1fr; gap: 2rem; }
  .cta-banner-content { flex-direction: column; text-align: center; }
  .cta-banner-actions { justify-content: center; }
  .cta-banner-text h2 { font-size: 1.6rem; }
  .page-hero { padding: 6rem 1.5rem 3rem; }
  .page-hero h1 { font-size: 2rem; }
  .booking-progress { flex-wrap: wrap; gap: 0.5rem; }
  .progress-line { width: 30px; }
  .chat-widget { width: calc(100vw - 30px); right: 15px; bottom: 80px; }
  .summary-grid { grid-template-columns: 1fr; }

  /* Grids adjust on tablets */
  .grid-3 > * { flex: 0 1 280px; }
  .values-grid .value-card { flex: 0 1 280px; }
  .dest-categories { gap: 0.8rem; }
  .dest-cat-btn { padding: 0.7rem 1.4rem; font-size: 0.88rem; }
  .dest-flag-card { width: 150px; height: 110px; }
  .testimonial-cards { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }

  /* Logo adjustments */
  .nav-logo-img { width: 50px; height: 50px; }
  .logo-text { font-size: 1.2rem; }

  /* Hero trust badges */
  .hero-trust-badges { gap: 1rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 300px; justify-content: center; }

  /* Contact section */
  .contact-info { padding: 1.5rem 1rem; }
  .contact-form { padding: 1.5rem 1rem; }

  /* Service cards */
  .service-card { flex-direction: column; }
  .service-icon { width: 50px; height: 50px; font-size: 1.2rem; }
}

@media (max-width: 480px) {
  .navbar { padding: 0.8rem 1rem; }
  .nav-logo-img { width: 40px; height: 40px; }
  .logo-text { font-size: 1rem; }
  .hero { padding: 6rem 1rem 3rem; }
  .hero h1 { font-size: 1.6rem; line-height: 1.2; }
  .hero p { font-size: 0.9rem; margin-bottom: 1.5rem; }
  .hero-badge { font-size: 0.75rem; padding: 0.4rem 0.8rem; }
  section { padding: 3rem 0.8rem; }
  .section-title h2 { font-size: 1.5rem; }
  .section-title p { font-size: 0.88rem; }
  .grid-3 > *, .grid-2 > * { flex: 1 1 100%; max-width: 100%; }
  .values-grid .value-card { flex: 1 1 100%; max-width: 100%; }
  .dest-categories { flex-direction: column; align-items: center; }
  .dest-cat-btn { width: 100%; max-width: 320px; justify-content: center; }
  .dest-flag-card { width: 130px; height: 100px; }
  .dest-flag span { font-size: 4rem; }
  .dest-cards-wrap { gap: 1rem; }
  .grid-3 > *, .grid-2 > * { flex: 1 1 100%; max-width: 100%; }
  .values-grid .value-card { flex: 1 1 100%; max-width: 100%; }
  .testimonial-cards { grid-template-columns: 1fr; gap: 1.2rem; }
  .blog-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .summary-grid { grid-template-columns: 1fr; }
  .dashboard-stats { grid-template-columns: 1fr; }
  .booking-progress { gap: 0.3rem; }
  .progress-step { min-width: 70px; }
  .progress-step span { font-size: 0.65rem; }
  .progress-line { width: 15px; }
  .time-slots { grid-template-columns: 1fr; }
  .hero-trust-badges { flex-direction: column; gap: 0.5rem; align-items: center; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { width: 100%; justify-content: center; text-align: center; }
  .footer-content { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 0.8rem; }
  .footer-bottom-links { justify-content: center; flex-wrap: wrap; }
  .footer-top { padding: 2.5rem 1rem 1.5rem; }
  .footer-logo-img { width: 80px; height: 80px; }
  .social-links { justify-content: center; }
  .cta-banner { padding: 2.5rem 1rem; }
  .cta-banner-text h2 { font-size: 1.4rem; }
  .cta-banner-text p { font-size: 0.9rem; }
  .cta-banner-actions { flex-direction: column; width: 100%; }
  .cta-banner-actions .btn { width: 100%; justify-content: center; text-align: center; }
  .contact-container { gap: 1.5rem; }
  .contact-info { padding: 1.2rem 0.8rem; border-radius: 18px; }
  .contact-form { padding: 1.2rem 0.8rem; border-radius: 18px; }
  .contact-item { padding: 0.8rem; border-radius: 14px; }
  .contact-icon { width: 40px; height: 40px; font-size: 1rem; }
  .contact-details h3 { font-size: 0.9rem; }
  .contact-details p { font-size: 0.82rem; }
  .form-row { gap: 0.8rem; }
  .card { padding: 1.5rem; }
  .card h3 { font-size: 1.2rem; }
  .card-icon { width: 45px; height: 45px; font-size: 1.2rem; }
  .value-card { padding: 1.5rem; }
  .mv-card { padding: 1.5rem; }
  .faq-question { padding: 1rem; }
  .faq-question h4 { font-size: 0.95rem; }
  .faq-answer p { padding: 0 1rem 1rem; font-size: 0.88rem; }
  .tracker-search-box { padding: 1.5rem; }
  .login-card { padding: 1.5rem; }
  .calc-input-panel, .calc-results-panel { padding: 1.5rem; }
  .whatsapp-float { bottom: 20px; right: 15px; }
  .whatsapp-float a { width: 50px; height: 50px; font-size: 1.3rem; }
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.animate-in {
  opacity: 0; transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-in.visible { opacity: 1; transform: translateY(0); }

/* Print Styles */
@media print {
  header, footer, .whatsapp-float, .chat-fab, .chat-widget,
  .scroll-top-btn, .loading-screen, .toast-container { display: none !important; }
  .booking-summary, .tracker-details-card { box-shadow: none; border: 1px solid #ddd; }
  body { color: #000; }
}


.about-image-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: 40px;
  width: 100%;
  box-sizing: border-box;
}
.about-img-custom {
  width: 100%;
  height: auto;
  border-radius: 30px;
  display: block;
  object-fit: cover;
}
.about-text {
  margin-top: -50px;
}
.about-founder-name {
  display: block;
  margin-top: 15px;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #cc8e4a;
  font-weight: 700;
  text-align: center;
}
.about-founder-title {
  display: block;
  font-size: 16px;
  color: #333;
  text-align: center;
}
.about-founder-line {
  width: 90px;
  height: 3px;
  background: #cc8e4a;
  margin: 12px auto;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .about-image-block {
    margin-left: 0;
    margin-top: 1.5rem;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .about-text {
    margin-top: 0;
  }
  .about-image {
    width: 100%;
    height: auto;
    min-height: 280px;
  }
}

/* ===================================
   BLOG POST HERO (blog/*.html)
   =================================== */
.blog-post-hero { background: linear-gradient(135deg, #001F2D 0%, #003d5c 100%); color: white; padding: 4rem 2rem; }
.blog-post-hero h1 { font-size: 2.8rem; margin-bottom: 1rem; }
.blog-post-hero p { color: #d0d0d0; font-size: 1.1rem; }
.blog-post-body { padding: 4rem 2rem; }
.blog-post-body .container { max-width: 800px; }

@media (max-width: 768px) {
  .blog-post-hero { padding: 3rem 1.5rem; }
  .blog-post-hero h1 { font-size: 2rem; }
  .blog-post-hero p { font-size: 1rem; }
  .blog-post-body { padding: 3rem 1.2rem; }
}
@media (max-width: 480px) {
  .blog-post-hero { padding: 2.2rem 1.2rem; }
  .blog-post-hero h1 { font-size: 1.6rem; line-height: 1.25; }
  .blog-post-hero p { font-size: 0.92rem; }
  .blog-post-body { padding: 2.2rem 1rem; }
}