/* ========================================
   BIOSTRIM MODERN WEBSITE STYLES
   ======================================== */

/* CSS Reset ve Temel Değişkenler */
:root {
  /* Ana Renkler */
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary-color: #10b981;
  --accent-color: #f59e0b;

  /* Gri Tonları */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Metin Renkleri */
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --text-white: #ffffff;

  /* Arka Plan Renkleri */
  --bg-white: #ffffff;
  --bg-light: #f9fafb;
  --bg-dark: #1f2937;

  /* Font Ailesi */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Poppins', sans-serif;

  /* Font Boyutları */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-fast: 0.15s ease-in-out;
  --transition-base: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  /* Spacing Extended */
  --space-32: 8rem;

  /* Z-Index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal: 1040;
  --z-popover: 1050;
  --z-tooltip: 1060;
}

/* CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-white);
  overflow-x: hidden;
  min-height: 100vh;
}

/* Tipografi */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--space-4);
  color: var(--text-primary);
}

h1 {
  font-size: var(--text-4xl);
}

h2 {
  font-size: var(--text-3xl);
}

h3 {
  font-size: var(--text-2xl);
}

h4 {
  font-size: var(--text-xl);
}

h5 {
  font-size: var(--text-lg);
}

h6 {
  font-size: var(--text-base);
}

p {
  margin-bottom: var(--space-4);
  color: var(--text-secondary);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all var(--transition-fast);
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container System */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.container-fluid {
  width: 100%;
  padding: 0 var(--space-4);
}

/* Grid System */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(-1 * var(--space-3));
}

.col,
.col-auto,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  padding: 0 var(--space-3);
  margin-bottom: var(--space-6);
}

.col {
  flex: 1;
}

.col-auto {
  flex: 0 0 auto;
}

.col-1 {
  flex: 0 0 8.333333%;
}

.col-2 {
  flex: 0 0 16.666667%;
}

.col-3 {
  flex: 0 0 25%;
}

.col-4 {
  flex: 0 0 33.333333%;
}

.col-5 {
  flex: 0 0 41.666667%;
}

.col-6 {
  flex: 0 0 50%;
}

.col-7 {
  flex: 0 0 58.333333%;
}

.col-8 {
  flex: 0 0 66.666667%;
}

.col-9 {
  flex: 0 0 75%;
}

.col-10 {
  flex: 0 0 83.333333%;
}

.col-11 {
  flex: 0 0 91.666667%;
}

.col-12 {
  flex: 0 0 100%;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-around {
  justify-content: space-around;
}

.align-items-center {
  align-items: center;
}

.align-items-start {
  align-items: flex-start;
}

.align-items-end {
  align-items: flex-end;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: var(--space-1) !important;
}

.mb-2 {
  margin-bottom: var(--space-2) !important;
}

.mb-3 {
  margin-bottom: var(--space-3) !important;
}

.mb-4 {
  margin-bottom: var(--space-4) !important;
}

.mb-5 {
  margin-bottom: var(--space-5) !important;
}

.mb-6 {
  margin-bottom: var(--space-6) !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: var(--space-1) !important;
}

.mt-2 {
  margin-top: var(--space-2) !important;
}

.mt-3 {
  margin-top: var(--space-3) !important;
}

.mt-4 {
  margin-top: var(--space-4) !important;
}

.mt-5 {
  margin-top: var(--space-5) !important;
}

.mt-6 {
  margin-top: var(--space-6) !important;
}

.py-5 {
  padding: var(--space-20) 0;
}

.py-4 {
  padding: var(--space-16) 0;
}

.py-3 {
  padding: var(--space-12) 0;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 500;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  line-height: 1.5;
  min-height: 44px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--text-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--text-white);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--text-white);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-lg);
  min-height: 52px;
}

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  min-height: 36px;
}

/* Form Elements */
.form-control {
  width: 100%;
  padding: var(--space-3);
  font-size: var(--text-base);
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-md);
  background-color: var(--bg-white);
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group {
  margin-bottom: var(--space-5);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-2);
  font-weight: 500;
  color: var(--text-primary);
}

/* Section Styles */
.section {
  padding: var(--space-20) 0;
}

.section-title {
  font-size: var(--text-3xl);
  text-align: center;
  margin-bottom: var(--space-4);
  color: var(--text-primary);
}

.section-desc {
  font-size: var(--text-lg);
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: var(--space-12);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-up {
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.8s ease-out;
}

.slide-up.visible {
  transform: translateY(0);
  opacity: 1;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
  :root {
    --text-4xl: 2rem;
    --text-3xl: 1.5rem;
    --text-2xl: 1.25rem;
  }

  .container {
    padding: 0 var(--space-4);
  }

  h1 {
    font-size: var(--text-3xl);
  }

  h2 {
    font-size: var(--text-2xl);
  }

  h3 {
    font-size: var(--text-xl);
  }

  .section {
    padding: var(--space-12) 0;
  }

  /* Mobile Grid */
  .col-md-6,
  .col-md-4,
  .col-md-3,
  .col-md-8 {
    flex: 0 0 100%;
  }

  .row {
    margin: 0 calc(-1 * var(--space-2));
  }

  .col,
  .col-auto,
  .col-1,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-10,
  .col-11,
  .col-12,
  .col-md-6,
  .col-md-4,
  .col-md-3,
  .col-md-8 {
    padding: 0 var(--space-2);
    margin-bottom: var(--space-4);
  }
}

@media (min-width: 769px) {
  .col-md-1 {
    flex: 0 0 8.333333%;
  }

  .col-md-2 {
    flex: 0 0 16.666667%;
  }

  .col-md-3 {
    flex: 0 0 25%;
  }

  .col-md-4 {
    flex: 0 0 33.333333%;
  }

  .col-md-5 {
    flex: 0 0 41.666667%;
  }

  .col-md-6 {
    flex: 0 0 50%;
  }

  .col-md-7 {
    flex: 0 0 58.333333%;
  }

  .col-md-8 {
    flex: 0 0 66.666667%;
  }

  .col-md-9 {
    flex: 0 0 75%;
  }

  .col-md-10 {
    flex: 0 0 83.333333%;
  }

  .col-md-11 {
    flex: 0 0 91.666667%;
  }

  .col-md-12 {
    flex: 0 0 100%;
  }
}

@media (min-width: 1024px) {
  .col-lg-1 {
    flex: 0 0 8.333333%;
  }

  .col-lg-2 {
    flex: 0 0 16.666667%;
  }

  .col-lg-3 {
    flex: 0 0 25%;
  }

  .col-lg-4 {
    flex: 0 0 33.333333%;
  }

  .col-lg-5 {
    flex: 0 0 41.666667%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
  }

  .col-lg-7 {
    flex: 0 0 58.333333%;
  }

  .col-lg-8 {
    flex: 0 0 66.666667%;
  }

  .col-lg-9 {
    flex: 0 0 75%;
  }

  .col-lg-10 {
    flex: 0 0 83.333333%;
  }

  .col-lg-11 {
    flex: 0 0 91.666667%;
  }

  .col-lg-12 {
    flex: 0 0 100%;
  }
}

/* ========================================
   HEADER & NAVIGATION STYLES
   ======================================== */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  z-index: var(--z-fixed);
  transition: all var(--transition-base);
}

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

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4);
  min-height: 70px;
}

