/* 
   Gelişim Dijital - 2026 Redesign Stylesheet
   Created with custom tokens, modern typography, glassmorphism and responsiveness.
*/

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

:root {
  /* Colors */
  --primary: #2563eb;
  --primary-light: #60a5fa;
  --primary-dark: #1d4ed8;
  --secondary: #ec4899;
  --accent-cyan: #06b6d4;
  --accent-orange: #f97316;
  
  /* Gradients */
  --grad-primary: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  --grad-sunset: linear-gradient(135deg, #f97316 0%, #ec4899 100%);
  --grad-dark: linear-gradient(135deg, #0b132b 0%, #1c2541 100%);
  --grad-cmyk: linear-gradient(90deg, #00f2fe 0%, #ec4899 33%, #ffcc00 66%, #0b132b 100%);
  --grad-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
  
  /* Neutral Colors */
  --dark-bg: #030712;
  --dark-surface: #0f172a;
  --light-bg: #f8fafc;
  --light-surface: #ffffff;
  --text-dark: #0f172a;
  --text-light: #64748b;
  --text-white: #ffffff;
  
  /* Borders & Shadows */
  --border-glass: rgba(255, 255, 255, 0.5);
  --border-light: #e2e8f0;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.08), 0 10px 10px -5px rgba(0,0,0,0.04);
  --shadow-neon: 0 0 20px rgba(79, 172, 254, 0.3);
  
  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5rem 0;
}

.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }

.grid {
  display: grid;
  gap: 1.5rem;
}
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* CMYK Line Indicator */
.cmyk-bar {
  height: 4px;
  width: 100%;
  background: var(--grad-cmyk);
  position: relative;
  z-index: 1000;
}

/* Top Bar */
.top-bar {
  background-color: var(--dark-surface);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-info span {
  margin-right: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-info i {
  color: var(--accent-cyan);
}

.top-bar-socials {
  display: flex;
  gap: 1rem;
}

.top-bar-socials a:hover {
  color: var(--accent-cyan);
}

/* Header & Navbar */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-glass);
  transition: var(--transition);
}

header.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.95);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  transition: var(--transition);
}

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

header.scrolled .logo-img {
  height: 42px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  position: relative;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-link i {
  font-size: 0.85rem;
  opacity: 0.7;
  color: var(--primary);
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-primary);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-dark);
}

.nav-link:hover i, .nav-link.active i {
  transform: translateY(-2px);
  opacity: 1;
}

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

/* Dropdown Menu */
.nav-item-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--light-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  list-style: none;
  padding: 0.5rem 0;
  z-index: 1000;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-dark);
}

.dropdown-item i {
  color: var(--primary-light);
}

.dropdown-item:hover {
  background-color: var(--gray-light);
  color: var(--primary);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(79, 172, 254, 0.5);
}

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

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(236, 72, 153, 0.4);
}

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

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

.btn-whatsapp {
  background-color: #25d366;
  color: var(--text-white);
  font-weight: 600;
}

.btn-whatsapp:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* Hero Section with Live Background Blobs */
.hero {
  position: relative;
  background: #050814;
  color: var(--text-white);
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
  z-index: 1;
}

/* Floating colored mesh blobs behind hero content */
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}

.hero::before {
  width: 400px;
  height: 400px;
  background: #00f2fe;
  top: -5%;
  right: 15%;
  animation: float-blob-1 12s infinite alternate ease-in-out;
}

.hero::after {
  width: 500px;
  height: 500px;
  background: #ec4899;
  bottom: -10%;
  left: 10%;
  animation: float-blob-2 15s infinite alternate ease-in-out;
}

@keyframes float-blob-1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, 40px) scale(1.15); }
}

@keyframes float-blob-2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-50px, -60px) scale(1.1); }
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.05) 0%, transparent 80%);
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

/* Technology Badge styling */
.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-cyan);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0% {
    box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.4);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(6, 182, 212, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(6, 182, 212, 0);
  }
}

.hero-content h1 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Moving/Shining text gradient for title */
.hero-content h1 span {
  background: linear-gradient(120deg, #00f2fe 0%, #4facfe 30%, #ec4899 70%, #00f2fe 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine-text 5s linear infinite;
}

@keyframes shine-text {
  to {
    background-position: 200% center;
  }
}

.hero-content p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.25rem;
  max-width: 600px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Floating dynamic Slider frame for 2026 */
.hero-slider-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  height: 380px;
  animation: float-slider 6s ease-in-out infinite;
}

