/* ============================================
   SPARK4BRAND 2026 - Main Stylesheet
   ============================================ */

/* Color Scheme */
:root {
  --primary-navy: #001a4d;
  --secondary-navy: #0033a0;
  --accent-yellow: #ffd700;
  --accent-red: #ff4444;
  --accent-green: #00cc66;
  --text-dark: #1a1a1a;
  --text-light: #4a4a4a;
  --bg-light: #f5f5f5;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  color: var(--primary-navy);
}

h2 {
  font-size: 2.5rem;
  color: var(--primary-navy);
}

h3 {
  font-size: 1.75rem;
  color: var(--primary-navy);
}

h4 {
  font-size: 1.25rem;
  color: var(--text-dark);
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
}

a {
  color: var(--secondary-navy);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-red);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
  position: sticky;
  top: 0;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  z-index: 1000;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--primary-navy);
  font-weight: 700;
  font-size: 1.5rem;
}

.logo img {
  height: 50px;
  width: auto;
  margin-right: 0.5rem;
}

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

nav a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  white-space: nowrap;
}

nav a:hover {
  color: var(--accent-red);
}

/* Highlighted nav item (for special pages like KAIROS) */
.nav-highlight {
  background: linear-gradient(135deg, #ffd700 0%, #00cc66 100%) !important;
  color: #001a4d !important;
  font-weight: 700 !important;
  padding: 0.5rem 1rem !important;
  border-radius: 5px !important;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
  }
}

/* Navigation Dropdown */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -10px;
  right: -10px;
  height: 10px;
  background: transparent;
}

