/* CSS Variables for Theme */
:root {
  --primary-color: #056271;
  --secondary-color: #0eb189;
  --bg-color: #ffffff;
  --text-color: #333333;
  --text-light: #666666;
  --border-color: #e0e0e0;
  --card-bg: #ffffff;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
  --navbar-bg: #ffffff;
}

[data-theme="dark"] {
  --bg-color: #1a1a1a;
  --text-color: #ffffff;
  --text-light: #cccccc;
  --border-color: #333333;
  --card-bg: #2a2a2a;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.4);
  --navbar-bg: #2a2a2a;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
  transition: all 0.3s ease;
}

/* Özel imleç stilleri */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  background: rgba(14,177,137,0.85);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: background 0.2s, transform 0.08s;
  box-shadow: 0 2px 8px rgba(5,98,113,0.18);
  border: 2px solid #056271;
  mix-blend-mode: multiply;
}
.custom-cursor.active {
  background: #056271;
  transform: translate(-50%, -50%) scale(1.3);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background: var(--navbar-bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-logo i {
  margin-right: 10px;
  font-size: 1.8rem;
}

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

.nav-item {
  position: relative;
  margin: 0 15px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  padding: 10px 0;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

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

.nav-link i {
  margin-left: 5px;
  font-size: 0.8rem;
}

/* Dropdown Menu */
.dropdown-menu:not(.mega-menu) {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  background: var(--navbar-bg) !important;
  min-width: 200px !important;
  box-shadow: var(--shadow) !important;
  border-radius: 8px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(-10px) !important;
  transition: all 0.3s ease !important;
  list-style: none !important;
  padding: 10px 0 !important;
  border: 1px solid var(--border-color) !important;
}
.dropdown:hover > .dropdown-menu:not(.mega-menu) {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

/* Mega Menü (Hizmetlerimiz başlığı altı) */
.dropdown-menu.mega-menu {
  position: fixed;
  top: 70px;       /* Navbar yüksekliği kadar boşluk */
  left: 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  padding: 40px 60px;
  z-index: 2000;
  box-sizing: border-box;

  /* GRID ayarları */
  display: grid !important;
  grid-template-columns: repeat(4, minmax(275px, 1fr));
  gap: 40px;
  overflow-x: auto;

  /* Başlangıçta gizli */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}
/* Hover’da açılacak */
.nav-item.dropdown:hover > .dropdown-menu.mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.dropdown-menu a:hover {
  background: var(--primary-color);
  color: white;
}

/* Mega Menu */
/* Mega Menu (override default .dropdown-menu) */
.nav-item.dropdown:hover .mega-menu {
  display: grid;               /* show as grid on hover */
}

/* Each box */
.dropdown-group {
  background: var(--card-bg);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 15px;
  display: flex;
  flex-direction: column;
}
.dropdown-group h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: var(--primary-color);
}
.dropdown-group ul {
  list-style: none;
}
.dropdown-group ul li + li {
  margin-top: 8px;
}


.dropdown-group ul li a {
  color: #333;
  text-decoration: none;
  font-size: 0.97rem;
  transition: color 0.2s;
}

.dropdown-group ul li a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 1400px) {
  .mega-menu {
    grid-template-columns: repeat(4, minmax(220px, 1fr));
  }
}
@media (max-width: 1200px) {
  .mega-menu {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    padding: 30px 10px;
  }
}
@media (max-width: 800px) {
  .dropdown-group ul {
    list-style-type: disc;
    margin-left: 20px;
  }
  .mega-menu {
    scroll-behavior: smooth;
  }
  .story-image img {
    display: none !important;
  }
  .story-text {
    text-align: center;
    padding: 15px 10px;
  }
  .story-text h2 {
    font-size: 1.6rem;
  }
  .story-text p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}


/* Navigation Controls */
.nav-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

.theme-toggle {
  background: none;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle:hover {
  background: var(--primary-color);
  color: white;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-color);
  margin: 3px 0;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Page Header */
.page-header {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  text-align: center;
}

.page-header-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-header-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
  opacity: 1;
}

.breadcrumb span {
  opacity: 0.6;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--bg-color) 0%, rgba(5, 98, 113, 0.05) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.highlight {
  color: var(--secondary-color);
}

.hero-text p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

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

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

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 300px;
}

.tech-item {
  width: 80px;
  height: 80px;
  background: var(--card-bg);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-color);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.tech-item:nth-child(even) {
  animation-delay: -1.5s;
}

.tech-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  color: var(--secondary-color);
}

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