@keyframes float-slider {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
  display: flex;
  align-items: flex-end;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(11, 19, 43, 0.9) 0%, rgba(11, 19, 43, 0.3) 50%, transparent 100%);
  z-index: 2;
}

.slide-content {
  position: relative;
  z-index: 3;
  padding: 2rem;
  color: var(--text-white);
  width: 100%;
}

.slide-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.slide-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.slider-dots {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 10;
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--accent-cyan);
  transform: scale(1.2);
  width: 20px;
  border-radius: 5px;
}

/* Section Header */
.section-header {
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-header h2 span {
  background: var(--grad-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* Service Cards with CMYK Accents */
.service-card {
  background: var(--light-surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.05);
  border: 1.5px solid var(--border-light);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  z-index: 1;
}

/* Individual Card Variables for 2026 Premium feel */
.service-card:nth-child(1) {
  --card-accent: #00b4d8;
  --card-accent-rgb: 0, 180, 216;
  --card-grad: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
}

.service-card:nth-child(2) {
  --card-accent: #ec4899;
  --card-accent-rgb: 236, 72, 153;
  --card-grad: linear-gradient(135deg, #f857a6 0%, #ff5858 100%);
}

.service-card:nth-child(3) {
  --card-accent: #eab308;
  --card-accent-rgb: 234, 179, 8;
  --card-grad: linear-gradient(135deg, #f59e0b 0%, #f9d423 100%);
}

.service-card:nth-child(4) {
  --card-accent: #6366f1;
  --card-accent-rgb: 99, 102, 241;
  --card-grad: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
}

/* Hover Background slide-up overlay */
.service-card::after {
  content: '';
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--card-grad);
  z-index: -1;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: inherit;
}

.service-card:hover::after {
  bottom: 0;
}

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

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px -10px rgba(var(--card-accent-rgb), 0.3);
  border-color: transparent;
}

/* Icon Box styling */
.service-icon-box {
  width: 65px;
  height: 65px;
  border-radius: var(--radius-md);
  background: rgba(var(--card-accent-rgb), 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  font-size: 1.6rem;
  color: var(--card-accent);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(var(--card-accent-rgb), 0.15);
}

.service-card:hover .service-icon-box {
  background: rgba(255, 255, 255, 0.18);
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 10px 20px -5px rgba(255, 255, 255, 0.2);
}

.service-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--text-white);
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  flex-grow: 1;
  transition: color 0.3s ease;
  line-height: 1.6;
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.9);
}

.service-card .btn-link {
  font-weight: 600;
  color: var(--card-accent);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  transition: color 0.3s ease;
}

.service-card:hover .btn-link {
  color: var(--text-white);
}

.service-card .btn-link i {
  transition: transform 0.3s ease;
}

.service-card:hover .btn-link i {
  transform: translateX(5px);
}

/* Products Gallery */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  background: var(--light-surface);
  cursor: pointer;
  font-weight: 500;
  font-family: var(--font-heading);
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--grad-primary);
  color: var(--text-white);
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.product-item {
  background: var(--light-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.product-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #f1f5f9;
}

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

.product-item:hover .product-img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--grad-sunset);
  color: var(--text-white);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
}

.product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-info h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.product-info p {
  color: var(--text-light);
  font-size: 0.88rem;
  flex-grow: 1;
  margin-bottom: 1rem;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
}