.nav-dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: white;
  min-width: 320px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 0.5rem 0;
  display: none;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateY(-5px);
  pointer-events: none;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu:hover {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown-menu.show {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: var(--text-dark);
  font-size: 0.9rem;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  white-space: normal;
  line-height: 1.4;
}

.nav-dropdown-menu a:hover {
  background-color: var(--bg-light);
  color: var(--primary-navy);
  border-left-color: var(--accent-red);
}

/* Nav controls removed - now in footer */

/* Language & Currency Selectors */
.language-selector,
.currency-selector {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 0.4rem 0.8rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  outline: none;
  min-width: 100px;
}

.language-selector:hover,
.currency-selector:hover {
  border-color: var(--primary-navy);
  box-shadow: 0 2px 8px rgba(0, 26, 77, 0.1);
}

.language-selector:focus,
.currency-selector:focus {
  border-color: var(--primary-navy);
  box-shadow: 0 0 0 3px rgba(0, 26, 77, 0.1);
}

.language-selector option,
.currency-selector option {
  padding: 0.5rem;
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 0.4rem;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION - BASE WITH ADVANCED ANIMATIONS
   ============================================ */

.hero {
  color: var(--bg-white);
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 95vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}



/* Text Animations */
.hero h1 {
  animation: slideInFromBottom 1.2s ease-out;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

@keyframes slideInFromBottom {
  0% { 
    opacity: 0; 
    transform: translateY(40px); 
  }
  100% { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

.hero .subheadline {
  animation: slideInFromBottom 1.2s ease-out 0.2s both;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.hero p {
  animation: fadeInUp 1.2s ease-out 0.4s both;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* ============================================
   PAGE-SPECIFIC HERO STYLES
   ============================================ */

/* HOME PAGE - The Spark */
.hero:not([class*="hero-"]) {
  background-image: 
    linear-gradient(135deg, rgba(0, 26, 77, 0.85) 0%, rgba(0, 61, 130, 0.75) 100%),
    url('/assets/hero-backgrounds/home-spark.jpg');
  background-size: cover;
  background-position: center;
}

/* ABOUT PAGE - The Founders */
.hero-about {
  background-image: 
    linear-gradient(135deg, rgba(0, 26, 77, 0.85) 0%, rgba(0, 61, 130, 0.75) 100%),
    url('/assets/hero-backgrounds/about-founders.jpg');
  background-size: cover;
  background-position: center;
}

/* SERVICES PAGE - The Arsenal */
.hero.hero-services {
  background-image: 
    linear-gradient(135deg, rgba(0, 26, 77, 0.85) 0%, rgba(0, 61, 130, 0.75) 100%),
    url('/assets/hero-backgrounds/services-arsenal.jpg');
  background-size: cover;
  background-position: center;
}

/* IGNITION PAGE - The System */
.hero-ignition {
  background-image: 
    linear-gradient(135deg, rgba(0, 26, 77, 0.85) 0%, rgba(0, 61, 130, 0.75) 100%),
    url('/assets/hero-backgrounds/ignition-system.jpg');
  background-size: cover;
  background-position: center;
}

/* VGL PARTNERSHIP PAGE - The Network */
.hero-vgl {
  background-image: 
    linear-gradient(135deg, rgba(0, 26, 77, 0.85) 0%, rgba(0, 61, 130, 0.75) 100%),
    url('/assets/hero-backgrounds/vgl-network.jpg');
  background-size: cover;
  background-position: center;
}

/* BOOSTERS PAGE - The Acceleration */
.hero-boosters {
  background-image: 
    linear-gradient(135deg, rgba(0, 26, 77, 0.85) 0%, rgba(0, 61, 130, 0.75) 100%),
    url('/assets/hero-backgrounds/boosters-acceleration.jpg');
  background-size: cover;
  background-position: center;
}

/* KAIROS PAGE - The AI Innovation */
.hero-kairos {
  background-image: 
    linear-gradient(135deg, rgba(0, 26, 77, 0.90) 0%, rgba(0, 61, 130, 0.85) 100%),
    url('/assets/hero-backgrounds/ignition-system.jpg');
  background-size: cover;
  background-position: center;
}

/* CONSULTING PAGE - The Guidance */
.hero-consulting {
  background-image: 
    linear-gradient(135deg, rgba(0, 26, 77, 0.85) 0%, rgba(0, 61, 130, 0.75) 100%),
    url('/assets/hero-backgrounds/consulting-guidance.jpg');
  background-size: cover;
  background-position: center;
}

/* BLOG PAGE - The Knowledge */
.hero-blog {
  background-image: 
    linear-gradient(135deg, rgba(0, 26, 77, 0.85) 0%, rgba(0, 61, 130, 0.75) 100%),
    url('/assets/hero-backgrounds/blog-knowledge.jpg');
  background-size: cover;
  background-position: center;
}

/* CONTACT PAGE - The Connection */
.hero-contact {
  background-image: 
    linear-gradient(135deg, rgba(0, 26, 77, 0.85) 0%, rgba(0, 61, 130, 0.75) 100%),
    url('/assets/hero-backgrounds/contact-connection.jpg');
  background-size: cover;
  background-position: center;
}

/* ============================================
   HERO VISUAL DECORATIONS
   ============================================ */

.hero-visual-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 800px;
  height: 400px;
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}

.hero-visual-decoration svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
}

/* Animate decorations subtly */
.hero-about .hero-visual-decoration svg circle:nth-child(1),
.hero-about .hero-visual-decoration svg circle:nth-child(2) {
  animation: breathe 4s ease-in-out infinite;
}

.hero-services .hero-visual-decoration svg rect {
  animation: floatPillar 6s ease-in-out infinite;
}

.hero-ignition .hero-visual-decoration svg circle {
  animation: pulse 3s ease-in-out infinite;
}

.hero-vgl .hero-visual-decoration svg circle {
  animation: pulse 2s ease-in-out infinite;
}

.hero-boosters .hero-visual-decoration svg path {
  animation: flash 1.5s ease-in-out infinite;
}

.hero-consulting .hero-visual-decoration svg circle {
  animation: breathe 3s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

@keyframes floatPillar {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes flash {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Mobile: Hide complex decorations, keep simple */
@media (max-width: 768px) {
  .hero-visual-decoration {
    opacity: 0.2;
    transform: translate(-50%, -50%) scale(0.6);
  }
}

/* Animated background particles */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 204, 102, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(0, 184, 255, 0.12) 0%, transparent 50%);
  /* Removed bgRotate animation - replaced with AI chip animation */
  animation: bgPulse 15s ease-in-out infinite;
  z-index: 0;
}

/* Removed bgRotate keyframes - now using AI chip animation instead */
/* @keyframes bgRotate {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
} */

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.12) 0%, rgba(0, 184, 255, 0.08) 50%, transparent 70%);
  border-radius: 50%;
  animation: floatAnimation 20s ease-in-out infinite, pulse 6s ease-in-out infinite;
  filter: blur(80px);
  z-index: 0;
}

@keyframes bgPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

@keyframes floatAnimation {
  0%, 100% { 
    transform: translate(0, 0) scale(1) rotate(0deg); 
  }
  25% { 
    transform: translate(-50px, 50px) scale(1.15) rotate(10deg); 
  }
  50% { 
    transform: translate(30px, -40px) scale(0.95) rotate(-10deg); 
  }
  75% { 
    transform: translate(-30px, 30px) scale(1.1) rotate(5deg); 
  }
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 0 2rem;
}

.hero h1,
.hero .subheadline,
.hero p {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Headline Section */
.hero-headline {
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease;
}

.hero h1 {
  color: var(--bg-white);
  font-size: 3.8rem;
  margin-bottom: 1rem;
  font-weight: 900;
  line-height: 1.2;
  background: linear-gradient(120deg, #ffffff 0%, #ffd700 50%, #00b8ff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
  filter: drop-shadow(0 4px 20px rgba(255, 215, 0, 0.3));
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-tagline {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@keyframes textPulse {
  0%, 100% { 
    opacity: 1; 
    transform: scale(1);
  }
  50% { 
    opacity: 0.9; 
    transform: scale(1.02);
  }
}

.hero p {
  color: rgba(255, 255, 255, 1);
  font-size: 1.25rem;
  margin-bottom: 3rem;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.9;
  animation: fadeInUp 1s ease 0.4s both;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Hero Service Cards - Homepage only */
.hero-content .hero-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto 4rem;
  padding: 0 1rem;
}

/* Mobile: Force single column for hero services */
@media (max-width: 768px) {
  .hero-content .hero-services,
  .hero-services {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
    padding: 0 0.5rem;
  }
  
  /* Fix hero text overflow on mobile */
  .hero {
    padding: 3rem 1rem 2rem;
  }
  
  .hero-headline h1 {
    font-size: 1.75rem !important;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  .hero-tagline {
    font-size: 1rem !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .hero-content {
    max-width: 100%;
    padding: 0 0.5rem;
  }
  
  .hero-service-card {
    padding: 2rem 1rem;
  }
  
  .hero-service-card h3 {
    font-size: 1.25rem;
  }
  
  .hero-service-card p {
    font-size: 0.9375rem;
  }
  
  /* Fix Why SPARK4BRAND section cards on mobile */
  .section-title h2 {
    font-size: 1.75rem !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  /* Force grid cards to single column */
  div[style*="grid-template-columns: repeat(auto-fit, minmax(320px, 1fr))"] {
    grid-template-columns: 1fr !important;
  }
}

.hero-service-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease both;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
  display: block;
  color: inherit;
}

.hero-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(0, 184, 255, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.hero-service-card:hover::before {
  opacity: 1;
}

.hero-service-card:hover {
  transform: translateY(-15px) scale(1.05);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(255, 215, 0, 0.3);
}

.hero-service-card:nth-child(1) {
  animation-delay: 0.1s;
}

.hero-service-card:nth-child(2) {
  animation-delay: 0.2s;
}

.hero-service-card:nth-child(3) {
  animation-delay: 0.3s;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}

.service-icon svg,
.service-icon img {
  width: 100%;
  height: 100%;
  color: #ffd700;
  filter: drop-shadow(0 4px 15px rgba(255, 215, 0, 0.4));
  animation: iconFloat 3s ease-in-out infinite;
  transition: all 0.2s ease;
  background: transparent !important;
}

.hero-service-card:hover .service-icon svg,
.hero-service-card:hover .service-icon img {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 8px 25px rgba(255, 215, 0, 0.6));
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-service-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
  letter-spacing: 0.5px;
}

.hero-service-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  position: relative;
  z-index: 1;
  font-weight: 400;
  text-shadow: none;
}

@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes glow {
  0%, 100% {
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  }
  50% {
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
  }
}

.hero-ctas {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeIn 1s ease 0.6s both;
  margin-top: 2.5rem;
}

.hero-ctas .btn {
  position: relative;
  transition: all 0.3s ease;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.3px;
  animation: fadeIn 1s ease 0.8s both;
}

/* Subtle Pulse Animation for Primary CTA */
.hero-ctas .btn-primary {
  animation: fadeIn 1s ease 0.8s both;
}

.hero-ctas .btn .btn-icon {
  font-size: 1.3rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.hero-ctas .btn:hover .btn-icon {
  transform: scale(1.2) rotate(10deg);
}

.hero-ctas .btn:hover {
  transform: translateY(-2px);
}

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



/* Hero Particles Animation */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.particle-1 {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, transparent 70%);
  top: 10%;
  left: 10%;
  animation: particleFloat1 25s ease-in-out infinite;
  filter: blur(40px);
}

.particle-2 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(0, 204, 102, 0.3) 0%, transparent 70%);
  top: 60%;
  right: 15%;
  animation: particleFloat2 30s ease-in-out infinite;
  filter: blur(50px);
}

.particle-3 {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(0, 184, 255, 0.4) 0%, transparent 70%);
  bottom: 20%;
  left: 25%;
  animation: particleFloat3 20s ease-in-out infinite;
  filter: blur(35px);
}

.particle-4 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, transparent 70%);
  top: 40%;
  right: 30%;
  animation: particleFloat4 28s ease-in-out infinite;
  filter: blur(45px);
}

.particle-5 {
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.5) 0%, transparent 70%);
  bottom: 10%;
  right: 10%;
  animation: particleFloat5 22s ease-in-out infinite;
  filter: blur(30px);
}

@keyframes particleFloat1 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(100px, -50px) scale(1.2);
  }
  50% {
    transform: translate(150px, 100px) scale(0.8);
  }
  75% {
    transform: translate(-50px, 50px) scale(1.1);
  }
}