/* Services Preview */
.services-preview {
  padding: 80px 0;
  background: var(--bg-color);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-color);
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.services-grid-detail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.services-grid-1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.services-grid-index {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(315px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.service-card {
  background: var(--card-bg);
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid var(--border-color);
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.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 20px;
  font-size: 2rem;
  color: white;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-color);
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: var(--secondary-color);
  gap: 12px;
}

.services-cta {
  text-align: center;
}

/* Service Features List */
.service-features {
  list-style: none;
  margin: 20px 0;
  text-align: left;
}

.service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.service-features i {
  color: var(--secondary-color);
  margin-right: 10px;
  font-size: 0.8rem;
}

/* Category Tabs */
.services-categories {
  margin-top: 40px;
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 20px;
  border: 2px solid var(--border-color);
  background: var(--card-bg);
  color: var(--text-color);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Service Detail Styles */
.service-detail {
  padding: 80px 0;
  background: var(--bg-color);
}

.service-layout {
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.service-intro {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-bottom: 50px;
  padding: 40px;
  background: #f5f5f5;
  border-radius: 15px;
  border: #0db189 1px solid;
  box-shadow: var(--shadow);
}

.service-icon-large {
  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;
  font-size: 3rem;
  color: white;
  flex-shrink: 0;
}

.service-intro-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-color);
}

.service-intro-text p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 1.1rem;
}

.service-features-detail {
  margin-bottom: 50px;
}

.service-features-detail h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--text-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.feature-card {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-color);
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.6;
}

.service-process {
  margin-bottom: 50px;
  align-items: center;
  justify-content: center;
}

.service-process h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--text-color);
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
  
}

.timeline-item {
  display: flex;
  gap: 25px;
  
}

.timeline-number {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  flex-shrink: 0;
}

.timeline-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-color);
}

.timeline-content p {
  color: var(--text-light);
  line-height: 1.6;
}

.service-benefits h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--text-color);
}

.benefits-list {
  list-style: none;
  display: grid;
  gap: 15px;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--card-bg);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.benefits-list i {
  color: var(--secondary-color);
  font-size: 1.2rem;
}

.benefits-list span {
  color: var(--text-color);
  font-weight: 500;
}

/* Service Sidebar */
.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.service-info-card,
.related-services,
.contact-card {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.service-info-card h3,
.related-services h3,
.contact-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-color);
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

.info-item:last-child {
  border-bottom: none;
  margin-bottom: 25px;
}

.info-item strong {
  color: var(--text-color);
  font-weight: 600;
}

.info-item span {
  color: var(--text-light);
}

.related-services ul {
  list-style: none;
}

.related-services li {
  margin-bottom: 12px;
}

.related-services a {
  color: var(--text-color);
  text-decoration: none;
  padding: 8px 0;
  display: block;
  transition: color 0.3s ease;
}

.related-services a:hover {
  color: var(--primary-color);
}

.contact-card {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  text-align: center;
}

.contact-card h3 {
  color: white;
}

.contact-card p {
  opacity: 0.9;
  margin-bottom: 20px;
}

.contact-card .btn {
  background: white;
  color: var(--primary-color);
}

.contact-card .btn:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* Why Choose Us */
.why-choose-us {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(5, 98, 113, 0.05) 0%, rgba(14, 177, 137, 0.05) 100%);
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: white;
}

