@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ====================================
   ULTRA MODERN CSS VARIABLES
   ==================================== */
:root {
  /* BTI Logo Inspired Color Palette */
  --primary: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  --primary-solid: #ff6b35;
  --secondary: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
  --accent: linear-gradient(135deg, #ffa726 0%, #ff7043 100%);
  --success: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  
  /* Neutral Colors */
  --black: #0f0f23;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f4f4f5;
  --gray-200: #e4e4e7;
  --gray-300: #d4d4d8;
  --gray-400: #a1a1aa;
  --gray-500: #71717a;
  --gray-600: #52525b;
  --gray-700: #3f3f46;
  --gray-800: #27272a;
  --gray-900: #18181b;
  
  /* Glass Morphism */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  
  /* Animations */
  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;
  --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ====================================
   MODERN RESET & BASE
   ==================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: var(--gray-700);
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ====================================
   MODERN NAVIGATION
   ==================================== */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-lg);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  padding: 0.5rem 0;
  background: rgba(255, 255, 255, 0.98);
}

.navbar-brand img {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  transition: transform var(--transition-normal);
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.nav-link {
  font-weight: 500;
  color: var(--gray-700) !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 8px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary);
  transition: left var(--transition-normal);
  z-index: -1;
  border-radius: 8px;
}

.nav-link:hover::before,
.nav-link.active::before {
  left: 0;
}

.nav-link:hover,
.nav-link.active {
  color: white !important;
  transform: translateY(-2px);
}

/* ====================================
   ULTRA MODERN HERO SECTION
   ==================================== */
.banner {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff8c42 100%);
  overflow: hidden;
}

.banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.15"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(1deg); }
}

.banner-img-part {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('../images/bg/main-banner1.jpg') center/cover;
  opacity: 0.3;
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.banner .block {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
}

.banner .text-uppercase {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 3rem;
}

.banner .text-uppercase::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, white 50%, transparent 100%);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; width: 2rem; }
  50% { opacity: 1; width: 2.5rem; }
}

.banner h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 8px rgba(0,0,0,0.3);
  animation: slideInUp 1s ease-out 0.3s both;
}

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

.banner .lead {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  animation: slideInUp 1s ease-out 0.6s both;
}

/* ====================================
   MODERN BUTTONS
   ==================================== */
.btn-main {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 1;
}

/* Hero section specific styling */
.banner .btn-main {
  animation: slideInUp 1s ease-out 0.9s both;
}

/* CTA section specific styling */
.cta .btn-main {
  background: var(--primary-solid);
  color: white;
  border: 2px solid var(--primary-solid);
}

.btn-main::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.6s;
}

.btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  text-decoration: none;
}

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

/* ====================================
   HERO SECTION ENHANCEMENTS
   ==================================== */
.hero-logo-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: slideInLeft 1s ease-out 0.2s both;
}

.hero-logo {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
  transition: transform var(--transition-normal);
}

.hero-logo:hover {
  transform: scale(1.05) rotate(2deg);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: slideInUp 1s ease-out 1.2s both;
}

.btn-outline-light {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

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

.btn-outline-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
  color: white;
  text-decoration: none;
}

.btn-outline-light:hover::before {
  left: 100%;
}

.hero-stats-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  animation: slideInRight 1s ease-out 0.8s both;
}

.stat-card-hero {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.stat-card-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.stat-card-hero:hover {
  transform: translateX(10px);
  border-color: rgba(255, 255, 255, 0.4);
}

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

.stat-card-hero .stat-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.stat-card-hero .stat-icon i {
  font-size: 1.5rem;
  color: white;
}

.stat-card-hero .stat-content {
  position: relative;
  z-index: 1;
}

.stat-card-hero .stat-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin: 0 0 0.25rem 0;
  line-height: 1;
}

.stat-card-hero .stat-content p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
}

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

@keyframes slideInRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ====================================
   MODERN SERVICES SECTION
   ==================================== */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gray-800);
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.about-item {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.about-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.about-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
  background: rgba(255, 255, 255, 0.95);
}

.about-item:hover::before {
  transform: scaleX(1);
}

.about-item .icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.about-item .icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.2);
  transform: scale(0);
  border-radius: 20px;
  transition: transform var(--transition-normal);
}

.about-item:hover .icon::after {
  transform: scale(1);
}

.about-item .icon i {
  font-size: 2rem;
  color: white;
  z-index: 1;
  position: relative;
}

