@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary-color: #1a365d; /* Navy Blue */
  --secondary-color: #f66d21; /* Orange */
  --secondary-hover: #e05e19;
  --bg-color: #f8fafc;
  --text-main: #334155;
  --text-light: #64748b;
  --white: #ffffff;
  --border-color: #e2e8f0;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-float: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.top-bar {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--text-light);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.contact-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info i {
  color: var(--secondary-color);
}

header {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  max-height: 72px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  color: var(--primary-color);
}

.nav-links a:hover {
  color: var(--secondary-color);
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 220px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  z-index: 100;
  border-radius: var(--radius-md);
  top: 100%;
  left: 0;
  padding: 0.5rem 0;
}

.dropdown-content a {
  color: var(--text-color);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-weight: 400;
  font-size: 0.95rem;
}

.dropdown-content a:hover {
  background-color: #f1f5f9;
  color: var(--secondary-color);
}

.dropdown:hover .dropdown-content {
  display: block;
}

.header-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Masaüstünde gizle, sadece mobilde göster */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Cart Icon */
.cart-trigger {
  position: relative;
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--primary-color);
  cursor: pointer;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: var(--secondary-color);
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Section */
.hero {
  padding: 0;
  position: relative;
  background-color: #f8fafc; /* Slider bitince alt taraf gri kalmasın, genel arka plana uysun */
  display: flex;
  align-items: flex-start;
  min-height: auto;
}

.hero .container,
.hero-container {
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 0; /* Aradaki boşluğu tekrar kaldırdık */
  align-items: stretch;
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 1.5rem;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-content h1 span {
  color: var(--secondary-color);
  display: block;
}

.hero-content p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
  color: var(--primary-color);
}

.hero-feature-item i {
  color: var(--secondary-color);
  font-size: 1.25rem;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  max-width: 600px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-float);
}

/* Trust Bar */
.trust-bar {
  background-color: var(--white);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.trust-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-item i {
  font-size: 2rem;
  color: var(--secondary-color);
}

.trust-item-text h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
}

.trust-item-text p {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Section Headings */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.25rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-light);
}

/* Categories */
.categories {
  padding: 0.5rem 0 3rem 0; /* Üstteki boşluğu 0.5rem'e düşürdük */
  background-color: var(--bg-color);
}

/* Section Titles with CMYK */
.section-title-wrap {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.cmyk-line {
  display: flex;
  justify-content: center;
  height: 4px;
  width: 120px;
  margin: 0 auto;
  border-radius: 2px;
  overflow: hidden;
}

.cmyk-line span { flex: 1; }
.cmyk-line .c { background-color: #00AEEF; }
.cmyk-line .m { background-color: #EC008C; }
.cmyk-line .y { background-color: #FFF200; }
.cmyk-line .k { background-color: #231F20; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03); /* Çok daha zarif bir gölge */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-color); /* Hafif çerçeve */
  position: relative;
  overflow: hidden;
}

/* Hover esnasında alt kısımdan çıkan şık CMYK şeridi */
.category-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #00AEEF 25%, #EC008C 25%, #EC008C 50%, #FFF200 50%, #FFF200 75%, #231F20 75%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: center;
}

.category-card:hover::after {
  transform: scaleX(1);
}

.category-card:hover {
  transform: translateY(-5px); /* Yukarı kalkma */
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.category-card .img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
}

.category-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0; 
  transform: scale(1.15); /* Görselleri biraz daha büyütmek için ölçeklendirdim */
  transition: transform 0.5s ease;
}

.category-card:hover .img-wrap img {
  transform: scale(1.25); /* Üzerine gelince biraz daha büyür */
}

.category-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.category-card a {
  color: #00AEEF; /* Kurumsal Cyan rengi link için */
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.3s ease, color 0.3s ease;
}

.category-card a:hover {
  gap: 0.6rem; /* Ok işareti ileriye doğru hareket eder */
  color: #008CBA;
}

/* Work Areas Section */
.work-areas {
  background-color: var(--white);
  padding: 4rem 0;
}

.work-areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.work-area-card {
  text-align: left;
}

.work-area-card .img-wrap {
  width: 100%;
  height: 240px;
  overflow: hidden;
  margin-bottom: 1.2rem;
}

.work-area-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-area-card h3 {
  font-size: 1.4rem;
  color: var(--secondary-color);
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* Calculator Wrapper */
.calculator-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 560px;
}

/* Process Section */
.process {
  padding: 5rem 0;
  background-color: var(--white);
}

.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 50px;
  right: 50px;
  height: 2px;
  background-color: var(--border-color);
  z-index: 1;
}

.process-step {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
}

.process-icon {
  width: 80px;
  height: 80px;
  background-color: var(--white);
  border: 2px solid var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.process-step h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-about p {
  color: #94a3b8;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--secondary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #94a3b8;
  font-size: 0.875rem;
}

/* Cart Sidebar (Drawer) */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cart-overlay.active {
  display: block;
  opacity: 1;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  background: var(--white);
  z-index: 1001;
  box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cart-sidebar.active {
  right: 0;
}

.cart-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  color: var(--primary-color);
  margin: 0;
}

.close-cart {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
}

.cart-body {
  padding: 1.5rem;
  flex: 1;
  overflow-y: auto;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1rem;
}

.cart-item-details h4 {
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
  color: var(--primary-color);
}

.cart-item-details p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-light);
}