.feature-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-color);
}

.feature-item p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Company Story */
.company-story {
  padding: 80px 0;
  background: var(--bg-color);
}

.story-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--text-color);
}

.story-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.8;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: var(--card-bg);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stat-label {
  color: var(--text-light);
  font-weight: 500;
}

.story-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.story-image {
  width: 500px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

/* Mission Vision Values */
.mission-vision {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(5, 98, 113, 0.05) 0%, rgba(14, 177, 137, 0.05) 100%);
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.mvv-item {
  background: var(--card-bg);
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
}

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

.mvv-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 20px;
  font-size: 2rem;
  color: white;
}

.mvv-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-color);
}

.mvv-item p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: 80px 0;
  background: var(--bg-color);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.team-member {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.member-photo {
  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 20px;
  font-size: 2.5rem;
  color: white;
}

.member-info h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-color);
}

.member-title {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 15px;
}

.member-desc {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.member-social a {
  width: 35px;
  height: 35px;
  background: var(--border-color);
  color: var(--text-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.member-social a:hover {
  background: var(--primary-color);
  color: white;
}

/* Certifications */
.certifications {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(5, 98, 113, 0.05) 0%, rgba(14, 177, 137, 0.05) 100%);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.cert-item {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
}

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

.cert-icon {
  width: 70px;
  height: 70px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: white;
}

.cert-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-color);
}

.cert-item p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Process Section */
.process-section {
  padding: 80px 0;
  background: var(--bg-color);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.process-step {
  text-align: center;
  padding: 30px 20px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

.step-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-color);
}

.step-content p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Services Overview */
.services-overview {
  padding: 80px 0;
  background: var(--bg-color);
}

/* Blog Section */
.blog-section {
  padding: 80px 0;
  background: var(--bg-color);
}

.blog-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.blog-grid {
  display: grid;
  gap: 40px;
}

.blog-post {
  background: var(--card-bg);
  border-radius: 15px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.blog-post.featured {
  grid-column: 1 / -1;
}

.blog-post.featured .post-content {
  padding: 40px;
}

.blog-post.featured h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.post-image {
  height: 200px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
  font-size: 3rem;
}

.blog-post.featured .post-image {
  height: 300px;
  font-size: 4rem;
}

.post-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.post-content {
  padding: 30px;
}

.post-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.post-content h2,
.post-content h3 {
  margin-bottom: 15px;
}

.post-content h2 a,
.post-content h3 a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-content h2 a:hover,
.post-content h3 a:hover {
  color: var(--primary-color);
}

.post-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.read-more {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: var(--secondary-color);
  gap: 12px;
}

/* Blog Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widget {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.sidebar-widget h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-color);
}

.search-box {
  display: flex;
  gap: 10px;
}

.search-box input {
  flex: 1;
  padding: 12px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  background: var(--bg-color);
  color: var(--text-color);
  transition: border-color 0.3s ease;
}

.search-box input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.search-box button {
  padding: 12px 15px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.search-box button:hover {
  background: var(--secondary-color);
}

.category-list {
  list-style: none;
}

.category-list li {
  margin-bottom: 10px;
}

.category-list a {
  color: var(--text-color);
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.category-list a:hover {
  color: var(--primary-color);
}

.category-list span {
  background: var(--border-color);
  color: var(--text-light);
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.8rem;
}

.recent-posts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.recent-post {
  display: flex;
  gap: 15px;
  align-items: center;
}

.recent-post-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.recent-post-content h4 {
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.recent-post-content h4 a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.recent-post-content h4 a:hover {
  color: var(--primary-color);
}

.recent-post-date {
  font-size: 0.8rem;
  color: var(--text-light);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: var(--border-color);
  color: var(--text-color);
  padding: 5px 12px;
  border-radius: 15px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.tag:hover {
  background: var(--primary-color);
  color: white;
}

.newsletter-widget {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
}

.newsletter-widget h3 {
  color: white;
}

.newsletter-widget p {
  opacity: 0.9;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.newsletter-form input {
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  place-content: rgba(255, 255, 255, 0.7);
}

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

.newsletter-form input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.3);
}

.newsletter-form .btn {
  background: white;
  color: var(--primary-color);
}

.newsletter-form .btn:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.page-btn {
  padding: 10px 15px;
  background: var(--card-bg);
  color: var(--text-color);
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.page-btn:hover,
.page-btn.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: var(--bg-color);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-color);
}

.contact-info > p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--card-bg);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.contact-icon {
  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;
  color: white;
  font-size: 1.5rem;
}

.contact-details h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-color);
}

.contact-details p {
  color: var(--text-light);
}

.contact-form {
  background: var(--card-bg);
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.contact-form h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--text-color);
}

.form-group {
  margin-bottom: 20px;
}

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  background: var(--bg-color);
  color: var(--text-color);
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Map Section */
.map-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(5, 98, 113, 0.05) 0%, rgba(14, 177, 137, 0.05) 100%);
}

