:root{
  --primary:#8B0000;
  --secondary:#2a9d8f;
  --accent:#f77f00;
  --bg:#f7f9fb;
  --text:#0f172a;
  --muted:#64748b;
  --card:#ffffff;
  --radius:16px;
  --shadow:0 10px 20px rgba(0,0,0,.06);
  --shadow-hover:0 20px 40px rgba(0,0,0,.12);
   --container-max:1200px;
  
  /* Typography System */
  --font-family-primary: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, Ubuntu, Helvetica, Arial, sans-serif;
  --font-family-heading: 'Poppins', var(--font-family-primary);
  
  /* Font Sizes - Desktop */
  --font-size-xs: 0.75rem;     /* 12px */
  --font-size-sm: 0.875rem;    /* 14px */
  --font-size-base: 1rem;      /* 16px */
  --font-size-lg: 1.125rem;    /* 18px */
  --font-size-xl: 1.25rem;     /* 20px */
  --font-size-2xl: 1.5rem;     /* 24px */
  --font-size-3xl: 1.875rem;   /* 30px */
  --font-size-4xl: 2.25rem;    /* 36px */
  --font-size-5xl: 3rem;       /* 48px */
  --font-size-6xl: 3.75rem;    /* 60px */
  
  /* Line Heights */
  --line-height-tight: 1.25;
  --line-height-snug: 1.375;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.625;
  --line-height-loose: 2;
  
  /* Font Weights */
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --font-weight-black: 900;
  
  /* Letter Spacing */
  --letter-spacing-tighter: -0.05em;
  --letter-spacing-tight: -0.025em;
  --letter-spacing-normal: 0em;
  --letter-spacing-wide: 0.025em;
  --letter-spacing-wider: 0.05em;
  --letter-spacing-widest: 0.1em;
  
  /* Enhanced Spacing Scale */
  --space-xs: 0.5rem;     /* 8px */
  --space-sm: 0.75rem;    /* 12px */
  --space-base: 1rem;     /* 16px */
  --space-md: 1.5rem;     /* 24px */
  --space-lg: 2rem;       /* 32px */
  --space-xl: 3rem;       /* 48px */
  --space-2xl: 4rem;      /* 64px */
  --space-3xl: 6rem;      /* 96px */
  --space-4xl: 8rem;      /* 128px */
  --space-5xl: 12rem;     /* 192px */
  
  /* Systematic Section Spacing */
  --section-spacing-y: var(--space-4xl);       /* 128px - standard vertical section padding */
  --section-spacing-y-sm: var(--space-3xl);    /* 96px - medium vertical section padding */
  --section-spacing-y-xs: var(--space-2xl);    /* 64px - small vertical section padding */
  
  /* Title & Content Spacing */
  --title-content-spacing: var(--space-xl);     /* 48px - space between section title and content */
  --title-subtitle-spacing: var(--space-md);    /* 24px - space between title and subtitle/lead */
  
  /* Element Spacing */
  --element-spacing: var(--space-lg);          /* 32px - standard spacing between elements */
  --element-spacing-sm: var(--space-md);       /* 24px - medium spacing between elements */
  --element-spacing-xs: var(--space-base);     /* 16px - small spacing between elements */
  
  /* Mobile Spacing */
  --mobile-section-spacing-y: var(--space-2xl); /* 64px - mobile vertical section padding */
  --mobile-section-spacing-y-sm: var(--space-xl); /* 48px - medium mobile vertical section padding */
  --mobile-title-content-spacing: var(--space-lg); /* 32px - mobile space between title and content */
  
 
  --section-padding: var(--section-spacing-y);
  --mobile-padding: var(--mobile-section-spacing-y);
  --mobile-small-padding: var(--mobile-section-spacing-y-sm);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}

/* Enhanced Typography Base */
body{
  margin:0;
  font-family:var(--font-family-primary);
  color:var(--text);
  background:var(--bg);
  line-height:var(--line-height-normal);
  font-size:var(--font-size-base);
  font-weight:var(--font-weight-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  animation: pageLoad 0.8s ease-out;
}

/* Page Loading Animation */
@keyframes pageLoad {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade In Animation for Elements */
.fade-in {
  animation: fadeIn 0.6s ease-out;
}

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

/* Slide In Animation for Cards */
.slide-in {
  animation: slideIn 0.8s ease-out;
}

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

/* Scale In Animation for Interactive Elements */
.scale-in {
  animation: scaleIn 0.5s ease-out;
}

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

/* Stagger Animation Delays */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* Loading Spinner */
.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Pulse Animation for Loading States */
.pulse {
  animation: pulse 2s infinite;
}

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

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
  margin: 0;
  color: var(--text);
}

h1 {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-extrabold);
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tighter);
}

h2 {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-snug);
}

h3 {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-snug);
}

h4 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-normal);
}

h5 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-normal);
}

h6 {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-normal);
}

/* Text Elements */
p {
  margin: 0 0 1rem 0;
  line-height: var(--line-height-relaxed);
  font-size: var(--font-size-base);
  color: var(--text);
}

.lead {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-relaxed);
  color: var(--muted);
  margin: 0;
}

.text-xs { font-size: var(--font-size-xs); }
.text-sm { font-size: var(--font-size-sm); }
.text-base { font-size: var(--font-size-base); }
.text-lg { font-size: var(--font-size-lg); }
.text-xl { font-size: var(--font-size-xl); }
.text-2xl { font-size: var(--font-size-2xl); }
.text-3xl { font-size: var(--font-size-3xl); }
.text-4xl { font-size: var(--font-size-4xl); }
.text-5xl { font-size: var(--font-size-5xl); }
.text-6xl { font-size: var(--font-size-6xl); }