@keyframes particleFloat2 {
  0%, 100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  33% {
    transform: translate(-80px, 80px) scale(1.3) rotate(120deg);
  }
  66% {
    transform: translate(80px, -100px) scale(0.9) rotate(240deg);
  }
}

@keyframes particleFloat3 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-120px, -120px) scale(1.4);
  }
}

@keyframes particleFloat4 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(-70px, 70px) rotate(90deg);
  }
  50% {
    transform: translate(70px, 70px) rotate(180deg);
  }
  75% {
    transform: translate(-70px, -70px) rotate(270deg);
  }
}

@keyframes particleFloat5 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(60px, -80px) scale(1.2);
  }
  66% {
    transform: translate(-90px, 60px) scale(0.8);
  }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  font-size: 1rem;
  position: relative;
  letter-spacing: 0.3px;
  text-transform: none;
  box-shadow: 0 2px 6px rgba(0, 26, 77, 0.1);
}

.btn-primary {
  background: #ffd700;
  color: #001a4d;
  border-color: #ffd700;
  font-weight: 700;
}

.btn-primary:hover {
  background: #ffed4e;
  border-color: #ffed4e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.25);
}

.btn-secondary {
  background: white;
  color: #001a4d;
  border-color: #001a4d;
}

.btn-secondary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 26, 77, 0.15);
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-outline:hover {
  background: white;
  color: #001a4d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* ============================================
   SECTIONS
   ============================================ */

section {
  padding: 4rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   CARDS
   ============================================ */

.card {
  background-color: var(--bg-white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card h3 {
  margin-bottom: 1rem;
  color: var(--primary-navy);
}

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

/* ============================================
   GRID LAYOUTS
   ============================================ */

.grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

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

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

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Desktop: Ensure 3 and 4 columns stay together (min-width: 900px) */
@media (min-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  
  .grid-4 {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

/* Tablet: 2 columns (768px - 899px) */
@media (min-width: 768px) and (max-width: 899px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   IGNITION FRAMEWORK SECTION
   ============================================ */

.ignition-pillar {
  background-color: var(--bg-light);
  padding: 2.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent-yellow);
  margin-bottom: 2rem;
}

.ignition-pillar h3 {
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.ignition-pillar .subtitle {
  color: var(--accent-red);
  font-weight: 600;
  margin-bottom: 1rem;
}

.pillar-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.detail-item {
  background-color: var(--bg-white);
  padding: 1rem;
  border-radius: 4px;
}

.detail-label {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.detail-value {
  font-size: 1.25rem;
  color: var(--primary-navy);
  font-weight: 700;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--secondary-navy);
  box-shadow: 0 0 0 3px rgba(0, 51, 160, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
  border-color: var(--accent-red);
}

.error-message {
  color: var(--accent-red);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background-color: var(--accent-red);
  color: var(--bg-white);
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover:not(:disabled) {
  background-color: #ff2222;
  transform: translateY(-2px);
}

.form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-success {
  background-color: #e8f5e9;
  border: 1px solid var(--accent-green);
  color: #2e7d32;
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  display: none;
}

.form-success.show {
  display: block;
}

/* ============================================
   TEAM SECTION
   ============================================ */

.team-member {
  text-align: center;
}

.team-member img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  margin: 0 auto 1.5rem;
  display: block;
}

.team-member h3 {
  color: var(--primary-navy);
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.team-member .role {
  color: var(--accent-red);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.team-member p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background-color: #1e3a5f;
  color: var(--bg-white);
  padding: 3rem 2rem 1rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--accent-yellow);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
  color: #e8edf2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-logo img {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-logo img:hover {
  opacity: 1 !important;
  transform: scale(1.05);
}

.social-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.social-links a {
  color: white !important;
  font-size: 2rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.social-links a i {
  color: white !important;
  font-size: 2rem;
}

.social-links a:hover {
  color: #ffd700;
  transform: translateY(-3px) scale(1.1);
}

.footer-selectors {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-copyright {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  opacity: 1;
  color: #e8edf2;
}

.footer-lang-btns,
.footer-currency-btns {
  display: flex;
  gap: 0.5rem;
}

.footer-lang-btn,
.footer-currency-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.footer-lang-btn {
  font-size: 1.5rem;
  padding: 0.3rem 0.6rem;
  line-height: 1;
}

.footer-lang-btn:hover,
.footer-currency-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.footer-lang-btn.active,
.footer-currency-btn.active {
  background: var(--accent-yellow);
  color: var(--primary-navy);
  border-color: var(--accent-yellow);
  font-weight: 600;
}

.footer-separator {
  color: rgba(255, 255, 255, 0.3);
  font-size: 1rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .header-container {
    height: 70px;
    padding: 0 1rem;
  }

  /* Desktop nav is always visible - DON'T HIDE IT! 
     Only hide on mobile with FAB menu */
  /* nav {
    display: none;
  } */

  nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    padding: 1rem;
    gap: 1rem;
    box-shadow: var(--shadow);
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 3rem 1rem;
    min-height: auto;
  }

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

  .hero-tagline {
    font-size: 1rem;
    letter-spacing: 1px;
  }

  .hero-services {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .hero-service-card {
    padding: 2rem 1.5rem;
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }

  .hero-service-card h3 {
    font-size: 1.2rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 300px;
  }

  section {
    padding: 2rem 1rem;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 1.5rem;
  }

  /* Mobile dropdown adjustments */
  .nav-dropdown {
    display: block;
    width: 100%;
  }
  
  .nav-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0.5rem 0;
  }
  
  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    padding-left: 1rem;
    margin-top: 0;
    background: var(--bg-light);
    border-radius: 4px;
    display: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  
  .nav-dropdown-menu.show {
    display: block !important;
  }
  
  nav.mobile-open .nav-dropdown-menu a {
    padding: 0.75rem 1rem;
    display: block;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-selectors {
    justify-content: center;
  }

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

@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

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

  .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }

  section {
    padding: 1.5rem 1rem;
  }

  .ignition-pillar {
    padding: 1.5rem;
  }

  .pillar-details {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   TIMELINE STYLES
   ============================================ */

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 3rem auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #ffd700 0%, #00cc66 100%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  background: #ffd700;
  border: 4px solid white;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

.timeline-content {
  width: 45%;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 26, 77, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
  text-align: left;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 26, 77, 0.15);
}

.timeline-year {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #001a4d;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.timeline-content h3 {
  color: #001a4d;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.timeline-content p {
  color: #4a4a4a;
  line-height: 1.7;
  font-size: 1rem;
}

/* Mobile Timeline */
@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }
  
  .timeline-marker {
    left: 20px;
  }
  
  .timeline-item {
    flex-direction: row !important;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px !important;
    text-align: left !important;
  }
}

/* ============================================
   SERVICE CARDS WITH ICONS
   ============================================ */

.service-card {
  position: relative;
  transition: all 0.2s ease;
}

.service-card {
  position: relative;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(0, 204, 102, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: inherit;
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 26, 77, 0.2), 0 0 0 1px rgba(255, 215, 0, 0.3);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover h3 {
  color: #ffd700;
  transform: translateX(5px);
  transition: all 0.3s ease;
}

.service-card-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-icon svg,
.service-card-icon img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 15px rgba(0, 26, 77, 0.15));
  transition: all 0.3s ease;
  background: transparent !important;
  mix-blend-mode: multiply;
}

.service-card:hover .service-card-icon svg,
.service-card:hover .service-card-icon img {
  transform: scale(1.08) translateY(-8px);
  filter: drop-shadow(0 15px 30px rgba(0, 26, 77, 0.25));
}

.service-price {
  margin: 1.5rem 0;
}

.price-main {
  font-size: 1.4rem;
  color: var(--primary-navy);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.price-note {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 1rem;
}

.service-cta-group {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.service-cta-group .btn {
  flex: 1;
  min-width: 140px;
  text-align: center;
}

/* ============================================
   VALUE CARDS WITH ICONS
   ============================================ */

.value-card {
  position: relative;
  transition: all 0.2s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 26, 77, 0.15);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  position: relative;
}

.value-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 10px rgba(255, 215, 0, 0.3));
  transition: all 0.2s ease;
}

.value-card:hover .value-icon svg {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 6px 15px rgba(255, 215, 0, 0.5));
}

.value-card h3 {
  color: #001a4d;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.value-card p {
  color: #4a4a4a;
  line-height: 1.7;
}

/* ============================================
   PREMIUM EFFECTS
   ============================================ */

/* Custom cursor removed - using standard cursor */

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffd700 0%, #ff3333 100%);
  z-index: 9999;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Scroll-triggered animation classes */
.stagger-fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-in {
  animation: scaleIn 0.6s ease-out forwards;
}

@keyframes scaleIn {
  0% { opacity: 0; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}

/* Letter animation for hero text */
.letter-animate {
  display: inline-block;
  opacity: 0;
  animation: letterFade 0.5s ease-out forwards;
}

@keyframes letterFade {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Standard cursor used on all devices */

/* ============================================
   UTILITY CLASSES
   ============================================ */

.hidden {
  display: none !important;
}

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

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

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

/* ============================================
   PREMIUM VALUE CARDS
   ============================================ */

.premium-value-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 26, 77, 0.08);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 26, 77, 0.06);
}

.premium-value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #001a4d 0%, #ffd700 50%, #00cc66 100%);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left;
}

.premium-value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 26, 77, 0.15);
  border-color: rgba(255, 215, 0, 0.3);
}

.premium-value-card:hover::before {
  transform: scaleX(1);
}

.premium-icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-value-card:hover .premium-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.premium-icon {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 12px rgba(0, 26, 77, 0.1));
  transition: filter 0.4s ease;
}