.map-container {
  margin-top: 40px;
}

.map-placeholder {
  height: 400px;
  background: var(--card-bg);
  border-radius: 15px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
  border: 2px dashed var(--border-color);
}

.map-placeholder i {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.map-placeholder h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-color);
}

.map-placeholder p {
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.6;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: var(--bg-color);
}

.faq-grid {
  display: grid;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card-bg);
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-hover);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(5, 98, 113, 0.05);
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color);
  margin: 0;
}

.faq-question i {
  color: var(--primary-color);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 30px 25px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: var(--primary-color);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

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

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

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

/* Footer */
.footer {
  background: var(--card-bg);
  padding: 60px 0 20px;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: bold;
}

.footer-logo i {
  margin-right: 10px;
  font-size: 1.8rem;
}

.footer-section p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-section h3 {
  color: var(--text-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

.contact-info p {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: var(--text-light);
}

.contact-info i {
  margin-right: 10px;
  color: var(--primary-color);
  width: 20px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  color: var(--text-light);
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.scroll-to-top:hover {
  background: var(--secondary-color);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Notification Styles */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 20px;
  border-radius: 8px;
  color: white;
  font-weight: 500;
  z-index: 10000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.notification.success {
  background: var(--secondary-color);
}

.notification.error {
  background: #e74c3c;
}

.notification.show {
  transform: translateX(0);
}

/* Seçili metin için özel arka plan ve yazı rengi */
::selection {
  background: rgba(10, 177, 137, 0.8);
  color: #fff;
}

/* Firefox için */
::-moz-selection {
  background: rgba(10, 177, 137, 0.8);
  color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--navbar-bg);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--shadow);
    padding: 20px 0;
    height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 10px 0;
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0;
    margin-top: 10px;
  }

  .nav-menu li {
    list-style-type: disc;
    margin-left: 50px;
    align-items: center;
  }

  .dropdown-menu a {
    padding: 8px 20px;
    font-size: 0.9rem;
    list-style-type: disc;
    margin-left: 20px;
    text-align: left;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .page-header-content h1 {
    font-size: 2.5rem;
  }

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

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-grid-detail {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .story-content {
    grid-template-columns: 1fr;
    text-align: center;
    align-items: flex-start;
    gap: 30px;
    padding: 0 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    overflow: hidden;
  }

  .story-visual {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .story-image {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    order: -1;
    margin-bottom: 20px;
    display: block;
  }

  .story-text {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    text-align: left;
    overflow-wrap: anywhere;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
  }

  .story-image img {
    display: none !important;
    max-width: 100%;
    height: auto;
  }

  .story-text {
    text-align: left;
    padding: 0 10px;
    width: 100%;
    min-width: 0;
  }

  .story-text h2 {
    font-size: 1.9rem;
    margin-bottom: 12px;
  }

  .story-text p {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 12px;
  }

  .story-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stat-item {
    padding: 14px;
    border-radius: 10px;
    background: var(--card-bg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-info h2,
  .contact-info p,
  .contact-item {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    justify-content: center !important;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .footer-logo i {
    margin-right: 10px;
  }

  .mvv-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .cert-grid {
    grid-template-columns: 1fr;
  }

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

  .blog-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .service-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-intro {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .service-icon-large {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
  }

  .service-intro-text h2 {
    font-size: 1.8rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    gap: 20px;
  }

  .timeline-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .timeline-number {
    align-self: center;
  }

  .benefits-list {
    gap: 10px;
  }

  .benefits-list li {
    padding: 12px;
  }

  .service-info-card,
  .related-services,
  .contact-card {
    padding: 25px 20px;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .category-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .tab-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .page-header {
    padding: 85px 0 45px;
  }

  .page-header-content h1 {
    font-size: 1.75rem;
  }

  .page-header-content p {
    font-size: 1rem;
  }

  .story-text h2 {
    font-size: 1.6rem;
  }

  .story-text p {
    font-size: 0.9rem;
  }

  .story-stats {
    grid-template-columns: 1fr;
  }

  .story-stats .stat-item {
    margin-bottom: 10px;
  }

  .mvv-grid,
  .team-grid,
  .cert-grid,
  .process-steps,
  .blog-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .service-card {
    padding: 30px 20px;
  }

  .tech-item {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .service-intro {
    padding: 25px 15px;
  }

  .service-intro-text h2 {
    font-size: 1.5rem;
  }

  .service-features-detail h3,
  .service-process h3,
  .service-benefits h3 {
    font-size: 1.5rem;
  }

  .feature-card {
    padding: 25px 20px;
  }

  .feature-card i {
    font-size: 2rem;
  }

  .timeline-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .timeline-content h4 {
    font-size: 1.1rem;
  }
}

/* Loading Animation */
body:not(.loaded) * {
  animation-play-state: paused !important;
}

.loaded .hero-text {
  animation: slideInLeft 0.8s ease-out;
}

.loaded .hero-visual {
  animation: slideInRight 0.8s ease-out 0.2s both;
}

@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);
  }
}

/* Keyboard Navigation */
.keyboard-navigation *:focus {
  outline: 2px solid var(--secondary-color) !important;
  outline-offset: 2px;
}

.keyboard-navigation .nav-link:focus,
.keyboard-navigation .btn:focus,
.keyboard-navigation .theme-toggle:focus {
  box-shadow: 0 0 0 3px rgba(14, 177, 137, 0.3);
}

.custom-context-menu {
  position: fixed;
  z-index: 99999;
  min-width: 220px;
  background: linear-gradient(135deg, #056271 80%, #0eb189 100%);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(5,98,113,0.18);
  padding: 10px 0;
  display: none;
  border: 1.5px solid #0eb189;
  user-select: none;
  animation: contextMenuFadeIn 0.18s cubic-bezier(.22,1,.36,1);
}
.custom-context-menu.active {
  display: block;
}
@keyframes contextMenuFadeIn {
  from { opacity: 0; transform: scale(0.95);}
  to   { opacity: 1; transform: scale(1);}
}
.custom-context-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.custom-context-menu li {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.custom-context-menu li:last-child {
  border-bottom: none;
}
.custom-context-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 22px;
  color: #fff;
  text-decoration: none;
  font-size: 1.08rem;
  transition: background 0.18s, color 0.18s;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.custom-context-menu a i {
  font-size: 1.2em;
  color: #0eb189;
  background: #fff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s;
}
.custom-context-menu a:hover {
  background: rgba(14,177,137,0.18);
  color: #fff;
}
.custom-context-menu a:hover i {
  background: #0eb189;
  color: #fff;
}

.mwidth {
  max-width: 50px;
}

.iletisim_link {
  text-decoration: none;
  color: #555;
}

.iletisim_link:hover {
  color: #0db189;
  transition: 0.4s;
}