/* Logo */
.logo {
  flex-shrink: 0;
}

.logo a {
  display: block;
  line-height: 1;
}

.logo img {
  height: 40px;
  width: auto;
  transition: all var(--transition-base);
}

.logo:hover img {
  transform: scale(1.05);
}

/* Navigation Menu */
.menu {
  position: relative;
  display: flex;
  align-items: center;
}

.menu nav {
  display: flex;
}

.menu nav>ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.menu nav>ul>li {
  position: relative;
  margin: 0 var(--space-2);
}

.menu nav>ul>li>a {
  display: block;
  padding: var(--space-3) var(--space-4);
  color: var(--text-primary);
  font-weight: 500;
  font-size: var(--text-base);
  transition: all var(--transition-fast);
  border-radius: var(--radius-md);
}

.menu nav>ul>li>a:hover {
  color: var(--primary-color);
  background-color: var(--gray-50);
}

/* Dropdown Menu */
.menu nav>ul>li.more {
  position: relative;
}

.menu nav>ul>li.more>ul {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--space-2);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-base);
  z-index: var(--z-dropdown);
  list-style: none;
  margin: 0;
  border: 1px solid var(--gray-200);
}

.menu nav>ul>li.more:hover>ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu nav>ul>li.more>ul .h {
  display: none;
  /* Desktop'ta header gizli */
}

.menu nav>ul>li.more>ul>li {
  margin: 0;
}

.menu nav>ul>li.more>ul>li>a {
  display: block;
  padding: var(--space-3);
  color: var(--text-secondary);
  font-size: var(--text-sm);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.menu nav>ul>li.more>ul>li>a:hover {
  color: var(--primary-color);
  background-color: var(--gray-50);
}

/* Mobile Navigation */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: var(--text-2xl);
  color: var(--text-primary);
  cursor: pointer;
  padding: var(--space-2);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.mobile-nav-toggle:hover {
  background-color: var(--gray-100);
}

.close-nav-btn {
  display: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  header .container {
    min-height: 60px;
    padding: var(--space-3) var(--space-4);
  }

  .logo img {
    height: 32px;
  }

  .mobile-nav-toggle {
    display: block;
  }

  header.active .menu {
    right: 0;
  }

  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-base);
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    z-index: var(--z-modal);
  }

  .close-nav-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: var(--space-4);
    background-color: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    font-size: var(--text-xl);
    color: var(--text-primary);
    background: none;
    border: none;
    cursor: pointer;
  }

  .menu nav {
    flex: 1;
    padding: var(--space-4);
  }

  .menu nav>ul {
    flex-direction: column;
    align-items: stretch;
  }

  .menu nav>ul>li {
    margin: 0;
    border-bottom: 1px solid var(--gray-100);
  }

  .menu nav>ul>li:last-child {
    border-bottom: none;
  }

  .menu nav>ul>li>a {
    padding: var(--space-4);
    border-radius: 0;
    font-size: var(--text-lg);
  }

  /* Mobile Dropdown */
  .menu nav>ul>li.more>ul {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background-color: var(--gray-50);
    margin-top: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-base);
  }

  .menu nav>ul>li.more.active>ul {
    max-height: 300px;
    padding: var(--space-2) 0;
  }

  .menu nav>ul>li.more>ul .h {
    display: flex;
    align-items: center;
    padding: var(--space-3) var(--space-4);
    background-color: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: var(--space-2);
  }

  .menu nav>ul>li.more>ul .h button {
    background: none;
    border: none;
    font-size: var(--text-lg);
    color: var(--text-primary);
    cursor: pointer;
    margin-right: var(--space-3);
  }

  .menu nav>ul>li.more>ul .h strong {
    font-weight: 600;
    color: var(--text-primary);
  }

  .menu nav>ul>li.more>ul>li>a {
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-base);
  }

  /* Background Layers (if needed for mobile animation) */
  .bg-layers {
    display: none;
  }
}

/* Mobile Overlay */
@media (max-width: 768px) {
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: calc(var(--z-modal) - 1);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
  }

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

/* Body scroll lock when mobile menu is open */
body.menu-open {
  overflow: hidden;
}

/* Add top padding to body to account for fixed header */
body {
  padding-top: 70px;
}

@media (max-width: 768px) {
  body {
    padding-top: 60px;
  }
}

/* ========================================
   FOOTER STYLES - MODERN DESIGN
   ======================================== */

/* Newsletter Section */
.newsletter-bg {
  background: linear-gradient(to bottom right, #667eea, #2d5fdf, #1c51d9);
  padding: var(--space-24) 0;
  position: relative;
  overflow: hidden;
  animation: fadeIn 1s ease-out;
}

.newsletter-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.newsletter-bg::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 2;
  animation: float 8s ease-in-out infinite;
}

.newsletter {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-12);
  z-index: 3;
  animation: slideInUp 1s ease-out 0.3s both;
}