.premium-value-card:hover .premium-icon {
  filter: drop-shadow(0 8px 20px rgba(255, 215, 0, 0.3));
}

/* Animation for icon elements on hover */
.premium-value-card:hover .premium-icon circle,
.premium-value-card:hover .premium-icon path {
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .premium-value-card {
    padding: 2rem 1.5rem;
  }
  
  .premium-icon-wrapper {
    width: 80px;
    height: 80px;
  }
}

/* ============================================
   FOUNDER CARDS - PREMIUM LAYOUT
   ============================================ */

.founder-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 26, 77, 0.1);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 26, 77, 0.08);
  position: relative;
}

.founder-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #001a4d 0%, #ffd700 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.founder-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(0, 26, 77, 0.15);
  border-color: rgba(255, 215, 0, 0.3);
}

.founder-card:hover::before {
  opacity: 1;
}

.founder-image-wrapper {
  width: 100%;
  height: 400px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}

.founder-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.founder-image-wrapper img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.founder-card:hover .founder-image-wrapper img {
  transform: scale(1.05);
}

.founder-content {
  padding: 2.5rem 2rem 2rem;
  background: white;
}

.founder-role {
  color: #dc3545;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
}

.founder-bio {
  color: #555;
  line-height: 1.8;
  font-size: 1rem;
}

