/* ============================================
   MODERN PROFESSIONAL DESIGN - ERPRO NAKLİYAT
   ============================================ */

:root {
  /* Modern Color Palette */
  --primary: #0066ff;
  --primary-dark: #0052cc;
  --primary-light: #3385ff;
  --secondary: #ff6b35;
  --accent: #00d4aa;
  --success: #10b981;
  
  --text-primary: #0a1629;
  --text-secondary: #4a5568;
  --text-muted: #718096;
  
  --bg-primary: #ffffff;
  --bg-secondary: #f7fafc;
  --bg-tertiary: #edf2f7;
  
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  
  /* Shadows - Professional Depth */
  --shadow-xs: 0 1px 2px rgba(10, 22, 41, 0.04);
  --shadow-sm: 0 2px 4px rgba(10, 22, 41, 0.06);
  --shadow-md: 0 4px 12px rgba(10, 22, 41, 0.08);
  --shadow-lg: 0 8px 24px rgba(10, 22, 41, 0.12);
  --shadow-xl: 0 16px 48px rgba(10, 22, 41, 0.16);
  --shadow-glow: 0 0 0 4px rgba(0, 102, 255, 0.1);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
  --gradient-secondary: linear-gradient(135deg, #ff6b35 0%, #ff5722 100%);
  --gradient-accent: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
  --gradient-hero: linear-gradient(135deg, rgba(0, 102, 255, 0.85) 0%, rgba(0, 82, 204, 0.75) 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(10, 22, 41, 0.7) 0%, rgba(10, 22, 41, 0.4) 100%);
  
  /* Spacing Scale */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 80px;
  --space-5xl: 120px;
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;
  
  /* Typography */
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-secondary);
  background: var(--bg-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* ============================================
   HEADER - Modern Sticky Header
   ============================================ */

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
}

.header-topbar {
  background: var(--text-primary);
  padding: var(--space-sm) 0;
  font-size: 13px;
}

.topbar-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.85);
}

.topbar-item i {
  color: var(--secondary);
  font-size: 12px;
}

.topbar-item a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}

.topbar-item a:hover {
  color: var(--secondary);
}

.header-nav {
  padding: var(--space-md) 0;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

.logo {
  display: flex;
  flex-direction: column;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 28px;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.3s;
}

.logo:hover {
  transform: translateY(-2px);
}

.logo-main {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}

.logo-sub {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-xs);
  flex: 1;
  justify-content: center;
}

.nav-link {
  padding: var(--space-sm) var(--space-lg);
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  border-radius: var(--radius-md);
  transition: all 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: var(--radius-full);
  transition: width 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: rgba(0, 102, 255, 0.05);
}

.nav-link.active::after,
.nav-link:hover::after {
  width: 60%;
}

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-xl);
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 16px rgba(0, 102, 255, 0.3);
  transition: all 0.3s;
}

.btn-header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.4);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: var(--radius-full);
  transition: all 0.3s;
}

/* ============================================
   HERO SLIDER - Full Screen Hero
   ============================================ */

.hero-section {
  margin-top: 120px;
  position: relative;
  padding: 0;
}

.hero-slider {
  position: relative;
  height: 85vh;
  min-height: 650px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  margin: 0 var(--space-xl);
  box-shadow: var(--shadow-xl);
}

.slide-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.1);
  transition: transform 10s ease-out;
}

.slide.active .slide-bg {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-overlay);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-5xl) var(--space-3xl);
  max-width: 800px;
  color: white;
  width: 100%;
  box-sizing: border-box;
  overflow: visible;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-xl);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-xl);
  width: fit-content;
}

.slide-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  color: white;
  letter-spacing: -2px;
}

.slide-title .highlight {
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.slide-description {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-2xl);
  max-width: 680px;
  font-weight: 400;
}

.slide-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.slider-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 var(--space-xl);
  z-index: 10;
  pointer-events: none;
}

.slider-nav {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s;
  pointer-events: all;
}

.slider-nav:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.slider-dots {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-sm);
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s;
}