.cart-item-price {
  font-weight: 600;
  color: var(--secondary-color);
  margin-top: 0.5rem;
}

.remove-item {
  color: #ef4444;
  background: none;
  border: none;
  font-size: 0.875rem;
  cursor: pointer;
  margin-top: 0.5rem;
}

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border-color);
  background: var(--bg-color);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.btn-checkout {
  width: 100%;
}

.empty-cart-msg {
  text-align: center;
  color: var(--text-light);
  margin-top: 2rem;
}

/* Checkout Modal */
.checkout-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
  width: 90%;
  max-width: 500px;
  z-index: 1002;
  display: none;
}

.checkout-modal.active {
  display: block;
}

.checkout-modal h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 0.875rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 992px) {
  .hero {
    padding: 1rem 0;
    min-height: auto;
  }
  .hero .container,
  .hero-container {
    justify-content: center;
  }

  .calculator-wrapper {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }
  .hero-image {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 1rem 0;
  }
  .process-steps {
    flex-direction: column;
    gap: 2rem;
  }
  .process-steps::before {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
}

/* WhatsApp Floating Widget */
.wa-widget-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.wa-trigger-btn {
  background-color: #25d366;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 24px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(37,211,102,0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s;
}

.wa-trigger-btn:hover {
  transform: scale(1.05);
}

.wa-popup {
  background: #fff;
  width: 320px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  overflow: hidden;
  margin-bottom: 15px;
  display: none;
  flex-direction: column;
  animation: wa-slide-up 0.3s ease;
}

.wa-popup.active {
  display: flex;
}

@keyframes wa-slide-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.wa-popup-header {
  background-color: #25d366;
  color: #fff;
  padding: 20px;
  position: relative;
}

.wa-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.8;
}

.wa-close:hover { opacity: 1; }

.wa-popup-header h3 {
  margin: 0 0 10px 0;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 2px;
}

.wa-popup-header p {
  margin: 0 0 10px 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.9);
}

.wa-email {
  color: #fbbf24;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.95rem;
}

.wa-popup-body {
  padding: 20px;
}

.wa-contact-row {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  padding: 10px;
  border-radius: 8px;
  transition: background 0.2s;
}

.wa-contact-row:hover {
  background: #f8f9fa;
}