.founder-bio p {
  margin-bottom: 0;
}

.founder-bio em {
  color: var(--primary-navy);
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 968px) {
  .founder-card {
    margin-bottom: 2rem;
  }
  
  .founder-image-wrapper {
    height: 350px;
  }
  
  .founder-image-wrapper img {
    width: 100%;
    height: 350px;
  }
  
  .founder-content {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 640px) {
  .founder-image-wrapper {
    height: 300px;
  }
  
  .founder-image-wrapper img {
    width: 100%;
    height: 300px;
  }
  
  .founder-content {
    padding: 1.5rem 1.25rem;
  }
  
  .founder-role {
    font-size: 0.9rem;
  }
  
  .founder-bio {
    font-size: 0.95rem;
  }
}

/* ============================================
   OUR STORY - MODERN CARD LAYOUT
   ============================================ */

.story-grid {
  display: grid;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.story-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 26, 77, 0.08);
  border: 1px solid rgba(0, 26, 77, 0.06);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.story-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #001a4d 0%, #ffd700 50%, #00cc66 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.story-card:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 40px rgba(0, 26, 77, 0.12);
  border-color: rgba(255, 215, 0, 0.3);
}

.story-card:hover::before {
  opacity: 1;
}

.story-card-right:hover {
  transform: translateX(-8px);
}

