/* ===== CSS Variables ===== */
:root {
  /* Core Colors (HSL for better harmony) */
  --bg-dark: 240 10% 4%;
  --bg-card: 240 10% 7%;
  --bg-glass: 240 10% 10% / 0.7;

  --primary: 48 100% 50%;
  /* Premium Gold: #FFD200 */
  --primary-glow: 48 100% 50% / 0.3;
  --secondary: 240 5% 65%;

  --success: 160 100% 42%;
  --warning: 38 100% 50%;
  --error: 348 100% 51%;

  /* Dark Theme Grays */
  --gray-50: 240 10% 98%;
  --gray-100: 240 10% 95%;
  --gray-200: 240 10% 90%;
  --gray-300: 240 10% 80%;
  --gray-400: 240 10% 65%;
  --gray-500: 240 10% 45%;
  --gray-600: 240 10% 30%;
  --gray-700: 240 10% 15%;
  --gray-800: 240 10% 10%;
  --gray-900: 240 10% 6%;

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FDB931 50%, #FFD700 100%);
  --gradient-dark: radial-gradient(circle at top, hsl(var(--gray-800)) 0%, hsl(var(--bg-dark)) 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  --gradient-surface: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);

  /* Shadows & Glows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 0 20px hsla(var(--primary), 0.2);
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.4);

  /* Typography Spec */
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.25rem;

  /* Spacing System */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;

  /* Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  /* Animation Tokens */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-Index Layering */
  --z-negative: -1;
  --z-base: 1;
  --z-sticky: 100;
  --z-nav: 1000;
  --z-popover: 1100;
  --z-modal: 1200;
}

/* ===== Reset & Base Styles ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: hsl(var(--gray-50));
  background: hsl(var(--bg-dark));
  background-image: var(--gradient-dark);
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ===== Particle Background ===== */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-particles);
  pointer-events: none;
}

/* ===== Floating Elements ===== */
.floating-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-floating);
  pointer-events: none;
}

.floating-element {
  position: absolute;
  border-radius: var(--radius-full);
  background: var(--gradient-primary);
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.floating-element-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: -150px;
  animation-delay: 0s;
}

.floating-element-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: -100px;
  animation-delay: 2s;
}

.floating-element-3 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 10%;
  animation-delay: 4s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  background: hsla(var(--bg-dark) / 0.8) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid hsla(var(--primary) / 0.1);
  transition: var(--transition-base);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: 'Megrim', cursive;
  font-weight: 400;
  font-size: 1.75rem;
  color: hsl(var(--gray-50));
  letter-spacing: 3px;
  text-decoration: none;
  transition: var(--transition-fast);
}

.nav-brand i {
  font-size: 1.5rem;
  color: hsl(var(--primary));
  filter: drop-shadow(0 0 8px hsla(var(--primary) / 0.4));
}

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

.nav-links a {
  text-decoration: none;
  color: hsl(var(--gray-400));
  font-weight: 500;
  font-size: var(--text-sm);
  transition: var(--transition-fast);
  position: relative;
  letter-spacing: 0.5px;
}

.nav-links a:hover,
.nav-links a.active {
  color: hsl(var(--primary));
}

.nav-links a.active::after {
  width: 100% !important;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: var(--transition-base);
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  background: hsl(var(--primary));
  color: hsl(var(--bg-dark)) !important;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--text-sm);
  box-shadow: var(--shadow-gold);
  transition: var(--transition-base);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px hsla(var(--primary) / 0.4);
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  margin: -8px;
  position: relative;
  z-index: 1002;
}

.nav-mobile-toggle span {
  width: 24px;
  height: 3px;
  background: hsl(var(--primary));
  transition: var(--transition-base);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .nav-mobile-toggle {
    display: flex;
    z-index: 1002;
    /* Above everything */
  }

  /* Hide original nav links on mobile */
  .nav-links {
    display: none;
  }

  /* New Mobile Sidebar */
  .mobile-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background: #000000;
    display: flex;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    transform: translateX(100%);
    opacity: 1;
    visibility: visible;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(255, 215, 0, 0.1);
    z-index: 1001;
    /* Above backdrop (999) and nav (1001 - wait, nav is 1001 too) */
  }

  .mobile-sidebar.active {
    transform: translateX(0);
  }

  .nav-mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: hsl(var(--primary));
  }

  .nav-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: hsl(var(--primary));
  }

  /* Links inside sidebar */
  .mobile-sidebar a {
    color: #fff;
    font-size: 1.1rem;
    width: 100%;
    text-align: left;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    transform: translateX(20px);
    opacity: 0;
    transition: all 0.3s ease;
  }

  .mobile-sidebar.active a {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.2s;
  }

  .mobile-sidebar a:last-child {
    border-bottom: none;
  }

  .mobile-sidebar .nav-cta {
    margin-top: 1rem;
    text-align: center;
    background: var(--accent-500);
    color: #000 !important;
    border-radius: 50px;
    padding: 0.8rem;
  }

  /* Backdrop for mobile menu */
  .mobile-nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
    z-index: 1000;
    /* Below sidebar (1001) but above content */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .mobile-nav-backdrop.active {
    opacity: 1;
    visibility: visible;
  }
}

/* ===== Button Components ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  user-select: none;
}

.btn-primary {
  background: hsl(var(--primary));
  color: hsl(var(--bg-dark));
  padding: 0.875rem 1.75rem;
  font-size: var(--text-base);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px hsla(var(--primary) / 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: hsla(var(--gray-50) / 0.05);
  color: hsl(var(--gray-50));
  border: 1px solid hsla(var(--gray-50) / 0.1);
  padding: 0.75rem 1.5rem;
  font-size: var(--text-base);
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  background: hsla(var(--gray-50) / 0.1);
  border-color: hsla(var(--gray-50) / 0.2);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: hsl(var(--gray-50));
  border: 1px solid hsla(var(--gray-50) / 0.2);
  padding: 0.75rem 1.5rem;
  font-size: var(--text-base);
}

.btn-outline:hover {
  background: hsla(var(--gray-50) / 0.05);
  border-color: hsla(var(--gray-50) / 0.3);
}

.btn-outline-secondary {
  background: transparent;
  color: #667eea;
  border: 1px solid rgba(102, 126, 234, 0.3);
  padding: 0.75rem 1.5rem;
  font-size: var(--text-base);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
  background: rgba(102, 126, 234, 0.1);
  border-color: rgba(102, 126, 234, 0.5);
  transform: translateY(-1px);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Button ripple effect */
.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:active::before {
  width: 300px;
  height: 300px;
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: hsl(var(--gray-50));
  letter-spacing: -0.02em;
}

.gradient-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 15px hsla(var(--primary) / 0.3));
  position: relative;
  display: inline-block;
}

.gradient-text::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gradient-gold);
  opacity: 0.5;
}

/* ===== Neon Red Styling ===== */
.neon-red {
  color: var(--error-500) !important;
  text-shadow: var(--shadow-neon-red);
  animation: neon-pulse 2s ease-in-out infinite alternate;
}

.neon-red-bg {
  background: var(--error-500);
  box-shadow: var(--shadow-neon-red);
}

@keyframes neon-pulse {
  0% {
    text-shadow: 0 0 5px rgba(255, 7, 58, 0.4), 0 0 10px rgba(255, 7, 58, 0.3), 0 0 15px rgba(255, 7, 58, 0.2);
  }

  100% {
    text-shadow: 0 0 10px rgba(255, 7, 58, 0.8), 0 0 20px rgba(255, 7, 58, 0.6), 0 0 30px rgba(255, 7, 58, 0.4);
  }
}

.phone-mockup .corporate-card {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}

.phone-mockup .corporate-card img {
  width: 100%;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.explore-categories {
  display: flex;
  gap: 10px;
  overflow: hidden;
  margin-bottom: 15px;
}

.category-tag {
  background: hsla(var(--primary));
  color: black;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 10px;
}

.category-tag.dark {
  background: #222;
  color: white;
}

.attraction-card-mini {
  background: #111;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 10px;
}

.attraction-card-mini .image-placeholder {
  height: 80px;
  background: #333;
}

.attraction-card-mini .details {
  padding: 10px;
}

.attraction-card-mini .details .name {
  font-weight: 700;
  font-size: 12px;
}

.attraction-card-mini .details .info {
  font-size: 10px;
  color: #aaa;
}

.ai-chat-demo {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
}

.chat-msg {
  padding: 10px;
  border-radius: 10px;
  font-size: 11px;
}

.chat-msg.user {
  background: #222;
  border-radius: 10px 10px 10px 0;
  align-self: flex-start;
}

.chat-msg.ai {
  background: hsla(var(--primary) / 0.1);
  border-left: 2px solid hsl(var(--primary));
  border-radius: 10px 10px 0 10px;
  align-self: flex-end;
}

.login-btn-nav {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
}

.country-select-small {
  max-width: 100px;
}

/* ===== Blog Section ===== */
.blog {
  padding: 6rem 0;
  background: #000000;
  position: relative;
}

.blog-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  background: radial-gradient(circle at 70% 50%, rgba(255, 215, 0, 0.08) 0%, #000000 70%);
  padding-top: 80px;
  overflow: hidden;
}

.blog-hero .hero-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 4rem;
  width: 100%;
}

.blog-hero .hero-content {
  text-align: left;
  z-index: 2;
}

.blog-hero .hero-title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  font-weight: 800;
}

.blog-hero .hero-description {
  font-size: 1.2rem;
  color: hsl(var(--gray-400));
  max-width: 550px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.map-container {
  position: relative;
  width: 100%;
  animation: floatMap 8s ease-in-out infinite;
}

.isometric-map {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.15));
  transform: scale(1.1);
}

.map-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

@keyframes floatMap {

  0%,
  100% {
    transform: translateY(0) rotate(-0.5deg);
  }

  50% {
    transform: translateY(-15px) rotate(0.5deg);
  }
}

