/* Modern Typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&family=Barlow:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

:root {
  /* Color Palette - Modern & Professional */
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --secondary-color: #64748b;
  --accent-color: #f59e0b;
  --success-color: #10b981;
  --danger-color: #ef4444;
  --warning-color: #f59e0b;
  --info-color: #06b6d4;
  
  /* Neutral Colors */
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --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);
  
  /* Transitions */
  --transition-fast: 0.15s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-normal: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Modern Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--gray-900);
  margin-bottom: var(--spacing-md);
}

h1 { font-size: 3rem; font-weight: 700; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
  margin-bottom: var(--spacing-md);
  color: var(--gray-600);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
}

/* Modern Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.navbar-brand {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--gray-700) !important;
  padding: var(--spacing-md) var(--spacing-lg) !important;
  position: relative;
  transition: var(--transition-fast);
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
}

/* Tüm navbar çizgi efektleri kaldırıldı */
.navbar-nav .nav-link::after {
  display: none;
}

/* Navbar hover çizgi efekti kaldırıldı */
.navbar-nav .nav-link:hover::after {
  display: none;
}

/* Navbar Toggler */
.navbar-toggler {
  border: none;
  padding: 4px 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 65, 85, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-section::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 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--spacing-lg);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-2xl);
}

/* Modern Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
  min-height: 44px;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--gray-700);
  border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
  background: var(--gray-50);
  border-color: var(--gray-300);
  transform: translateY(-2px);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: var(--white);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
  min-height: 52px;
}

/* Modern Cards */
.card {
  background: var(--white);
  border: none;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition-normal);
  height: 100%;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.card:hover .card-img-top {
  transform: scale(1.05);
}

.card-body {
  padding: var(--spacing-xl);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: var(--spacing-md);
}

.card-text {
  color: var(--gray-600);
  margin-bottom: var(--spacing-lg);
}

/* Service Cards */
.service-card {
  text-align: center;
  padding: var(--spacing-2xl);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-lg);
  color: var(--white);
  font-size: 2rem;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.section-subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: var(--gray-500);
  margin-bottom: var(--spacing-2xl);
}

/* Features Section */
.features-section {
  background: var(--gray-50);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--spacing-2xl);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-right: var(--spacing-lg);
  flex-shrink: 0;
}

.feature-content h5 {
  color: var(--gray-900);
  margin-bottom: var(--spacing-sm);
}

.feature-content p {
  color: var(--gray-600);
  margin: 0;
}

/* Stats Section */
.stats-section {
  background: var(--primary-color);
  color: var(--white);
}

.stat-item {
  text-align: center;
  padding: var(--spacing-xl);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  display: block;
  margin-bottom: var(--spacing-sm);
}

.stat-label {
  font-size: 1.125rem;
  opacity: 0.9;
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 60px 0 30px;
}

.footer h5 {
  color: var(--white);
  margin-bottom: var(--spacing-lg);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: var(--spacing-sm);
}

.footer-links a {
  color: var(--gray-400);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--gray-700);
  margin-top: var(--spacing-2xl);
  padding-top: var(--spacing-xl);
  text-align: center;
  color: var(--gray-500);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  margin-right: var(--spacing-xs);
  margin-bottom: var(--spacing-xs);
}

.badge-primary { background: var(--primary-color); color: var(--white); }
.badge-success { background: var(--success-color); color: var(--white); }
.badge-info { background: var(--info-color); color: var(--white); }
.badge-warning { background: var(--warning-color); color: var(--white); }
.badge-danger { background: var(--danger-color); color: var(--white); }

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease-out;
}

.animate-fadeInDown {
  animation: fadeInDown 0.6s ease-out;
}

.animate-slideInLeft {
  animation: slideInLeft 0.6s ease-out;
}

/* Loading Spinner */
.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid var(--gray-200);
  border-top: 2px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title { font-size: 3rem; }
  .section { padding: 60px 0; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .hero-section { padding: 100px 0 60px; }
  .section { padding: 40px 0; }
  .container { padding: 0 var(--spacing-md); }
  
  .navbar-nav .nav-link {
    padding: var(--spacing-sm) var(--spacing-md) !important;
  }
  
  .service-card,
  .card-body {
    padding: var(--spacing-lg);
  }
}

@media (max-width: 576px) {
  .hero-title { font-size: 2rem; }
  .btn-lg { padding: 12px 24px; font-size: 0.875rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  :root {
    --white: #0f172a;
    --gray-50: #1e293b;
    --gray-100: #334155;
    --gray-900: #f8fafc;
  }
}

/* Page Specific Styles */
.gap-3 {
    gap: 1rem !important;
}

.hero-image {
    text-align: center;
}

.service-card ul li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
}

.feature-item {
    margin-bottom: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    display: block;
}

/* Custom responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .d-flex.gap-3 {
        gap: 1rem !important;
        justify-content: center;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }
.mt-5 { margin-top: var(--spacing-xl); }
.py-5 { padding: var(--spacing-xl) 0; }
.px-3 { padding: 0 var(--spacing-md); }
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.flex-column { flex-direction: column; }
.w-100 { width: 100%; }
.h-100 { height: 100%; }

/* ========================================
   Modern Navigation Styles
======================================== */
.modern-navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.modern-navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  padding: 0.5rem 0;
  box-shadow: var(--shadow-lg);
}

.modern-logo {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color) !important;
  text-decoration: none !important;
  display: flex;
  align-items: center;
}

.brand-text {
  color: var(--primary-color);
}

.brand-suffix {
  color: var(--accent-color);
  font-weight: 500;
  margin-left: 0.25rem;
}

.modern-logo:hover {
  transform: scale(1.05);
  transition: transform 0.2s ease;
}