.story-number {
  position: absolute;
  top: -15px;
  left: 2.5rem;
  background: linear-gradient(135deg, #001a4d 0%, #003d82 100%);
  color: #ffd700;
  font-size: 1.5rem;
  font-weight: 700;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 26, 77, 0.3);
  border: 3px solid white;
}

.story-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
  color: #001a4d;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  margin: 1.5rem 0 1rem;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.story-card h3 {
  color: var(--primary-navy);
  font-size: 1.6rem;
  font-weight: 700;
  margin: 1rem 0;
  line-height: 1.3;
}

.story-card p {
  color: #555;
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 0;
}

.story-icon {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  opacity: 0.5;
  transition: all 0.2s ease;
}

.story-card:hover .story-icon {
  opacity: 0.8;
  transform: scale(1.1) rotate(5deg);
}

.story-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 8px rgba(0, 26, 77, 0.1));
}

/* Alternating layout for larger screens */
@media (min-width: 769px) {
  .story-card-right {
    margin-left: 4rem;
  }
  
  .story-card-left {
    margin-right: 4rem;
  }
  
  .story-card-right .story-number {
    left: auto;
    right: 2.5rem;
  }
  
  .story-card-right .story-icon {
    right: auto;
    left: 2rem;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .story-card {
    padding: 2rem 1.5rem;
    margin-bottom: 0;
  }
  
  .story-number {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
    left: 1.5rem;
  }
  
  .story-badge {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
  }
  
  .story-card h3 {
    font-size: 1.35rem;
  }
  
  .story-card p {
    font-size: 1rem;
  }
  
  .story-icon {
    width: 50px;
    height: 50px;
    bottom: 1.5rem;
    right: 1.5rem;
  }
  
  .story-card:hover {
    transform: translateY(-4px);
  }
  
  .story-card-right:hover {
    transform: translateY(-4px);
  }
}

/* ============================================
   CUSTOM CURSOR DISABLED - Using Standard Browser Cursor
   ============================================ */

/* Custom cursor disabled for rock-solid UX */

/* ============================================
   OUR STORY - CREATIVE JOURNEY LAYOUT
   ============================================ */

.story-journey-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  padding: 4rem 2rem 3rem;
  position: relative;
  overflow: hidden;
}

.story-journey-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(255,215,0,0.3) 10%, rgba(255,215,0,0.3) 90%, transparent 100%);
  transform: translateX(-50%);
  z-index: 0;
}

.journey-path {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.journey-chapter {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0, 26, 77, 0.08);
  border: 1px solid rgba(0, 26, 77, 0.08);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2.5rem;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  grid-template-areas: "icon content";
  position: relative;
  overflow: hidden;
}

.journey-chapter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #001a4d 0%, #ffd700 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.journey-chapter:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 26, 77, 0.15);
  border-color: rgba(255, 215, 0, 0.3);
}

.journey-chapter:hover::before {
  opacity: 1;
}

.chapter-right,
.chapter-left {
  /* No directional changes needed for horizontal layout */
}

.journey-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  grid-area: icon;
}

.journey-circle {
  width: 150px;
  height: 150px;
  position: relative;
  transition: all 0.3s ease;
}

.journey-chapter:hover .journey-circle {
  transform: scale(1.05);
}

.journey-circle svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 10px 30px rgba(0, 26, 77, 0.15));
}

.journey-number {
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #001a4d 0%, #003d82 100%);
  color: #ffd700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 26, 77, 0.4);
  border: 4px solid white;
  z-index: 2;
}

.journey-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  grid-area: content;
}

.journey-label {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
  color: #001a4d;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  width: fit-content;
}