.font-light { font-weight: var(--font-weight-light); }
.font-normal { font-weight: var(--font-weight-normal); }
.font-medium { font-weight: var(--font-weight-medium); }
.font-semibold { font-weight: var(--font-weight-semibold); }
.font-bold { font-weight: var(--font-weight-bold); }
.font-extrabold { font-weight: var(--font-weight-extrabold); }
.font-black { font-weight: var(--font-weight-black); }

.leading-tight { line-height: var(--line-height-tight); }
.leading-snug { line-height: var(--line-height-snug); }
.leading-normal { line-height: var(--line-height-normal); }
.leading-relaxed { line-height: var(--line-height-relaxed); }
.leading-loose { line-height: var(--line-height-loose); }

.tracking-tighter { letter-spacing: var(--letter-spacing-tighter); }
.tracking-tight { letter-spacing: var(--letter-spacing-tight); }
.tracking-normal { letter-spacing: var(--letter-spacing-normal); }
.tracking-wide { letter-spacing: var(--letter-spacing-wide); }
.tracking-wider { letter-spacing: var(--letter-spacing-wider); }
.tracking-widest { letter-spacing: var(--letter-spacing-widest); }

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--muted); }
.text-white { color: #ffffff; }

/* Enhanced Container System */
.container{
  max-width:var(--container-max);
  margin:0 auto;
  padding:0 var(--space-md);
}

.container-narrow {
  max-width: 900px;
}

.container-wide {
  max-width: 1400px;
}

/* Enhanced Header System */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: saturate(140%) blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

header.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.12);
}

/* Enhanced Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  min-height: 80px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.compact {
  padding: 12px 0;
  min-height: 64px;
}

/* Enhanced Brand */
.brand {
  display: flex;
  gap: 18px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 8px 12px;
  border-radius: 16px;
}

.brand:hover {
  transform: translateY(-2px);
  background: rgba(139, 0, 0, 0.04);
  box-shadow: 0 8px 25px rgba(139, 0, 0, 0.15);
}

.logo {
  width: 77px;
  height: 77px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(139, 0, 0, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--primary);
  object-fit: contain;
  padding: 4px;
}

.logo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.brand:hover .logo {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(139, 0, 0, 0.35);
}

.brand:hover .logo::before {
  transform: translateX(100%);
}

.brand .name {
  font-weight: var(--font-weight-extrabold);
  font-size: var(--font-size-xl);
  letter-spacing: var(--letter-spacing-tight);
  color: var(--text);
  transition: all 0.3s ease;
  line-height: 1.2;
}

.brand:hover .name {
  color: var(--primary);
}

/* Enhanced Desktop Navigation */
@media (min-width: 769px) {
  .navlinks {
    display: flex;
    gap: 4px;
    align-items: center;
    position: relative;
    background: rgba(248, 249, 250, 0.8);
    padding: 8px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }
}

.navlinks a {
  color: var(--text);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-sm);
  padding: 12px 20px;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: var(--letter-spacing-normal);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.navlinks a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.08) 0%, rgba(139, 0, 0, 0.12) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px;
}

.navlinks a:hover::before {
  opacity: 1;
}

.navlinks a:hover {
  color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(139, 0, 0, 0.15);
  background: #ffffff;
}

.navlinks a.active {
  color: #ffffff;
  font-weight: var(--font-weight-bold);
  background: linear-gradient(135deg, var(--primary) 0%, #A52A2A 100%);
  box-shadow: 0 4px 20px rgba(139, 0, 0, 0.3);
}

.navlinks a.active::before {
  display: none;
}

.navlinks a.active:hover {
  background: linear-gradient(135deg, #A52A2A 0%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(139, 0, 0, 0.4);
  color: #ffffff;
}

/* Enhanced Mobile Navigation System */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: rgba(248, 249, 250, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  cursor: pointer;
  padding: 8px;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1001;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.hamburger-menu:hover {
  background: rgba(139, 0, 0, 0.08);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(139, 0, 0, 0.15);
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 2px 0;
  transform-origin: center;
}

.hamburger-menu.active {
  background: var(--primary);
  border-color: var(--primary);
}

.hamburger-menu.active .hamburger-line {
  background: #ffffff;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

/* Mobile Navigation Menu */
.mobile-nav-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: #fff;
  z-index: 1000;
  transition: right 0.3s ease;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  padding: 80px 0 20px 0;
}

.mobile-nav-menu.active {
  right: 0;
}

.mobile-nav-menu .nav-item {
  padding: 15px 30px;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-menu .nav-item:last-child {
  border-bottom: none;
}

.mobile-nav-menu .nav-item a {
  color: var(--text);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  display: block;
  transition: color 0.3s ease;
}

.mobile-nav-menu .nav-item a:hover {
  color: var(--primary);
}

.mobile-nav-menu .nav-item.cta {
  margin: 20px 30px;
  padding: 0;
  border: none;
}

.mobile-nav-menu .nav-item.cta a {
  background: var(--primary);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
}

.mobile-nav-menu .nav-item.cta a:hover {
  background: #a00;
  color: white;
}

/* Show hamburger menu on mobile */
@media (max-width: 768px) {
  .hamburger-menu {
    display: flex;
  }
  
  .navlinks {
    display: none;
  }
}

.navlinks a {
  color: var(--text);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-base);
  padding: 12px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  letter-spacing: var(--letter-spacing-normal);
  position: relative;
  overflow: hidden;
}

.navlinks a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.08), rgba(139, 0, 0, 0.12));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px;
}