.modern-logo i {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pulse 2s infinite;
}

.nav-link {
  font-weight: 500;
  color: var(--gray-700) !important;
  padding: 0.5rem 1rem !important;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color) !important;
  background: var(--gray-100);
}

/* Hover çizgi efektlerini tamamen kaldır */
.nav-link::after {
  display: none;
}

.nav-link:hover::after {
  display: none;
}

/* Aktif menü stilleri - Sadece renk, arka plan yok */
.navbar-nav .nav-link.active {
  color: var(--primary-color) !important;
  position: relative !important;
}

/* Aktif menüde hover efektini kaldır */
.navbar-nav .nav-link.active:hover {
  background: none !important;
  color: var(--primary-color) !important;
}

/* Dropdown için aktif stil - Sadece renk, çizgi yok */
.navbar-nav .dropdown-toggle.active {
  color: var(--primary-color) !important;
}

/* Dropdown toggle için modern arrow icon */
.navbar-nav .dropdown-toggle::after {
  display: inline-block !important;
  content: "";
  width: 0;
  height: 0;
  margin-left: 0.5rem;
  vertical-align: 0.15em;
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  transition: transform var(--transition-fast);
}

.navbar-nav .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

/* JavaScript ile eklenen kısa aktif çizgi stilleri */
.active-underline {
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 1px;
  z-index: 999;
}

/* Custom Toggler */
.custom-toggler {
  border: none;
  padding: 4px 8px;
  background: transparent;
  position: relative;
  width: 30px;
  height: 30px;
}

.custom-toggler span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary-color);
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.custom-toggler[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.custom-toggler[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.custom-toggler[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Modern Dropdown */
.modern-dropdown {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
  padding: 0.5rem;
  margin-top: 0.5rem;
}

.modern-dropdown .dropdown-item {
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  color: var(--gray-700);
}

.modern-dropdown .dropdown-item:hover {
  background: var(--primary-color);
  color: white;
  transform: translateX(5px);
}

/* ========================================
   Modern Hero Slider Styles
======================================== */
.modern-hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.hero-slider {
  position: relative;
  height: 100vh;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
}

.min-vh-75 {
  min-height: 75vh;
}

.hero-content {
  animation: slideInUp 1s ease-out;
}

.slide.active .hero-content {
  animation: slideInUp 1s ease-out;
}

.badge-hero {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.hero-buttons .btn {
  padding: 12px 32px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-buttons .btn::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;
}

.hero-buttons .btn:hover::before {
  left: 100%;
}

/* Floating Elements */
.hero-visual {
  position: relative;
  height: 400px;
}

.floating-elements {
  position: relative;
  width: 100%;
  height: 100%;
}

.floating-icon {
  position: absolute;
  font-size: 4rem;
  animation: float 3s ease-in-out infinite;
  opacity: 0.8;
}

.floating-icon:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: var(--delay);
}

.floating-icon:nth-child(2) {
  top: 60%;
  right: 20%;
  animation-delay: var(--delay);
}

.floating-icon:nth-child(3) {
  bottom: 20%;
  left: 30%;
  animation-delay: var(--delay);
}

.floating-icon:nth-child(4) {
  top: 10%;
  right: 30%;
  animation-delay: var(--delay);
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  pointer-events: none;
  z-index: 10;
}

.slider-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  backdrop-filter: blur(10px);
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.slider-btn:active {
  transform: scale(0.95);
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: white;
  border-color: white;
}

.dot:hover {
  border-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

/* Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .modern-hero,
  .hero-slider,
  .slide {
    min-height: 70vh;
    height: 70vh;
  }
  
  .min-vh-75 {
    min-height: 60vh;
  }
  
  .hero-content h1 {
    font-size: 2.5rem !important;
  }
  
  .hero-content .lead {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
    margin: 0 !important;
  }
  
  .floating-icon {
    font-size: 2.5rem;
  }
  
  .slider-nav {
    padding: 0 1rem;
  }
  
  .slider-btn {
    width: 40px;
    height: 40px;
  }
}

/* ========================================
   Products Page Styles
======================================== */

/* Products Header */
.products-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.products-title {
  font-family: 'Barlow', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.products-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Products Section */
.products-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

/* Product Cards */
.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.product-badge.featured {
  background: #ff6b6b;
  color: white;
}

.product-badge.free {
  background: #51cf66;
  color: white;
}

.product-category {
  margin-bottom: 1rem;
}

.product-category .badge {
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
}

.product-title {
  font-family: 'Barlow', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.product-description {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  margin-bottom: 1rem;
  font-weight: 600;
}

.price-amount {
  font-size: 1.4rem;
  color: #2563eb;
  font-weight: 700;
}

.price-free {
  color: #28a745;
  font-size: 1.1rem;
  font-weight: 600;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.product-tags .tag {
  background: #e9ecef;
  color: #495057;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

.product-actions {
  display: flex;
  gap: 0.5rem;
}

.product-actions .btn {
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Custom Software CTA */
.custom-software-cta {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  border-radius: 20px;
  padding: 3rem;
  color: white;
  text-align: center;
}

.custom-software-cta .cta-content h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.custom-software-cta .cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* No Products State */
.no-products {
  background: white;
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.no-products h3 {
  color: #6c757d;
  margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .products-title {
    font-size: 2.5rem;
  }
  
  .products-header {
    padding: 3rem 0;
  }
  
  .products-section {
    padding: 2rem 0;
  }
  
  .product-image {
    height: 200px;
  }
  
  .product-actions {
    flex-direction: column;
  }
  
  .custom-software-cta {
    padding: 2rem;
  }
  
  .custom-software-cta .cta-content h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .product-actions .btn {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
  
  .product-title {
    font-size: 1.2rem;
  }
}