@media (max-width: 1024px) {
  .blog-hero .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .blog-hero .hero-content {
    text-align: center;
  }

  .blog-hero .hero-description {
    margin: 0 auto;
  }

  .hero-visual {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
}

.blog-filters {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.blog-filters .btn-outline {
  border-color: var(--gray-700);
  color: var(--gray-300);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(5px);
}

.blog-filters .btn-outline:hover,
.blog-filters .btn-outline.active {
  border-color: var(--accent-500);
  color: var(--accent-500);
  background: rgba(255, 215, 0, 0.1);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
}

.blog::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.02) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 215, 0, 0.02) 0%, transparent 40%);
  z-index: 1;
  pointer-events: none;
}

/* ===== Experiences Showcase Section ===== */
.experiences-showcase {
  padding: var(--space-16) 0;
  background: hsl(var(--bg-dark));
  position: relative;
  overflow: hidden;
}

.experiences-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 210, 0, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 210, 0, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.experiences-showcase .section-container {
  position: relative;
  z-index: 2;
}

.experiences-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.experience-category-card {
  background: hsla(var(--bg-card) / 0.6);
  border: 1px solid hsla(var(--gray-50) / 0.06);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.experience-category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-glass);
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.experience-category-card:hover {
  transform: translateY(-8px);
  border-color: hsla(var(--primary) / 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px hsla(var(--primary) / 0.15);
}

.experience-category-card:hover::before {
  opacity: 1;
}

.category-icon-wrapper {
  margin-bottom: var(--space-4);
}

.category-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, hsla(var(--primary) / 0.15), hsla(var(--primary) / 0.05));
  border: 1px solid hsla(var(--primary) / 0.2);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary));
  font-size: 1.75rem;
  transition: all var(--transition-base);
}

.experience-category-card:hover .category-icon {
  background: linear-gradient(135deg, hsla(var(--primary) / 0.25), hsla(var(--primary) / 0.1));
  border-color: hsla(var(--primary) / 0.5);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px hsla(var(--primary) / 0.3);
}

.experience-category-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: white;
  margin-bottom: var(--space-3);
  transition: color var(--transition-base);
}

.experience-category-card:hover h3 {
  color: hsl(var(--primary));
}

.experience-category-card p {
  font-size: var(--text-base);
  color: hsl(var(--gray-400));
  line-height: 1.6;
  margin-bottom: var(--space-4);
  flex-grow: 1;
}

.category-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: hsl(var(--primary));
  font-size: 1.25rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all var(--transition-base);
}

.experience-category-card:hover .category-arrow {
  opacity: 1;
  transform: translateX(0);
}

.experiences-showcase-actions {
  text-align: center;
  margin-top: var(--space-8);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .experiences-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .experiences-category-grid {
    grid-template-columns: 1fr;
  }

  .experience-category-card {
    padding: var(--space-6);
  }

  .category-icon {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }

  .experience-category-card h3 {
    font-size: var(--text-xl);
  }
}

.problems {
  padding: var(--space-16) 0;
  background: hsla(var(--bg-card) / 0.5);
  position: relative;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}

.problem-card {
  background: hsla(var(--gray-50) / 0.02);
  border: 1px solid hsla(var(--gray-50) / 0.05);
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.problem-card:hover {
  background: hsla(var(--gray-50) / 0.04);
  border-color: hsla(var(--primary) / 0.3);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.problem-icon {
  width: 48px;
  height: 48px;
  background: hsla(var(--primary) / 0.1);
  color: hsl(var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 1.25rem;
  margin-bottom: var(--space-4);
}

.blog {
  padding: var(--space-16) 0;
  background: hsl(var(--bg-dark));
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-8);
}

/* REMOVED - Conflicting blog-card definition #1 */
/*
.blog-card {
  background: hsla(var(--bg-card) / 0.6);
  border: 1px solid hsla(var(--gray-50) / 0.05);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  text-decoration: none;
  backdrop-filter: blur(10px);
  position: relative;
}

.blog-card:hover {
  transform: translateY(-10px);
  border-color: hsla(var(--primary) / 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px hsla(var(--primary) / 0.1);
}
*/

.blog-image {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: #111;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-read-time {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 600;
  z-index: 2;
}

.blog-content {
  padding: var(--space-6);
}

.blog-content h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  color: white;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-content h3 {
  color: hsl(var(--primary));
}

.blog-content p {
  font-size: var(--text-sm);
  color: hsl(var(--gray-400));
  margin-bottom: 1.5rem;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid hsla(var(--gray-50) / 0.05);
  font-size: var(--text-xs);
  color: hsl(var(--gray-500));
}

.blog-meta i {
  color: hsl(var(--primary));
}

.blog-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: hsl(var(--primary));
  color: hsl(var(--bg-dark));
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
}

.blog-content {
  padding: var(--space-6);
}

.blog-content h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  color: hsl(var(--gray-50));
}

.blog-content p {
  font-size: var(--text-sm);
  color: hsl(var(--gray-400));
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--gray-500);
}

.blog-author,
.blog-date {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tag {
  background: rgba(255, 255, 255, 0.05);
  color: var(--gray-300);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}

.tag:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: hsla(var(--primary) / 0.5);
}

.blog-cta {
  text-align: center;
}

.blog-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Blog Grid Responsive Layout */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .blog-card.featured {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card.featured {
    grid-column: span 1;
  }

  .blog-image {
    height: 180px;
  }

  .blog-card.featured .blog-image {
    height: 220px;
  }
}

/* ===== Blog Post Page Styles ===== */
.blog-header {
  padding: 8rem 0 4rem 0;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.cta {
  padding: var(--space-16) 0;
  background: var(--gradient-dark);
  position: relative;
}

.cta-content {
  background: hsla(var(--gray-50) / 0.02);
  border: 1px solid hsla(var(--gray-50) / 0.05);
  padding: var(--space-12);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
}

.cta-content h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
  text-align: center;
}

.cta-content p {
  text-align: center;
  color: hsl(var(--gray-400));
  margin-bottom: var(--space-8);
}

.blog-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 85% 20%, rgba(255, 215, 0, 0.02) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.blog-header .section-container {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--accent-500);
}

.breadcrumb i {
  font-size: 0.75rem;
  opacity: 0.6;
}

.blog-post-meta {
  max-width: 800px;
  color: white;
}

.blog-post-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
}

.blog-post-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.blog-post-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.author-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.author-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.author-title {
  font-size: 0.875rem;
  opacity: 0.8;
}

.post-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.post-date,
.read-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-content {
  padding: 4rem 0;
  background: var(--gray-50);
}

.blog-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.blog-post {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 4rem;
}

.featured-image {
  height: 400px;
  background: linear-gradient(45deg, var(--gray-200), var(--gray-300));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

.image-placeholder {
  text-align: center;
  color: var(--gray-600);
}

.content {
  padding: 3rem;
  line-height: 1.8;
  font-size: 1.1rem;
  color: var(--gray-800);
}

/* ===== Policy Page Styles ===== */
.policy-page {
  padding: 8rem 0 4rem 0;
  background: var(--gray-50);
  min-height: 60vh;
}

.policy-page h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.policy-content {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.policy-content h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.policy-content p {
  margin-bottom: 1rem;
  color: var(--gray-800);
}

.policy-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  color: var(--gray-800);
}

.policy-content li {
  margin-bottom: 0.5rem;
}

.content .lead {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--gray-900);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 3rem 0 1.5rem 0;
  color: var(--gray-900);
}

.content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2.5rem 0 1rem 0;
  color: var(--gray-900);
}

.content p {
  margin-bottom: 1.5rem;
}

.content ul,
.content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.content li {
  margin-bottom: 0.75rem;
}

.content blockquote {
  background: var(--gray-100);
  border-left: 4px solid var(--accent-500);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  font-style: italic;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.content blockquote p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.content cite {
  display: block;
  font-size: 0.95rem;
  color: var(--gray-600);
  font-style: normal;
  font-weight: 500;
}

.content blockquote.warning {
  background: rgba(255, 171, 0, 0.1);
  border-left-color: var(--warning-500);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-500);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: #e0e0e0;
  font-weight: 500;
}

.key-points {
  background: var(--gray-100);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
}

.point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.point:last-child {
  margin-bottom: 0;
}

.point i {
  color: var(--success-500);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.cta-box {
  background: var(--gradient-primary);
  color: white;
  padding: 3rem;
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 3rem 0;
}

.cta-box h3 {
  color: white;
  margin-bottom: 1rem;
}

.cta-box p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-box .btn {
  background: white;
  color: var(--gray-900);
}

.cta-box .btn:hover {
  background: var(--gray-100);
}

/* Related Posts */
.related-posts {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid var(--gray-200);
}

.related-posts h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--gray-900);
}

.related.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}

.blog-card.featured .blog-image {
  height: 100%;
  min-height: 400px;
}

.blog-card.featured .blog-content {
  padding: 3rem;
}

@media (max-width: 768px) {
  .blog-card.featured {
    grid-template-columns: 1fr;
  }

  .blog-card.featured .blog-image {
    height: 300px;
    min-height: auto;
  }

  .blog-card.featured .blog-content {
    padding: 1.5rem;
  }
}

/* REMOVED - Conflicting blog-card definition #2 */
/*
.blog-card {
  background: #0a0a0a;
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition-base);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-500);
}
*/

.related-category {
  background: var(--accent-500);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 1rem;
}

.service-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.5;
}

.blog-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: white;
  line-height: 1.4;
}

.blog-card p {
  font-size: 0.95rem;
  color: #e0e0e0;
  margin-bottom: 1rem;
  line-height: 1.5;
  opacity: 0.9;
}

.related-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  color: #cccccc;
}

/* Newsletter Signup */
.newsletter-signup {
  background: var(--gradient-hero);
  padding: 4rem 0;
  color: white;
}

.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.newsletter-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  color: #e0e0e0;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 0.875rem 1rem;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  background: #111111;
  color: white;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.newsletter-form input::placeholder {
  color: var(--gray-500);
}