.newsletter .title {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: var(--space-4);
  font-family: var(--font-heading);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.newsletter .description {
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.newsletter form {
  display: flex;
  gap: var(--space-4);
  min-width: 400px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  padding: var(--space-3);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-smooth);
}

.newsletter form:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.newsletter .input-baykus {
  flex: 1;
  background-color: transparent;
  border: none;
  color: var(--text-white);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  border-radius: var(--radius-full);
  outline: none;
}

.newsletter .input-baykus::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter .input-baykus:focus {
  background-color: rgba(255, 255, 255, 0.1);
}

.newsletter .button-baykus {
  background: linear-gradient(135deg, var(--accent-color), #e58e0a);
  color: var(--text-white);
  font-weight: 700;
  white-space: nowrap;
  padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.newsletter .button-baykus::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 var(--transition-smooth);
}

.newsletter .button-baykus:hover {
  background: linear-gradient(135deg, #e58e0a, #f59e0b);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.newsletter .button-baykus:hover::before {
  left: 100%;
}

/* Responsive Newsletter */
@media (max-width: 768px) {
  .newsletter-bg {
    padding: var(--space-16) 0;
  }

  .newsletter {
    flex-direction: column;
    text-align: center;
    gap: var(--space-8);
  }

  .newsletter .title {
    font-size: var(--text-3xl);
  }

  .newsletter .description {
    font-size: var(--text-lg);
  }

  .newsletter form {
    min-width: auto;
    width: 100%;
    max-width: 400px;
    flex-direction: column;
    gap: var(--space-3);
  }

  .newsletter .input-baykus {
    text-align: center;
  }
}

/* Footer */
footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  z-index: 2;
}

footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 1;
}

footer .container {
  padding-top: var(--space-20);
  padding-bottom: var(--space-10);
  position: relative;
  z-index: 3;
}

footer .description {
  margin-bottom: var(--space-10);
  padding: var(--space-8);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-smooth);
}

footer .description:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

footer .description p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-lg);
  line-height: 1.8;
  margin-bottom: var(--space-6);
}

footer .contact {
  margin-bottom: var(--space-6);
  padding: var(--space-4);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-smooth);
}

footer .contact:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(102, 126, 234, 0.3);
  transform: translateY(-2px);
}

footer .contact div:first-child {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

footer .contact div:last-child {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-white);
}

footer .contact div:last-child a {
  color: var(--text-white);
  transition: all var(--transition-smooth);
  text-decoration: none;
}

footer .contact div:last-child a:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: scale(1.05);
}

footer .menu {
  padding: var(--space-6);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-smooth);
  height: 100%;
}

footer .menu:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(102, 126, 234, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

footer .menu .title {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: var(--space-6);
  font-family: var(--font-heading);
  position: relative;
  padding-bottom: var(--space-3);
}

footer .menu .title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  border-radius: var(--radius-full);
}

footer .menu .link-2 {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-base);
  padding: var(--space-3) var(--space-4);
  margin-bottom: var(--space-2);
  transition: all var(--transition-smooth);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

footer .menu .link-2::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
  transition: left var(--transition-smooth);
}

footer .menu .link-2:hover {
  color: var(--text-white);
  background: rgba(102, 126, 234, 0.1);
  transform: translateX(8px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

footer .menu .link-2:hover::before {
  left: 100%;
}

footer .desct {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-base);
  line-height: 1.8;
  margin-bottom: var(--space-6);
}

footer .desct b {
  background: linear-gradient(135deg, var(--accent-color), #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

footer .button-baykus.two {
  background: rgba(245, 158, 11, 0.1);
  backdrop-filter: blur(20px);
  color: var(--accent-color);
  border: 2px solid rgba(245, 158, 11, 0.3);
  font-weight: 700;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  transition: all var(--transition-smooth);
  text-decoration: none;
  display: inline-block;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
}

footer .button-baykus.two::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.1), transparent);
  transition: left var(--transition-smooth);
}

footer .button-baykus.two:hover {
  background: linear-gradient(135deg, var(--accent-color), #e58e0a);
  color: var(--text-white);
  border-color: var(--accent-color);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.4);
}

footer .button-baykus.two:hover::before {
  left: 100%;
}

/* Copyright */
.copyright {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-8) 0;
  margin-top: var(--space-12);
  position: relative;
}

.copyright::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.5), transparent);
}

.copyright .text {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-base);
  margin-bottom: 0;
  font-weight: 500;
}

.copyright .text b {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.copyright .policy {
  text-align: right;
}

.copyright .policy .link-3 {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-base);
  margin-left: var(--space-6);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-lg);
  transition: all var(--transition-smooth);
  position: relative;
}

.copyright .policy .link-3:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Responsive Footer */
@media (max-width: 768px) {
  footer .container {
    padding-top: var(--space-16);
    padding-bottom: var(--space-8);
  }

  footer .description {
    margin-bottom: var(--space-8);
    padding: var(--space-6);
  }

  footer .description p {
    font-size: var(--text-base);
  }

  footer .contact {
    margin-bottom: var(--space-4);
    padding: var(--space-3);
  }

  footer .contact div:last-child {
    font-size: var(--text-lg);
  }

  footer .menu {
    padding: var(--space-4);
    margin-bottom: var(--space-6);
  }

  footer .menu .title {
    font-size: var(--text-lg);
    margin-bottom: var(--space-4);
  }

  footer .menu .desct {
    font-size: var(--text-sm);
    margin-bottom: var(--space-4);
  }

  footer .button-baykus.two {
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-base);
  }

  .copyright {
    padding: var(--space-6) 0;
  }

  .copyright .text {
    font-size: var(--text-sm);
    margin-bottom: var(--space-2);
    text-align: center;
  }

  .copyright .policy {
    text-align: center;
  }

  .copyright .policy .link-3 {
    margin-left: var(--space-2);
    margin-right: var(--space-2);
    font-size: var(--text-sm);
  }

  footer .container {
    padding-top: var(--space-16);
    padding-bottom: var(--space-8);
  }
  
  footer .description {
    margin-bottom: var(--space-8);
    padding: var(--space-6);
  }
  
  footer .description p {
    font-size: var(--text-base);
  }
  
  footer .contact {
    padding: var(--space-3);
    margin-bottom: var(--space-4);
  }
  
  footer .contact div:last-child {
    font-size: var(--text-lg);
  }
  
  footer .menu {
    padding: var(--space-4);
    margin-bottom: var(--space-4);
  }

  footer .menu .title {
    font-size: var(--text-lg);
    margin-bottom: var(--space-4);
  }
  
  footer .menu .link-2 {
    font-size: var(--text-sm);
    padding: var(--space-2) var(--space-3);
  }
  
  footer .desct {
    font-size: var(--text-sm);
    margin-bottom: var(--space-4);
  }
  
  footer .button-baykus.two {
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-sm);
  }

  .copyright .row {
    flex-direction: column;
    gap: var(--space-4);
  }

  .copyright .policy {
    text-align: center;
  }

  .copyright .policy .link-3 {
    margin: 0 var(--space-3);
    font-size: var(--text-sm);
  }
  
  .copyright .text {
    font-size: var(--text-sm);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .newsletter-bg {
    padding: var(--space-12) 0;
  }
  
  .newsletter .title {
    font-size: var(--text-2xl);
  }
  
  .newsletter .description {
    font-size: var(--text-base);
    padding: 0 var(--space-4);
  }
  
  .newsletter form {
    max-width: 300px;
    padding: var(--space-3);
  }
  
  footer .description {
    padding: var(--space-4);
  }
  
  footer .menu {
    padding: var(--space-3);
  }
  
  footer .menu .title {
    font-size: var(--text-base);
  }
  
  footer .button-baykus.two {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
  }
  
  .copyright .policy .link-3 {
    display: block;
    margin: var(--space-2) 0;
  }
}