.navlinks a:hover::before {
  opacity: 1;
}

.navlinks a:hover {
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 0, 0, 0.15);
}

.navlinks a:active {
  transform: translateY(0);
}

/* Enhanced CTA Button in Navigation */
.navlinks a.btn-cta {
  background: linear-gradient(135deg, var(--accent) 0%, #e56f00 100%);
  color: #ffffff;
  font-weight: var(--font-weight-bold);
  box-shadow: 0 4px 20px rgba(255, 140, 0, 0.3);
  border: none;
  margin-left: 8px;
  position: relative;
  overflow: hidden;
}

.navlinks a.btn-cta::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
}

.navlinks a.btn-cta:hover {
  background: linear-gradient(135deg, #e56f00 0%, var(--accent) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 140, 0, 0.4);
  color: #ffffff;
}

/* Mobile menu toggle will be redesigned */

/* Enhanced Button System */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 28px;
  border:none;
  border-radius:var(--radius);
  font-weight:var(--font-weight-semibold);
  font-size:var(--font-size-base);
  text-decoration:none;
  cursor:pointer;
  transition:all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-height:52px;
  justify-content:center;
  letter-spacing:var(--letter-spacing-normal);
  line-height:var(--line-height-normal);
  position:relative;
  overflow:hidden;
  box-shadow:0 4px 14px 0 rgba(0, 0, 0, 0.1);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.btn:hover::before {
  left: 100%;
}

.btn > * {
  position: relative;
  z-index: 2;
}

.btn-primary{
  background:linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  color:var(--primary);
  border:2px solid var(--primary);
  box-shadow:0 4px 14px 0 rgba(139, 0, 0, 0.2);
}

.btn-primary:hover{
  background:linear-gradient(135deg, #f8f9fa 0%, #e2e8f0 100%);
  transform:translateY(-4px) scale(1.02);
  box-shadow:0 8px 25px 0 rgba(139, 0, 0, 0.3);
  color:var(--primary);
  border-color:#660000;
}

.btn-primary:active{
  transform:translateY(-2px) scale(1.01);
  transition:all 0.1s ease;
}

.btn-outline{
  background:linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  color:var(--primary);
  border:2px solid var(--primary);
  box-shadow:0 4px 14px 0 rgba(139, 0, 0, 0.1);
}

.btn-outline:hover{
  background:linear-gradient(135deg, var(--primary) 0%, #660000 100%);
  color:#fff;
  transform:translateY(-4px) scale(1.02);
  box-shadow:0 8px 25px 0 rgba(139, 0, 0, 0.4);
}

.btn-outline:active{
  transform:translateY(-2px) scale(1.01);
  transition:all 0.1s ease;
}

.btn-cta{
  background:linear-gradient(135deg, #fff 0%, #fef7ed 100%);
  color:var(--accent);
  border:2px solid var(--accent);
  box-shadow:0 4px 14px 0 rgba(247, 127, 0, 0.2);
}

.btn-cta:hover{
  background:linear-gradient(135deg, #fef7ed 0%, #fed7aa 100%);
  transform:translateY(-4px) scale(1.02);
  box-shadow:0 8px 25px 0 rgba(247, 127, 0, 0.3);
  color:#ea580c;
  border-color:#ea580c;
}

.btn-cta:active{
  transform:translateY(-2px) scale(1.01);
  transition:all 0.1s ease;
}

/* Enhanced Hero Section */
.hero{
  background:linear-gradient(135deg, var(--primary) 0%, #A52A2A 50%, #660000 100%);
  color:#fff;
  padding:0;
  position:relative;
  overflow:hidden;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  width:100vw;
  margin-left:calc(-50vw + 50%);
}

.hero::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 40%, rgba(255,255,255,0.05) 100%);
  pointer-events:none;
  z-index:1;
}

.hero::after{
  content:'';
  position:absolute;
  top:-50%;
  left:-50%;
  width:200%;
  height:200%;
  background:radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation:heroGlow 8s ease-in-out infinite alternate;
  pointer-events:none;
  z-index:0;
}

@keyframes heroGlow {
  0% {
    transform: rotate(0deg) scale(1);
    opacity: 0.3;
  }
  100% {
    transform: rotate(180deg) scale(1.1);
    opacity: 0.1;
  }
}

.hero-inner{
  display:flex;
  flex-direction:row;
  gap:80px;
  align-items:center;
  padding:var(--space-3xl) var(--space-xl);
  position:relative;
  z-index:3;
  animation:heroSlideIn 1.2s ease-out;
  min-height:85vh;
  max-width:1400px;
  width:100%;
  margin:0 auto;
}

.hero-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  z-index: -1;
  backdrop-filter: blur(2px);
}

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

.hero-inner > img {
  order: 2;
  width: 45%;
  height: 500px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  margin: 0;
}

.hero-inner > img:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.hero-inner > div:first-child {
  order: 1;
  width: 55%;
  flex-shrink: 0;
}

.hero h1{
  margin:0 0 var(--space-lg) 0;
  line-height:var(--line-height-tight);
  font-size:clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight:var(--font-weight-extrabold);
  letter-spacing:var(--letter-spacing-tighter);
  color:#fff;
  text-shadow:0 6px 24px rgba(0,0,0,0.5);
  animation:heroTitleFade 1.5s ease-out 0.3s both;
  max-width: 95%;
}

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

.hero .lead{
  color:rgba(255,255,255,0.95);
  margin-bottom:var(--space-2xl);
  line-height:var(--line-height-relaxed);
  font-size:clamp(1.125rem, 2.75vw, 1.375rem);
  font-weight:var(--font-weight-medium);
  text-shadow:0 3px 12px rgba(0,0,0,0.4);
  animation:heroLeadFade 1.5s ease-out 0.6s both;
  max-width: 90%;
}

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

.hero-cta{
  display:flex;
  gap:var(--space-lg);
  margin-bottom:var(--space-3xl);
  flex-wrap:wrap;
  animation:heroCtaFade 1.5s ease-out 0.9s both;
}

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

.kpis{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
  gap:20px;
  margin-top:40px;
}

.kpi{
  background:rgba(255,255,255,0.15);
  backdrop-filter:blur(16px);
  padding:24px 20px;
  border-radius:16px;
  text-align:center;
  border:1px solid rgba(255,255,255,0.25);
  transition:all 0.3s ease;
  box-shadow:0 8px 32px rgba(0,0,0,0.1);
}

.kpi:hover{
  background:rgba(255,255,255,0.22);
  transform:translateY(-4px);
  box-shadow:0 12px 40px rgba(0,0,0,0.15);
}

.kpi strong{
  display:block;
  font-size:var(--font-size-3xl);
  font-weight:var(--font-weight-extrabold);
  margin-bottom:8px;
  line-height:var(--line-height-tight);
  color:#fff;
}

.kpi span{
  font-size:var(--font-size-sm);
  font-weight:var(--font-weight-medium);
  color:rgba(255,255,255,0.8);
  line-height:var(--line-height-normal);
}



.placeholder{
  width:100%;
  height:400px;
  border-radius:12px;
  object-fit:cover;
  display:block;
  margin:0 auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* Enhanced Section System */
.section{
  padding:var(--section-spacing-y) 0;
}

.section:first-of-type{
  padding-top:var(--space-2xl);
}

.section-sm {
  padding: var(--section-spacing-y-sm) 0;
}

.section-xs {
  padding: var(--section-spacing-y-xs) 0;
}

.section h2{
  text-align:center;
  margin-bottom:var(--title-subtitle-spacing);
  line-height:var(--line-height-snug);
  font-size:var(--font-size-4xl);
  font-weight:var(--font-weight-bold);
  letter-spacing:var(--letter-spacing-tight);
  color:var(--text);
}

.section .lead{
  text-align:center;
  max-width:700px;
  margin:0 auto var(--title-content-spacing);
  line-height:var(--line-height-relaxed);
  font-size:var(--font-size-lg);
  font-weight:var(--font-weight-normal);
  color:var(--muted);
}

/* Improved Grid System */
.grid{
  display:grid;
  gap:var(--element-spacing);
}

.grid-tight {
  gap: var(--element-spacing-sm);
}

.grid-loose {
  gap: var(--element-spacing-xl, var(--space-2xl));
}

.grid-3{
  grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
  gap: 32px;
  align-items: stretch;
}

/* Enhanced Card System */
.card{
  background:var(--card);
  border-radius:var(--radius);
  padding:32px;
  transition:all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border:1px solid #f1f5f9;
  height:100%;
  position:relative;
  box-shadow:0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  overflow:hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.card:hover{
  transform:translateY(-8px) scale(1.02);
  box-shadow:0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 10px 20px -5px rgba(0, 0, 0, 0.1);
  border-color: rgba(139, 0, 0, 0.2);
}

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

.service-card{
  text-align:center;
  display:flex;
  flex-direction:column;
  color:inherit;
  text-decoration:none;
  height:100%;
  position:relative;
  z-index:2;
  justify-content:space-between;
}

.service-card:hover img {
  transform: scale(1.05);
  filter: brightness(1.1) contrast(1.1);
}

.service-card img{
  width:calc(100% + 64px);
  height:220px;
  margin:0 0 24px 0;
  display:block;
  object-fit:cover;
  border-radius:var(--radius) var(--radius) 0 0;
  margin-top:-32px;
  margin-left:-32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.service-card h3{
  margin:20px 0 12px;
  color:var(--text);
  line-height:var(--line-height-snug);
  font-size:var(--font-size-xl);
  font-weight:var(--font-weight-semibold);
  letter-spacing:var(--letter-spacing-normal);
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card p{
  color:var(--primary);
  font-weight:var(--font-weight-medium);
  font-size:var(--font-size-base);
  line-height:var(--line-height-normal);
  margin:0;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 48px;
}

/* Why Choose Section */
.why-choose-section {
  background: var(--bg);
  padding: var(--section-padding) 0;
}

.why-choose-title {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin-bottom: 50px;
  color: var(--text);
  line-height: var(--line-height-snug);
  letter-spacing: var(--letter-spacing-tight);
}

.why-choose-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  list-style: none;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
}

.why-choose-list li {
  background: var(--card);
  padding: 32px;
  border-radius: var(--radius);
  text-align: center;
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-base);
  color: var(--text);
  transition: all 0.3s ease;
  border: 1px solid #f1f5f9;
  line-height: var(--line-height-normal);
}

.why-choose-list li:hover {
  transform: translateY(-6px);
}

/* Achievements Section */
.achievements-section {
  padding: var(--section-padding) 0;
  text-align: center;
}

.achievements-title {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: 50px;
  color: var(--text);
  line-height: var(--line-height-snug);
  letter-spacing: var(--letter-spacing-tight);
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  justify-items: center;
}

.achievement {
  background: var(--card);
  padding: 36px 24px;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid #f1f5f9;
  width: 100%;
  max-width: 240px;
}

.achievement:hover {
  transform: translateY(-6px);
}

.achievement-number {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tighter);
}

.achievement-label {
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-base);
  color: var(--text);
  line-height: var(--line-height-normal);
}

/* Working Process Section */
.working-process-section {
  background: var(--bg);
  padding: var(--section-padding) 0;
}

.working-process-title {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin-bottom: 50px;
  color: var(--text);
  line-height: var(--line-height-snug);
  letter-spacing: var(--letter-spacing-tight);
}

.working-process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.working-step {
  background: var(--card);
  padding: 36px 28px;
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #f1f5f9;
}

.working-step:hover {
  transform: translateY(-6px);
}

.working-step-number {
  background: var(--primary);
  color: white;
  width: 67px;
  height: 67px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-extrabold);
  font-size: var(--font-size-xl);
  margin: 0 auto 24px;
}

.working-step-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: 14px;
  color: var(--text);
  line-height: var(--line-height-snug);
}

.working-step-desc {
  color: var(--muted);
  line-height: var(--line-height-relaxed);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
}

/* Steps Section */
.steps-section {
  padding: var(--section-padding) 0;
}

.steps-title {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin-bottom: 50px;
  color: var(--text);
  line-height: var(--line-height-snug);
  letter-spacing: var(--letter-spacing-tight);
}

.steps-list {
  max-width: 900px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  align-items: flex-start;
}

.step-number {
  background: var(--primary);
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-extrabold);
  font-size: var(--font-size-xl);
  flex-shrink: 0;
  box-shadow: 0 8px 16px rgba(139,0,0,0.2);
}