.newsletter-form .btn {
  flex-shrink: 0;
  background: var(--accent-500);
  color: white;
  border: none;
}

/* Footer */
.footer {
  background: hsl(var(--bg-dark));
  padding: var(--space-16) 0 var(--space-8);
  border-top: 1px solid hsla(var(--primary) / 0.1);
  color: hsl(var(--gray-400));
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer-brand p {
  color: hsl(var(--gray-300));
  margin-top: var(--space-4);
  font-size: var(--text-sm);
}

.footer-section h4 {
  font-weight: 600;
  margin-bottom: var(--space-4);
  color: hsl(var(--gray-50));
  font-size: var(--text-base);
}

.footer-section a {
  display: block;
  color: hsl(var(--gray-400));
  text-decoration: none;
  margin-bottom: var(--space-2);
  transition: var(--transition-fast);
  font-size: var(--text-sm);
}

.footer-section a:hover {
  color: hsl(var(--primary));
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-8);
  border-top: 1px solid hsla(var(--gray-50) / 0.05);
  color: hsl(var(--gray-500));
  font-size: var(--text-xs);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: var(--gray-500);
  font-size: 1.25rem;
  transition: var(--transition-fast);
}

.social-links a:hover {
  color: var(--accent-500);
}

/* Responsive Design for Blog Post */
@media (max-width: 768px) {
  .blog-post-title {
    font-size: 2rem;
  }

  .blog-post-info {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .content {
    padding: 2rem;
    font-size: 1rem;
  }

  .content h2 {
    font-size: 1.5rem;
  }

  .content h3 {
    font-size: 1.25rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ===== Section Layouts ===== */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-header h2 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
  color: hsl(var(--gray-50));
}

.section-header p {
  font-size: var(--text-lg);
  color: hsl(var(--gray-400));
  max-width: 600px;
  margin: 0 auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: hsla(var(--primary) / 0.1);
  color: hsl(var(--primary));
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-4);
  border: 1px solid hsla(var(--primary) / 0.2);
}

/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: hsl(var(--bg-dark));
  background-image: var(--gradient-dark);
  padding-top: 80px;
  /* Prevent fixed header overlap */
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(255, 215, 0, 0.04) 0%, transparent 60%),
    radial-gradient(circle at 85% 20%, rgba(255, 215, 0, 0.03) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 3;
  min-height: 80vh;
}

.hero-content {
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: hsla(var(--gray-50) / 0.05);
  border: 1px solid hsla(var(--gray-50) / 0.1);
  backdrop-filter: blur(10px);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-8);
  color: hsl(var(--primary));
}

.hero-title {
  font-size: var(--text-5xl);
  font-weight: 800;
  line-height: 1;
  margin-bottom: var(--space-6);
  letter-spacing: -0.03em;
  animation: slideInUp 0.8s ease-out 0.2s both;
}

.title-line {
  display: block;
}

.hero-description {
  font-size: var(--text-xl);
  line-height: 1.6;
  margin-bottom: var(--space-12);
  color: hsl(var(--gray-400));
  max-width: 540px;
  animation: slideInUp 0.8s ease-out 0.4s both;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  animation: slideInUp 0.8s ease-out 0.6s both;
}

.stat {
  text-align: center;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  animation: slideInUp 0.8s ease-out 0.8s both;
}

/* ===== Hero Visual ===== */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideInRight 1s ease-out 0.4s both;
}

.phone-mockup {
  position: relative;
  width: 300px;
  height: 600px;
  background: linear-gradient(145deg, #1a1a1a 0%, #000000 50%, #1a1a1a 100%);
  border: 4px solid #000000;
  border-radius: 3rem;
  padding: 0.5rem;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.1),
    0 8px 32px rgba(0, 0, 0, 0.8),
    inset 0 1px 2px rgba(255, 255, 255, 0.1),
    inset 0 -1px 2px rgba(0, 0, 0, 0.5);
  transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
  transition: var(--transition-slow);
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 30px;
  background: #000000;
  border-radius: 0 0 20px 20px;
  z-index: 10;
}

.phone-mockup::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #333333;
  border-radius: 2px;
  z-index: 11;
}

.phone-mockup:hover {
  transform: perspective(1000px) rotateY(-10deg) rotateX(0deg);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #000000;
  border-radius: 2.5rem;
  overflow: hidden;
  position: relative;
}

.app-interface {
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: white;
  font-family: 'Inter', sans-serif;
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.app-logo {
  font-family: 'Megrim', cursive;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.app-header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.profile-avatar {
  width: 32px;
  height: 32px;
  background: var(--accent-500);
  color: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
}

/* Notification Badge */
.cab-notification {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  animation: slideInDown 0.5s ease-out;
}

.notif-icon {
  width: 32px;
  height: 32px;
  background: var(--accent-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  font-size: 0.9rem;
}

.notif-content {
  display: flex;
  flex-direction: column;
}

.notif-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
}

.notif-time {
  font-size: 0.7rem;
  color: var(--accent-500);
}

/* Corporate Card */
.corporate-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  border: 1px solid var(--accent-500);
  border-radius: 1rem;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  aspect-ratio: 1.58/1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-chip {
  width: 36px;
  height: 24px;
  background: #4a4a4a;
  border-radius: 4px;
}

.card-label {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 0.6rem;
  letter-spacing: 1px;
  color: var(--gray-400);
  text-transform: uppercase;
}

.corporate-card .card-number {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin: 1rem 0;
  color: white;
}

.card-details {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.card-holder-label,
.card-balance-label {
  display: block;
  font-size: 0.6rem;
  color: var(--gray-400);
  margin-bottom: 0.2rem;
}

.card-holder-name {
  font-size: 0.8rem;
  font-weight: 600;
}

.card-balance-amount {
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
}

/* Total Balance Section */
.total-balance-section {
  background: linear-gradient(180deg, rgba(255, 215, 0, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 1rem;
  padding: 1rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.total-balance-label {
  font-size: 0.75rem;
  color: var(--gray-400);
  display: block;
  margin-bottom: 0.25rem;
}

.total-balance-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-500);
  margin-bottom: 0.75rem;
}

.balance-stats {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.75rem;
}

/* Quick Access */
.quick-access-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.quick-access-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: auto;
}

.quick-access-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  color: #aaa;
}

.quick-access-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--accent-500);
  transition: 0.2s;
}

/* Bottom Nav */
.app-bottom-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 0.75rem;
  margin-top: auto;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.65rem;
  font-size: 0.7rem;
  color: var(--gray-400);
  transition: var(--transition-fast);
}

.nav-item:hover {
  color: white;
}

.nav-item-highlight {
  width: 48px;
  height: 48px;
  background: var(--accent-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: black;
  margin-bottom: 0.2rem;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
  transform: translateY(-8px);
}

.scan-line {
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, white, transparent);
  animation: scan 2s linear infinite;
}

@keyframes scan {
  0% {
    top: 0;
  }

  100% {
    top: 100%;
  }
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.action-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 1rem;
  border-radius: var(--radius-lg);
  text-align: center;
  color: white;
  font-size: 0.75rem;
  transition: var(--transition-base);
}

.action-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.action-btn i {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* ===== Floating Cards ===== */
.floating-cards {
  position: absolute;
  width: 100%;
  height: 100%;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: 1rem 1.5rem;
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg);
  animation: floatCard 4s ease-in-out infinite;
}

.card-1 {
  top: 10%;
  right: -20%;
  animation-delay: 0s;
}

.card-2 {
  bottom: 40%;
  left: -30%;
  animation-delay: 1.5s;
}

.card-3 {
  top: 60%;
  right: -25%;
  animation-delay: 3s;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(2deg);
  }
}

/* ===== Problems Section ===== */
.problems-section {
  padding: 6rem 0;
  background: #000000;
  position: relative;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.problem-card {
  background: #0a0a0a;
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  text-align: center;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
  transition: var(--transition-slow);
}

.problem-card:hover::before {
  left: 100%;
}

.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-500);
}

.problem-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.problem-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: white;
}

.problem-card p {
  color: #e0e0e0;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  opacity: 0.9;
}

.problem-impact {
  background: rgba(255, 215, 0, 0.1);
  color: var(--accent-500);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

/* ===== Features Section ===== */
.features {
  padding: 6rem 0;
  background: #000000;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

/* REMOVED - Conflicting blog-card definition #3 */
/*
.feature.blog-card {
  background: #0a0a0a;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.1);
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
}

.blog-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-card p {
  color: #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
*/

.feature-card {
  background: #0a0a0a;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 215, 0, 0.1);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-card[data-tilt] {
  transform-style: preserve-3d;
  transition: transform 0.1s;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px -10px rgba(255, 215, 0, 0.15);
  border-color: var(--accent-500);
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: white;
}

.feature-card p {
  color: #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
  opacity: 0.9;
}

.feature-stats {
  margin-bottom: 1.5rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 215, 0, 0.1);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.stat-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-500);
}

.stat-label {
  color: #e0e0e0;
  font-size: 0.875rem;
}

.feature-demo {
  background: var(--gray-800);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--gray-700);
}

/* Payment Flow Demo */
.payment-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flow-step {
  background: var(--primary-600);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
}

.payment-flow i {
  color: var(--gray-400);
}

/* Wallet Interface */
.wallet-interface {
  text-align: center;
}