.journey-content h3 {
  color: var(--primary-navy);
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.journey-content p {
  color: #555;
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
}

.journey-content p strong {
  color: var(--primary-navy);
  font-weight: 600;
}

.journey-connector {
  display: none;
}

/* Responsive Design */
@media (max-width: 968px) {
  .story-journey-section {
    padding: 3rem 1rem 2rem;
  }
  
  .story-journey-section::before {
    display: none;
  }
  
  .journey-path {
    gap: 1.5rem;
  }
  
  .journey-chapter {
    grid-template-columns: 1fr;
    grid-template-areas: 
      "icon"
      "content";
    gap: 1.5rem;
    padding: 1.5rem;
    text-align: center;
  }
  
  .journey-visual {
    justify-content: center;
    order: -1;
  }
  
  .journey-circle {
    width: 120px;
    height: 120px;
  }
  
  .journey-number {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    border: 3px solid white;
  }
  
  .journey-content {
    padding: 0;
    align-items: center;
  }
  
  .journey-label {
    margin: 0 auto;
  }
  
  .journey-content h3 {
    font-size: 1.4rem;
  }
  
  .journey-content p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .journey-connector {
    height: 40px;
  }
}

@media (max-width: 640px) {
  .story-journey-section {
    padding: 2.5rem 1rem 1.5rem;
  }
  
  .journey-chapter {
    padding: 1.25rem;
    gap: 1.25rem;
  }
  
  .journey-circle {
    width: 100px;
    height: 100px;
  }
  
  .journey-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    border: 2px solid white;
  }
  
  .journey-label {
    font-size: 0.65rem;
    padding: 0.4rem 1rem;
    letter-spacing: 1.5px;
  }
  
  .journey-content h3 {
    font-size: 1.2rem;
    line-height: 1.4;
  }
  
  .journey-content p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

/* ===================================
   PREMIUM AI-GENERATED ICON STYLES
   =================================== */

/* Journey/Story Icon Images */
.journey-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  animation: float 6s ease-in-out infinite;
}

/* Values Icon Images */
.premium-icon-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.premium-icon-wrapper:hover .premium-icon-img {
  transform: scale(1.15) rotate(5deg);
}

/* Ensure proper sizing in journey circles */
.journey-circle {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.journey-circle img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Premium icon wrapper sizing */
.premium-icon-wrapper {
  width: 140px;
  height: 140px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(0, 26, 77, 0.05));
  border-radius: 20px;
  padding: 20px;
  transition: all 0.2s ease;
}

.premium-icon-wrapper:hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(0, 26, 77, 0.08));
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .journey-circle {
    width: 140px;
    height: 140px;
  }
  
  .premium-icon-wrapper {
    width: 110px;
    height: 110px;
    padding: 15px;
  }
  
  .premium-icon-img {
    width: 90px;
    height: 90px;
  }
}


/* ============================================
   BLOG LAYOUT - Modern Card Design
   ============================================ */

/* Blog Filter Tabs */
.blog-filter-tabs {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 1rem;
}

.blog-filter-tab {
  background: white;
  border: 2px solid #e0e0e0;
  color: var(--text-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.blog-filter-tab:hover {
  border-color: var(--primary-navy);
  color: var(--primary-navy);
  transform: translateY(-2px);
}

.blog-filter-tab.active {
  background: var(--primary-navy);
  border-color: var(--primary-navy);
  color: white;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Blog Card */
.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.blog-card-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.blog-card-category {
  display: inline-block;
  background: rgba(0, 26, 77, 0.08);
  color: var(--primary-navy);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  align-self: flex-start;
}

.blog-card-title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
}

.blog-card-title a {
  color: var(--primary-navy);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card-title a:hover {
  color: var(--accent-yellow);
}

.blog-card-excerpt {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
  margin-top: auto;
}

.blog-card-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #666;
}

.author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e0e0e0;
}

.blog-card-date {
  font-size: 0.9rem;
  color: #999;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .blog-filter-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }
  
  .blog-filter-tab {
    white-space: nowrap;
  }
  
  .blog-card-title {
    font-size: 1.2rem;
  }
}

/* Hide cards based on filter */
.blog-card[data-category]:not([data-category*="all"]) {
  display: flex;
}

.blog-card.hidden {
  display: none;
}


/* ============================================
   LEAD MAGNET - Free eBook Download
   ============================================ */

.lead-magnet-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.lead-magnet-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}

.lead-magnet-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lead-magnet-text {
  flex: 1;
}

.lead-magnet-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-size: 0.95rem;
}

.lead-magnet-form {
  min-width: 300px;
}

.lead-magnet-form input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}

.lead-magnet-form button:hover {
  background: #ffed4e !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

/* Blog Search in Hero */
#blogSearch {
  transition: all 0.3s ease;
}

#blogSearch:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

#blogSearch::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* Improved Blog Filter Tabs */
.blog-filter-tab i {
  margin-right: 0.5rem;
}