/* ========================================
   WHATSAPP FIXED BUTTON
   ======================================== */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  z-index: var(--z-fixed);
  transition: all var(--transition-base);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
  color: white;
}

.whatsapp-float i {
  animation: bounce 1s ease-in-out infinite alternate;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: all var(--transition-base);
}

.whatsapp-float:hover::before {
  opacity: 0.3;
  transform: scale(1.2);
}

/* WhatsApp Tooltip */
.whatsapp-float::after {
  content: 'WhatsApp ile İletişim';
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--gray-800);
  color: white;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  font-family: var(--font-primary);
  box-shadow: var(--shadow-lg);
}

.whatsapp-float:hover::after {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

/* Animations */
@keyframes pulse {
  0% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  }

  50% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5), 0 0 0 15px rgba(37, 211, 102, 0.1);
  }

  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  }
}

@keyframes bounce {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(-3px);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .whatsapp-float::after {
    display: none;
    /* Mobilde tooltip gizle */
  }
}


/* ========================================
   HOME PAGE STYLES
   ======================================== */

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--bg-white) 50%, var(--gray-50) 100%);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232563eb' fill-opacity='0.05'%3E%3Ccircle cx='9' cy='9' r='2'/%3E%3Ccircle cx='49' cy='29' r='1'/%3E%3Ccircle cx='29' cy='49' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  animation: particleFloat 20s ease-in-out infinite;
}

.hero-gradient {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: gradientPulse 8s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  width: 100%;
}

.hero-text {
  animation-delay: 0.2s;
}

.hero-subtitle {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-4);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-6);
  color: var(--text-primary);
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-8);
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.hero-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-btn:hover::before {
  left: 100%;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.hero-visual {
  position: relative;
  animation-delay: 0.4s;
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.floating-element {
  position: absolute;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}

.floating-element i {
  font-size: 24px;
  color: white;
}

.floating-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-2 {
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.floating-3 {
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

.hero-main-visual {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto;
}

.visual-circle {
  width: 100%;
  height: 100%;
  border: 3px solid var(--primary-color);
  border-radius: 50%;
  position: relative;
  animation: rotate 20s linear infinite;
}

.visual-circle::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 50%;
}

.visual-dots {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--primary-color) 2px, transparent 2px);
  background-size: 20px 20px;
  border-radius: 50%;
  opacity: 0.6;
  animation: pulse 4s ease-in-out infinite;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  transition: all var(--transition-base);
}

.scroll-text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-2);
  font-weight: 500;
}

.scroll-arrow {
  animation: bounce 2s infinite;
}

.scroll-arrow i {
  font-size: var(--text-2xl);
  color: var(--primary-color);
}

/* Parallax Gallery Section */
.parallax-gallery {
  position: relative;
  background: var(--bg-light);
}


.parallax-panel {
  position: relative;
  height: 50vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 700px;
  margin: 0 auto;
  padding: var(--space-8);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
  transition: all var(--transition-slow);
}

.parallax-content:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 65px rgba(0, 0, 0, 0.15);
}

.parallax-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: var(--space-5);
  color: white;
  font-family: var(--font-heading);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.parallax-description{
  font-size: var(--text-lg);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-6);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.parallax-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  margin-top: var(--space-6);
}

.stat-block {
  text-align: center;
}

.stat-block .stat-number {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: var(--space-1);
  font-family: var(--font-heading);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

/* Mobile Parallax Fallback */
@media (max-width: 768px) {
  .parallax-panel {
    background-attachment: scroll !important;
    min-height: 500px;
    height: auto;
    padding: var(--space-12) 0;
  }

  .parallax-content {
    margin: var(--space-4);
    padding: var(--space-6);
  }

  .parallax-title {
    font-size: var(--text-2xl);
  }

  .parallax-stats {
    flex-direction: column;
    gap: var(--space-4);
  }

}

/* Services Section */
.services-section {
  background: var(--bg-light);
}

.section-header {
  margin-bottom: var(--space-16);
}

.section-subtitle {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-3);
}

.services-grid {
  margin-top: var(--space-12);
}

.service-card {
  background: var(--bg-white);
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
  height: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 0.5rem;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.05), transparent);
  transition: left 0.5s;
}

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

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

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  transition: all var(--transition-base);
}

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

.service-icon i {
  font-size: 32px;
  color: white;
}

.service-title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--text-primary);
}

.service-description {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--primary-color);
  font-weight: 600;
  transition: all var(--transition-fast);
}

.service-link:hover {
  color: var(--primary-dark);
  gap: var(--space-3);
}