.balance {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.fx-rate {
  color: var(--gray-400);
  font-size: 0.875rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.service-item {
  background: var(--gray-800);
  padding: 0.75rem;
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 0.875rem;
  border: 1px solid var(--gray-700);
  color: white;
}

/* AI Chat */
.ai-chat {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat-message {
  background: var(--primary-800);
  padding: 0.75rem;
  border-radius: var(--radius-lg);
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  border-left: 3px solid var(--primary-500);
  color: white;
}

.chat-response {
  background: var(--gray-800);
  padding: 0.75rem;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  border-left: 3px solid var(--success-500);
  color: white;
}

/* Expense Summary */
.expense-summary {
  font-family: monospace;
  font-size: 0.875rem;
  color: var(--gray-300);
}

.expense-line {
  display: flex;
  justify-content: space-between;
  padding: 0.25rem 0;
  color: var(--gray-300);
}

.total {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-weight: 700;
  border-top: 1px solid var(--gray-700);
  margin-top: 0.5rem;
  color: white;
}

/* Security Badges */
.security-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.badge {
  background: var(--success-800);
  color: var(--success-200);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid var(--success-700);
}

/* ===== Enterprise Section ===== */
.enterprise {
  padding: var(--space-16) 0;
  background: hsla(var(--bg-dark) / 1);
  position: relative;
  overflow: hidden;
}

.enterprise::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 215, 0, 0.02) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(255, 215, 0, 0.02) 0%, transparent 40%);
  pointer-events: none;
}

.enterprise-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  position: relative;
  z-index: 2;
}

.enterprise-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.enterprise-text p {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0.9;
}

.enterprise-features {
  margin-bottom: 3rem;
}