/* Responsive Lead Magnet */
@media (max-width: 968px) {
  .lead-magnet-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .lead-magnet-features {
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .lead-magnet-form {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .lead-magnet-icon {
    margin: 0 auto 1rem;
  }
}

@media (max-width: 768px) {
  .lead-magnet-box {
    padding: 1.5rem;
  }
  
  .lead-magnet-features {
    grid-template-columns: 1fr;
  }
  
  #blogSearch {
    font-size: 0.95rem;
    padding: 0.9rem 0.9rem 0.9rem 2.8rem;
  }
}

/* Newsletter Success Message */
.success-message {
  background: #00cc66;
  color: white;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  display: none;
}

.success-message.show {
  display: block;
  animation: slideInFromTop 0.5s ease;
}

@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   MOBILE OPTIMIZATION - COMPREHENSIVE
   ============================================ */

/* Touch Target Optimization - Minimum 44x44px */
@media (max-width: 768px) {
  
  /* Ensure all interactive elements meet touch target size */
  a, button, .btn, .footer-lang-btn, .footer-currency-btn {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Language and Currency Switchers */
  .footer-lang-btns, .footer-currency-btns {
    gap: 0.75rem;
  }
  
  .footer-lang-btn, .footer-currency-btn {
    padding: 0.75rem 1rem;
    font-size: 1.125rem;
    min-height: 48px;
    min-width: 48px;
  }
  
  /* Navigation Links */
  nav a {
    padding: 0.875rem 1rem;
    font-size: 1rem;
  }
  
  /* Buttons */
  .btn {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  
  /* Typography - Mobile-Friendly Sizes */
  h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  h2 {
    font-size: 1.75rem;
    line-height: 1.3;
  }
  
  h3 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  /* Container Padding */
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  
  /* Section Padding */
  section {
    padding: 3rem 1.5rem;
  }
  
  /* Hero Section */
  .hero {
    padding: 4rem 1.5rem 3rem;
  }
  
  .hero h1 {
    font-size: 2.25rem;
  }
  
  .hero p {
    font-size: 1.125rem;
  }
  
  /* Cards - Stack on Mobile */
  .services-grid, .values-grid, .premium-values-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  /* Founder Cards - Stack on Mobile */
  .founder-card {
    display: block;
  }
  
  .founder-image-wrapper {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 2rem;
  }
  
  .founder-content {
    padding: 2rem 1.5rem;
  }
  
  /* Forms - Mobile-Friendly */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea,
  select {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 1rem;
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  
  .footer-section {
    margin: 0 auto;
  }
  
  .footer-selectors {
    flex-direction: column;
    gap: 2rem;
  }
  
  /* Social Links */
  .social-links a {
    min-width: 48px;
    min-height: 48px;
    font-size: 1.5rem;
  }
  
  /* Images - Responsive */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Table-like layouts */
  .service-card, .booster-card {
    display: block;
    padding: 2rem 1.5rem;
  }
  
  /* Prevent Horizontal Scroll */
  body {
    overflow-x: hidden;
  }
  
  * {
    max-width: 100%;
  }
}

/* Small Mobile Devices (< 480px) */
@media (max-width: 480px) {
  
  /* Extra Small Typography */
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  /* Tighter Spacing */
  section {
    padding: 2.5rem 1rem;
  }
  
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  /* Buttons */
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  
  /* Footer Buttons */
  .footer-lang-btn, .footer-currency-btn {
    font-size: 1rem;
    padding: 0.625rem 0.875rem;
  }
}

/* Landscape Orientation Optimization */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    padding: 2rem 1.5rem;
  }
  
  section {
    padding: 2rem 1.5rem;
  }
}

/* CRITICAL: Override ALL inline grid styles for mobile */
@media (max-width: 768px) {
  /* Grid-3 and Grid-4: Stack on mobile - FORCE single column */
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  /* Services page: Force all 2-column grids to single column */
  div[style*="grid-template-columns: 1.2fr 1fr"],
  div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  /* Contact page: Force form grid to single column */
  div[style*="display: grid"][style*="1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  
  /* All service sections - stack content vertically */
  .service-section > div[style*="display: grid"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  /* Ensure all images scale properly */
  .service-section img,
  .contact-section img,
  .hero img {
    max-width: 100% !important;
    height: auto !important;
  }
  
  /* Service cards/features - responsive padding */
  div[style*="padding: 1.25rem"],
  div[style*="padding: 1.5rem 2rem"],
  div[style*="padding: 2rem"] {
    padding: 1rem !important;
  }
  
  /* Text sizing for mobile */
  .service-section h2,
  .contact-section h2 {
    font-size: 1.75rem !important;
    line-height: 1.3 !important;
  }
  
  .service-section h3,
  .contact-section h3 {
    font-size: 1.35rem !important;
  }
  
  .service-section p,
  .contact-section p {
    font-size: 1rem !important;
    line-height: 1.6 !important;
  }
}

/* Extra small screens - more aggressive stacking */
@media (max-width: 480px) {
  /* Force ALL grid layouts to single column */
  div[style*="display: grid"] {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  
  /* Reduce all padding on small screens */
  div[style*="padding"] {
    padding: 0.75rem !important;
  }
  
  section {
    padding: 2rem 1rem !important;
  }
  
  /* Smaller text on tiny screens */
  h1, .hero h1 {
    font-size: 1.5rem !important;
  }
  
  h2 {
    font-size: 1.5rem !important;
  }
  
  h3 {
    font-size: 1.25rem !important;
  }
  
  /* Contact form inputs full width */
  input, textarea, select {
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* Print Optimization */
@media print {
  .hamburger,
  .footer-selectors,
  .social-links {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
    background: #fff;
  }
  
  a {
    color: #000;
    text-decoration: underline;
  }
}