.about-item h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.about-item p {
  color: var(--gray-600);
  line-height: 1.7;
}

/* ====================================
   PROCESS SECTION MODERN STYLING
   ==================================== */
.process {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(102,126,234,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.5;
}

.process-block {
  position: relative;
  z-index: 2;
}

.process-block h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--gray-800);
}

.icon-block {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 15px;
  padding: 2rem 1.5rem;
  transition: all var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.icon-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.icon-block:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.icon-block:hover::before {
  opacity: 0.05;
}

.icon-block i {
  font-size: 2.5rem;
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.icon-block h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

/* ====================================
   MODERN CTA SECTION
   ==================================== */
.cta {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cta-content {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: var(--shadow-2xl) !important;
  position: relative;
  z-index: 2;
}

.cta-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-item {
  display: flex;
  align-items: center;
  font-weight: 500;
  color: var(--gray-700);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-outline-primary {
  background: transparent;
  border: 2px solid var(--primary-solid);
  color: var(--primary-solid);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all var(--transition-normal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline-primary:hover {
  background: var(--primary-solid);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

.cta-stats {
  position: relative;
  z-index: 2;
}

.stat-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem 1rem;
  text-align: center;
  transition: all var(--transition-normal);
  height: 100%;
  min-width: 140px !important;
  max-width: none !important;
  width: auto !important;
  overflow: visible !important;
  word-wrap: normal !important;
}

.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.25);
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  color: white !important;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  line-height: 1.2 !important;
  white-space: nowrap !important;
  overflow: visible !important;
  text-overflow: visible !important;
  width: auto !important;
  max-width: none !important;
  display: block !important;
}

.stat-label {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Fix voor 24/7 tekst weergave */
.stat-number:contains("24/7"),
.stat-number[data-text*="24/7"] {
  font-size: 2.2rem !important;
  letter-spacing: -1px !important;
}

/* Alternatieve fix: alle stat-numbers forceren */
.cta-stats .stat-number {
  font-size: 2.3rem !important;
  white-space: nowrap !important;
  overflow: visible !important;
  text-overflow: clip !important;
  width: auto !important;
  max-width: none !important;
}

/* Bootstrap column override voor stat cards */
.cta-stats .col-6 {
  overflow: visible !important;
  min-width: 140px !important;
}

.cta-stats .row {
  overflow: visible !important;
}

/* Zeer specifieke fix voor de exacte HTML structuur */
.section.cta .cta-stats .stat-card .stat-number {
  font-size: 2.2rem !important;
  white-space: nowrap !important;
  overflow: visible !important;
  text-overflow: visible !important;
  display: block !important;
  width: auto !important;
  max-width: none !important;
  word-break: keep-all !important;
}

.text-color-primary {
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ====================================
   MODERN PORTFOLIO SECTION
   ==================================== */
.portfolio {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
}

.portfolio-card {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-lg);
}

.portfolio-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-2xl);
}

.portfolio-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,107,53,0.95) 0%, rgba(247,147,30,0.95) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-content {
  text-align: center;
  transform: translateY(20px);
  transition: transform var(--transition-normal);
}

.portfolio-card:hover .portfolio-content {
  transform: translateY(0);
}

.portfolio-content h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.portfolio-tags {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.portfolio-tags .tag {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
}

.portfolio-tags .tag:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Legacy support for old portfolio items */
.portflio-item {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all var(--transition-normal);
  position: relative;
}

.portflio-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102,126,234,0.9) 0%, rgba(118,75,162,0.9) 100%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
}

.portflio-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-2xl);
}

.portflio-item:hover::after {
  opacity: 1;
}

.portflio-item img {
  transition: transform var(--transition-slow);
}

.portflio-item:hover img {
  transform: scale(1.1);
}

/* ====================================
   MODERN FOOTER
   ==================================== */
.footer {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 50%, #ff6b35 100%);
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerPattern" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M25 0L50 25L25 50L0 25Z" fill="none" stroke="rgba(255,107,53,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23footerPattern)"/></svg>');
}

.footer .widget {
  position: relative;
  z-index: 2;
}

.footer h3, .footer h4 {
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.footer h3 {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.5rem;
}

.footer .contact-info i {
  color: #ff6b35;
  margin-right: 0.75rem;
  font-size: 1.1rem;
}

.footer .copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer .copyright a {
  color: #ff6b35;
  font-weight: 500;
}

.footer-btm {
  border-top: 1px solid rgba(255, 107, 53, 0.2);
  background: rgba(0, 0, 0, 0.2);
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  transition: all var(--transition-normal);
  text-decoration: none;
  position: relative;
}

.footer a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  transition: width var(--transition-normal);
}