.enterprise-feature {
  background: hsla(var(--gray-50) / 0.02);
  border: 1px solid hsla(var(--gray-50) / 0.05);
  padding: var(--space-6);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.enterprise-feature:hover {
  background: hsla(var(--gray-50) / 0.04);
  border-color: hsla(var(--primary) / 0.2);
}

.enterprise-feature .feature-icon {
  width: 40px;
  height: 40px;
  background: hsla(var(--primary) / 0.1);
  color: hsl(var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 1.125rem;
  flex-shrink: 0;
}

.feature-content h3 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.feature-content p {
  color: #e0e0e0;
  font-size: 0.875rem;
  margin: 0;
  opacity: 0.9;
}

.enterprise-actions {
  display: flex;
  gap: 1rem;
}

/* Dashboard Mockup */
.enterprise-visual {
  position: relative;
}

.dashboard-mockup {
  background: #0a0a0a;
  border-radius: var(--radius-2xl);
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transform: perspective(1000px) rotateY(15deg) rotateX(-5deg);
  transition: var(--transition-slow);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.dashboard-mockup:hover {
  transform: perspective(1000px) rotateY(10deg) rotateX(0deg);
}

.dashboard-header {
  background: #111111;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dashboard-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.dashboard-controls {
  display: flex;
  gap: 0.5rem;
}

.control {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition-fast);
}

.control.active {
  background: var(--primary-600);
  color: white;
}

.dashboard-content {
  padding: 1.5rem;
}

.metric-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.metric-card {
  background: #0a0a0a;
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.metric-label {
  font-size: 0.75rem;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}

.metric-change {
  font-size: 0.75rem;
  font-weight: 600;
}

.metric-change.positive {
  color: var(--success-500);
}

.chart-area {
  height: 150px;
  background: #111111;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 215, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Testimonials ===== */
.testimonials {
  padding: 6rem 0;
  background: #000000;
}

.testimonial-card {
  background: var(--gradient-primary);
  border-radius: var(--radius-2xl);
  padding: 3rem;
  color: white;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
  box-shadow: var(--shadow-2xl);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

  0%,
  100% {
    transform: translateX(0) translateY(0);
  }

  50% {
    transform: translateX(-20px) translateY(-20px);
  }
}

.quote-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.testimonial-content blockquote {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 4rem;
  height: 4rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.author-name {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.author-title {
  opacity: 0.8;
  font-size: 0.875rem;
}

.testimonial-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.testimonial-stats .stat {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
}

.testimonial-stats .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  display: block;
  margin-bottom: 0.5rem;
}

.testimonial-stats .stat-label {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* ===== CTA Section ===== */
.cta {
  padding: 6rem 0;
  background: #000000;
  color: white;
  position: relative;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: white;
}

/* ===== Services Page & Section ===== */
.services-hero {
  padding: 8rem 0 4rem;
  background: #000000;
  text-align: center;
}

.services-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-hero p {
  font-size: 1.25rem;
  color: var(--gray-300);
  max-width: 700px;
  margin: 0 auto;
}

.services-list {
  padding: 0 0 8rem;
  /* Removed top padding */
  background: #000000;
}

.services-grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-item-card {
  background: #0a0a0a;
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}

.service-item-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-500);
  box-shadow: var(--shadow-lg);
}

.service-item-card .service-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-item-card h3 {
  font-size: 1.25rem;
  color: white;
  margin-bottom: 1rem;
}

.service-item-card p {
  color: #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 0;
}

/* Home Page Services Preview */
.services-preview {
  padding: 6rem 0;
  background: #000000;
  position: relative;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--gray-300);
  font-size: 1.1rem;
}

.services-preview-actions {
  text-align: center;
  margin-top: 3rem;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* Form Styles */
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #e0e0e0;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-500);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

/* Phone Input Group */
.phone-input-group {
  display: flex;
  gap: 0.5rem;
}

.country-select {
  width: 100px;
  flex-shrink: 0;
}

/* Date Range Group */
.date-range-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.date-range-group input {
  flex: 1;
}

.date-separator {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Checkbox Group */
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  font-size: 0.95rem;
  color: #e0e0e0;
}

.checkbox-label input {
  display: none;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--gray-500);
  border-radius: 4px;
  position: relative;
  transition: all 0.2s ease;
}

.checkbox-label input:checked+.checkbox-custom {
  background: var(--success-500);
  border-color: var(--success-500);
}

.checkbox-label input:checked+.checkbox-custom::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: white;
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Toggle Switch */
.toggle-label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
  padding: 0.5rem 0;
  color: #e0e0e0;
}

.toggle-input {
  display: none;
}

.toggle-slider {
  width: 44px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  position: relative;
  transition: 0.3s;
  flex-shrink: 0;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: white;
  top: 3px;
  left: 3px;
  transition: 0.3s;
}

.toggle-input:checked+.toggle-slider {
  background: var(--success-500);
}

.toggle-input:checked+.toggle-slider::before {
  transform: translateX(20px);
}

.toggle-text {
  font-size: 0.95rem;
  color: white;
  line-height: 1.4;
}

.form-benefits {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--gray-400);
}

.benefit i {
  color: var(--accent-500);
}

@media (max-width: 480px) {
  .form-benefits {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  .checkbox-group {
    grid-template-columns: 1fr;
  }
}

/* ===== Footer ===== */
.footer {
  background: #000000;
  color: white;
  padding: 6rem 0 3rem;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--gray-400);
  margin: 1rem 0 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.brand-logo i {
  font-size: 1.75rem;
  color: var(--primary-400);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gray-800);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: var(--transition-base);
}

.social-links a:hover {
  background: var(--primary-600);
  color: white;
  transform: translateY(-2px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.link-group h3 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.link-group a {
  color: var(--gray-400);
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
  transition: var(--transition-fast);
}

.link-group a:hover {
  color: var(--accent-500) !important;
  transform: translateX(5px);
}

.footer {
  background-color: #050505 !important;
  color: #fff !important;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7) !important;
}

.footer-links a:hover {
  color: var(--accent-500) !important;
}

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-badges {
  display: flex;
  gap: 1rem;
}

.footer-badges .badge {
  background: var(--gray-800);
  color: var(--gray-300);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  border: 1px solid var(--gray-700);
}

/* ===== Modal ===== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-modal);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: white;
  border-radius: var(--radius-2xl);
  padding: 3rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  transform: translateY(20px);
  transition: var(--transition-base);
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-header {
  margin-bottom: 2rem;
}

.modal-header i {
  font-size: 4rem;
  color: var(--success-500);
  margin-bottom: 1rem;
}

.modal-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.modal-body p {
  color: #cccccc;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* ===== Animations ===== */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-title {
    font-size: 3rem;
  }

  .enterprise-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .testimonial-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .hero {
    padding-top: 6rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .problems-grid {
    grid-template-columns: 1fr;
  }

  .phone-mockup {
    width: 250px;
    height: 500px;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .form-benefits {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .section-container {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }

  .floating-card {
    display: none;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .testimonial-card {
    padding: 2rem;
  }

  .testimonial-content blockquote {
    font-size: 1.25rem;
  }
}

/* ===== Utility Classes ===== */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Focus Styles ===== */
*:focus {
  outline: 2px solid var(--primary-500);
  outline-offset: 2px;
}

.btn:focus {
  outline: 2px solid var(--primary-300);
  outline-offset: 2px;
}

/* ===== Print Styles ===== */
@media print {

  .nav,
  .floating-elements,
  #particles-canvas,
  .modal {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .hero {
    background: white;
    color: black;
  }
}

/* Detailed Service Sections */
.service-detailed-section {
  padding: 8rem 0;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-detailed-section:last-child {
  border-bottom: none;
}

.service-content-wrapper {
  display: flex;
  align-items: center;
  gap: 6rem;
}

.service-detailed-section:nth-child(even) .service-content-wrapper {
  flex-direction: row-reverse;
}

.service-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.service-icon-large {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 5rem;
  color: var(--accent-500);
  position: relative;
  box-shadow: 0 0 50px rgba(255, 215, 0, 0.1);
  transition: all 0.5s ease;
}

.service-detailed-section:hover .service-icon-large {
  transform: scale(1.05);
  box-shadow: 0 0 80px rgba(255, 215, 0, 0.2);
  border-color: var(--accent-500);
}

.service-text {
  flex: 1.2;
}

.service-subtitle {
  color: var(--accent-500);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  display: block;
}

.service-text h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #fff, #ccc);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-text p {
  font-size: 1.2rem;
  color: #f0f0f0;
  /* Improved readability */
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 300;
}

/* Enhanced Services Hero */
.services-hero {
  padding: 12rem 0 0;
  /* Removed bottom padding */
  text-align: center;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
  position: relative;
  overflow: hidden;
}

.services-hero h1 {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #fff, #ccc);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
}

.services-hero p {
  font-size: 1.5rem;
  color: #f0f0f0;
  /* Improved readability */
  max-width: 800px;
  margin: 0 auto;
  font-weight: 300;
}

.service-features {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
  font-size: 1.1rem;
}

.service-features li i {
  color: var(--accent-500);
  font-size: 0.9rem;
}

@media (max-width: 968px) {
  .service-content-wrapper {
    flex-direction: column !important;
    gap: 4rem;
    text-align: center;
  }

  .service-features {
    justify-content: center;
  }

  .service-features li {
    justify-content: center;
  }

  .service-text h2 {
    font-size: 2.5rem;
  }
}

/* ===== Execution Phase Additions ===== */

/* Hero Mockup Animations & States */
.app-screen {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  flex-direction: column;
}

.app-screen.active {
  display: flex;
  animation: screenFadeIn 0.6s ease forwards;
}

@keyframes screenFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* AI Chat Overlay */
.ai-chat-overlay {
  position: absolute;
  bottom: 100px;
  left: 10px;
  right: 10px;
  z-index: 20;
  pointer-events: none;
}

.chat-bubble {
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px 15px 15px 0;
  padding: 12px;
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: white;
  max-width: 90%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  animation: chatFadeIn 6s infinite;
}

.chat-bubble.ai {
  border-left: 3px solid var(--accent-500);
}

@keyframes chatFadeIn {

  0%,
  5% {
    opacity: 0;
    transform: translateY(10px);
  }

  15%,
  85% {
    opacity: 1;
    transform: translateY(0);
  }

  95%,
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}

/* Service Detailed Styles for Services Page */
.service-detailed-section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 215, 0, 0.05);
}

.service-detailed-section:nth-child(even) .service-content-wrapper {
  flex-direction: row-reverse;
}

.service-content-wrapper {
  display: flex;
  align-items: center;
  gap: 6rem;
}

.service-text {
  flex: 1.2;
}

.service-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-subtitle {
  color: var(--accent-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: block;
}

.service-text h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  font-family: var(--font-display);
}

.service-text p {
  font-size: 1.2rem;
  color: var(--gray-400);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.service-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: white;
  font-size: 1rem;
}

.service-features li i {
  color: var(--accent-500);
  font-size: 1.1rem;
}

/* Experience Tags Grid */
.experience-tags-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.exp-tag-card {
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 16px;
  padding: 2rem 1rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.exp-tag-card:hover {
  background: var(--accent-500);
  border-color: var(--accent-500);
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.exp-tag-card:hover i,
.exp-tag-card:hover span {
  color: #000;
}

.exp-tag-card i {
  font-size: 2rem;
  color: var(--accent-500);
  margin-bottom: 1rem;
  display: block;
  transition: color 0.3s;
}

.exp-tag-card span {
  font-size: 0.9rem;
  font-weight: 700;
  display: block;
  color: white;
  transition: color 0.3s;
}

@media (max-width: 992px) {
  .service-content-wrapper {
    flex-direction: column !important;
    gap: 3rem;
    text-align: center;
  }

  .service-features {
    justify-items: center;
  }

  .experience-tags-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== Final Visual Polish ===== */
.service-detailed-section h2 {
  background: linear-gradient(135deg, #fff 0%, var(--accent-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-visual img,
.app-showcase-visual img {
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.2));
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-visual:hover img,
.app-showcase-visual:hover img {
  transform: scale(1.05) rotate(1deg);
  filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.4));
}

.exp-tag-card i {
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.nav-cta {
  background: var(--accent-500);
  color: #000 !important;
  font-weight: 700;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.nav-cta:hover {
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
  transform: scale(1.05);
}

/* Glassmorphism for cards */
.service-item-card {
  background: rgba(10, 10, 10, 0.6) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.1) !important;
}

/* ===== Image Asset Styling ===== */
.asset-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.floating-asset {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
  animation: float-soft 4s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.card-asset img {
  width: 400px;
  transform: rotateY(-15deg) rotateX(5deg);
}

.cab-asset img {
  width: 500px;
  transform: scaleX(-1);
  /* Orient SUV correctly if needed */
}

@keyframes float-soft {

  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-15px) rotate(1deg);
  }
}

.cab-asset .floating-asset {
  animation: float-cab 5s ease-in-out infinite;
}

@keyframes float-cab {

  0%,
  100% {
    transform: translateY(0) scaleX(-1);
  }

  50% {
    transform: translateY(-10px) scaleX(-1);
  }
}

.floating-asset:hover {
  transform: scale(1.05) rotate(0deg) !important;
  filter: drop-shadow(0 30px 60px rgba(255, 215, 0, 0.2));
}

/* App Showcase Refined */
.app-showcase {
  padding: 8rem 0;
  background: #000;
  position: relative;
  overflow: hidden;
}

.app-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.section-description {
  font-size: 1.15rem;
  color: #bbb;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.app-features-list {
  list-style: none;
  display: grid;
  gap: 2rem;
  padding: 0;
}

.app-features-list li {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.feature-bullet {
  background: var(--accent-500);
  color: black;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.feature-text strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: white;
}

.feature-text p {
  font-size: 0.95rem;
  color: #bbb;
  margin: 0;
}

.app-showcase-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cab-asset {
  transform: translateX(-10%);
}

.cab-asset img {
  width: 100%;
  max-width: 500px;
}

.card-visual {
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 220px;
  z-index: 5;
  transform: rotate(15deg);
}

.card-visual img {
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}

@media (max-width: 992px) {
  .app-showcase-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }

  .app-features-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cab-asset {
    transform: none;
  }

  .card-visual {
    bottom: -20px;
    right: 10%;
    width: 180px;
  }
}

/* Enterprise Layout Refined */
.enterprise-content {
  gap: 6rem;
}

.enterprise-text h2 {
  font-size: 3.5rem;
  line-height: 1.1;
  font-family: var(--font-display);
}

.dashboard-mockup {
  transform: perspective(2000px) rotateY(-10deg) rotateX(5deg);
}

.dashboard-mockup:hover {
  transform: perspective(2000px) rotateY(-5deg) rotateX(2deg);
}

/* Blog Grid Refinement */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* REMOVED - Conflicting blog-card definition #4 */
/*
.blog-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
}
*/

@media (max-width: 992px) {
  .blog-card.featured {
    grid-template-columns: 1fr;
  }
}

/* Mobile Sidebar Hiding on Desktop */
@media (min-width: 993px) {

  .mobile-sidebar,
  .mobile-nav-backdrop {
    display: none !important;
  }
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: #0a0a0a;
  z-index: 2000;
  padding: 6rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid rgba(255, 215, 0, 0.1);
}

.mobile-sidebar.active {
  transform: translateX(0);
}

.mobile-nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-nav-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-sidebar a {
  color: white;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.05);
}

.mobile-sidebar a.nav-cta {
  background: var(--accent-500);
  color: #000;
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 1rem;
}

/* ===== Royal Showcase Sections (Fixed) ===== */
.royal-showcase-section {
  padding: var(--space-16) 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid hsla(var(--primary) / 0.05);
}

.royal-grid {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  margin: 0 auto;
  max-width: 1280px;
  width: 100%;
  padding: 0 2rem;
}

.royal-showcase-section:nth-child(even) .royal-grid {
  flex-direction: row-reverse;
}

.royal-text {
  flex: 1;
  z-index: 10;
  text-align: left;
}

.royal-visual {
  flex: 1.2;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 450px;
}

.royal-headline {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
}

.royal-description {
  font-size: var(--text-lg);
  color: hsl(var(--gray-400));
  margin-bottom: var(--space-8);
  line-height: 1.6;
}

.royal-asset-wrapper {
  position: relative;
  perspective: 1500px;
  width: 100%;
  max-width: 600px;
  display: flex;
  justify-content: center;
}

.royal-mockup {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 550px;
  object-fit: contain;
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  filter: drop-shadow(0 20px 80px rgba(0, 0, 0, 0.6));
}

/* Specific styling for PNG assets */
.royal-mockup.png-asset {
  max-height: 450px;
  filter: drop-shadow(0 30px 60px rgba(255, 215, 0, 0.1));
}

.royal-mockup.floating {
  animation: floatingRoyal 5s ease-in-out infinite;
}

@keyframes floatingRoyal {

  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-30px) rotate(1deg);
  }
}

.royal-showcase-section:hover .royal-mockup {
  transform: scale(1.05);
}

.royal-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-500) 0%, transparent 70%);
  filter: blur(120px);
  z-index: 1;
  opacity: 0.15;
  pointer-events: none;
}

@media (max-width: 992px) {
  .royal-grid {
    flex-direction: column !important;
    text-align: center;
    gap: 4rem;
  }

  .royal-headline {
    font-size: 2.8rem;
  }

  .royal-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .royal-description {
    max-width: 100%;
  }

  .royal-visual {
    order: -1;
    min-height: 350px;
  }
}

/* REMOVED - Conflicting blog-card definition #5 */
/*
==========================================================================
   FINAL ROYAL BLOG OVERHAUL
   Ensuring maximum readability and premium aesthetic
   ==========================================================================

.blog {
  padding: 10rem 0;
  background: #000;
  position: relative;
  overflow: hidden;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 5rem;
}

.blog-card {
  background: rgba(15, 15, 15, 0.8) !important;
  border: 1px solid rgba(255, 215, 0, 0.15) !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  display: flex;
  flex-direction: column !important;
  backdrop-filter: blur(15px) !important;
  text-decoration: none !important;
  height: 100% !important;
  position: relative !important;
}
*/

/*
.blog-card.featured {
  grid-column: span 3 !important;
  display: grid !important;
  grid-template-columns: 1.3fr 1fr !important;
  min-height: 500px !important;
}

.blog-image {
  position: relative !important;
  overflow: hidden !important;
  height: 260px !important;
  background: #1a1a1a !important;
}

.blog-card.featured .blog-image {
  height: 100% !important;
}

.blog-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.8s ease !important;
}

.blog-card:hover .blog-image img {
  transform: scale(1.08) !important;
}
*/

/*
.blog-content {
  padding: 2.5rem !important;
  background: transparent !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  color: #fff !important;
}

.blog-card.featured .blog-content {
  padding: 4rem !important;
  justify-content: center !important;
}

.blog-category {
  position: absolute !important;
  top: 1.5rem !important;
  left: 1.5rem !important;
  background: var(--accent-500) !important;
  color: #000 !important;
  padding: 0.6rem 1.2rem !important;
  border-radius: 12px !important;
  font-size: 0.8rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  z-index: 5 !important;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3) !important;
}

.blog-read-time {
  position: absolute !important;
  top: 1.5rem !important;
  right: 1.5rem !important;
  background: rgba(0, 0, 0, 0.7) !important;
  color: #fff !important;
  padding: 0.6rem 1.2rem !important;
  border-radius: 12px !important;
  font-size: 0.8rem !important;
  backdrop-filter: blur(10px) !important;
  z-index: 5 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.blog-content h3 {
  font-size: 1.6rem !important;
  line-height: 1.3 !important;
  color: #fff !important;
  margin-bottom: 1.2rem !important;
  font-family: 'Space Grotesk', sans-serif !important;
  transition: color 0.3s ease !important;
  font-weight: 700 !important;
}

.blog-card.featured h3 {
  font-size: 3rem !important;
  margin-bottom: 2rem !important;
  letter-spacing: -1px !important;
}

.blog-card:hover h3 {
  color: var(--accent-500) !important;
}

.blog-content p {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 1.05rem !important;
  line-height: 1.7 !important;
  margin-bottom: 2.5rem !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.blog-meta {
  margin-top: auto !important;
  display: flex !important;
  align-items: center !important;
  gap: 2rem !important;
  font-size: 0.9rem !important;
  color: #888 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding-top: 2rem !important;
}

.blog-meta i {
  color: var(--accent-500) !important;
  margin-right: 0.6rem !important;
}

.blog-card:hover {
  transform: translateY(-12px) !important;
  border-color: rgba(255, 215, 0, 0.6) !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8) !important;
}

.blog-cta {
  margin-top: 5rem !important;
  text-align: center !important;
}

Responsive Overrides
@media (max-width: 1200px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr !important;
  }

  .blog-card.featured {
    grid-column: auto !important;
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }

  .blog-card.featured h3 {
    font-size: 2rem !important;
  }

  .blog-card.featured .blog-image {
    height: 300px !important;
  }
}
END OF REMOVED SECTION #5 */

/* ==========================================================================
   IMPROVED ROYAL BLOG OVERHAUL (V2)
   Ensuring maximum readability and premium aesthetic across the site
   ========================================================================== */

/* Section Adjustments */
.blog {
  padding: 10rem 0 !important;
  background: #000 !important;
  position: relative !important;
  overflow: hidden !important;
}

.blog .section-header h2 {
  color: #fff !important;
  font-family: 'Space Grotesk', sans-serif !important;
}

.blog .section-header p {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* Grid Layout */
.blog-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 2.5rem !important;
  margin-top: 5rem !important;
}

/* Card Styling */
.blog-card {
  background: rgba(15, 15, 15, 0.8) !important;
  border: 1px solid rgba(255, 215, 0, 0.15) !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  display: flex;
  flex-direction: column !important;
  backdrop-filter: blur(15px) !important;
  text-decoration: none !important;
  height: 100% !important;
  position: relative !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

.blog-card.featured {
  grid-column: span 3 !important;
  display: grid !important;
  grid-template-columns: 1.3fr 1fr !important;
  min-height: 500px !important;
}

/* Image Handling */
.blog-image {
  position: relative !important;
  overflow: hidden !important;
  height: 260px !important;
  background: #111 !important;
}

.blog-card.featured .blog-image {
  height: 100% !important;
}

.blog-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.8s ease !important;
  opacity: 0.9 !important;
}

.blog-card:hover .blog-image img {
  transform: scale(1.08) !important;
  opacity: 1 !important;
}

/* Labels */
.blog-category {
  background: var(--accent-500) !important;
  color: #000 !important;
  padding: 0.6rem 1.2rem !important;
  border-radius: 12px !important;
  font-size: 0.8rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  z-index: 5 !important;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3) !important;
}