.step-content {
  flex: 1;
  padding-top: 12px;
}

.step-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: 12px;
  color: var(--text);
  line-height: var(--line-height-snug);
}

.step-desc {
  color: var(--muted);
  line-height: var(--line-height-relaxed);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
}

/* Enhanced Floating WhatsApp */
.floating-wa {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 64px;
  height: 64px;
  background: #25D366;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  z-index: 1000;
}

.floating-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.6);
  background: #128C7E;
}

.floating-wa i {
  color: #ffffff !important;
}

/* Mobile overlay will be redesigned */

/* Tablet breakpoint */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero-inner {
    gap: 40px;
  }
  
  .hero-inner > img {
    width: 50%;
    height: 400px;
  }
  
  .hero-inner > div:first-child {
    width: 50%;
  }
  
  .hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
  }
  
  .hero .lead {
    font-size: clamp(1rem, 2vw, 1.125rem);
  }
}

/* Enhanced Mobile Navigation Menu */
@media (max-width: 768px) {
  :root {
    --section-padding: var(--mobile-padding);
    /* Mobile Typography Adjustments */
    --font-size-5xl: 2.25rem;    /* 36px */
    --font-size-4xl: 1.875rem;   /* 30px */
    --font-size-3xl: 1.5rem;     /* 24px */
    --font-size-2xl: 1.25rem;    /* 20px */
    --font-size-xl: 1.125rem;    /* 18px */
  }
  
  .container {
    padding: 0 20px;
  }
  
  .navbar {
    padding: 14px 0;
    min-height: 72px;
  }
  
  .brand {
    gap: 14px;
    padding: 6px 10px;
  }
  
  .brand .name {
    font-size: var(--font-size-lg);
  }
  
  .logo {
    width: 67px;
    height: 67px;
    border-radius: 14px;
    font-size: var(--font-size-sm);
  }
  
  /* Map container styling */
.map-container {
  margin: 32px 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 48px 0 32px 0;
}

/* Mobile navigation will be completely redesigned */
  
  .navlinks a {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(139, 0, 0, 0.08);
    text-align: left;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 8px;
    margin-bottom: 4px;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .navlinks a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
  }
  
  .navlinks a:hover::before {
    transform: scaleY(1);
  }
  
  .navlinks a:hover {
    background: rgba(139, 0, 0, 0.08);
    color: var(--primary);
    border-color: transparent;
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.1);
  }
  
  .navlinks a:last-child {
    border-bottom: none;
    margin-top: 24px;
    background: linear-gradient(135deg, var(--accent), #e56f00);
    color: white;
    text-align: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.3);
    border-radius: 16px;
  }
  
  .navlinks a:last-child::before {
    display: none;
  }
  
  .navlinks a:last-child:hover {
    background: #f8f9fa;
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 140, 0, 0.4);
  }
  
  /* Enhanced Mobile Hero */
  .hero {
    padding: 0;
    min-height: 100vh;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }
  
  .hero-inner {
    flex-direction: column;
    gap: 40px;
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
    align-items: center;
    min-height: 85vh;
    margin: 0 auto;
  }
  
  .hero-inner::before {
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  }
  
  .hero-inner > img {
    order: 1;
    width: 100%;
    height: 280px;
    margin-top: 20px;
    object-position: center;
  }
  
  .hero-inner > div:first-child {
    order: 2;
    width: 100%;
  }
  
  .hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    margin-bottom: 20px;
    line-height: var(--line-height-tight);
    max-width: 100%;
  }
  
  .hero .lead {
    font-size: clamp(1rem, 4vw, 1.125rem);
    margin-bottom: 32px;
    line-height: var(--line-height-relaxed);
    max-width: 100%;
  }
  
  .hero-cta {
    flex-direction: row;
    gap: 12px;
    margin-bottom: 36px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .hero-cta .btn {
    flex: 1;
    min-width: 140px;
    justify-content: center;
    min-height: 48px;
    font-size: var(--font-size-sm);
    padding: 12px 20px;
  }
  
  .kpis {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 32px;
  }
  
  .kpi {
    padding: 16px 12px;
    min-width: auto;
    border-radius: 12px;
  }
  
  .kpi strong {
    font-size: clamp(1.25rem, 5vw, 1.5rem);
    margin-bottom: 4px;
  }
  
  .kpi div {
    font-size: clamp(0.75rem, 3vw, 0.875rem);
    line-height: 1.2;
  }
  

  
  .placeholder {
    width: 100%;
    height: 300px;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    display: block;
  }
  
  .placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
  }
  
  /* Enhanced Mobile Sections */
  .section {
    padding: var(--mobile-section-spacing-y) 0;
  }
  
  .section-sm {
    padding: var(--mobile-section-spacing-y-sm) 0;
  }
  
  .section h2 {
    font-size: var(--font-size-3xl);
    margin-bottom: calc(var(--title-subtitle-spacing) * 0.75);
    line-height: var(--line-height-tight);
  }
  
  .section .lead {
    font-size: var(--font-size-base);
    margin-bottom: var(--mobile-title-content-spacing);
    line-height: var(--line-height-relaxed);
  }
  
  .grid {
    gap: var(--element-spacing-sm);
  }
  
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .card {
    padding: 28px 24px;
  }
  
  .service-card img {
    width: calc(100% + 48px);
    height: 180px;
    margin-top: -28px;
    margin-left: -24px;
  }
  
  .service-card h3 {
    font-size: var(--font-size-lg);
    margin: 16px 0 10px;
    min-height: 50px;
  }
  
  .service-card p {
    font-size: var(--font-size-sm);
    min-height: 40px;
  }
  
  /* Enhanced Mobile Sections */
  .why-choose-section,
  .working-process-section,
  .achievements-section,
  .steps-section {
    padding: var(--mobile-padding) 0;
  }
  
  .why-choose-title,
  .working-process-title,
  .steps-title,
  .achievements-title {
    font-size: var(--font-size-3xl);
    margin-bottom: 36px;
    line-height: var(--line-height-tight);
  }
  
  .why-choose-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .why-choose-list li {
    padding: 24px 20px;
    font-size: var(--font-size-sm);
  }
  
  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 100%;
  }
  
  .achievement {
    padding: 28px 20px;
    max-width: none;
  }
  
  .achievement-number {
    font-size: var(--font-size-3xl);
  }
  
  .achievement-label {
    font-size: var(--font-size-sm);
  }
  
  .working-process-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .working-step {
    padding: 28px 24px;
  }
  
  .working-step-number {
    width: 52px;
    height: 52px;
    font-size: var(--font-size-lg);
    margin-bottom: 20px;
  }
  
  .working-step-title {
    font-size: var(--font-size-lg);
    margin-bottom: 12px;
  }
  
  .working-step-desc {
    font-size: var(--font-size-sm);
  }
  
  /* Enhanced Mobile Steps */
  .step-item {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    margin-bottom: 36px;
    padding: 24px;
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid #f1f5f9;
  }
  
  .step-number {
    margin: 0 auto;
    width: 52px;
    height: 52px;
    font-size: var(--font-size-lg);
  }
  
  .step-content {
    padding-top: 0;
  }
  
  .step-title {
    font-size: var(--font-size-lg);
    margin-bottom: 10px;
  }
  
  .step-desc {
    font-size: var(--font-size-sm);
  }
  
  /* Enhanced Mobile WhatsApp */
  .floating-wa {
    width: 56px;
    height: 56px;
    bottom: 24px;
    right: 24px;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
  }
}