/* About Section */
.about-content {
  animation-delay: 0.2s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-text {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: var(--space-2);
  font-family: var(--font-heading);
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-visual {
  position: relative;
  animation-delay: 0.4s;
}

.about-image {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: all var(--transition-slow);
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-badge {
  position: absolute;
  bottom: var(--space-6);
  left: var(--space-6);
  background: var(--bg-white);
  padding: var(--space-4);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  box-shadow: var(--shadow-lg);
}

.about-badge i {
  font-size: var(--text-xl);
  color: var(--accent-color);
}

.about-badge span {
  font-weight: 600;
  color: var(--text-primary);
}

/* Testimonials Section */
.testimonials-section {
  background: var(--bg-white);
}

.testimonials-grid {
  margin-top: var(--space-12);
}

.testimonial-card {
  background: var(--bg-light);
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
  height: 100%;
  margin: 0.5rem;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  background: var(--bg-white);
}

.testimonial-content {
  margin-bottom: var(--space-6);
}

.testimonial-quote {
  color: var(--primary-color);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
}

.testimonial-text {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.author-title {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* CTA Section */
.cta-section {
  position: relative;
  padding: var(--space-24) 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.cta-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  animation: particleFloat 10s ease-in-out infinite reverse;
}

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

.cta-title {
  font-size: var(--text-4xl);
  font-weight: 800;
  margin-bottom: var(--space-6);
  color: white;
}

.cta-description {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn-outline {
  border-color: white;
  color: white;
  background: transparent;
}

.cta-section .btn-outline:hover {
  background: white;
  color: var(--primary-color);
}

/* Animations */
@keyframes particleFloat {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(0px) rotate(5deg);
  }
}

@keyframes gradientPulse {

  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.1;
  }

  50% {
    transform: scale(1.1) rotate(180deg);
    opacity: 0.2;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  33% {
    transform: translateY(-20px) rotate(120deg);
  }

  66% {
    transform: translateY(-10px) rotate(240deg);
  }
}

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

  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

/* Responsive Home Page */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    text-align: center;
  }

  .hero-title {
    font-size: var(--text-3xl);
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-main-visual {
    width: 300px;
    height: 300px;
  }

  .floating-element {
    width: 50px;
    height: 50px;
  }

  .floating-element i {
    font-size: 20px;
  }

  .parallax-title {
    font-size: var(--text-2xl);
  }

  .parallax-text {
    margin: var(--space-4);
    padding: var(--space-6);
  }

  .cta-title {
    font-size: var(--text-3xl);
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ========================================
   PAGE HERO SECTIONS - UNIFIED DESIGN
   ======================================== */

/* Base Page Hero Styles */
.page-hero {
  padding: var(--space-32) 0;
  color: var(--text-white);
  position: relative;
  overflow: hidden;
  animation: fadeIn 1s ease-out;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.page-hero .container {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.page-hero-content {
  animation: slideInLeft 1s ease-out 0.3s both;
}

.page-hero-content small {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
  transition: all var(--transition-smooth);
}

.page-hero-content h1 {
  font-size: var(--text-5xl);
  color: var(--text-white);
  margin-bottom: var(--space-6);
  line-height: 1.2;
  font-weight: 800;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-hero-content p {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: var(--space-5);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-hero-image {
  position: relative;
  animation: slideInRight 1s ease-out 0.5s both;
}

.page-hero-image img {
  width: 100%;
  border-radius: var(--radius-3xl);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  border: 4px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: transform var(--transition-smooth);
}

.page-hero-image:hover img {
  transform: scale(1.02) rotate(1deg);
}

/* About Page - Blue Theme */
.page-hero.about-theme {
  background: linear-gradient(to bottom right, #667eea, #2d5fdf, #1c51d9);
}

.page-hero.about-theme::after {
  animation-duration: 8s;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
}

.page-hero.about-theme .page-hero-content small {
  background: rgba(102, 126, 234, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Contact Page - Primary Theme */
.page-hero.contact-theme {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.page-hero.contact-theme::before {
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  animation: particleFloat 20s ease-in-out infinite;
  opacity: 0.3;
}

.page-hero.contact-theme .page-hero-content small {
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Products Page - Green Theme */
.page-hero.products-theme {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #059669 100%);
}

.page-hero.products-theme::after {
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
  animation-duration: 10s;
}

.page-hero.products-theme .page-hero-content small {
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Contact Badge (Only for Contact Page) */
.contact-badge {
  position: absolute;
  bottom: var(--space-6);
  right: var(--space-6);
  background: var(--bg-white);
  padding: var(--space-5);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  animation: pulse 2s infinite;
  color: var(--text-primary);
}

.contact-badge i {
  font-size: var(--text-2xl);
  color: var(--primary-color);
}

.contact-badge span {
  font-weight: 700;
  font-size: var(--text-sm);
  line-height: 1.3;
}

/* Responsive Page Hero */
@media (max-width: 768px) {
  .page-hero {
    padding: var(--space-20) 0;
    min-height: 60vh;
  }

  .page-hero .container {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    text-align: center;
  }

  .page-hero-content h1 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-4);
  }

  .page-hero-content p {
    font-size: var(--text-base);
    margin-bottom: var(--space-4);
  }

  .page-hero::after {
    width: 300px;
    height: 300px;
  }

  .contact-badge {
    position: static;
    margin-top: var(--space-4);
    align-self: center;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding: var(--space-16) 0;
  }

  .page-hero-content h1 {
    font-size: var(--text-3xl);
  }
}

/* Mission & Vision */
.about-mission {
  padding: var(--space-24) 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}

.about-mission::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e2e8f0' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.mission-item {
  text-align: center;
  padding: var(--space-10);
  border-radius: var(--radius-3xl);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all var(--transition-smooth);
  height: 100%;
  position: relative;
  overflow: hidden;
  margin: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.mission-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-smooth);
}

.mission-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(102, 126, 234, 0.3);
}

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

.mission-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-8);
  position: relative;
  box-shadow: 0 15px 30px rgba(102, 126, 234, 0.3);
  transition: all var(--transition-smooth);
}

.mission-icon::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.mission-item:hover .mission-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
}

.mission-item:hover .mission-icon::before {
  opacity: 1;
}

.mission-icon i {
  font-size: 40px;
  color: var(--text-white);
  transition: transform var(--transition-smooth);
}

.mission-item:hover .mission-icon i {
  transform: scale(1.1);
}

.mission-item h3 {
  font-size: var(--text-2xl);
  color: var(--text-primary);
  margin-bottom: var(--space-6);
  font-weight: 700;
  background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mission-item p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0;
  font-size: var(--text-base);
  transition: color var(--transition-smooth);
}

.mission-item:hover p {
  color: var(--text-primary);
}

/* Why Choose Us */
.about-why {
  padding: var(--space-24) 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
}

.about-why::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 20%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 30% 80%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
}

.why-list {
  margin-top: var(--space-12);
  position: relative;
  z-index: 2;
}

.why-item {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 100%;
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
}

.why-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-smooth);
}

.why-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(102, 126, 234, 0.2);
}

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

.why-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  position: relative;
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.25);
  transition: all var(--transition-smooth);
}

.why-icon::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.why-item:hover .why-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.35);
}