.blog-read-time {
  background: rgba(0, 0, 0, 0.7) !important;
  color: #fff !important;
  padding: 0.6rem 1.2rem !important;
  border-radius: 12px !important;
  font-size: 0.8rem !important;
  backdrop-filter: blur(10px) !important;
  z-index: 5 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Content Text */
.blog-content {
  padding: 2.5rem !important;
  background: transparent !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
}

.blog-card.featured .blog-content {
  padding: 4rem !important;
  justify-content: center !important;
}

.blog-content h3 {
  font-size: 1.6rem !important;
  line-height: 1.3 !important;
  color: #fff !important;
  margin-bottom: 1.2rem !important;
  font-family: 'Space Grotesk', sans-serif !important;
  transition: color 0.3s ease !important;
  font-weight: 700 !important;
}

.blog-card.featured h3 {
  font-size: 3rem !important;
  margin-bottom: 2rem !important;
  letter-spacing: -1px !important;
}

.blog-card:hover h3 {
  color: var(--accent-500) !important;
}

.blog-content p {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 1.05rem !important;
  line-height: 1.7 !important;
  margin-bottom: 2.5rem !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.blog-card.featured .blog-content p {
  -webkit-line-clamp: 4 !important;
  line-clamp: 4 !important;
  font-size: 1.2rem !important;
}

/* Metadata */
.blog-meta {
  margin-top: auto !important;
  display: flex !important;
  align-items: center !important;
  gap: 2rem !important;
  font-size: 0.9rem !important;
  color: #888 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding-top: 2rem !important;
  background: transparent !important;
}

.blog-meta i {
  color: var(--accent-500) !important;
  margin-right: 0.6rem !important;
}

/* Hover State */
.blog-card:hover {
  transform: translateY(-12px) !important;
  border-color: rgba(255, 215, 0, 0.6) !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8) !important;
}

/* Individual Blog Page Fixes */
.blog-post {
  background: rgba(15, 15, 15, 0.9) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 215, 0, 0.1) !important;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8) !important;
  border-radius: 24px !important;
}

.blog-post h2,
.blog-post h3 {
  color: var(--accent-500) !important;
  font-family: 'Space Grotesk', sans-serif !important;
  margin-top: 3rem !important;
}

.blog-post p,
.blog-post ul li,
.blog-post ol li {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 1.15rem !important;
  line-height: 1.8 !important;
  margin-bottom: 1.5rem !important;
}

.blog-post blockquote {
  border-left: 4px solid var(--accent-500) !important;
  background: rgba(255, 215, 0, 0.05) !important;
  padding: 3rem !important;
  margin: 4rem 0 !important;
  border-radius: 0 20px 20px 0 !important;
}

.blog-post blockquote p {
  font-style: italic !important;
  font-size: 1.4rem !important;
  color: #fff !important;
}

.blog-post .content {
  padding: 4rem !important;
}

/* Responsive */
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .blog-card.featured {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }

  .blog-card.featured .blog-image {
    height: 300px !important;
  }

  .blog-post .content {
    padding: 2rem !important;
  }
}

/* ==========================================================================
   BLOG TAG VISIBILITY FIX - Ensure tags display properly on all blog cards
   ========================================================================== */

.blog-card .blog-tags {
  display: flex !important;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.blog-card .tag {
  display: inline-block !important;
  background: rgba(255, 215, 0, 0.08);
  color: #FFD700;
  padding: 0.25rem 0.7rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 215, 0, 0.3);
  transition: all 0.2s ease;
  cursor: pointer;
}