.wa-avatar {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.wa-avatar img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.wa-status-dot {
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  background-color: #25d366;
  border: 2px solid #fff;
  border-radius: 50%;
}

.wa-contact-info {
  display: flex;
  flex-direction: column;
}

.wa-role {
  font-size: 0.8rem;
  color: #6b7280;
}

.wa-name {
  font-weight: 700;
  color: #111827;
  font-size: 1.1rem;
}

.wa-popup-footer {
  padding: 12px 20px;
  background: #f9fafb;
  font-size: 0.8rem;
  color: #6b7280;
  border-top: 1px solid #e5e7eb;
}

/* =============================================
   Dual Floating Contact Buttons (Sağ Alt)
   ============================================= */
.floating-contact-bar {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, padding-right 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  max-width: 220px;
}

.float-btn i {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.float-btn .btn-label {
  display: inline-block;
  transition: max-width 0.35s ease, opacity 0.35s ease;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
}

.float-btn:hover .btn-label {
  max-width: 200px;
  opacity: 1;
}

.float-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}

/* WhatsApp buton rengi */
.float-btn-wa {
  background: linear-gradient(135deg, #25d366, #1da851);
}

/* Tawk.to / Canlı Chat buton rengi */
.float-btn-chat {
  background: linear-gradient(135deg, #1e3a5f, #2563eb);
}

/* Pulse animasyon (dikkat çekmek için) */
@keyframes float-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.45); }
  70%  { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.float-btn-wa {
  animation: float-pulse 2.5s infinite;
}

/* Quick Menu */
.quick-menu {
  position: relative;
  z-index: 10;
  margin-top: 0.5rem; /* Negatif boşluğu kaldırıp çok hafif bir boşluk ekledik */
}

/* The single unified band */
.quick-menu-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  padding: 1.25rem 2rem; /* İç boşlukları biraz kıstık */
  border-radius: var(--radius-lg); /* Çok yuvarlak yerine daha kurumsal oval */
  /* Slider ile aynı, havada duruyormuş hissi veren derin gölge */
  box-shadow: 15px 20px 40px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);
  flex-wrap: wrap;
  gap: 1rem;
}

.quick-menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1; /* Menüleri tüm genişliğe eşit yayar */
  min-width: 100px;
  text-align: center;
  transition: all 0.2s ease;
}

.quick-menu-item:hover {
  transform: translateY(-3px); /* Daha zarif bir hover hareketi */
}

.quick-icon-wrap {
  width: 56px; /* İkonlar çok devasa durmasın, profesyonel ölçü */
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.25rem;
  /* Flat/Modern gölge (3D yerine zarif yükseklik) */
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}