.product-footer .info-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* Stats Section */
.stats {
  background: var(--grad-dark);
  color: var(--text-white);
  padding: 4rem 0;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, #ffffff, rgba(255,255,255,0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Page Header (Subpages) with mesh gradients */
.page-header {
  background: #050814;
  color: var(--text-white);
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
}

.page-header h1 {
  font-size: 2.6rem;
  margin-bottom: 0.75rem;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  list-style: none;
  font-size: 0.9rem;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  z-index: 1;
}

.breadcrumb-item a:hover {
  color: var(--accent-cyan);
}

.breadcrumb-item + .breadcrumb-item::before {
  content: '/';
  margin-right: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-item.active {
  color: var(--accent-cyan);
  font-weight: 600;
}

/* About Layout */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.about-text h2 {
  font-size: 1.85rem;
  margin-bottom: 1rem;
}

.about-text .lead {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1rem;
  color: #334155;
}

.cmyk-callout {
  border-left: 4px solid var(--accent-cyan);
  background: var(--gray-light);
  padding: 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 2rem 0;
}

.mission-vision {
  margin-top: 3rem;
}

.mission-vision h3 {
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.mission-vision h3::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--grad-sunset);
}

.mission-vision p {
  margin-bottom: 2rem;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-card {
  background: var(--light-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(79, 172, 254, 0.2);
}

.value-card h4 {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
}

.value-card h4 i {
  color: var(--accent-cyan);
}

.value-card p {
  font-size: 0.88rem;
  color: var(--text-light);
}

/* Contact Info Card & Forms */
.sidebar-box {
  background: var(--light-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.contact-form h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.contact-form p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-weight: 500;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background-color: var(--light-bg);
  transition: var(--transition);
}

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

textarea.form-control {
  resize: vertical;
}

/* Service Info Grid */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 992px) {
  .detail-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.detail-content img.service-banner {
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.detail-content h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.detail-list {
  margin-top: 2rem;
}

.detail-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.detail-item-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.detail-item-text h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.detail-item-text p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Machine Grid/Card */
.machine-card {
  background: var(--light-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.machine-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(6, 182, 212, 0.2);
}

.machine-img-wrapper {
  background: #f8fafc;
  overflow: hidden;
  aspect-ratio: 16/10;
  border-bottom: 1px solid var(--border-light);
}

.machine-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
  transition: var(--transition-slow);
}

.machine-card:hover .machine-img {
  transform: scale(1.04);
}

.machine-info {
  padding: 1.5rem;
  flex-grow: 1;
}

.machine-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.machine-info p {
  color: var(--text-light);
  font-size: 0.88rem;
}

/* Contact Cards */
.info-card {
  background: var(--light-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.info-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
  font-size: 1.25rem;
}

.info-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.info-card p {
  font-size: 0.88rem;
  color: var(--text-light);
}

.info-card a {
  color: var(--text-dark);
}

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

/* Working Hours list */
.working-hours {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.working-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  border-bottom: 1px dashed var(--border-light);
  padding-bottom: 0.5rem;
}

.working-hours-row:last-child {
  border-bottom: none;
}

/* Bank Account Boxes */
.bank-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .bank-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.bank-card {
  background: var(--light-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.bank-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--grad-primary);
}

.bank-card.tfinans::before {
  background: var(--grad-sunset);
}

.bank-name {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.bank-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.bank-branch {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.iban-box {
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  font-family: monospace;
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  word-break: break-all;
}

.iban-copy-btn {
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  padding: 0.25rem;
  font-size: 1rem;
  margin-left: 0.5rem;
}

.iban-copy-btn:hover {
  color: var(--accent-cyan);
}

/* Map Wrapper */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  height: 350px;
}

/* Footer styling */
footer {
  background: var(--grad-dark);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr;
  }
}

.footer-col h3 {
  color: var(--text-white);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  position: relative;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-cyan);
}

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}

.footer-about p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.footer-links-list {
  list-style: none;
}

.footer-links-list li {
  margin-bottom: 0.75rem;
}

.footer-links-list a {
  font-size: 0.9rem;
}

.footer-links-list a:hover {
  color: var(--accent-cyan);
  padding-left: 5px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.9rem;
}

.footer-contact-info i {
  color: var(--accent-cyan);
  margin-right: 0.75rem;
}

.footer-whatsapp-promo {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.footer-whatsapp-promo h4 {
  color: var(--text-white);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.footer-whatsapp-promo h4 i {
  color: #25d366;
}

.footer-whatsapp-promo p {
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.copyright-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Floating WhatsApp Button */
.whatsapp-floating {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 998;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-floating:hover {
  transform: scale(1.1) rotate(5deg);
  background-color: #20ba5a;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Mobile Responsive Menu Overrides */
@media (max-width: 991px) {
  .nav-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: calc(100vh - 60px);
    background: var(--light-surface);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-slow);
    z-index: 999;
    border-right: 1px solid var(--border-light);
    overflow-y: auto;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 1.5rem;
    display: none;
  }
  
  .nav-item-dropdown.active .dropdown-menu {
    display: block;
  }
  
  .top-bar-info span:not(:first-child) {
    display: none;
  }
}