.why-item:hover .why-icon::after {
  opacity: 1;
}

.why-icon i {
  font-size: 32px;
  color: var(--text-white);
  transition: transform var(--transition-smooth);
}

.why-item:hover .why-icon i {
  transform: scale(1.1);
}

.why-item h4 {
  font-size: var(--text-xl);
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  font-weight: 700;
  transition: color var(--transition-smooth);
}

.why-item:hover h4 {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-item p {
  color: var(--text-secondary);
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: 0;
  transition: color var(--transition-smooth);
}

.why-item:hover p {
  color: var(--text-primary);
}

/* Values */
.about-values {
  padding: var(--space-24) 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.about-values::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.about-values::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 2;
  animation: float 8s ease-in-out infinite reverse;
}

.about-values .container {
  position: relative;
  z-index: 3;
}

.about-values h2 {
  color: var(--text-white);
  text-align: center;
  margin-bottom: var(--space-4);
}

.about-values .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.value-item {
  text-align: center;
  padding: var(--space-8);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-2xl);
  transition: all var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.value-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), #e58e0a, #f59e0b);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-smooth);
}

.value-item:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

.value-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--accent-color), #e58e0a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  position: relative;
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
  transition: all var(--transition-smooth);
}

.value-icon::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, var(--accent-color), #e58e0a, #f59e0b);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.value-item:hover .value-icon {
  transform: scale(1.1) rotate(-10deg);
  box-shadow: 0 15px 35px rgba(245, 158, 11, 0.4);
}

.value-item:hover .value-icon::after {
  opacity: 1;
}

.value-icon i {
  font-size: 36px;
  color: var(--text-white);
  transition: transform var(--transition-smooth);
}

.value-item:hover .value-icon i {
  transform: scale(1.1);
}

.value-item h4 {
  font-size: var(--text-xl);
  color: var(--text-white);
  margin-bottom: var(--space-4);
  font-weight: 700;
}

.value-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: 0;
  transition: color var(--transition-smooth);
}

.value-item:hover p {
  color: var(--text-white);
}

/* Team Section */
.about-team {
  padding: var(--space-24) 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}

.about-team::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23cbd5e1' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.team-info {
  padding: var(--space-8);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-2xl);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 2;
  transition: all var(--transition-smooth);
}

.team-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-info h3 {
  color: var(--text-primary);
  margin-bottom: var(--space-5);
  font-weight: 700;
  background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.team-info p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-4);
  font-size: var(--text-base);
}

.team-skills {
  padding: var(--space-8);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-2xl);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 2;
  transition: all var(--transition-smooth);
}

.team-skills:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-skills h3 {
  color: var(--text-primary);
  margin-bottom: var(--space-5);
  font-weight: 700;
  background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.skill-item {
  margin-bottom: var(--space-5);
}

.skill-name {
  display: block;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
  font-size: var(--text-base);
}

.skill-bar {
  height: 8px;
  background: rgba(203, 213, 225, 0.3);
  border-radius: var(--radius-full);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.skill-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  border-radius: var(--radius-full);
  width: 95%;
  animation: skillProgress 2s ease-out;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

@keyframes skillProgress {
  from {
    width: 0;
    opacity: 0;
  }

  to {
    width: 95%;
    opacity: 1;
  }
}

/* Process Section */
.about-process {
  padding: var(--space-24) 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
}

.about-process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-10);
  margin-top: var(--space-12);
  position: relative;
  z-index: 2;
}

.process-step {
  text-align: center;
  position: relative;
  padding: var(--space-8);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all var(--transition-smooth);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.process-step::before {
  content: '';
  position: absolute;
  top: 80px;
  right: -50px;
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  z-index: 1;
  border-radius: var(--radius-full);
}

.process-step:last-child::before {
  display: none;
}

.process-step:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(102, 126, 234, 0.2);
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-white);
  font-size: var(--text-xl);
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
  transition: all var(--transition-smooth);
}

.step-number::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.process-step:hover .step-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.process-step:hover .step-number::after {
  opacity: 1;
}

.step-content h4 {
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  font-weight: 700;
  font-size: var(--text-xl);
  transition: color var(--transition-smooth);
}

.process-step:hover .step-content h4 {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-content p {
  color: var(--text-secondary);
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: 0;
  transition: color var(--transition-smooth);
}

.process-step:hover .step-content p {
  color: var(--text-primary);
}

/* Responsive About Page */
@media (max-width: 768px) {
  .mission-item {
    padding: var(--space-8);
  }

  .mission-icon {
    width: 80px;
    height: 80px;
  }

  .mission-icon i {
    font-size: 32px;
  }

  .why-item {
    padding: var(--space-6);
  }

  .why-icon {
    width: 70px;
    height: 70px;
  }

  .why-icon i {
    font-size: 28px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .value-item {
    padding: var(--space-6);
  }

  .value-icon {
    width: 80px;
    height: 80px;
  }

  .value-icon i {
    font-size: 32px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .process-step::before {
    display: none;
  }

  .process-step {
    padding: var(--space-6);
  }

  .step-number {
    width: 70px;
    height: 70px;
  }

  .team-info,
  .team-skills {
    padding: var(--space-6);
  }
}

@media (max-width: 480px) {
  .mission-item,
  .why-item,
  .value-item,
  .process-step {
    padding: var(--space-4);
  }

  .mission-icon,
  .why-icon,
  .value-icon {
    width: 60px;
    height: 60px;
  }

  .mission-icon i,
  .why-icon i,
  .value-icon i {
    font-size: 24px;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: var(--text-lg);
  }
}

/* ========================================
   PRODUCTS PAGE STYLES
   ======================================== */

.products-section {
  padding: var(--space-24) 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}

.products-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e2e8f0' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: var(--space-10);
  margin-top: var(--space-12);
  position: relative;
  z-index: 2;
}

.product-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-3xl);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  animation: fadeInUp 0.6s ease-out;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-smooth);
}