.blog-card .tag:hover {
  background: rgba(255, 215, 0, 0.2);
  color: #FFED4E;
  border-color: #FFD700;
  transform: translateY(-2px);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* ==========================================================================
   BLOG SEARCH AND FILTER CONTROLS
   Advanced filtering UI for enhanced blog discoverability
   ========================================================================== */

/* Search and Filter Controls */
.blog-controls {
  position: sticky;
  top: 80px;
  z-index: 100;
  background: linear-gradient(180deg, #050505 0%, rgba(5, 5, 5, 0.95) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.search-filter-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.search-container {
  position: relative;
  max-width: 100%;
}

.blog-search-input {
  width: 100%;
  padding: 1.2rem 3.5rem 1.2rem 3.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.blog-search-input:focus {
  outline: none;
  border-color: var(--accent-500);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.blog-search-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.search-icon {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-500);
  font-size: 1.2rem;
}

.clear-search-btn {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.clear-search-btn:hover {
  background: rgba(255, 0, 0, 0.2);
  color: #ff4444;
}

.filter-controls {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
  min-width: 200px;
}

.filter-label {
  font-size: 0.85rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.filter-select {
  padding: 0.9rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  color: white;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.filter-select:hover,
.filter-select:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-500);
  outline: none;
}

.tag-filter-container {
  position: relative;
}

#tagFilterToggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tag-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  background: rgba(20, 20, 20, 0.98);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  padding: 1rem;
  max-height: 300px;
  overflow-y: auto;
  z-index: 200;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
}

.tag-dropdown-item {
  padding: 0.7rem 1rem;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.tag-dropdown-item:hover {
  background: rgba(255, 215, 0, 0.1);
  color: white;
}

.tag-dropdown-item.selected {
  background: rgba(255, 215, 0, 0.2);
  color: var(--accent-500);
  font-weight: 600;
}

.tag-checkbox {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 215, 0, 0.4);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.tag-dropdown-item.selected .tag-checkbox {
  background: var(--accent-500);
  border-color: var(--accent-500);
}

.tag-checkbox i {
  font-size: 0.7rem;
  color: #000;
  display: none;
}

.tag-dropdown-item.selected .tag-checkbox i {
  display: block;
}

.clear-filters-btn {
  padding: 0.9rem 1.5rem;
  white-space: nowrap;
  align-self: flex-end;
}

.results-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

#resultsCount {
  font-weight: 600;
  color: var(--accent-500);
}

.active-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-tag {
  background: rgba(255, 215, 0, 0.15);
  color: var(--accent-500);
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.filter-tag i {
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.filter-tag i:hover {
  opacity: 1;
}

/* No Results State */
.no-results {
  text-align: center;
  padding: 5rem 2rem;
  color: rgba(255, 255, 255, 0.6);
  grid-column: 1 / -1;
}

.no-results i {
  font-size: 4rem;
  color: rgba(255, 215, 0, 0.3);
  margin-bottom: 1.5rem;
}

.no-results h3 {
  font-size: 1.8rem;
  color: white;
  margin-bottom: 1rem;
}

.no-results p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .filter-controls {
    flex-direction: column;
    gap: 1rem;
  }

  .filter-group {
    width: 100%;
  }

  .results-info {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .blog-controls {
    top: 60px;
  }
}

/* Animation for filtered results */
.blog-card {
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Blog Header Global Fix */
.blog-header {
  background: #050505 !important;
  padding: 10rem 0 5rem !important;
  border-bottom: 1px solid rgba(255, 215, 0, 0.05) !important;
}

.blog-post-title {
  color: #fff !important;
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: 3.5rem !important;
  line-height: 1.2 !important;
  margin-bottom: 1.5rem !important;
}

.blog-post-subtitle {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 1.3rem !important;
  line-height: 1.6 !important;
  max-width: 800px !important;
}

.breadcrumb a,
.breadcrumb span {
  color: rgba(255, 215, 0, 0.8) !important;
}

/* ===== AEO Blog Elements ===== */

/* Direct Answer Box */
.direct-answer-box {
  background: linear-gradient(145deg, rgba(255, 215, 0, 0.1), rgba(0, 0, 0, 0.4));
  border-left: 4px solid var(--accent-500);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  color: var(--gray-100);
}

.direct-answer-box strong {
  color: var(--accent-500);
  font-weight: 700;
}

/* Key Takeaways Box */
.key-takeaways-box {
  background: var(--primary-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2rem 0;
  border: 1px solid var(--gray-700);
}

.key-takeaways-box h3 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: 1.25rem;
}

.key-takeaways-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.key-takeaways-box li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  color: var(--gray-300);
}

.key-takeaways-box li::before {
  content: '\f00c';
  /* FontAwesome check */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--success-500);
}

/* Styled Blockquote for tips */
blockquote.expatly-tip {
  background: rgba(0, 212, 170, 0.1);
  border-left: 4px solid var(--success-500);
  margin: 2rem 0;
  padding: 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

blockquote.expatly-tip p {
  margin: 0;
  color: var(--gray-200);
  font-style: italic;
}

blockquote.expatly-tip::before {
  content: '\f0eb';
  /* Lightbulb */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--success-500);
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

/* FAQs styling */
.faq-item {
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--gray-800);
  padding-bottom: 1rem;
}

.faq-item h3 {
  color: var(--accent-500);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.faq-item p {
  color: var(--gray-300);
}

/* Content typography enhancements */
.blog-post-content h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: var(--accent-500);
  font-size: 1.8rem;
}

.blog-post-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #fff;
  font-size: 1.4rem;
}

.blog-post-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray-300);
  margin-bottom: 1.5rem;
}

/* ==========================================
   MOBILE RESPONSIVE FIXES - COMPREHENSIVE
   ========================================== */

/* Mobile Navigation - Hide auth buttons on mobile, show in sidebar */
@media (max-width: 768px) {
  .nav-auth {
    display: none !important;
  }

  .nav-container {
    padding: 1rem 1.25rem;
  }

  .nav-brand {
    font-size: 1.5rem;
    letter-spacing: 2px;
  }

  .nav-brand i {
    font-size: 1.25rem;
  }

  /* Mobile toggle visible */
  .nav-mobile-toggle {
    display: flex !important;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .nav-container {
    padding: 0.875rem 1rem;
  }

  .nav-brand {
    font-size: 1.25rem;
    letter-spacing: 1.5px;
  }

  .nav-brand span {
    display: inline; /* Keep EXPATLY text */
  }

  .mobile-sidebar {
    width: 85%;
    max-width: 280px;
  }
}

/* Hero Section Mobile */
@media (max-width: 768px) {
  .hero {
    min-height: 90vh;
    padding: 6rem 1rem 3rem;
  }

  .hero-content h1 {
    font-size: 2.5rem !important;
    line-height: 1.2;
  }

  .hero-content .subtitle {
    font-size: 1.1rem !important;
    margin-bottom: 2rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 5rem 1rem 2rem;
  }

  .hero-content h1 {
    font-size: 2rem !important;
  }

  .hero-content .subtitle {
    font-size: 1rem !important;
  }
}

/* Section Containers Mobile */
@media (max-width: 768px) {
  .section-container,
  .container {
    padding: 0 1.25rem !important;
  }

  section {
    padding: 3rem 0 !important;
  }

  .royal-showcase-section {
    padding: 3rem 0 !important;
  }

  .royal-grid {
    flex-direction: column !important;
    gap: 2rem;
    padding: 0 1.25rem;
  }

  .royal-showcase-section:nth-child(even) .royal-grid {
    flex-direction: column !important;
  }

  .royal-text,
  .royal-visual {
    width: 100%;
  }
}

/* Typography Mobile Scaling */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem !important;
    line-height: 1.2 !important;
  }

  h2 {
    font-size: 1.75rem !important;
    line-height: 1.3 !important;
  }

  h3 {
    font-size: 1.35rem !important;
  }

  h4 {
    font-size: 1.15rem !important;
  }

  p, li {
    font-size: 1rem !important;
    line-height: 1.6 !important;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem !important;
  }

  h2 {
    font-size: 1.5rem !important;
  }

  h3 {
    font-size: 1.25rem !important;
  }

  p, li {
    font-size: 0.95rem !important;
  }
}

/* Cards and Grids Mobile */
@media (max-width: 768px) {
  .features-grid,
  .services-grid,
  .experience-grid,
  .card-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .feature-card,
  .service-card,
  .experience-card,
  .card {
    margin: 0;
  }
}

/* Buttons Mobile - Touch Friendly */
@media (max-width: 768px) {
  .btn,
  .btn-primary,
  .btn-secondary,
  .btn-outline {
    padding: 0.875rem 1.5rem !important;
    font-size: 1rem !important;
    min-height: 48px; /* Touch-friendly */
  }

  .btn-sm {
    padding: 0.625rem 1.25rem !important;
    font-size: 0.9rem !important;
    min-height: 40px;
  }
}

/* Forms Mobile */
@media (max-width: 768px) {
  input,
  textarea,
  select {
    font-size: 16px !important; /* Prevents zoom on iOS */
    padding: 0.875rem 1rem !important;
    min-height: 48px;
  }

  .form-group {
    margin-bottom: 1.25rem;
  }
}

/* Tables Mobile - Scroll */
@media (max-width: 768px) {
  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  thead {
    display: none; /* Hide headers, use card layout */
  }

  tbody,
  tr,
  td {
    display: block;
    width: 100%;
  }

  tr {
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
  }

  td {
    text-align: left !important;
    padding: 0.5rem 0 !important;
    border: none !important;
  }

  td:before {
    content: attr(data-label);
    font-weight: 600;
    color: hsl(var(--primary));
    display: block;
    margin-bottom: 0.25rem;
  }
}

/* Footer Mobile */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem 1rem;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-links {
    grid-template-columns: 1fr !important;
  }
}

/* Spacing Mobile */
@media (max-width: 768px) {
  .pt-1 { padding-top: 0.5rem !important; }
  .pt-2 { padding-top: 1rem !important; }
  .pt-3 { padding-top: 1.5rem !important; }
  .pt-4 { padding-top: 2rem !important; }
  .pt-5 { padding-top: 2.5rem !important; }

  .pb-1 { padding-bottom: 0.5rem !important; }
  .pb-2 { padding-bottom: 1rem !important; }
  .pb-3 { padding-bottom: 1.5rem !important; }
  .pb-4 { padding-bottom: 2rem !important; }
  .pb-5 { padding-bottom: 2.5rem !important; }

  .mt-1 { margin-top: 0.5rem !important; }
  .mt-2 { margin-top: 1rem !important; }
  .mt-3 { margin-top: 1.5rem !important; }
  .mt-4 { margin-top: 2rem !important; }
  .mt-5 { margin-top: 2.5rem !important; }

  .mb-1 { margin-bottom: 0.5rem !important; }
  .mb-2 { margin-bottom: 1rem !important; }
  .mb-3 { margin-bottom: 1.5rem !important; }
  .mb-4 { margin-bottom: 2rem !important; }
  .mb-5 { margin-bottom: 2.5rem !important; }
}

/* Images Mobile */
@media (max-width: 768px) {
  img {
    max-width: 100%;
    height: auto;
  }

  .experience-image,
  .feature-image,
  .service-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
  }
}

/* Modals Mobile */
@media (max-width: 768px) {
  .modal-content,
  .booking-modal {
    width: 95% !important;
    max-width: 95% !important;
    margin: 1rem auto;
    max-height: 90vh;
    overflow-y: auto;
  }

  .modal-header,
  .modal-body,
  .modal-footer {
    padding: 1.25rem !important;
  }
}