/* Gerçek Matbaa CMYK Standart Renkleri (Düz, kurumsal) */
.item-cyan .quick-icon-wrap { background-color: #00AEEF; }
.item-magenta .quick-icon-wrap { background-color: #EC008C; }
.item-yellow .quick-icon-wrap { background-color: #FFF200; color: #231F20; }
.item-black .quick-icon-wrap { background-color: #231F20; }

.quick-menu-item span {
  font-size: 0.85rem;
  font-weight: 700;
  color: #334155;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Hero Slider — Next to Calculator */
.hero-slider {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 500px;
  z-index: 1;
  overflow: hidden;
  background-color: transparent;
  border-radius: var(--radius-xl);
  /* Slider'a havada duruyormuş hissi veren çok katmanlı yumuşak gölge efekti */
  box-shadow: 15px 20px 40px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.08);
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: right center; /* Resimlerin sağ kısmındaki önemli içerikleri (makine vb) gösterir */
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slider .slide.active {
  opacity: 1;
}

/* =========================================================
   MOBİL UYUMLULUK (RESPONSIVE) AYARLARI
   ========================================================= */
@media (max-width: 1100px) {
  .hero .container,
  .hero-container {
    grid-template-columns: 1fr; /* Yan yana yerine alt alta dizilim */
    gap: 2rem; /* Alt alta geçtiklerinde aralarında boşluk bırak */
  }
  
  /* Hesaplayıcı her zaman üstte kalsın, slider altına insin */
  .calculator-wrapper {
    order: -1; 
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px; /* Ekran kenarlarına sıfıra sıfır yapışmasını engeller */
  }

  .hero-slider {
    display: block;
    min-height: 350px;
    border-radius: var(--radius-xl);
    /* Mobilde gölgeyi biraz daha hafifletebiliriz */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .hero-slider .slide {
    background-position: center center;
  }

  .quick-menu-band {
    padding: 1rem;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-slider {
    min-height: 250px; /* Çok küçük telefonlarda yüksekliği kıs */
  }
}/* Quick Menu & CMYK Effects */
.quick-menu-band {
    display: flex;
    justify-content: center;
    gap: 30px;
    background: #fff;
    padding: 20px 40px;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-top: 20px;
    position: relative;
    z-index: 10;
}
.quick-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.quick-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}
.item-cyan .quick-icon-wrap { background: #00aeef; }
.item-magenta .quick-icon-wrap { background: #ec008c; }
.item-yellow .quick-icon-wrap { background: #fff200; color: #1e293b; }
.item-black .quick-icon-wrap { background: #1e293b; }

.quick-menu-item:hover { transform: translateY(-5px); }
.item-cyan:hover .quick-icon-wrap { box-shadow: 0 10px 20px rgba(0,174,239,0.3); }
.item-magenta:hover .quick-icon-wrap { box-shadow: 0 10px 20px rgba(236,0,140,0.3); }
.item-yellow:hover .quick-icon-wrap { box-shadow: 0 10px 20px rgba(255,242,0,0.3); }
.item-black:hover .quick-icon-wrap { box-shadow: 0 10px 20px rgba(30,41,59,0.3); }

/* CMYK Hover for Main Menu Links */
.nav-links a { position: relative; }
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #00aeef 0%, #ec008c 33%, #fff200 66%, #1e293b 100%);
    transition: width 0.3s ease;
    border-radius: 2px;
}
.nav-links a:hover::after { width: 100%; }

/* Mega Menu CMYK Hover override */
.mega-column a::after { display: none; }
.mega-column a:hover { color: #ec008c !important; }

/* CMYK Hover for Primary Button */
.btn-primary {
    transition: all 0.3s ease;
    background-size: 200% auto;
}
.btn-primary:hover {
    background-image: linear-gradient(to right, #00aeef 0%, #ec008c 51%, #00aeef 100%) !important;
    background-position: right center;
    border-color: transparent !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(236,0,140,0.3);
}


/* 3D Depth & Premium Appearance (Global Touch) */
.category-card,
.work-area-card,
.trust-item,
.quick-menu-band,
.hero-slider,
.calculator-wrapper {
    background-color: #ffffff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.05), /* GeniÅŸ ve yumuÅŸak alt gÃ¶lge */
        0 5px 15px rgba(0, 0, 0, 0.03),  /* Daha keskin yakÄ±n gÃ¶lge */
        inset 0 2px 5px rgba(255, 255, 255, 0.9); /* Ãœstten hafif parlama (3D kabartma hissi) */
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease !important;
}

/* Kutu Ã¼zerine gelince havaya kalkma ve derinleÅŸme (Sadece etkileÅŸimli kutular iÃ§in) */
.category-card:hover,
.work-area-card:hover,
.trust-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1), 
        0 10px 20px rgba(0, 0, 0, 0.05),
        inset 0 2px 5px rgba(255, 255, 255, 1);
    z-index: 2;
}

/* Butonlara ekstra 3D derinlik */
.btn-primary {
    box-shadow: 
        0 8px 15px rgba(236, 0, 140, 0.2), 
        inset 0 -3px 0 rgba(0, 0, 0, 0.1) !important; /* Alt kÄ±sÄ±mda hafif karartma ile buton hissi */
    border: none;
}
.btn-primary:active {
    transform: translateY(2px) !important;
    box-shadow: 
        0 3px 8px rgba(236, 0, 140, 0.3), 
        inset 0 -1px 0 rgba(0, 0, 0, 0.1) !important;
}

/* Ä°kon arka planlarÄ± iÃ§in hafif kabartma */
.quick-icon-wrap {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1), inset 0 -2px 5px rgba(0,0,0,0.2);
}


/* 3D Title Band */
.title-band {
    display: block;
    width: 100%;
    background: #ffffff;
    padding: 20px 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.12), 
        0 10px 25px rgba(0, 0, 0, 0.08),
        inset 0 2px 5px rgba(255, 255, 255, 1);
    position: relative;
    z-index: 10;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.title-band:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.15), 
        0 15px 35px rgba(0, 0, 0, 0.1),
        inset 0 2px 5px rgba(255, 255, 255, 1);
}
.title-band h2 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
    text-transform: none;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
}