/* Enhanced Small Mobile Responsive */
@media (max-width: 480px) {
  :root {
    --section-padding: var(--mobile-small-padding);
    /* Small Mobile Typography Adjustments */
    --font-size-5xl: 2rem;       /* 32px */
    --font-size-4xl: 1.75rem;    /* 28px */
    --font-size-3xl: 1.375rem;   /* 22px */
    --font-size-2xl: 1.125rem;   /* 18px */
    --font-size-xl: 1rem;        /* 16px */
    --font-size-lg: 0.9375rem;   /* 15px */
  }
  
  .container {
    padding: 0 16px;
  }
  
  .navbar {
    padding: 10px 0;
  }
  
  .logo {
    width: 67px;
    height: 67px;
    font-size: var(--font-size-sm);
  }
  
  .brand .name {
    font-size: var(--font-size-sm);
  }
  
  /* Small mobile navigation styles will be redesigned */
  
  .navlinks a {
    padding: 16px 18px;
    font-size: var(--font-size-base);
    min-height: 52px;
  }
  
  .hero {
    padding: 0 0 var(--mobile-small-padding) 0;
  }
  
  .hero h1 {
    font-size: var(--font-size-3xl);
    margin-bottom: 16px;
  }
  
  .hero .lead {
    font-size: var(--font-size-sm);
    margin-bottom: 28px;
  }
  
  .hero-cta {
    gap: 14px;
    margin-bottom: 28px;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: var(--font-size-sm);
    min-height: 48px;
  }
  
  .kpis {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 24px;
  }
  
  .kpi {
    padding: 16px 14px;
  }
  
  .kpi strong {
    font-size: var(--font-size-xl);
  }
  
  .section {
    padding: var(--mobile-small-padding) 0;
  }
  
  .section h2 {
    font-size: var(--font-size-2xl);
    margin-bottom: 14px;
  }
  
  .section .lead {
    font-size: var(--font-size-sm);
    margin-bottom: 32px;
  }
  
  .grid {
    gap: 20px;
  }
  
  .card {
    padding: 24px 20px;
  }
  
  .service-card img {
    width: calc(100% + 40px);
    height: 160px;
    margin-top: -24px;
    margin-left: -20px;
  }
  
  .service-card h3 {
    font-size: var(--font-size-base);
    margin: 14px 0 8px;
    min-height: 44px;
  }
  
  .service-card p {
    font-size: var(--font-size-xs);
    min-height: 36px;
  }
  
  .why-choose-section,
  .working-process-section,
  .achievements-section,
  .steps-section {
    padding: var(--mobile-small-padding) 0;
  }
  
  .why-choose-title,
  .working-process-title,
  .steps-title,
  .achievements-title {
    font-size: var(--font-size-2xl);
    margin-bottom: 32px;
  }
  
  .why-choose-list {
    gap: 20px;
  }
  
  .why-choose-list li {
    padding: 22px 18px;
    font-size: var(--font-size-xs);
  }
  
  .achievements-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 280px;
  }
  
  .achievement {
    padding: 24px 18px;
  }
  
  .achievement-number {
    font-size: var(--font-size-2xl);
  }
  
  .achievement-label {
    font-size: var(--font-size-xs);
  }
  
  .working-process-steps {
    gap: 20px;
  }
  
  .working-step {
    padding: 24px 20px;
  }
  
  .working-step-number {
    width: 48px;
    height: 48px;
    font-size: var(--font-size-base);
    margin-bottom: 18px;
  }
  
  .working-step-title {
    font-size: var(--font-size-base);
    margin-bottom: 10px;
  }
  
  .working-step-desc {
    font-size: var(--font-size-xs);
  }
  
  .step-item {
    gap: 18px;
    margin-bottom: 32px;
    padding: 20px 18px;
  }
  
  .step-number {
    width: 48px;
    height: 48px;
    font-size: var(--font-size-base);
  }
  
  .step-title {
    font-size: var(--font-size-base);
    margin-bottom: 8px;
  }
  
  .step-desc {
    font-size: var(--font-size-xs);
  }
  
  .floating-wa {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }
}