/* Experience Pages Mobile */
@media (max-width: 768px) {
  .experience-header {
    padding: 2rem 1.25rem !important;
  }

  .experience-banner {
    height: 250px !important;
  }

  .experience-info {
    flex-direction: column;
    gap: 1rem;
  }

  .experience-meta {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 0.75rem;
  }

  .tab-buttons {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .tab-button {
    flex: 1 1 auto;
    min-width: 120px;
  }
}

/* Dashboard Mobile */
@media (max-width: 768px) {
  .dashboard-grid {
    grid-template-columns: 1fr !important;
  }

  .stat-card {
    padding: 1.25rem !important;
  }

  .dashboard-nav {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Vendor Dashboard Mobile */
@media (max-width: 768px) {
  .vendor-header {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 1rem;
  }

  .vendor-actions {
    width: 100%;
  }

  .vendor-actions .btn {
    width: 100%;
  }
}

/* Blog Mobile */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr !important;
  }

  .blog-post-header {
    padding: 2rem 1.25rem !important;
  }

  .blog-post-content {
    padding: 2rem 1.25rem !important;
  }
}

/* Utility Classes Mobile */
@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }

  .show-mobile {
    display: block !important;
  }

  .text-center-mobile {
    text-align: center !important;
  }

  .flex-column-mobile {
    flex-direction: column !important;
  }
}

/* Prevent Horizontal Scroll */
body {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

/* Touch Optimization */
@media (hover: none) and (pointer: coarse) {
  /* Remove hover effects on touch devices */
  a:hover,
  button:hover,
  .btn:hover {
    transform: none;
  }

  /* Larger touch targets */
  a,
  button,
  input,
  select,
  textarea {
    min-height: 44px;
  }
}
/* ─────────────────────────────────────────────────────────────────────────────
   Hero Phone Screens — Redesign 2026-02-26
   Trip Wallet · Experiences Booking · AI Concierge
───────────────────────────────────────────────────────────────────────────── */

/* Trip Wallet Card */
.trip-wallet-card {
  background: linear-gradient(135deg, #1a0a3a 0%, #0d0d1a 100%);
  border: 1px solid rgba(255, 215, 0, 0.35);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}
.wallet-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.3rem;
}
.wallet-amount {
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFD700;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.wallet-card-tag {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.4rem;
}

/* Transaction Feed */
.txn-feed { display: flex; flex-direction: column; gap: 0; }
.txn-feed-title {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.5rem;
}
.txn-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.txn-row:last-child { border-bottom: none; }
.txn-icon { font-size: 1.1rem; width: 24px; text-align: center; flex-shrink: 0; }
.txn-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.txn-name {
  font-size: 0.72rem;
  font-weight: 600;
  color: #f0f0f8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.txn-date { font-size: 0.6rem; color: rgba(255,255,255,0.35); }
.txn-amount {
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.txn-amount.debit { color: #F87171; }
.txn-amount.credit { color: #34D399; }

/* Experiences Screen */
.app-screen-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #f0f0f8;
}
.app-location-pill {
  font-size: 0.65rem;
  color: #FFD700;
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 20px;
  padding: 2px 8px;
}
.exp-category-pills {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.exp-pill {
  font-size: 0.6rem;
  padding: 3px 8px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  cursor: pointer;
}
.exp-pill.active {
  background: rgba(139,92,246,0.2);
  border-color: rgba(139,92,246,0.5);
  color: #A78BFA;
}
.exp-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 0.6rem;
}
.exp-card.featured { border-color: rgba(139,92,246,0.3); }
.exp-card-img {
  width: 100%;
  height: 70px;
  position: relative;
}
.exp-img-1 {
  background: linear-gradient(135deg, #1a3a1a 0%, #2d5a27 50%, #4a7c45 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.exp-img-1::after { content: '☕'; position: absolute; font-size: 2rem; }
.exp-img-2 {
  background: linear-gradient(135deg, #1a1a3a 0%, #2d2d5a 50%, #3d3d7a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.exp-img-2::after { content: '🏛️'; position: absolute; font-size: 1.8rem; }
.exp-card-body { padding: 0.6rem 0.75rem; }
.exp-card-name {
  font-size: 0.72rem;
  font-weight: 700;
  color: #f0f0f8;
  margin-bottom: 0.2rem;
}
.exp-card-meta {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.4rem;
}
.exp-book-btn {
  background: linear-gradient(135deg, #8B5CF6, #A78BFA);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.6rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.3px;
}
.exp-book-btn.secondary {
  background: transparent;
  border: 1px solid rgba(139,92,246,0.4);
  color: #A78BFA;
}

/* AI Concierge Screen */
.ai-interface { background: linear-gradient(180deg, #0a0a1a 0%, #000 100%); }
.ai-header { border-bottom: 1px solid rgba(255,255,255,0.06); padding-bottom: 0.75rem; margin-bottom: 0.75rem; }
.ai-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #A78BFA;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.ai-convo {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.ai-msg { font-size: 0.72rem; line-height: 1.5; }
.user-msg {
  background: rgba(139,92,246,0.15);
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: 12px 12px 2px 12px;
  padding: 0.6rem 0.75rem;
  color: #E0D7FF;
  align-self: flex-end;
  max-width: 85%;
  margin-left: auto;
}
.bot-msg {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.ai-avatar {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #8B5CF6, #FFD700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  color: white;
  font-weight: 800;
}
.ai-text {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px 12px 12px 12px;
  padding: 0.6rem 0.75rem;
  color: #CBD5E1;
  flex: 1;
  font-size: 0.68rem;
  line-height: 1.55;
}
.ai-text strong { color: #FFD700; }
.ai-chips {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  padding-left: 2rem;
}
.ai-chip {
  font-size: 0.58rem;
  padding: 3px 8px;
  border-radius: 20px;
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.25);
  color: #FFD700;
  cursor: pointer;
  font-weight: 600;
}

/* Screen Transition Label */
.screen-label {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,215,0,0.7);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.screen-label.label-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   REVIEWS SECTION
   ============================================================ */

.reviews-section {
  padding: 4rem 0;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.reviews-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.25rem 0;
  letter-spacing: 0.01em;
}

/* --- Summary Block --- */
.reviews-summary-block {
  margin-bottom: 2.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2rem;
}
.reviews-summary-inner {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  flex-wrap: wrap;
}
.big-rating-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 100px;
  gap: 0.4rem;
}
.big-rating-score {
  font-size: 3.5rem;
  font-weight: 800;
  color: #FFD700;
  line-height: 1;
}
.big-rating-stars {
  display: flex;
  gap: 0.2rem;
  color: #FFD700;
  font-size: 1.1rem;
}
.big-rating-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
  white-space: nowrap;
}
.breakdown-col {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.breakdown-bar-row {
  display: grid;
  grid-template-columns: 3.5rem 1fr 2.5rem;
  align-items: center;
  gap: 0.6rem;
}
.breakdown-bar-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
}
.breakdown-bar-track {
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
}
.breakdown-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #FFD700, #FFA500);
  border-radius: 4px;
  transition: width 0.6s ease;
}
.breakdown-bar-pct {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-align: right;
}

/* --- Highlights --- */
.highlights-row {
  margin-bottom: 2.5rem;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.highlight-card {
  background: rgba(255,215,0,0.05);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.highlight-card .hc-stars {
  color: #FFD700;
  font-size: 0.85rem;
  display: flex;
  gap: 0.15rem;
}
.highlight-card .hc-content {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  -webkit-line-clamp: 4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.highlight-card .hc-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.highlight-card .hc-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.highlight-card .hc-helpful {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
}

/* --- Review Cards --- */
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.reviews-loading {
  color: rgba(255,255,255,0.45);
  padding: 1.5rem 0;
  font-size: 0.9rem;
}
.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.25rem;
}
.review-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.6rem;
}
.review-card-left {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.rc-stars {
  color: #FFD700;
  font-size: 0.85rem;
  display: flex;
  gap: 0.15rem;
}
.rc-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.rc-date {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}
.review-card-photo {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  flex-shrink: 0;
}
.rc-content {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.review-card-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.review-action-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 0.3rem 0.75rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: background 0.2s, color 0.2s;
}
.review-action-btn:hover {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
}
.review-action-btn.helpful-btn.voted {
  border-color: rgba(16,185,129,0.4);
  color: #10b981;
}
.review-action-btn.flag-btn.flagged {
  border-color: rgba(239,68,68,0.4);
  color: #ef4444;
}

/* --- Load More --- */
.reviews-list-footer {
  margin-top: 1.25rem;
  text-align: center;
}
.load-more-btn {
  min-width: 180px;
}
.no-reviews-msg {
  text-align: center;
  padding: 2rem 0;
  color: rgba(255,255,255,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}
.no-reviews-msg i {
  font-size: 2rem;
  opacity: 0.4;
}

/* --- Submit Form --- */
.add-review-form {
  margin-top: 2.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2rem;
}
.add-review-form h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.5rem 0;
}
.review-success-msg {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  color: #10b981;
  font-weight: 600;
}
.review-success-msg i {
  font-size: 1.2rem;
  flex-shrink: 0;
}
.required {
  color: #ef4444;
  margin-left: 2px;
}

/* Star Picker */
.star-picker {
  display: flex;
  gap: 0.25rem;
}
.star-btn {
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
  font-size: 1.6rem;
  color: rgba(255,255,255,0.2);
  transition: color 0.15s, transform 0.1s;
  line-height: 1;
}
.star-btn:hover,
.star-btn.active {
  color: #FFD700;
}
.star-btn:hover {
  transform: scale(1.15);
}

/* Photo Upload */
.photo-upload-area {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.photo-upload-placeholder {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border: 1.5px dashed rgba(255,255,255,0.2);
  border-radius: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.photo-upload-placeholder:hover {
  border-color: rgba(139,92,246,0.5);
  color: rgba(255,255,255,0.8);
}
.photo-upload-placeholder i {
  font-size: 1rem;
}
#photo-preview {
  max-width: 120px;
  max-height: 120px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  object-fit: cover;
}
.photo-remove-btn {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ef4444;
  border: none;
  color: #fff;
  font-size: 0.65rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Responsive */
@media (max-width: 600px) {
  .reviews-summary-inner {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }
  .big-rating-col {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    min-width: unset;
  }
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  .review-card-photo {
    width: 48px;
    height: 48px;
  }
}
