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

:root {
  /* Modern Color Palette - Dark Matte Orange */
  --primary: #CC5500;
  --primary-dark: #A04400;
  --primary-light: #E66A00;
  --secondary: #FF8C42;
  --accent: #FF6B35;
  --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(204, 85, 0, 0.1);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #CC5500 0%, #A04400 100%);
  --gradient-secondary: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
  --gradient-accent: linear-gradient(135deg, #FF6B35 0%, #E66A00 100%);
  --gradient-hero: linear-gradient(135deg, rgba(204, 85, 0, 0.85) 0%, rgba(160, 68, 0, 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;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

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;
  font-size: 16px;
}

/* Ensure minimum readable font sizes for main content */
p, .section-description, .slide-description, .about-intro p, .feature-card p, .blog-card-description {
  font-size: clamp(14px, 1rem, 18px);
}

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

/* ============================================
   HEADER - Premium Modern Design
   ============================================ */

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.main-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

/* Top Bar - Modern Gradient Design */
.header-topbar {
  background: linear-gradient(135deg, #0a1629 0%, #1a2332 100%);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.header-topbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(204, 85, 0, 0.5), transparent);
}

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

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

.topbar-right {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.topbar-item i {
  color: var(--primary);
  font-size: 14px;
  width: 18px;
  text-align: center;
  transition: all 0.3s ease;
}

.topbar-item:hover i {
  color: var(--secondary);
  transform: scale(1.1);
}

.topbar-item a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.topbar-item a:hover {
  color: var(--secondary);
  transform: translateX(2px);
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-left: var(--space-lg);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar-social a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(204, 85, 0, 0.3);
}

/* Main Navigation */
.header-nav {
  background: #ffffff;
  padding: 0;
  border-bottom: 1px solid #f0f4f8;
}

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

/* Logo - Premium Design */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  z-index: 1;
}

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

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #CC5500 0%, #A04400 100%);
  border-radius: 12px;
  color: white;
  font-size: 24px;
  box-shadow: 0 4px 16px rgba(204, 85, 0, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.logo-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.logo:hover .logo-icon::before {
  width: 200%;
  height: 200%;
}

.logo:hover .logo-icon {
  transform: scale(1.05) rotate(-3deg);
  box-shadow: 0 8px 24px rgba(204, 85, 0, 0.35);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-main {
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(135deg, #CC5500 0%, #A04400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.8px;
  line-height: 1;
}

.logo-sub {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 4px;
  flex: 1;
  justify-content: center;
  align-items: center;
}

.nav-link {
  padding: 10px 20px;
  color: #1e293b;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  letter-spacing: -0.2px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link i {
  font-size: 16px;
  width: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.nav-link span {
  transition: all 0.3s ease;
}

.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(204, 85, 0, 0.08), rgba(204, 85, 0, 0.03));
  opacity: 0;
  transition: opacity 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #CC5500, #A04400);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover,
.nav-link.active {
  color: #CC5500;
  transform: translateY(-1px);
}

.nav-link:hover i,
.nav-link.active i {
  color: #CC5500;
  transform: scale(1.1);
}

.nav-link:hover::before,
.nav-link.active::before {
  opacity: 1;
}

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

/* CTA Button */
.btn-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #CC5500 0%, #A04400 100%);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 16px rgba(204, 85, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  letter-spacing: 0.2px;
}

.btn-header-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-header-cta:hover::before {
  left: 100%;
}

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

.btn-header-cta i {
  font-size: 14px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: rgba(204, 85, 0, 0.05);
  border: 1px solid rgba(204, 85, 0, 0.1);
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
  transition: all 0.3s;
  z-index: 1001;
}

.mobile-menu-toggle:hover {
  background: rgba(204, 85, 0, 0.1);
  border-color: rgba(204, 85, 0, 0.2);
}

.mobile-menu-toggle span {
  width: 24px;
  height: 3px;
  background: #1e293b;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hero-section {
  margin-top: 140px;
  position: relative;
  padding: 0;
  width: 100%;
  overflow: hidden;
}

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

.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 center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: none;
  will-change: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.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: clamp(16px, 1.125rem, 18px) !important;
  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(204, 85, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(204, 85, 0, 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 - Professional Compact Design
   ============================================ */

.stats-section {
  padding: 60px 0;
  background: #ffffff;
  margin-top: -60px;
  position: relative;
  z-index: 5;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(204, 85, 0, 0.15), transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.stat-card {
  background: #ffffff;
  padding: 28px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #f1f5f9;
  position: relative;
  overflow: hidden;
}

.stat-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(204, 85, 0, 0.02) 0%, rgba(255, 107, 53, 0.01) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.stat-card:hover .stat-card-bg {
  opacity: 1;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, #CC5500 0%, #A04400 100%);
  transform-origin: top;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.stat-card:hover::before {
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(204, 85, 0, 0.1);
  border-color: rgba(204, 85, 0, 0.15);
}

.stat-icon-wrapper {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, #CC5500 0%, #A04400 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(204, 85, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.stat-icon-glow {
  display: none;
}

.stat-card:hover .stat-icon {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(204, 85, 0, 0.3);
}

.stat-content {
  position: relative;
  z-index: 2;
  flex: 1;
  min-width: 0;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: #CC5500;
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 6px;
  transition: all 0.3s ease;
  display: block;
}

.stat-card:hover .stat-number {
  color: #A04400;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0;
  transition: color 0.3s ease;
  line-height: 1.4;
}

.stat-card:hover .stat-label {
  color: #475569;
}

/* ============================================
   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(204, 85, 0, 0.1) 0%, rgba(204, 85, 0, 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(204, 85, 0, 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: clamp(15px, 1.0625rem, 17px) !important;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ============================================
   ABOUT SECTION - Professional Compact Design
   ============================================ */

.about-section {
  padding: 60px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(204, 85, 0, 0.2), transparent);
}

.about-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(204, 85, 0, 0.2), transparent);
}

.about-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* New About Content Design - Compact Professional */
.about-content-new {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 30px;
  align-items: start;
  margin-top: 40px;
}

.about-image-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  align-items: stretch;
}

.about-image-placeholder {
  width: 100%;
  min-height: 320px;
  background: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  padding: 0;
}

.about-image {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  display: block;
}

.about-text-new {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
}

.about-mission,
.about-vision,
.about-values {
  background: white;
  padding: 24px 20px;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
  border-left: 3px solid #CC5500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  min-height: auto;
  position: relative;
}

.about-mission:hover,
.about-vision:hover,
.about-values:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(204, 85, 0, 0.08);
  border-left-width: 4px;
}

.about-mission h3,
.about-vision h3,
.about-values h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 12px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}

.about-mission h3 i,
.about-vision h3 i,
.about-values h3 i {
  color: #CC5500;
  font-size: 20px;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.about-mission p,
.about-vision p {
  font-size: 14px;
  line-height: 1.65;
  color: #475569;
  margin: 0;
  flex: 1;
}

.about-values {
  min-height: auto;
}

.about-values ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.about-values li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
  padding: 0;
}

.about-values li i {
  color: #CC5500;
  font-size: 14px;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.about-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}

.about-cta .btn {
  flex: 1;
  min-width: 160px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* About Text Section */
.about-text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-intro {
  position: relative;
}

.about-intro::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #CC5500 0%, #ff6b35 100%);
  border-radius: 2px;
}

.about-intro p {
  font-size: clamp(16px, 1.125rem, 18px) !important;
  line-height: 2;
  color: #475569;
  margin-bottom: 24px;
  padding-left: 20px;
  position: relative;
}

.about-intro p:first-child {
  font-size: clamp(18px, 1.25rem, 20px) !important;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.9;
}

.about-intro p strong {
  color: #CC5500;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(204, 85, 0, 0.1), rgba(255, 107, 53, 0.05));
  padding: 2px 6px;
  border-radius: 4px;
}

/* Services Tags */
.services-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 30px;
  background: linear-gradient(135deg, rgba(204, 85, 0, 0.03) 0%, rgba(255, 107, 53, 0.02) 100%);
  border-radius: 20px;
  border: 1px solid rgba(204, 85, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.services-tags::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #CC5500 0%, #ff6b35 100%);
}

.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.service-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #CC5500 0%, #A04400 100%);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.service-tag:hover::before {
  left: 0;
}

.service-tag i,
.service-tag span {
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.service-tag:hover {
  color: white;
  border-color: #CC5500;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 24px rgba(204, 85, 0, 0.3);
}

.service-tag i {
  font-size: 16px;
  color: #CC5500;
  transition: all 0.3s;
}

.service-tag:hover i {
  color: white;
  transform: scale(1.2) rotate(5deg);
}

/* About Actions */
.about-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.about-actions .btn {
  flex: 1;
  min-width: 200px;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(204, 85, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-actions .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(204, 85, 0, 0.35);
}

.about-actions .btn-secondary {
  background: #ffffff;
  color: #1e293b;
  border: 2px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.about-actions .btn-secondary:hover {
  border-color: #CC5500;
  color: #CC5500;
  background: rgba(204, 85, 0, 0.05);
  box-shadow: 0 8px 24px rgba(204, 85, 0, 0.2);
}

/* About Features */
.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
}

.feature-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  border: 2px solid #f1f5f9;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, #CC5500 0%, #ff6b35 100%);
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0 0 2px 2px;
}

.feature-card:hover::before {
  height: 100%;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(204, 85, 0, 0.02) 0%, rgba(255, 107, 53, 0.01) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card:hover {
  border-color: rgba(204, 85, 0, 0.3);
  transform: translateY(-8px) translateX(4px);
  box-shadow: 0 16px 48px rgba(204, 85, 0, 0.15), 0 8px 24px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  min-height: 70px;
  border-radius: 18px;
  background: linear-gradient(135deg, #CC5500 0%, #A04400 100%);
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: white !important;
  font-size: 28px !important;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(204, 85, 0, 0.3);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.feature-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.feature-card:hover .feature-icon::before {
  width: 120%;
  height: 120%;
}

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

.feature-card:hover .feature-icon {
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 12px 36px rgba(204, 85, 0, 0.4);
}

.feature-card > div:last-child {
  flex: 1;
  position: relative;
  z-index: 2;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: -0.5px;
  transition: color 0.3s;
}

.feature-card:hover h3 {
  color: #CC5500;
}

.feature-card p {
  font-size: clamp(14px, 0.9375rem, 15px) !important;
  color: #64748b;
  line-height: 1.75;
  margin: 0;
  transition: color 0.3s;
}

.feature-card:hover p {
  color: #475569;
}

/* ============================================
   GALLERY SECTION - Professional Mini Slider
   ============================================ */

.gallery-section {
  padding: var(--space-5xl) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.gallery-mini-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.gallery-slider-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  background: #ffffff;
}

.gallery-slider-track {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.gallery-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(0.95);
  cursor: pointer;
}

.gallery-slide.active {
  opacity: 1;
  z-index: 2;
  transform: scale(1);
}

.gallery-slide-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.8s ease;
}

.gallery-slide.active .gallery-slide-image {
  transform: scale(1.05);
}

.gallery-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(204, 85, 0, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.gallery-slide:hover .gallery-slide-overlay {
  opacity: 1;
}

.gallery-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  padding: 0 20px;
}

.gallery-slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 2px solid #e2e8f0;
  color: #CC5500;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  font-size: 16px;
  flex-shrink: 0;
}

.gallery-slider-btn:hover {
  background: #CC5500;
  color: white;
  border-color: #CC5500;
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(204, 85, 0, 0.3);
}

.gallery-slider-btn:active {
  transform: scale(0.95);
}

.gallery-slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.gallery-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.gallery-slider-dot.active {
  width: 32px;
  border-radius: 9999px;
  background: #CC5500;
  border-color: #CC5500;
}

.gallery-slider-dot:hover {
  background: #CC5500;
  transform: scale(1.2);
}

/* ============================================
   GALLERY LIGHTBOX MODAL
   ============================================ */

.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}

.lightbox-image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg) scale(1.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
  border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .lightbox-content {
    padding: 40px 20px;
  }
  
  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
  
  .lightbox-prev,
  .lightbox-next {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .lightbox-prev {
    left: 10px;
  }
  
  .lightbox-next {
    right: 10px;
  }
  
  .lightbox-image {
    max-height: 85vh;
  }
}

@media (max-width: 480px) {
  .lightbox-content {
    padding: 30px 15px;
  }
  
  .lightbox-close {
    top: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .lightbox-prev,
  .lightbox-next {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
  
  .lightbox-prev {
    left: 8px;
  }
  
  .lightbox-next {
    right: 8px;
  }
}

/* ============================================
   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(204, 85, 0, 0.1) 0%, rgba(204, 85, 0, 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(204, 85, 0, 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: clamp(14px, 0.875rem, 15px) !important;
  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 - New Design
   ============================================ */

.contact-section {
  padding: var(--space-5xl) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

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

/* New Contact Content Design */
.contact-content-new {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  margin-top: 50px;
  margin-bottom: 60px;
}

.contact-map-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-map-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 40px;
  text-align: center;
}

.contact-map-placeholder i {
  font-size: 64px;
  color: #CC5500;
  margin-bottom: 20px;
}

.contact-map-placeholder p {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: white;
}

.contact-map-placeholder span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-details-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail-item {
  background: white;
  padding: 28px;
  border-radius: 16px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.contact-detail-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(204, 85, 0, 0.15);
  border-color: rgba(204, 85, 0, 0.2);
}

.detail-icon-wrapper {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, #CC5500 0%, #A04400 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  box-shadow: 0 4px 16px rgba(204, 85, 0, 0.3);
  transition: all 0.3s ease;
}

.contact-detail-item:hover .detail-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(204, 85, 0, 0.4);
}

.detail-content {
  flex: 1;
}

.detail-content h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 8px 0;
}

.detail-link {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #CC5500;
  text-decoration: none;
  margin-bottom: 6px;
  transition: color 0.3s;
}

.detail-link:hover {
  color: #A04400;
}

.detail-note {
  display: block;
  font-size: 13px;
  color: #64748b;
  margin-top: 4px;
}

.contact-form-section {
  background: white;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  margin-top: 40px;
}

.form-section-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 32px;
  text-align: center;
  position: relative;
  padding-bottom: 20px;
}

.form-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #CC5500 0%, #A04400 100%);
  border-radius: 2px;
}

.contact-form-new {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group-new input,
.form-group-new textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  background: #f8f9fa;
  color: #1e293b;
  transition: all 0.3s ease;
}

.form-group-new input:focus,
.form-group-new textarea:focus {
  outline: none;
  border-color: #CC5500;
  background: white;
  box-shadow: 0 0 0 4px rgba(204, 85, 0, 0.1);
}

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

.btn-large {
  padding: 18px 36px;
  font-size: 16px;
  font-weight: 700;
}

.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(204, 85, 0, 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;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--font-heading);
  margin-bottom: var(--space-lg);
}

.footer-logo .logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  color: white;
  font-size: 24px;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-logo:hover .logo-icon {
  transform: scale(1.05) rotate(-5deg);
  box-shadow: var(--shadow-xl);
}

.footer-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.footer-logo .logo-main {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, #FF8C42 0%, #E66A00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  line-height: 1;
}

.footer-logo .logo-sub {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 3px;
}

.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(204, 85, 0, 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-section {
    padding: 100px 0;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .about-text {
    gap: 35px;
  }
  
  .about-intro p {
    font-size: 17px;
  }
  
  .about-intro p:first-child {
    font-size: 19px;
  }
  
  .services-tags {
    padding: 28px;
  }
  
  .service-tag {
    padding: 12px 20px;
    font-size: 13px;
  }
  
  .feature-card {
    padding: 28px;
    gap: 20px;
  }
  
  .feature-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    min-height: 65px;
    font-size: 26px !important;
  }
  
  .feature-card h3 {
    font-size: 19px;
  }
  
  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .hero-slider {
    margin: 0;
    height: 70vh;
    min-height: 550px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .stat-card {
    padding: 45px 28px;
  }
  
  .stat-icon {
    width: 90px;
    height: 90px;
    font-size: 38px;
  }
  
  .stat-number {
    font-size: 52px;
  }
  
  .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;
  }
  
  .header-nav {
    border-bottom: 1px solid #f0f4f8;
  }
  
  .nav-wrapper {
    padding: 14px 0;
  }
  
  .logo {
    gap: 10px;
  }
  
  .logo-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
    border-radius: 10px;
  }
  
  .logo-main {
    font-size: 24px;
  }
  
  .logo-sub {
    font-size: 10px;
    letter-spacing: 2px;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 80px var(--space-lg) var(--space-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 100vh;
    overflow-y: auto;
    z-index: 999;
    gap: 8px;
  }
  
  .nav-menu.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-link {
    padding: 14px 20px;
    width: 100%;
    text-align: left;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
  }
  
  .nav-link::after {
    display: none;
  }
  
  .nav-link::before {
    border-radius: 10px;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu-toggle.active {
    background: rgba(204, 85, 0, 0.15);
    border-color: rgba(204, 85, 0, 0.3);
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: #CC5500;
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    background: #CC5500;
  }
  
  .btn-header-cta {
    padding: 10px 18px;
    font-size: 13px;
  }
  
  .btn-header-cta span {
    display: none;
  }
  
  /* Hero Section */
  .hero-section {
    margin-top: 80px;
  }
  
  .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: 50px 0;
    margin-top: -50px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .stat-card {
    padding: 24px 18px;
    border-radius: 10px;
    gap: 14px;
  }
  
  .stat-icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
    border-radius: 10px;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .stat-label {
    font-size: 11px;
    letter-spacing: 0.6px;
  }
  
  /* About */
  .about-section {
    padding: 80px 0;
  }
  
  .about-content {
    gap: 50px;
  }
  
  .about-content-new {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .about-image-placeholder {
    min-height: 250px;
    padding: 0;
  }
  
  .about-image {
    min-height: 250px;
    object-fit: cover;
    object-position: center;
  }
  
  .about-mission,
  .about-vision,
  .about-values {
    padding: 20px 16px;
    min-height: auto;
  }
  
  .about-mission h3,
  .about-vision h3,
  .about-values h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .about-mission h3 i,
  .about-vision h3 i,
  .about-values h3 i {
    font-size: 18px;
    width: 22px;
  }
  
  .about-mission p,
  .about-vision p,
  .about-values li {
    font-size: 13px;
  }
  
  .about-values li i {
    font-size: 13px;
    width: 16px;
  }
  
  .about-cta {
    flex-direction: column;
    margin-top: 20px;
    padding-top: 20px;
    gap: 10px;
  }
  
  .about-cta .btn {
    width: 100%;
    min-width: auto;
    padding: 10px 20px;
    font-size: 13px;
  }
  
  .contact-content-new {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-form-section {
    padding: 30px;
  }
  
  .about-text {
    gap: 30px;
  }
  
  .about-intro::before {
    left: -15px;
    width: 3px;
  }
  
  .about-intro p {
    font-size: 16px;
    line-height: 1.85;
    padding-left: 15px;
    margin-bottom: 20px;
  }
  
  .about-intro p:first-child {
    font-size: 18px;
    line-height: 1.8;
  }
  
  .services-tags {
    padding: 24px;
    gap: 10px;
  }
  
  .service-tag {
    font-size: 13px;
    padding: 12px 18px;
  }
  
  .about-actions {
    gap: 12px;
  }
  
  .about-actions .btn {
    min-width: 160px;
    padding: 14px 24px;
    font-size: 14px;
  }
  
  .feature-card {
    padding: 24px;
    gap: 18px;
    border-radius: 16px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    font-size: 24px !important;
    border-radius: 16px;
  }
  
  .feature-card h3 {
    font-size: 18px;
  }
  
  .feature-card p {
    font-size: 14px;
  }
  
  /* Gallery */
  .gallery-section {
    padding: var(--space-4xl) 0;
  }
  
  .gallery-mini-slider {
    max-width: 100%;
  }
  
  .gallery-slider-track {
    height: 350px;
  }
  
  .gallery-slider-controls {
    margin-top: 20px;
    gap: 16px;
  }
  
  .gallery-slider-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  
  /* 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(204, 85, 0, 0.05) 0%, rgba(204, 85, 0, 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(204, 85, 0, 0.05) 0%, rgba(204, 85, 0, 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: 0 2px 8px rgba(0, 0, 0, 0.06);
  }
  
  .nav-wrapper {
    padding: 12px 0;
  }
  
  .logo {
    gap: 8px;
  }
  
  .logo-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
    border-radius: 8px;
  }
  
  .logo-main {
    font-size: 22px;
  }
  
  .logo-sub {
    font-size: 9px;
    letter-spacing: 1.5px;
  }
  
  .btn-header-cta {
    padding: 10px 16px;
    font-size: 12px;
  }
  
  .btn-header-cta span {
    display: none;
  }
  
  .nav-menu {
    padding: 70px var(--space-md) var(--space-md);
  }
  
  .nav-link {
    padding: 12px 16px;
    font-size: 15px;
  }
  
  /* Hero Slider */
  .hero-section {
    margin-top: 70px;
  }
  
  .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: 40px 0;
    margin-top: -30px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .stat-card {
    padding: 20px 16px;
    border-radius: 10px;
    gap: 12px;
  }
  
  .stat-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
    border-radius: 10px;
  }
  
  .stat-number {
    font-size: 26px;
    letter-spacing: -0.8px;
  }
  
  .stat-label {
    font-size: 11px;
    letter-spacing: 0.5px;
  }
  
  /* About Section */
  .about-section {
    padding: 60px 0;
  }
  
  .about-content {
    gap: 40px;
  }
  
  .about-text {
    gap: 25px;
  }
  
  .about-intro::before {
    left: -12px;
    width: 3px;
  }
  
  .about-intro p {
    font-size: 15px;
    line-height: 1.8;
    padding-left: 12px;
    margin-bottom: 18px;
  }
  
  .about-intro p:first-child {
    font-size: 17px;
    line-height: 1.75;
  }
  
  .services-tags {
    padding: 20px;
    gap: 8px;
  }
  
  .service-tag {
    font-size: 12px;
    padding: 10px 16px;
    border-radius: 10px;
  }
  
  .service-tag i {
    font-size: 14px;
  }
  
  .about-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .about-actions .btn {
    width: 100%;
    min-width: auto;
    padding: 14px 20px;
    font-size: 14px;
  }
  
  .feature-card {
    padding: 20px;
    gap: 16px;
    border-radius: 14px;
  }
  
  .feature-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    min-height: 55px;
    font-size: 22px !important;
    border-radius: 14px;
  }
  
  .feature-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
  }
  
  .feature-card p {
    font-size: 13px;
    line-height: 1.7;
  }
  
  /* Gallery */
  .gallery-section {
    padding: var(--space-3xl) 0;
  }
  
  .gallery-slider-track {
    height: 280px;
  }
  
  .gallery-slider-controls {
    margin-top: 16px;
    gap: 12px;
    padding: 0 10px;
  }
  
  .gallery-slider-btn {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }
  
  .gallery-slider-dot {
    width: 6px;
    height: 6px;
  }
  
  .gallery-slider-dot.active {
    width: 24px;
  }
  
  /* 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 {
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
  }
  
  .footer-logo .logo-icon {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
  
  .footer-logo .logo-main {
    font-size: 24px;
  }
  
  .footer-logo .logo-sub {
    font-size: 9px;
  }
  
  .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%;
  }
}