.product-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(102, 126, 234, 0.15);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(102, 126, 234, 0.3);
}

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

.product-image {
  position: relative;
  height: 220px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M20 20c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10-10-4.477-10-10z'/%3E%3C/g%3E%3C/svg%3E") repeat;
  opacity: 0.3;
}

.product-image::after {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
  transition: all var(--transition-smooth);
}

.product-card:hover .product-image::after {
  opacity: 1;
  transform: scale(1.1);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  transition: transform var(--transition-smooth);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-icon {
  font-size: 56px;
  color: var(--text-white);
  position: relative;
  z-index: 2;
  transition: all var(--transition-smooth);
}

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

.product-content {
  padding: var(--space-8);
}

.product-category {
  display: inline-block;
  background: rgba(102, 126, 234, 0.1);
  color: var(--primary-color);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-5);
  border: 1px solid rgba(102, 126, 234, 0.2);
  backdrop-filter: blur(10px);
  transition: all var(--transition-smooth);
}

.product-card:hover .product-category {
  background: var(--primary-color);
  color: var(--text-white);
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.product-card h3 {
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: 1.3;
  transition: color var(--transition-smooth);
}

.product-card:hover h3 {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-card p {
  color: var(--text-secondary);
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: var(--space-6);
  transition: color var(--transition-smooth);
}

.product-card:hover p {
  color: var(--text-primary);
}

.product-features {
  list-style: none;
  margin: 0 0 var(--space-8) 0;
  padding: 0;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--text-secondary);
  font-size: var(--text-sm);
  margin-bottom: var(--space-3);
  transition: all var(--transition-smooth);
  padding: var(--space-1) 0;
}

.product-features li:before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--secondary-color), #10b981);
  color: var(--text-white);
  font-weight: bold;
  font-size: var(--text-xs);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-smooth);
}

.product-card:hover .product-features li {
  color: var(--text-primary);
  transform: translateX(5px);
}

.product-card:hover .product-features li:before {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  transform: scale(1.1) rotate(360deg);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: var(--space-6);
  position: relative;
}

.product-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.product-card:hover .product-footer::before {
  opacity: 1;
}

.product-price {
  font-size: var(--text-xl);
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-price .currency {
  font-size: var(--text-base);
  font-weight: 600;
}

.product-price .price-label {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(37, 99, 235, 0.1);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-lg);
  display: inline-block;
}

.product-cta {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-white);
  border: none;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.product-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 var(--transition-smooth);
}

.product-cta:hover {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: var(--text-white);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

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

/* Product Tabs */
.product-tabs {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: var(--space-24) 0;
  position: relative;
}

.product-tabs::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
}

.tab-nav {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-16);
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.tab-nav button {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(102, 126, 234, 0.1);
  color: var(--text-secondary);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  font-size: var(--text-base);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.tab-nav button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left var(--transition-smooth);
}

.tab-nav button.active,
.tab-nav button:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-color: var(--primary-color);
  color: var(--text-white);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.tab-nav button:hover::before {
  left: 100%;
}

.tab-content {
  display: none;
  position: relative;
  z-index: 2;
}

.tab-content.active {
  display: block;
  animation: fadeInUp 0.6s ease-out;
}

/* CTA Section */
.products-cta {
  padding: var(--space-24) 0;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #059669 100%);
  color: var(--text-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.products-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.products-cta::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 2;
  animation: float 10s ease-in-out infinite;
}

.products-cta .container {
  position: relative;
  z-index: 3;
}

.products-cta h2 {
  color: var(--text-white);
  margin-bottom: var(--space-6);
  font-size: var(--text-4xl);
  font-weight: 800;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.products-cta p {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.products-cta .btn {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  color: var(--text-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: var(--space-4) var(--space-10);
  font-size: var(--text-lg);
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.products-cta .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 var(--transition-smooth);
}

.products-cta .btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--text-white);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

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

/* Responsive Products Page */
@media (max-width: 768px) {
  .products-hero {
    padding: var(--space-20) 0;
  }

  .products-hero h1 {
    font-size: var(--text-4xl);
  }

  .products-hero p {
    font-size: var(--text-lg);
    padding: 0 var(--space-4);
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    padding: 0 var(--space-4);
  }

  .product-card {
    margin: 0 auto;
    max-width: 400px;
  }

  .product-image {
    height: 180px;
  }

  .product-icon {
    font-size: 48px;
  }

  .product-content {
    padding: var(--space-6);
  }

  .product-card h3 {
    font-size: var(--text-xl);
  }

  .product-footer {
    flex-direction: column;
    gap: var(--space-4);
    align-items: stretch;
  }

  .product-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .tab-nav {
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    padding: 0 var(--space-4);
  }

  .tab-nav button {
    width: 100%;
    max-width: 280px;
    padding: var(--space-3) var(--space-6);
  }

  .products-cta h2 {
    font-size: var(--text-3xl);
  }

  .products-cta p {
    font-size: var(--text-base);
    padding: 0 var(--space-4);
  }
}

@media (max-width: 480px) {
  .products-hero {
    padding: var(--space-16) 0;
  }

  .products-hero h1 {
    font-size: var(--text-3xl);
  }

  .products-hero p {
    font-size: var(--text-base);
  }

  .product-image {
    height: 160px;
  }

  .product-icon {
    font-size: 40px;
  }

  .product-content {
    padding: var(--space-4);
  }

  .product-card h3 {
    font-size: var(--text-lg);
  }

  .product-features li {
    font-size: var(--text-xs);
  }

  .product-price {
    font-size: var(--text-base);
  }

  .product-cta {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
  }

  .tab-nav button {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
  }

  .products-cta h2 {
    font-size: var(--text-2xl);
  }

  .products-cta .btn {
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-base);
  }
}

/* Responsive Products */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-footer {
    flex-direction: column;
    gap: var(--space-3);
    align-items: stretch;
  }

  .product-cta {
    text-align: center;
    justify-content: center;
  }

  .tab-nav {
    flex-direction: column;
    align-items: center;
  }
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

/* Contact Info Cards */
.contact-info {
  padding: var(--space-20) 0;
  background: var(--bg-light);
}

.contact-item {
  background: var(--bg-white);
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: var(--space-6);
}

.contact-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.05), transparent);
  transition: left 0.5s;
}