.slider-dot.active {
  background: white;
  width: 32px;
  border-radius: var(--radius-full);
}

/* ============================================
   BUTTONS - Modern Button System
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-2xl);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
  position: relative;
  overflow: hidden;
  color: white;
}

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

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: 1;
}

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

.btn-primary {
  background: var(--gradient-primary);
  color: white !important;
  box-shadow: 0 4px 16px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 102, 255, 0.4);
}

.btn-secondary {
  background: white;
  color: var(--text-primary) !important;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white !important;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: var(--space-sm) var(--space-lg);
  font-size: 14px;
}

/* ============================================
   STATS SECTION - Modern Cards
   ============================================ */

.stats-section {
  padding: var(--space-5xl) 0;
  background: var(--bg-secondary);
  margin-top: calc(var(--space-5xl) * -1);
  position: relative;
  z-index: 5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-xl);
}

.stat-card {
  background: white;
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

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

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.stat-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-xl);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.25);
  transition: all 0.4s;
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   SECTION STYLES
   ============================================ */

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-xl);
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 102, 255, 0.05) 100%);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-lg);
  border: 1px solid rgba(0, 102, 255, 0.15);
}

.section-label i {
  font-size: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
  letter-spacing: -1px;
}

.section-description {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
  padding: var(--space-5xl) 0;
  background: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.about-intro p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.about-intro p:first-child {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-primary);
}

.about-intro p strong {
  color: var(--text-primary);
  font-weight: 700;
}

.services-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.service-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  transition: all 0.3s;
}

.service-tag:hover {
  background: var(--gradient-primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.service-tag i {
  font-size: 13px;
}

.about-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.feature-card {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
}

.feature-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  border-radius: var(--radius-md);
  background: var(--gradient-primary);
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: white !important;
  font-size: 22px !important;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.25);
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}

.feature-icon i {
  display: inline-block !important;
  font-style: normal;
  font-weight: 900;
  color: white !important;
  font-size: 22px !important;
  line-height: 1;
}

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

.feature-card > div:last-child {
  flex: 1;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.feature-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery-section {
  padding: var(--space-5xl) 0;
  background: var(--bg-secondary);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all 0.4s;
  border: 1px solid var(--border-light);
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.gallery-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.6s;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.12);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 0.9;
}

.gallery-overlay i {
  font-size: 44px;
  color: white;
  transform: scale(0.8);
  transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* ============================================
   BLOG/ARTICLES SECTION
   ============================================ */

.blog-section {
  padding: var(--space-5xl) 0;
  background: var(--bg-secondary);
}

.blog-carousel-wrapper {
  position: relative;
  margin-top: var(--space-3xl);
  padding: 0 60px;
}

.blog-carousel-container {
  overflow: hidden;
  position: relative;
  margin: 0 -12px;
}

.blog-grid {
  display: flex;
  gap: var(--space-lg);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.blog-grid .blog-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
}

.blog-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 1.5px solid var(--border);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  font-size: 14px;
}

.blog-carousel-nav:hover {
  background: var(--gradient-primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-lg);
}

.blog-carousel-prev {
  left: 0;
}

.blog-carousel-next {
  right: 0;
}

.blog-carousel-nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: translateY(-50%);
}

.blog-carousel-nav:disabled:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-50%) scale(1);
}

.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  margin: 0 12px;
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
  transform: scaleY(0);
  transition: transform 0.4s;
  transform-origin: top;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.blog-card:hover::before {
  transform: scaleY(1);
}

.blog-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 102, 255, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  transition: all 0.4s;
}

.blog-card-icon i {
  font-size: 24px;
  color: var(--primary);
  transition: all 0.4s;
}

.blog-card:hover .blog-card-icon {
  background: var(--gradient-primary);
  transform: scale(1.1) rotate(5deg);
}

.blog-card:hover .blog-card-icon i {
  color: white;
  transform: scale(1.1);
}

.blog-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  background: rgba(0, 102, 255, 0.1);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  width: fit-content;
  margin-bottom: var(--space-md);
  transition: all 0.3s;
}