.footer a:hover {
  color: #ff6b35;
  transform: translateX(5px);
  text-decoration: none;
}

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

/* ====================================
   MODERN SERVICE FEATURES
   ==================================== */
.service-features {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.feature-tag {
  background: linear-gradient(135deg, rgba(255,107,53,0.1) 0%, rgba(247,147,30,0.1) 100%);
  color: var(--primary-solid);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(255,107,53,0.2);
  transition: all var(--transition-normal);
}

.feature-tag:hover {
  background: var(--primary-solid);
  color: white;
  transform: translateY(-1px);
}

.text-gradient {
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float-random 15s ease-in-out infinite;
}

.element-1 {
  top: 20%;
  left: 10%;
  width: 100px;
  height: 100px;
  animation-delay: 0s;
}

.element-2 {
  top: 60%;
  right: 15%;
  width: 150px;
  height: 150px;
  animation-delay: 5s;
}

.element-3 {
  bottom: 30%;
  left: 20%;
  width: 80px;
  height: 80px;
  animation-delay: 10s;
}

@keyframes float-random {
  0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
  25% { transform: translateY(-20px) translateX(10px) rotate(90deg); }
  50% { transform: translateY(10px) translateX(-15px) rotate(180deg); }
  75% { transform: translateY(-15px) translateX(5px) rotate(270deg); }
}

.badge {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.75rem;
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */
@media (max-width: 1200px) {
  .hero-buttons {
    gap: 0.75rem;
  }
  
  .btn-main, .btn-outline-light {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-buttons .btn-main,
  .cta-buttons .btn-outline-primary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .banner {
    text-align: center;
    min-height: 90vh;
    padding: 2rem 0;
  }
  
  .banner h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .banner .lead {
    font-size: 1.125rem;
  }
  
  .banner-img-part {
    width: 100%;
    opacity: 0.15;
    clip-path: none;
  }
  
  .hero-logo-section {
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .hero-logo {
    width: 100px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-buttons .btn-main,
  .hero-buttons .btn-outline-light {
    width: 100%;
    justify-content: center;
  }
  
  .hero-stats-cards {
    margin-top: 3rem;
    gap: 1rem;
  }
  
  .stat-card-hero {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .stat-card-hero .stat-icon {
    width: 50px;
    height: 50px;
  }
  
  .stat-card-hero .stat-content h3 {
    font-size: 1.5rem;
  }
  
  .about-item {
    margin-bottom: 2rem;
  }
  
  .navbar-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    margin-top: 1rem;
    padding: 1rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .section-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }
  
  .cta-stats {
    margin-top: 3rem;
  }
  
  .stat-number {
    font-size: 2rem;
    white-space: nowrap;
    overflow: visible;
  }
  
  .portfolio-content h4 {
    font-size: 1.25rem;
  }
  
  .floating-elements {
    display: none;
  }
}

@media (max-width: 576px) {
  .banner {
    min-height: 80vh;
  }
  
  .banner h1 {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
    line-height: 1.3;
  }
  
  .hero-logo {
    width: 80px;
  }
  
  .hero-stats-cards {
    gap: 0.75rem;
  }
  
  .stat-card-hero {
    padding: 1.25rem;
  }
  
  .stat-card-hero .stat-content h3 {
    font-size: 1.25rem;
  }
  
  .stat-card-hero .stat-content p {
    font-size: 0.8rem;
  }
  
  .hero-buttons .btn-main,
  .hero-buttons .btn-outline-light {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }
  
  .about-item, .cta-content {
    padding: 2rem 1.5rem;
  }
  
  .icon-block {
    padding: 1.5rem 1rem;
  }
  
  .stat-card {
    padding: 1.5rem 0.75rem;
    min-width: 100px;
    overflow: visible;
  }
  
  .portfolio-overlay {
    padding: 1.5rem;
  }
  
  .cta-features {
    gap: 0.5rem;
  }
  
  .feature-item {
    font-size: 0.9rem;
  }
}

/* ====================================
   SCROLL ANIMATIONS
   ==================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* ====================================
   LOADING STATES & MICRO INTERACTIONS
   ==================================== */
.btn-solid-border {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
}

.btn-solid-border:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

/* Smooth scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
}