.contact-item:hover::before {
  left: 100%;
}

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

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  transition: all var(--transition-base);
}

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

.contact-icon i {
  font-size: 32px;
  color: white;
}

.contact-item h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--text-primary);
}

.contact-item p {
  color: var(--text-secondary);
  font-size: var(--text-base);
  margin-bottom: 0;
}

.contact-item a {
  color: var(--primary-color);
  font-weight: 600;
  transition: all var(--transition-fast);
}

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

/* Responsive Contact Info */
@media (max-width: 768px) {
  .contact-info {
    padding: var(--space-16) 0;
  }

  .contact-item {
    padding: var(--space-6);
    margin-bottom: var(--space-4);
  }

  .contact-icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--space-4);
  }

  .contact-icon i {
    font-size: 24px;
  }

  .contact-item h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-3);
  }

  .contact-item p {
    font-size: var(--text-sm);
  }
}

/* Contact Form */
.contact-form-section {
  padding: var(--space-24) 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
  position: relative;
}

.contact-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23667eea' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}

.contact-form-wrapper {
  text-align: center;
  margin-bottom: var(--space-12);
  position: relative;
  z-index: 2;
}

.contact-form-wrapper h2 {
  font-size: var(--text-4xl);
  font-weight: 800;
  margin-bottom: var(--space-6);
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-form-wrapper>p {
  font-size: var(--text-xl);
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.contact-form {
  background: var(--bg-white);
  padding: var(--space-12);
  border-bottom-left-radius: var(--radius-3xl);
  border-bottom-right-radius: var(--radius-3xl);
  border: 1px solid var(--gray-200);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(20px);
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  border-radius: var(--radius-3xl) var(--radius-3xl) 0 0;
}

.contact-form .form-group {
  margin-bottom: var(--space-6);
  text-align: left;
}

.contact-form label {
  display: block;
  margin-bottom: var(--space-3);
  font-weight: 700;
  color: var(--text-primary);
  font-size: var(--text-base);
  position: relative;
}

.contact-form label::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: width var(--transition-base);
}

.contact-form .form-group:focus-within label::after {
  width: 100%;
}

.contact-form .form-control {
  width: 100%;
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-base);
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-xl);
  background-color: var(--bg-white);
  transition: all var(--transition-base);
  font-family: var(--font-primary);
  position: relative;
}

.contact-form .form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
  transform: translateY(-2px);
  background-color: var(--gray-50);
}
.contact-form select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: var(--space-12);
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.contact-form .btn {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: var(--space-5) var(--space-10);
  border: none;
  border-radius: var(--radius-full);
  font-size: var(--text-lg);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
  min-width: 200px;
}

.contact-form .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;
}

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

.contact-form .btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.4);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.contact-form .btn i {
  margin-right: var(--space-2);
  transition: transform var(--transition-base);
}

.contact-form .btn:hover i {
  transform: translateX(4px);
}

/* Responsive Contact Form */
@media (max-width: 768px) {
  .contact-form-section {
    padding: var(--space-16) 0;
  }

  .contact-form-wrapper h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-4);
  }

  .contact-form-wrapper>p {
    font-size: var(--text-lg);
    margin-bottom: var(--space-6);
  }

  .contact-form {
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    margin: 0 var(--space-4);
  }

  .contact-form .form-group {
    margin-bottom: var(--space-5);
  }

  .contact-form .form-control {
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-base);
  }

  .contact-form .btn {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
    min-width: auto;
    width: 100%;
  }
}

/* Work Process */
.work-process {
  padding: var(--space-24) 0;
  background: var(--bg-light);
}

.work-process .process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.work-process .process-step {
  position: relative;
  background: var(--bg-white);
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
}

.work-process .process-step::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -20px;
  width: 40px;
  height: 2px;
  background: var(--primary-color);
  transform: translateY(-50%);
  z-index: 1;
}

.work-process .process-step:last-child::before {
  display: none;
}

.work-process .process-step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.work-process .step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  font-size: var(--text-xl);
  font-weight: 800;
  color: white;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.work-process .step-content h4 {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--text-primary);
}

.work-process .step-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

/* FAQ Section */
.contact-faq {
  padding: var(--space-24) 0;
  background: var(--bg-white);
}

.faq-item {
  background: var(--bg-light);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-6);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  transform: scaleY(0);
  transition: transform var(--transition-base);
}

.faq-item:hover::before {
  transform: scaleY(1);
}

.faq-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-lg);
  background: var(--bg-white);
}

.faq-item h4 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--text-primary);
  position: relative;
  padding-left: var(--space-8);
}

.faq-item h4::before {
  content: '?';
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 800;
  color: white;
}

.faq-item p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
  padding-left: var(--space-8);
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Contact Page */
@media (max-width: 768px) {
  .contact-form {
    padding: var(--space-6);
    margin: var(--space-4);
  }

  .work-process .process-steps {
    grid-template-columns: 1fr;
  }

  .work-process .process-step::before {
    display: none;
  }
}

/* ========================================
   GLOBAL ANIMATIONS & KEYFRAMES
   ======================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

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

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

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Intersection Observer Animation Classes */
.fade-in-observer {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-observer.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-up-observer {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-up-observer.visible {
  opacity: 1;
  transform: translateY(0);
}

.scale-in-observer {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in-observer.visible {
  opacity: 1;
  transform: scale(1);
}


/* Safari & Apple cihazlar için iletişim formu select kutusu düzeltmesi */
.contact-form select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: var(--bg-white);
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  font-size: var(--text-base);
  color: var(--text-primary);
  transition: all var(--transition-fast);
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-4) center;
  background-size: 1.5em;
}
.contact-form select.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
@supports (-webkit-touch-callout: none) {
  .contact-form select.form-control {
    padding-right: 2.5em;
  }
}