.blog-card:hover .blog-card-category {
  background: var(--primary);
  color: white;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
  transition: color 0.3s;
}

.blog-card:hover .blog-card-title {
  color: var(--primary);
}

.blog-card-description {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  flex: 1;
}

.blog-card-footer {
  margin-top: auto;
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-light);
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
}

.blog-card-link i {
  transition: transform 0.3s;
}

.blog-card:hover .blog-card-link {
  color: var(--primary-dark);
}

.blog-card:hover .blog-card-link i {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .blog-grid .blog-card {
    flex: 0 0 calc(50% - 12px);
  }
  
  .blog-carousel-wrapper {
    padding: 0 50px;
  }
}

@media (max-width: 768px) {
  .blog-grid .blog-card {
    flex: 0 0 calc(100% - 24px);
  }
  
  .blog-card {
    padding: var(--space-lg);
  }
  
  .blog-carousel-wrapper {
    padding: 0 40px;
  }
  
  .blog-carousel-nav {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
  padding: var(--space-5xl) 0;
  background: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-4xl);
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-card {
  background: white;
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  text-align: center;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}

.contact-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.contact-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-xl);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  margin: 0 auto var(--space-lg);
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.25);
  transition: all 0.3s;
}

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

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.contact-card a {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  margin-bottom: var(--space-sm);
  transition: color 0.3s;
}

.contact-card a:hover {
  color: var(--primary-dark);
}