/* Enhanced Form System */
.form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 100%;
}

.form-group {
  position: relative;
}

.form label {
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-sm);
  color: var(--text);
  margin-bottom: 8px;
  display: block;
  letter-spacing: var(--letter-spacing-normal);
  transition: all 0.3s ease;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 16px 18px;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius);
  font-size: var(--font-size-base);
  font-family: inherit;
  background: var(--card);
  color: var(--text);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: var(--line-height-normal);
  box-sizing: border-box;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(139, 0, 0, 0.12), 0 4px 16px rgba(139, 0, 0, 0.08);
  background: #fff;
  transform: translateY(-2px);
}

.form input:hover:not(:focus),
.form textarea:hover:not(:focus),
.form select:hover:not(:focus) {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.form input::placeholder,
.form textarea::placeholder {
  color: var(--muted);
  font-weight: var(--font-weight-normal);
  transition: opacity 0.3s ease;
}

.form input:focus::placeholder,
.form textarea:focus::placeholder {
  opacity: 0.6;
}

.form textarea {
  resize: vertical;
  min-height: 140px;
  font-family: inherit;
}

.form select {
  cursor: pointer;
  background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23666" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px;
  padding-right: 44px;
  appearance: none;
}

.form input[type="tel"],
.form input[type="email"] {
  font-variant-numeric: tabular-nums;
}

/* Enhanced Form Validation States */
.form input:invalid:not(:placeholder-shown),
.form textarea:invalid:not(:placeholder-shown),
.form select:invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12), 0 4px 16px rgba(239, 68, 68, 0.08);
  animation: formShake 0.5s ease-in-out;
}