.contact-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.contact-form-wrapper {
  background: white;
  padding: var(--space-3xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-group label {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 600;
  color: var(--text-primary);
  font-size: 14px;
}

.form-group label i {
  color: var(--primary);
  font-size: 15px;
}

.form-group input,
.form-group textarea {
  padding: var(--space-md) var(--space-lg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: inherit;
  background: var(--bg-secondary);
  color: var(--text-primary);
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: var(--shadow-glow), var(--shadow-sm);
  transform: translateY(-1px);
}

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

.form-note {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: calc(var(--space-sm) * -1);
}

.form-note i {
  color: var(--primary);
  font-size: 13px;
}

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

.main-footer {
  background: var(--text-primary);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-5xl) 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-col-main {
  max-width: 350px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 32px;
  line-height: 1;
  margin-bottom: var(--space-lg);
}

.footer-logo .logo-main {
  background: linear-gradient(135deg, #3385ff 0%, #0066ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-logo .logo-sub {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 4px;
}

.footer-col p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-col h4 i {
  color: var(--secondary);
  font-size: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-links li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-links i {
  color: var(--accent);
  font-size: 10px;
  transition: transform 0.3s;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-light);
  padding-left: var(--space-xs);
}

.footer-links li:hover i {
  transform: translateX(3px);
}

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 16px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: var(--primary-light);
}

.footer-services {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-services li {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  transition: all 0.3s;
  padding: var(--space-xs) 0;
}

.footer-services li:hover {
  color: white;
  transform: translateX(4px);
}

.footer-services i {
  color: var(--accent);
  font-size: 16px;
  width: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.footer-services li:hover i {
  transform: scale(1.2);
}

.footer-services span {
  flex: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-xl) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-tagline {
  font-style: italic;
}

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

.floating-buttons {
  position: fixed;
  right: var(--space-xl);
  bottom: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  z-index: 999;
}

.fab-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 26px;
  text-decoration: none;
  box-shadow: var(--shadow-xl);
  transition: all 0.3s;
  position: relative;
}

.fab-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--shadow-2xl);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.phone-btn {
  background: var(--gradient-primary);
}

.fab-tooltip {
  position: absolute;
  right: 74px;
  background: var(--text-primary);
  color: white;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  box-shadow: var(--shadow-lg);
}

.fab-btn:hover .fab-tooltip {
  opacity: 1;
}

.fab-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--text-primary);
}

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

@media (max-width: 1024px) {
  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .hero-slider {
    margin: 0 var(--space-md);
    height: 70vh;
    min-height: 550px;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }
  
  .footer-col-main {
    max-width: 100%;
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  /* Header */
  .header-topbar {
    display: none;
  }
  
  .nav-wrapper {
    padding: var(--space-sm) 0;
  }
  
  .logo {
    font-size: 24px;
  }
  
  .logo-sub {
    font-size: 10px;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: var(--space-lg);
    box-shadow: var(--shadow-xl);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-link {
    padding: var(--space-md);
    width: 100%;
    text-align: center;
    border-radius: var(--radius-md);
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  .btn-header-cta {
    padding: var(--space-xs) var(--space-lg);
    font-size: 13px;
  }
  
  /* Hero Section */
  .hero-section {
    margin-top: 70px;
  }
  
  .hero-slider {
    margin: 0;
    border-radius: 0;
    height: 55vh;
    min-height: 450px;
    overflow: visible;
  }
  
  .hero-slider .slide-wrapper {
    border-radius: 0;
  }
  
  .hero-slider .container {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .slide-content {
    padding: var(--space-2xl) 0;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
  
  .slide-badge {
    font-size: 10px;
    padding: var(--space-xs) var(--space-lg);
  }
  
  .slide-title {
    font-size: 32px;
    margin-bottom: var(--space-md);
  }
  
  .slide-description {
    font-size: 16px;
    margin-bottom: var(--space-lg);
    max-width: 100%;
  }
  
  .slide-actions {
    display: none !important;
  }
  
  .slider-controls {
    display: none !important;
  }
  
  .slider-controls {
    padding: 0 var(--space-md);
  }
  
  .slider-nav {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
  
  /* Sections */
  .section-header {
    margin-bottom: var(--space-2xl);
  }
  
  .section-label {
    font-size: 10px;
    padding: var(--space-xs) var(--space-lg);
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .section-description {
    font-size: 15px;
  }
  
  /* Stats */
  .stats-section {
    padding: var(--space-4xl) 0;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
  
  .stat-card {
    padding: var(--space-xl);
  }
  
  /* About */
  .about-section {
    padding: var(--space-4xl) 0;
  }
  
  .about-content {
    gap: var(--space-2xl);
  }
  
  .about-intro {
    font-size: 16px;
    padding: var(--space-xl);
  }
  
  .services-tags {
    gap: var(--space-sm);
  }
  
  .service-tag {
    font-size: 12px;
    padding: var(--space-xs) var(--space-lg);
  }
  
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
  
  .feature-card {
    padding: var(--space-xl);
  }
  
  /* Gallery */
  .gallery-section {
    padding: var(--space-4xl) 0;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
  
  /* Blog */
  .blog-section {
    padding: var(--space-4xl) 0;
  }
  
  .blog-carousel-wrapper {
    padding: 0 50px;
  }
  
  .blog-grid .blog-card {
    flex: 0 0 calc(100% - 24px);
  }
  
  .blog-card {
    padding: var(--space-lg);
  }
  
  .blog-carousel-nav {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }
  
  /* Contact */
  .contact-section {
    padding: var(--space-4xl) 0;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .contact-info {
    gap: var(--space-lg);
  }
  
  .contact-card {
    padding: var(--space-xl);
  }
  
  .contact-form-wrapper {
    padding: var(--space-2xl);
  }
  
  /* Footer */
  .footer {
    padding: var(--space-4xl) 0 var(--space-2xl);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .footer-col-main {
    grid-column: 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }
  
  /* Floating Buttons */
  .floating-buttons {
    right: var(--space-md);
    bottom: var(--space-md);
  }
  
  .fab-btn {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }
  
  /* Buttons */
  .btn {
    padding: var(--space-sm) var(--space-xl);
    font-size: 14px;
  }
  
  /* Article Page */
  .article-page {
    padding-top: 100px;
  }
  
  .article-content {
    padding: var(--space-xl);
  }
  
  .article-content h2 {
    font-size: 24px;
  }
  
  .article-content h3 {
    font-size: 20px;
  }
  
  .breadcrumb {
    margin-top: 80px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Cookie */
  .cookie-consent {
    padding: var(--space-lg);
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-actions {
    width: 100%;
  }
  
  .cookie-actions .btn {
    flex: 1;
  }
}

/* ============================================
   ARTICLE PAGE STYLES
   ============================================ */

.article-page {
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: var(--space-5xl);
  background: var(--bg-secondary);
}

.article-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  padding-bottom: var(--space-xl);
  border-bottom: 2px solid var(--border-light);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: var(--space-lg);
  transition: all 0.3s;
}

.back-link:hover {
  color: var(--primary-dark);
  transform: translateX(-5px);
}

.article-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.article-meta {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

.article-content {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: var(--space-3xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  line-height: 1.8;
}

.article-content h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--border-light);
}

.article-content h2:first-of-type {
  margin-top: 0;
}

.article-content h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.article-content p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.85;
}

.article-content ul,
.article-content ol {
  margin: var(--space-lg) 0;
  padding-left: var(--space-2xl);
}

.article-content li {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  line-height: 1.8;
}

.article-content a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.article-content a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.cta-box {
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 102, 255, 0.02) 100%);
  border: 2px solid var(--primary-light);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  margin-top: var(--space-2xl);
  text-align: center;
}

.cta-box h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  border: none;
  padding: 0;
}

.cta-box p {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.cta-box .btn {
  margin: 0 var(--space-sm);
}

/* ============================================
   BREADCRUMB NAVIGATION
   ============================================ */

.breadcrumb {
  background: var(--bg-secondary);
  padding: var(--space-md) 0;
  margin-top: 120px;
  border-bottom: 1px solid var(--border-light);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--text-muted);
}

.breadcrumb-list li:not(:last-child)::after {
  content: '/';
  margin-left: var(--space-sm);
  color: var(--text-muted);
}

.breadcrumb-list a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb-list a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.breadcrumb-list span {
  color: var(--text-secondary);
  font-weight: 500;
}

/* ============================================
   ARTICLE ENHANCEMENTS
   ============================================ */

.article-intro {
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 102, 255, 0.02) 100%);
  border-left: 4px solid var(--primary);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-2xl);
  font-size: 17px;
  line-height: 1.85;
}

.faq-section {
  background: var(--bg-secondary);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin: var(--space-xl) 0;
}

.faq-section h3 {
  color: var(--primary);
  font-size: 18px;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.faq-section h3:first-child {
  margin-top: 0;
}

.faq-section p {
  margin-bottom: var(--space-lg);
}

.related-articles {
  background: var(--bg-secondary);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin-top: var(--space-2xl);
}

.related-articles h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  border: none;
  padding: 0;
}

.related-articles ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.related-articles li {
  margin-bottom: var(--space-sm);
}

.related-articles a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.related-articles a::before {
  content: '→';
  color: var(--primary);
}

.related-articles a:hover {
  color: var(--primary-dark);
  padding-left: var(--space-sm);
}

.cta-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--space-lg);
}

@media (max-width: 768px) {
  .article-page {
    padding-top: 100px;
  }
  
  .article-content {
    padding: var(--space-xl);
  }
  
  .article-content h2 {
    font-size: 24px;
  }
  
  .article-content h3 {
    font-size: 20px;
  }
  
  .breadcrumb {
    margin-top: 80px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  padding: var(--space-xl);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 3px solid var(--primary);
  display: none;
}

.cookie-consent.show {
  transform: translateY(0);
  display: block;
}

.cookie-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}

.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  flex: 1;
  min-width: 300px;
}

.cookie-text i {
  font-size: 32px;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 4px;
}

.cookie-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.cookie-text p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.cookie-actions {
  display: flex;
  gap: var(--space-md);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cookie-consent {
    padding: var(--space-lg);
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-actions {
    width: 100%;
  }
  
  .cookie-actions .btn {
    flex: 1;
  }
}

@media (max-width: 480px) {
  /* Container */
  .container {
    padding: 0 var(--space-md);
  }
  
  /* Header */
  .main-header {
    box-shadow: var(--shadow-sm);
  }
  
  .logo {
    font-size: 22px;
  }
  
  .logo-sub {
    font-size: 9px;
  }
  
  .nav-wrapper {
    padding: var(--space-sm) 0;
  }
  
  .btn-header-cta {
    padding: var(--space-xs) var(--space-md);
    font-size: 12px;
  }
  
  .btn-header-cta span {
    display: none;
  }
  
  /* Hero Slider */
  .hero-section {
    margin-top: 60px;
  }
  
  .hero-slider {
    height: 50vh;
    min-height: 400px;
    margin: 0;
  }
  
  .hero-slider .slide-wrapper {
    border-radius: 0;
  }
  
  .hero-slider .container {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .slide-content {
    padding: var(--space-xl) 0;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
  
  .slide-badge {
    font-size: 10px;
    padding: var(--space-xs) var(--space-md);
    margin-bottom: var(--space-md);
  }
  
  .slide-title {
    font-size: 28px;
    margin-bottom: var(--space-md);
    line-height: 1.2;
  }
  
  .slide-description {
    font-size: 14px;
    margin-bottom: var(--space-lg);
    max-width: 100%;
  }
  
  .slide-actions {
    display: none !important;
  }
  
  .slider-controls {
    display: none !important;
  }
  
  .slider-nav {
    display: none !important;
  }
  
  .slider-dots {
    bottom: var(--space-md);
  }
  
  /* Section Headers */
  .section-header {
    margin-bottom: var(--space-2xl);
  }
  
  .section-label {
    font-size: 10px;
    padding: var(--space-xs) var(--space-md);
    margin-bottom: var(--space-md);
  }
  
  .section-title {
    font-size: 24px;
    margin-bottom: var(--space-sm);
  }
  
  .section-description {
    font-size: 14px;
  }
  
  /* Stats Section */
  .stats-section {
    padding: var(--space-3xl) 0;
  }
  
  .stats-grid {
    gap: var(--space-lg);
  }
  
  .stat-card {
    padding: var(--space-lg);
  }
  
  .stat-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .stat-number {
    font-size: 32px;
  }
  
  .stat-label {
    font-size: 12px;
  }
  
  /* About Section */
  .about-section {
    padding: var(--space-3xl) 0;
  }
  
  .about-content {
    gap: var(--space-xl);
  }
  
  .about-intro {
    font-size: 15px;
    padding: var(--space-lg);
  }
  
  .services-tags {
    gap: var(--space-sm);
    flex-wrap: wrap;
  }
  
  .service-tag {
    font-size: 12px;
    padding: var(--space-xs) var(--space-md);
  }
  
  .feature-grid {
    gap: var(--space-md);
  }
  
  .feature-card {
    padding: var(--space-lg);
  }
  
  .feature-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  
  .feature-card h4 {
    font-size: 16px;
  }
  
  .feature-card p {
    font-size: 13px;
  }
  
  /* Gallery */
  .gallery-section {
    padding: var(--space-3xl) 0;
  }
  
  .gallery-grid {
    gap: var(--space-md);
  }
  
  .gallery-item {
    aspect-ratio: 4/3;
  }
  
  /* Blog Section */
  .blog-section {
    padding: var(--space-3xl) 0;
  }
  
  .blog-carousel-wrapper {
    padding: 0 30px;
  }
  
  .blog-card {
    padding: var(--space-md);
    margin: 0 8px;
  }
  
  .blog-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-sm);
  }
  
  .blog-card-icon i {
    font-size: 20px;
  }
  
  .blog-card-category {
    font-size: 10px;
    padding: 4px var(--space-sm);
    margin-bottom: var(--space-sm);
  }
  
  .blog-card-title {
    font-size: 16px;
    margin-bottom: var(--space-xs);
  }
  
  .blog-card-description {
    font-size: 13px;
    margin-bottom: var(--space-sm);
  }
  
  .blog-card-footer {
    padding-top: var(--space-sm);
  }
  
  .blog-card-link {
    font-size: 12px;
  }
  
  .blog-carousel-nav {
    width: 32px;
    height: 32px;
    font-size: 11px;
  }
  
  /* Contact Section */
  .contact-section {
    padding: var(--space-3xl) 0;
  }
  
  .contact-content {
    gap: var(--space-xl);
  }
  
  .contact-info {
    gap: var(--space-md);
  }
  
  .contact-card {
    padding: var(--space-lg);
  }
  
  .contact-icon {
    width: 56px;
    height: 56px;
    font-size: 22px;
    margin-bottom: var(--space-md);
  }
  
  .contact-card h3 {
    font-size: 18px;
  }
  
  .contact-card a {
    font-size: 16px;
  }
  
  .contact-card p {
    font-size: 13px;
  }
  
  .contact-form-wrapper {
    padding: var(--space-lg);
  }
  
  .form-group label {
    font-size: 13px;
    margin-bottom: var(--space-xs);
  }
  
  .form-group input,
  .form-group textarea {
    font-size: 14px;
    padding: var(--space-sm) var(--space-md);
  }
  
  .form-group textarea {
    min-height: 120px;
  }
  
  /* Footer */
  .footer {
    padding: var(--space-3xl) 0 var(--space-xl);
  }
  
  .footer-content {
    gap: var(--space-xl);
  }
  
  .footer-logo {
    font-size: 24px;
    margin-bottom: var(--space-md);
  }
  
  .footer-col h4 {
    font-size: 16px;
    margin-bottom: var(--space-md);
  }
  
  .footer-links a {
    font-size: 13px;
  }
  
  .footer-contact a,
  .footer-contact span {
    font-size: 13px;
  }
  
  .footer-services li {
    font-size: 13px;
  }
  
  .footer-bottom {
    padding-top: var(--space-lg);
    gap: var(--space-md);
  }
  
  .footer-bottom p {
    font-size: 12px;
  }
  
  /* Floating Buttons */
  .floating-buttons {
    right: var(--space-sm);
    bottom: var(--space-sm);
    gap: var(--space-sm);
  }
  
  .fab-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .fab-tooltip {
    display: none;
  }
  
  /* Buttons */
  .btn {
    padding: var(--space-sm) var(--space-lg);
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }
  
  .btn-sm {
    padding: var(--space-xs) var(--space-md);
    font-size: 12px;
  }
  
  /* Breadcrumb */
  .breadcrumb {
    margin-top: 60px;
    padding: var(--space-sm) 0;
  }
  
  .breadcrumb-list {
    font-size: 12px;
  }
  
  /* Article Page */
  .article-page {
    padding-top: 80px;
    padding-bottom: var(--space-3xl);
  }
  
  .article-header {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-md);
  }
  
  .article-header h1 {
    font-size: 24px;
  }
  
  .article-meta {
    font-size: 12px;
  }
  
  .article-content {
    padding: var(--space-lg);
  }
  
  .article-content h2 {
    font-size: 20px;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
  }
  
  .article-content h3 {
    font-size: 18px;
    margin-top: var(--space-lg);
  }
  
  .article-content p {
    font-size: 14px;
    margin-bottom: var(--space-md);
  }
  
  .article-intro {
    padding: var(--space-md);
    font-size: 15px;
  }
  
  .faq-section {
    padding: var(--space-md);
  }
  
  .faq-section h3 {
    font-size: 16px;
  }
  
  .related-articles {
    padding: var(--space-md);
  }
  
  .related-articles h3 {
    font-size: 18px;
  }
  
  .cta-box {
    padding: var(--space-lg);
  }
  
  .cta-box h3 {
    font-size: 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Cookie Consent */
  .cookie-consent {
    padding: var(--space-md);
  }
  
  .cookie-text {
    gap: var(--space-sm);
  }
  
  .cookie-text i {
    font-size: 24px;
  }
  
  .cookie-text strong {
    font-size: 16px;
  }
  
  .cookie-text p {
    font-size: 13px;
  }
  
  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-actions .btn {
    width: 100%;
  }
}