.form input:valid:not(:placeholder-shown),
.form textarea:valid:not(:placeholder-shown),
.form select:valid {
  border-color: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

@keyframes formShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

/* Form Input Icons */
.form-group.has-icon {
  position: relative;
}

.form-group.has-icon input {
  padding-left: 48px;
}

.form-group.has-icon::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.form-group.has-icon:focus-within::before {
  opacity: 1;
}

/* Form Success State */
.form-success {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 2px solid #10b981;
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  color: #065f46;
  font-weight: var(--font-weight-semibold);
  animation: formSuccessSlide 0.6s ease-out;
}

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

/* Enhanced Alert Component */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-normal);
  background: rgba(139, 0, 0, 0.08);
  color: var(--primary);
  border: 1px solid rgba(139, 0, 0, 0.2);
  margin: 16px 0;
}

/* Enhanced Badge System */
.badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(139, 0, 0, 0.1);
  color: var(--primary);
  border-radius: 20px;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  border: 1px solid rgba(139, 0, 0, 0.2);
  transition: all 0.2s ease;
}

.badge:hover {
  background: rgba(139, 0, 0, 0.15);
  transform: translateY(-1px);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

/* Enhanced Grid System */
.grid-2 {
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

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

/* Enhanced Breadcrumbs */
.breadcrumbs {
  font-size: var(--font-size-sm);
  color: var(--muted);
  margin-bottom: 24px;
  font-weight: var(--font-weight-medium);
}

.breadcrumbs a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: #660000;
  text-decoration: underline;
}

/* Enhanced Footer System */
footer {
  background: linear-gradient(135deg, var(--text) 0%, #1a1a1a 100%);
  color: #fff;
  padding: 80px 0 0;
  margin-top: 100px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(139, 0, 0, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(247, 127, 0, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 1;
}

.footer-section {
  transition: transform 0.3s ease;
}

.footer-section:hover {
  transform: translateY(-4px);
}

.footer-inner strong {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: 20px;
  display: block;
  color: #fff;
  position: relative;
  padding-bottom: 8px;
}

.footer-inner strong::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

.footer-inner p {
  color: rgba(255, 255, 255, 0.85);
  line-height: var(--line-height-relaxed);
  margin-bottom: 20px;
  font-size: var(--font-size-base);
}

.footer-inner ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-inner ul li {
  margin-bottom: 12px;
  transition: transform 0.2s ease;
}

.footer-inner ul li:hover {
  transform: translateX(8px);
}

.footer-inner ul a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: var(--font-weight-medium);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  position: relative;
}

.footer-inner ul a::before {
  content: '→';
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.footer-inner ul a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-inner ul a:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.copy {
  text-align: center;
  padding: 32px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-normal);
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.copy a {
  color: var(--accent);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  transition: all 0.3s ease;
  position: relative;
}

.copy a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.copy a:hover::after {
  width: 100%;
}

.copy a:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(247, 127, 0, 0.5);
}

/* Enhanced Link System */
a {
  transition: all 0.2s ease;
}

a[href^="tel:"] {
  color: var(--primary);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
}

a[href^="tel:"]:hover {
  color: #660000;
  text-decoration: underline;
}

a[href^="mailto:"] {
  color: var(--primary);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
}

a[href^="mailto:"]:hover {
  color: #660000;
  text-decoration: underline;
}

/* Enhanced Mobile Responsive Forms */
@media (max-width: 768px) {
  .form {
    gap: 18px;
  }
  
  .form input,
  .form textarea,
  .form select {
    padding: 16px;
    font-size: var(--font-size-base);
    min-height: 52px;
  }
  
  .form textarea {
    min-height: 140px;
  }
  

  
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  
  .badges {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .form input,
  .form textarea,
  .form select {
    padding: 14px;
  }
  
  .alert {
    padding: 14px 16px;
    font-size: var(--font-size-xs);
  }
  
  .badge {
    padding: 4px 8px;
    font-size: 10px;
  }
  
  footer {
    padding: 40px 0 0;
    margin-top: 60px;
  }
  
  .footer-inner {
    gap: 24px;
  }
}

/* Enhanced Scroll Behavior */
@media (min-width: 769px) {
  .navbar.scrolled {
    padding: 12px 0;
    min-height: 68px;
  }
  
  .navbar.scrolled .logo {
    width: 67px;
    height: 67px;
  }
  
  .navbar.scrolled .brand .name {
    font-size: var(--font-size-lg);
  }
  
  .navbar.scrolled .navlinks {
    padding: 6px;
  }
  
  .navbar.scrolled .navlinks a {
    padding: 10px 16px;
    font-size: var(--font-size-xs);
  }
}

/* Navigation Focus States */
.navlinks a:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.hamburger-menu:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Navigation Animation Delays */
.navlinks a:nth-child(1) { transition-delay: 0.1s; }
.navlinks a:nth-child(2) { transition-delay: 0.15s; }
.navlinks a:nth-child(3) { transition-delay: 0.2s; }
.navlinks a:nth-child(4) { transition-delay: 0.25s; }
.navlinks a:nth-child(5) { transition-delay: 0.3s; }
.navlinks a:nth-child(6) { transition-delay: 0.35s; }
.navlinks a:nth-child(7) { transition-delay: 0.4s; }

/* Process List Styling */
.process-list {
  max-width: 700px;
  margin: 0 auto 0 0;
  padding-left: 20px;
  font-size: 1.1rem;
  line-height: var(--line-height-relaxed);
}

.process-list li {
  margin-bottom: 16px;
  color: var(--text);
}

.process-list li strong {
  color: var(--primary);
  font-weight: var(--font-weight-semibold);
}

/* Form Tip Styling */
.form-tip {
  color: var(--muted);
  font-size: 12px;
  margin: 12px 0 0 0;
  line-height: var(--line-height-normal);
}

/* Enhanced Focus States */
*:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.btn:focus,
.hamburger-menu:focus {
  outline: 2px solid var(--accent);
}

/* Touch-friendly enhancements */
@media (hover: none) and (pointer: coarse) {
  .btn:hover,
  .card:hover,
  .achievement:hover,
  .working-step:hover,
  .why-choose-list li:hover {
    transform: none;
  }
  
  .btn:active {
    transform: scale(0.98);
  }
  
  .card:active,
  .achievement:active,
  .working-step:active,
  .why-choose-list li:active {
    transform: scale(0.98);
  }
}