/* GENEL STİLLER */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fixed Favicon Styles */
.fixed-favicon {
  position: fixed;
  top: 120px; /* Raised further up */
  left: 20px;
  z-index: 999;
  background: white;
  width: 100px; /* Increased from 80px */
  height: 100px; /* Increased from 80px */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  padding: 8px; /* Slightly increased padding */
}

.fixed-favicon:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.fixed-favicon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .fixed-favicon {
    top: 150px; /* Lowered further down */
    left: 15px;
    width: 70px;
    height: 70px;
  }
  
  .fixed-favicon img {
    width: 100%;
    height: 100%;
  }
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: linear-gradient(135deg, #001248, #0056b3);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #FF6B35, #F7931E);
  border-radius: 10px;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #F7931E, #FF6B35);
  transform: scale(1.1);
}

/* Firefox için */
html {
  scrollbar-width: thin;
  scrollbar-color: #FF6B35 #001248;
  /* Yatay kaydırmayı engelle */
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

body {
  font-family: 'Inter', 'Roboto', 'Segoe UI', 'Helvetica Neue', 'Arial', sans-serif;
  line-height: 1.7;
  color: #2c3e50;
  background: #f8f9fa;
  font-weight: 400;
  letter-spacing: 0.3px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* NAVBAR */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  height: 100px;
  transition: all 0.3s ease;
  /* opacity: 0; // Bu satır kaldırıldı */
  animation: fadeInNav 0.8s ease-out 0.2s forwards;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.mobile-menu-btn span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  position: absolute; /* Mutlak konumlandırma için */
  transform-origin: center;
}

nav.scrolled .mobile-menu-btn span {
    background-color: #333;
}

.mobile-menu-btn span:nth-child(1) { transform: translateY(-10px); }
.mobile-menu-btn span:nth-child(3) { transform: translateY(10px); }

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0.2, 0.2);
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

/* Attention effect */
.mobile-menu-btn.attention {
  animation: attentionPulse 1.5s infinite;
}

@keyframes attentionPulse {
  0% { 
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7), 
                0 5px 20px rgba(255, 107, 53, 0.4);
  }
  70% { 
    box-shadow: 0 0 0 15px rgba(255, 107, 53, 0), 
                0 8px 30px rgba(255, 107, 53, 0.6);
  }
  100% { 
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0), 
                0 5px 20px rgba(255, 107, 53, 0.4);
  }
}

@keyframes bounce {
  from { transform: translate(-50%, 0); }
  to { transform: translate(-50%, -5px); }
}

/* Navbar'ın yumuşak bir şekilde belirmesi için animasyon */
@keyframes fadeInNav {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Navigation Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.nav-links li a:hover {
  color: #FFD700;
  transform: translateY(-2px);
}

.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #FFD700;
  transition: width 0.3s ease;
  box-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.nav-links li a:hover::after {
  width: 100%;
}

/* Active link style */
.nav-links li a.active {
  color: #FFD700;
  font-weight: 600;
}

.nav-links li a.active::after {
  width: 100%;
}

/* Mobile Navbar Size */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
    height: 80px;
    min-height: 80px;
  }
  
  /* Show mobile menu button on small screens */
  .mobile-menu-btn {
    display: flex;
    order: 3; /* Butonu en sağa almak için */
  }
  
  /* Hide regular menu by default on mobile */
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(0, 18, 72, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem 0;
    transform: translateY(-150%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    margin: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /* Show menu when active */
  .nav-links.active {
    transform: translateY(0);
  }
  
  .nav-links li {
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
  }
  
  .nav-links.active li {
    opacity: 1;
    transform: translateY(0);
  }
  
  .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
  .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
  .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
  .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }
  .nav-links.active li:nth-child(6) { transition-delay: 0.35s; }
  
  .nav-links li a {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1.2rem;
    color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 6px;
    margin: 0 1rem;
  }
  
  .nav-links li a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    color: #FFD700;
  }
  
  .nav-links li a::after {
    display: none;
  }
  
  /* Improved logo text for mobile */
  nav .logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
  }
  
  /* Improved navigation links for mobile */
  nav ul {
    gap: 1rem;
  }
  
  nav ul li a {
    font-size: 0.95rem;
    padding: 0.5rem 0.8rem;
  }
}

/* Navbar Logo Styles */
nav .logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #001248;
}

.navbar-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: white;
  padding: 5px;
  margin-bottom: 5px;
  object-fit: contain;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.navbar-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .navbar-logo {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  nav .logo {
    font-size: 1.4rem;
    white-space: nowrap;
    margin-right: 15px;
  }
  
  nav ul {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.3rem;
    justify-content: flex-end;
    width: auto;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
  }
  
  nav ul::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }
  
  nav ul li a {
    font-size: 0.7rem;
    padding: 5px 8px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    white-space: nowrap;
    display: inline-block;
    flex-shrink: 0;
    transition: all 0.2s ease;
  }
  
  nav ul li a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
  }
}

nav .logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #FF6B35;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

nav .logo span {
  color: #F7931E;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

nav.scrolled ul li a {
  color: #333 !important;
}

nav.scrolled .logo {
  color: #FF6B35 !important;
}

nav.scrolled .logo span {
  color: #F7931E !important;
}

nav ul li a:hover {
  color: #FF6B35;
  transform: translateY(-2px);
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #FF6B35;
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

/* HERO STİLİ */
.hero {
  background: linear-gradient(rgba(0, 18, 72, 0.7), rgba(0, 18, 72, 0.7)), url('../assets/images/backgroundlogo.png') no-repeat center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero-content {
  max-width: 800px;
  padding: 0 2rem;
  opacity: 0;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero h1 span {
  color: #FF6B35;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn {
  background: linear-gradient(135deg, #FF6B35, #F7931E);
  color: white;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

/* HİZMETLER & PROJELER & ÇALIŞANLAR & REFERANSLAR */
.services, .projects, .employees, .references {
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services {
  background: linear-gradient(135deg, #001248 0%, #0056b3 50%, #001248 100%);
  color: white;
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagon" width="50" height="43.4" patternUnits="userSpaceOnUse"><polygon points="25,0 50,14.4 50,28.9 25,43.4 0,28.9 0,14.4" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagon)"/></svg>');
  opacity: 0.3;
  animation: patternMove 20s linear infinite;
}

.services::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(247, 147, 30, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 50% 50%, rgba(0, 86, 179, 0.05) 0%, transparent 70%);
  animation: breathe 8s ease-in-out infinite, gradientShift 12s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background: radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(247, 147, 30, 0.08) 0%, transparent 50%);
  }
  50% {
    background: radial-gradient(circle at 70% 30%, rgba(255, 107, 53, 0.12) 0%, transparent 60%),
                radial-gradient(circle at 30% 70%, rgba(247, 147, 30, 0.12) 0%, transparent 60%);
  }
}

@keyframes iconBounceIn {
  0% {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.2) rotate(-90deg);
    opacity: 0.8;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes textSlideIn {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes numberSpinIn {
  0% {
    transform: scale(0) rotate(-360deg);
    opacity: 0;
  }
  70% {
    transform: scale(1.2) rotate(-180deg);
    opacity: 0.8;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 30%),
              radial-gradient(circle at 80% 80%, rgba(247, 147, 30, 0.1) 0%, transparent 30%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  border-radius: 20px;
  animation: particleFloat 8s ease-in-out infinite;
}

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

.service-card:hover::after {
  opacity: 1;
}

/* Resimli hizmet kartları için yeni tasarım */
.service-image-container {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
}

.service-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-image-container img {
  transform: scale(1.1);
}

.service-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.service-card:hover .service-image-overlay {
  opacity: 1;
}

.service-image-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1rem;
  animation: iconSpin 0.6s ease-out;
}

.service-image-text {
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Kategori etiketi */
.service-category {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.8rem;
  border: 1px solid currentColor;
}

/* Özellik etiketleri */
.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
  justify-content: center;
}

.feature-tag {
  background: rgba(255, 107, 53, 0.1);
  color: #FF6B35;
  padding: 0.3rem 0.6rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
}

.feature-tag:hover {
  background: rgba(255, 107, 53, 0.2);
  transform: translateY(-2px);
}

/* Gelişmiş buton tasarımı */
.service-details-btn {
  background: linear-gradient(135deg, #FF6B35, #F7931E);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.service-details-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

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

.service-details-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

/* Yeni animasyonlar */
@keyframes categorySlideIn {
  0% {
    transform: translateX(-30px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes featureSlideIn {
  0% {
    transform: translateY(20px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes buttonBounceIn {
  0% {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.2) rotate(-90deg);
    opacity: 0.8;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes iconSpin {
  0% {
    transform: scale(0) rotate(-360deg);
    opacity: 0;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes patternMove {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(50px) translateY(43.4px);
  }
}

@keyframes breathe {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.6;
  }
}

.projects {
  background: linear-gradient(135deg, #001248 0%, #0056b3 50%, #001248 100%);
  color: white;
  position: relative;
}

.projects::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagon-projects" width="50" height="43.4" patternUnits="userSpaceOnUse"><polygon points="25,0 50,14.4 50,28.9 25,43.4 0,28.9 0,14.4" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagon-projects)"/></svg>');
  opacity: 0.3;
  animation: patternMove 20s linear infinite;
}

.projects::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(247, 147, 30, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 50% 50%, rgba(0, 86, 179, 0.05) 0%, transparent 70%);
  animation: breathe 8s ease-in-out infinite, gradientShift 12s ease-in-out infinite;
}

.employees {
  background: linear-gradient(135deg, #001248 0%, #0056b3 50%, #001248 100%);
  color: white;
  position: relative;
}

.employees::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagon-employees" width="50" height="43.4" patternUnits="userSpaceOnUse"><polygon points="25,0 50,14.4 50,28.9 25,43.4 0,28.9 0,14.4" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagon-employees)"/></svg>');
  opacity: 0.3;
  animation: patternMove 20s linear infinite;
}

.employees::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(247, 147, 30, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 50% 50%, rgba(0, 86, 179, 0.05) 0%, transparent 70%);
  animation: breathe 8s ease-in-out infinite, gradientShift 12s ease-in-out infinite;
}

.references {
  background: linear-gradient(135deg, #001248 0%, #0056b3 50%, #001248 100%);
  color: white;
  position: relative;
}

.references::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagon-references" width="50" height="43.4" patternUnits="userSpaceOnUse"><polygon points="25,0 50,14.4 50,28.9 25,43.4 0,28.9 0,14.4" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagon-references)"/></svg>');
  opacity: 0.3;
  animation: patternMove 20s linear infinite;
}

.references::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(247, 147, 30, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 50% 50%, rgba(0, 86, 179, 0.05) 0%, transparent 70%);
  animation: breathe 8s ease-in-out infinite, gradientShift 12s ease-in-out infinite;
}

.services h2, .projects h2, .employees h2, .references h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: white;
  position: relative;
  font-weight: 700;
  letter-spacing: 1px;
  opacity: 0;
  z-index: 2;
  text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.services h2::after, .projects h2::after, .employees h2::after, .references h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #ffffff, rgba(255,255,255,0.8));
  border-radius: 2px;
}

.services-container, .projects-container, .employees-container, .references-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.services-container {
  animation: containerFadeIn 1s ease-out 0.5s both;
}

@keyframes containerFadeIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card {
  position: relative;
  width: 450px;
  height: 420px;
  margin: 1.5rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15), 0 0 0 1px rgba(102, 126, 234, 0.1);
}

.service-card {
  position: relative;
  width: 450px;
  height: 420px;
  margin: 1.5rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Hover teşvik efektleri */
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.03), rgba(118, 75, 162, 0.03));
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-card:hover::after {
  opacity: 1;
}

/* Kartın üst kısmına ince bir highlight çizgisi */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 16px 16px 0 0;
  transform: scaleX(0);
  transition: transform 0.4s ease;
  z-index: 1;
}

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

.service-card-container {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(255, 107, 53, 0.05));
  border-radius: 16px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-card-container::before {
  opacity: 1;
}

.service-card:hover .service-card-container {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.15);
  border-color: rgba(102, 126, 234, 0.2);
}

.service-header {
  position: relative;
  height: 180px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-header img {
  transform: scale(1.08);
}

.service-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.2), rgba(0,0,0,0.05));
  z-index: 1;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-header::before {
  opacity: 0.7;
}

@keyframes sparkle {
  0%, 100% { opacity: 0.3; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(10px); }
}

.service-icon-main {
  display: none;
}

.service-card:hover .service-icon-main {
  display: none;
}

.service-body {
  padding: 1.5rem;
  text-align: center;
  position: relative;
  background: white;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.service-number-badge {
  position: absolute;
  top: -12px;
  right: 16px;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.75rem;
  box-shadow: 0 3px 12px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
}

.service-card:hover .service-number-badge {
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a202c;
  margin: 0.5rem 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.service-card:hover .service-title {
  color: #667eea;
}

.service-category-pill {
  display: inline-block;
  background: rgba(102, 126, 234, 0.08);
  color: #667eea;
  padding: 0.3rem 0.8rem;
  border-radius: 16px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(102, 126, 234, 0.15);
  transition: all 0.3s ease;
}

.service-card:hover .service-category-pill {
  background: rgba(102, 126, 234, 0.12);
  border-color: rgba(102, 126, 234, 0.25);
}

.service-description {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

.service-features-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-mini {
  background: #f8f9fa;
  color: #495057;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 500;
  border: 1px solid #e9ecef;
}

.service-action-btn {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: none;
  padding: 0.8rem 1.4rem;
  border-radius: 20px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  align-self: center;
  min-width: 130px;
}

.service-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.25);
  background: linear-gradient(135deg, #5a67d8, #6b46c1);
}

.service-card.expanded {
  width: 500px;
  height: 450px;
  z-index: 10;
}

.service-card.expanded .service-body {
  min-height: 250px;
}

.service-expanded-content {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255,255,255,0.95);
  border-radius: 15px;
  opacity: 0;
  transform: rotateY(180deg);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  backface-visibility: hidden;
}

.service-card.expanded {
  height: auto;
  min-height: 500px;
}

.service-card.expanded .service-expanded-content {
  display: block;
  opacity: 1;
  transform: rotateY(0deg);
}

.service-card-container {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  backface-visibility: hidden;
}

.service-details-wrapper {
  text-align: left;
}

.service-details-wrapper h4 {
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.service-details-wrapper p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-card .service-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #FF6B35, #F7931E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 3rem;
  color: white;
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
  position: relative;
  z-index: 2;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  animation: iconPulse 4s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% {
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3), 0 0 0 0 rgba(255, 107, 53, 0.4);
  }
  50% {
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4), 0 0 0 10px rgba(255, 107, 53, 0);
  }
}

.service-card .service-icon::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(45deg, #FF6B35, #F7931E, #FF6B35);
  border-radius: 50%;
  z-index: -1;
  animation: iconRotate 8s linear infinite;
}

@keyframes iconRotate {
  0% {
    transform: rotate(0deg);
    opacity: 0.3;
  }
  100% {
    transform: rotate(360deg);
    opacity: 0.3;
  }
}

.service-text-display {
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, #FF6B35, #F7931E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.service-text-display {
  animation: iconPulse 4s ease-in-out infinite;
}

.service-text-display::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(45deg, #FF6B35, #F7931E, #FF6B35);
  border-radius: 50%;
  z-index: -1;
  animation: iconRotate 8s linear infinite;
}

.service-text-display:empty {
  display: none;
}

.service-text-content:empty {
  display: none;
}

.service-card .service-text-display:has(.service-text-content:empty) {
  display: none;
}

.service-text-content {
  display: block;
  line-height: 1.2;
}

.service-text {
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, #FF6B35, #F7931E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.service-card:hover .service-text {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

.service-text:empty {
  display: none;
}

.service-text:has(span:empty) {
  display: none;
}

.service-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #2c3e50;
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
  0% {
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  100% {
    text-shadow: 0 2px 4px rgba(0,0,0,0.1), 0 0 20px rgba(255, 107, 53, 0.1);
  }
}

.service-card p {
  color: #555;
  line-height: 1.7;
  font-size: 1rem;
  position: relative;
  z-index: 2;
  opacity: 0.9;
  transition: all 0.4s ease;
}

.service-card .service-number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #FF6B35;
  font-size: 1.2rem;
  z-index: 3;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  animation: numberBounce 2s ease-in-out infinite;
}

@keyframes numberBounce {
  0%, 100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-3px) scale(1.05);
  }
}

.service-card .service-number::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, rgba(255, 107, 53, 0.2), rgba(247, 147, 30, 0.2));
  border-radius: 50%;
  z-index: -1;
  animation: numberGlow 3s ease-in-out infinite;
}

@keyframes numberGlow {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.2);
  }
}

/* Resimli Hizmet Kartları */
.service-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
  margin-bottom: 1rem;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.8), rgba(247, 147, 30, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-text-overlay {
  font-size: 2rem;
  color: white;
  font-weight: bold;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.service-content {
  text-align: center;
}

.project-card {
  width: 350px;
  height: 450px;
  margin: 2rem;
  perspective: 1500px;
  cursor: pointer;
  position: relative;
  animation: projectFloat 6s ease-in-out infinite;
}

@keyframes projectFloat {
  0%, 100% { transform: translateY(0px) rotateZ(0deg); }
  25% { transform: translateY(-8px) rotateZ(0.5deg); }
  50% { transform: translateY(-4px) rotateZ(0deg); }
  75% { transform: translateY(-12px) rotateZ(-0.5deg); }
}

.project-card-container {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  overflow: hidden;
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 20px 60px rgba(0, 18, 72, 0.15);
}

.project-card-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, #FF6B35, #F7931E, #0056b3, #001248, #FF6B35);
  background-size: 400% 400%;
  border-radius: 25px;
  z-index: -1;
  animation: projectBorder 4s ease-in-out infinite;
}

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

.project-card:hover .project-card-container {
  transform: translateY(-20px) rotateX(10deg) rotateY(15deg);
  box-shadow: 0 40px 100px rgba(255, 107, 53, 0.25);
}

.project-card.mobile-rotated .project-card-container {
  transform: translateY(-15px) rotateX(8deg) rotateY(12deg);
  box-shadow: 0 35px 80px rgba(255, 107, 53, 0.2);
}

.project-image-container {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 25px 25px 0 0;
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.project-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(1) contrast(1.1);
}

.project-card:hover .project-image-container img,
.project-card.mobile-rotated .project-image-container img {
  transform: scale(1.15) rotate(2deg);
  filter: brightness(0.8) contrast(1.3) saturate(1.2);
}

.project-image-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: all 0.8s ease;
  animation: rotate 20s linear infinite;
}

.project-card:hover .project-image-glow,
.project-card.mobile-rotated .project-image-glow {
  opacity: 1;
}

.project-text-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.95), rgba(247, 147, 30, 0.95));
  padding: 10px 15px;
  border-radius: 25px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: scale(0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.project-card:hover .project-text-overlay,
.project-card.mobile-rotated .project-text-overlay {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.project-text-content {
  color: white;
  font-weight: bold;
  font-size: 0.9rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  letter-spacing: 0.5px;
}

.project-info {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.98);
  position: relative;
  z-index: 2;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-category {
  background: linear-gradient(135deg, #FF6B35, #F7931E);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.project-card:hover .project-category,
.project-card.mobile-rotated .project-category {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.project-card h3 {
  font-size: 1.4rem;
  margin: 0 0 1rem 0;
  color: #2c3e50;
  font-weight: 700;
  line-height: 1.3;
  transition: all 0.3s ease;
}

.project-card:hover h3,
.project-card.mobile-rotated h3 {
  color: #FF6B35;
  transform: translateY(-2px);
}

.project-card p {
  color: #666;
  line-height: 1.7;
  font-size: 0.95rem;
  margin: 0;
  transition: all 0.3s ease;
}

.project-card:hover p,
.project-card.mobile-rotated p {
  color: #333;
  transform: translateY(-1px);
}

.project-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: rotate(45deg);
  transition: transform 0.8s ease;
  opacity: 0;
}

.project-card:hover .project-shine,
.project-card.mobile-rotated .project-shine {
  opacity: 1;
  transform: rotate(45deg) translate(50%, 50%);
}

/* ÇALIŞANLAR - PREMIUM TASARIM */
.employee-card {
  width: 450px;
  height: 400px;
  margin: 2rem;
  perspective: 1500px;
  cursor: pointer;
  position: relative;
}

.employee-container {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 18, 72, 0.2);
}

.employee-card .employee-container {
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.employee-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
  filter: brightness(1) contrast(1.1) saturate(1.1);
}

.employee-card:hover .employee-image {
  transform: scale(1.15) rotate(3deg);
  filter: brightness(0.6) contrast(1.3) saturate(1.2);
}

.employee-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 18, 72, 0.2), rgba(0, 86, 179, 0.3), rgba(0, 18, 72, 0.4));
  opacity: 0;
  transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.employee-card:hover .employee-overlay {
  opacity: 1;
  background: linear-gradient(45deg, rgba(0, 18, 72, 0.4), rgba(0, 86, 179, 0.5), rgba(0, 18, 72, 0.6));
}

.employee-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem;
  background: linear-gradient(transparent, rgba(0, 18, 72, 0.95), rgba(0, 18, 72, 0.98));
  color: white;
  transform: translateY(120%) rotateX(-15deg);
  transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
  backdrop-filter: blur(20px);
  text-align: center;
}

.employee-card:hover .employee-content {
  transform: translateY(0) rotateX(0deg);
}

.employee-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 3px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
}

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

.employee-name {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.employee-position-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.employee-experience {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.95;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.employee-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 86, 179, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: all 1s ease;
  animation: rotate 25s linear infinite reverse;
}

.employee-card:hover .employee-glow {
  opacity: 1;
}

/* REFERANSLAR - YUVARLAK TASARIM */
.reference-item {
  width: 320px;
  height: 350px;
  margin: 1.5rem;
  perspective: 1000px;
  cursor: pointer;
  position: relative;
}

.reference-container {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 18, 72, 0.2);
  border: 4px solid rgba(0, 18, 72, 0.1);
}

.reference-item:hover .reference-container {
  transform: scale(1.15);
  z-index: 100;
  box-shadow: 0 30px 80px rgba(0, 18, 72, 0.4);
}

.reference-ring {
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border: 3px solid transparent;
  border-radius: 50%;
  background: linear-gradient(45deg, #001248, #0056b3, #001248) border-box;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  animation: ringRotate 3s linear infinite;
  transition: opacity 0.5s ease;
}

.reference-item:hover .reference-ring {
  opacity: 1;
}

@keyframes ringRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.reference-logo-main {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  height: 90%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  overflow: hidden;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: inset 0 0 20px rgba(0, 18, 72, 0.1);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reference-logo-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.8s ease;
}

.reference-item:hover .reference-logo-main img {
  transform: scale(1.1);
}

.reference-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 18, 72, 0.2), rgba(0, 86, 179, 0.3), rgba(0, 18, 72, 0.4));
  opacity: 0;
  transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.reference-item:hover .reference-overlay {
  opacity: 1;
  background: linear-gradient(135deg, rgba(0, 18, 72, 0.4), rgba(0, 86, 179, 0.5), rgba(0, 18, 72, 0.6));
}

.reference-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #001248, #0056b3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1.5rem;
  color: white;
  text-align: center;
  transform: rotateY(180deg);
  backface-visibility: hidden;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reference-item:hover .reference-back {
  opacity: 1;
  transform: rotateY(0deg);
}

.reference-item:hover .reference-logo-main {
  transform: translate(-50%, -50%) rotateY(-180deg);
  opacity: 0;
}

.reference-back-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.reference-back-sector {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  backdrop-filter: blur(10px);
}

.reference-back-description {
  font-size: 0.8rem;
  line-height: 1.4;
  opacity: 0.9;
  max-height: 80px;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.reference-logo-small {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 3px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
}

.reference-logo-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 5px;
  background: white;
}

.reference-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.reference-sector-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.reference-description {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.97;
  max-height: 8.5em;
  overflow: auto;
  word-break: break-word;
  padding: 0.3em 0.1em;
  text-align: left;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.reference-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 86, 179, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: all 1s ease;
  animation: rotate 20s linear infinite;
}

.reference-item:hover .reference-glow {
  opacity: 1;
}

/* HİZMET DETAY BUTONU */
.service-details-btn {
  background: linear-gradient(135deg, #FF6B35, #F7931E);
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-details-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.service-details-btn i {
  font-size: 0.8rem;
}

/* HİZMET DETAY MODAL */
.service-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.service-modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: white;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  transform: scale(0.8);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-modal.show .modal-content {
  transform: scale(1);
}

.modal-header {
  background: linear-gradient(135deg, #FF6B35, #F7931E);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 20px 20px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  margin: 0;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.modal-body {
  padding: 2rem;
}

.modal-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.modal-text h3 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.modal-text p {
  color: #666;
  line-height: 1.8;
  font-size: 1rem;
  white-space: pre-line;
}

.modal-footer {
  padding: 1rem 2rem 2rem;
  text-align: center;
}

.modal-btn {
  background: linear-gradient(135deg, #FF6B35, #F7931E);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* MODAL RESPONSIVE */
@media (max-width: 768px) {
  .service-modal {
    padding: 10px;
  }
  
  .modal-content {
    max-height: 90vh;
  }
  
  .modal-header {
    padding: 1rem 1.5rem;
  }
  
  .modal-header h2 {
    font-size: 1.2rem;
  }
  
  .modal-body {
    padding: 1.5rem;
  }
  
  .modal-footer {
    padding: 1rem 1.5rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .employee-card {
    width: 350px;
    height: 300px;
    margin: 1.5rem;
  }
  
  .employee-container {
    transition: all 0.2s ease;
  }
  
  .employee-content {
    padding: 1.5rem;
  }
  
  .employee-name {
    font-size: 1.2rem;
  }
  
  .employee-avatar {
    width: 50px;
    height: 50px;
  }
  
  .reference-item {
    width: 150px;
    height: 150px;
    margin: 1rem;
  }
  
  .reference-container {
    transition: all 0.2s ease;
  }
  
  .reference-back {
    padding: 1rem;
  }
  
  .reference-back-title {
    font-size: 0.9rem;
  }
  
  .reference-back-description {
    font-size: 0.7rem;
    max-height: 60px;
  }
}



/* FOOTER */
footer {
  background: #001248;
  color: white;
  text-align: center;
  padding: 2rem;
  font-size: 1rem;
}

/* LOADING SCREEN */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loading-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loading-content {
  text-align: center;
  color: white;
}

.loading-logo {
  margin-bottom: 2rem;
  animation: logoFloat 2s ease-in-out infinite;
}

.loading-logo img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: contain; /* Görselin tamamının alana sığmasını sağlar */
  background-color: rgba(255, 255, 255, 0.9); /* Hafif şeffaf arka plan */
  padding: 10px; /* Logo ile kenarlık arasına boşluk ekler */
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  animation: logoPulse 2.5s ease-in-out infinite; /* Yeni nabız animasyonu */
}

.loading-logo i {
  font-size: 4rem;
  color: #FF6B35;
  margin-bottom: 1rem;
  display: block;
  animation: iconRotate 3s linear infinite;
}

.loading-logo h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  color: white;
}

.loading-logo span {
  color: #FF6B35;
}

.building-blocks {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 1rem;
}

.block {
  width: 12px;
  height: 40px;
  background: #FF6B35;
  border-radius: 2px;
  animation: buildingGrow 1.5s ease-in-out infinite;
}

.block1 { animation-delay: 0s; }
.block2 { animation-delay: 0.2s; }
.block3 { animation-delay: 0.4s; }
.block4 { animation-delay: 0.6s; }

.loading-text {
  font-size: 1.2rem;
  margin: 0;
  opacity: 0.9;
  animation: textPulse 2s ease-in-out infinite;
}

/* ANIMASYONLAR */
@keyframes logoFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes iconRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes buildingGrow {
  0%, 100% { 
    height: 20px;
    background: #FF6B35;
  }
  50% { 
    height: 40px;
    background: #F7931E;
  }
}

@keyframes textPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

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

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* RESPONSIVE TASARIM */
@media (max-width: 768px) {
  .hero {
    background: linear-gradient(rgba(0, 18, 72, 0.7), rgba(0, 18, 72, 0.7)), url('../assets/images/phonebackground.jpg') no-repeat center/cover !important;
    padding-top: 100px;
    background-attachment: scroll;
  }
  
  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }
  
  .hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .btn {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
  }
  
  .services, .projects, .employees, .references {
    padding: 3rem 1rem;
  }
  
  .services h2, .projects h2, .employees h2, .references h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .services-container, .projects-container, .employees-container, .references-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-card, .project-card, .employee-card, .reference-card {
    margin: 0 auto;
    max-width: 350px;
  }
  
  .service-text-display {
    width: 120px;
    height: 120px;
    font-size: 1.2rem;
  }
  
  .project-text-overlay, .employee-text-overlay {
    font-size: 0.8rem;
    padding: 6px 10px;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 0.4rem 0.6rem;
  }
  
  nav .logo {
    font-size: 1rem;
  }
  
  nav ul {
    gap: 0.3rem;
    margin-top: 6px;
  }
  
  nav ul li a {
    font-size: 0.7rem;
    padding: 4px 8px;
    pointer-events: auto;
    z-index: 1001;
    position: relative;
  }
  
  .hero {
    background-size: cover;
    background-position: center 25%;
    min-height: 100vh;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .typing-text-2 {
    font-size: 0.8rem !important;
  }
  
  .services {
    padding: 3rem 0.5rem;
  }
  
  .services h2 {
    font-size: 1.6rem;
  }
  
  .service-card {
    min-height: 220px;
    padding: 1.5rem 1rem;
    max-width: 100%;
  }
  
  .service-card .service-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .service-text-display {
    width: 70px;
    height: 70px;
    font-size: 0.8rem;
    padding: 8px;
  }
  
  .service-card h3 {
    font-size: 1.1rem;
  }
  
  .service-card p {
    font-size: 0.8rem;
  }
  
  .service-number {
    width: 30px !important;
    height: 30px !important;
    font-size: 1rem !important;
  }
  
  .services-footer {
    margin-top: 1.5rem !important;
    padding: 1rem !important;
  }
  
  .services-footer p {
    font-size: 0.9rem !important;
  }
  
  .projects, .employees, .references {
    padding: 2rem 0.5rem;
  }
  
  .projects h2, .employees h2, .references h2 {
    font-size: 1.6rem;
  }
  
  .project-card, .employee-card, .reference-card {
    max-width: 100%;
  }
}

/* YENİ EFEKTLER */
.service-content-only {
  padding: 2rem;
  text-align: center;
}

.service-icon-placeholder {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #FF6B35, #F7931E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.project-gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-gradient-overlay {
  opacity: 1;
}

.employee-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: rotate(45deg);
  transition: transform 0.6s ease;
  opacity: 0;
}

.employee-card:hover .employee-shine {
  opacity: 1;
  transform: rotate(45deg) translate(50%, 50%);
}



@media (max-width: 768px) {
  .services {
    padding: 4rem 1rem;
  }
  
  .services h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .services-container {
    gap: 1.5rem;
    padding: 1rem;
  }
  
  .service-card {
    width: 320px;
    height: 350px;
    margin: 1rem auto;
  }
  
  .service-header {
    height: 220px;
  }
  
  .service-body {
    padding: 1.5rem;
    min-height: 200px;
  }
  
  .service-number-badge {
    width: 25px;
    height: 25px;
    font-size: 0.8rem;
    top: -12px;
    right: 15px;
  }
  
  .service-title {
    font-size: 1.2rem;
    margin: 0.8rem 0 0.4rem;
  }
  
  .service-category-pill {
    font-size: 0.7rem;
    padding: 0.2rem 0.8rem;
    margin-bottom: 0.8rem;
  }
  
  .service-description {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }
  
  .service-features-mini {
    gap: 0.2rem;
    margin-bottom: 1rem;
  }
  
  .feature-mini {
    font-size: 0.6rem;
    padding: 0.1rem 0.4rem;
  }
  
  .service-action-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }
  
  .service-card.expanded {
    width: 300px;
    height: 400px;
  }
  
  .service-card:hover .service-card-container {
    transform: translateY(-10px) rotateX(2deg);
  }
  
  .services-footer {
    margin-top: 2rem !important;
    padding: 1.5rem !important;
  }
  
  .services-footer p {
    font-size: 1rem !important;
  }
  
  .service-image {
    height: 280px;
  }
  
  .project-image-container {
    height: 320px;
  }
  
  .employee-image-container {
    height: 350px;
  }
  
  .references-container {
    padding: 1rem;
    gap: 1rem;
  }
  
  .reference-item {
    width: 350px;
    height: 300px;
    margin: 1.5rem;
  }
  
  .reference-content {
    padding: 1.5rem;
  }
  
  .reference-title {
    font-size: 1.2rem;
  }
  
  .reference-description {
    font-size: 0.8rem;
    max-height: 50px;
  }
  
  .reference-logo-small {
    width: 40px;
    height: 40px;
  }
  
  .project-card:hover, .employee-card:hover, .reference-card:hover {
    transform: translateY(-10px) scale(1.02);
  }
  
  .service-icon-placeholder {
    width: 100px;
    height: 100px;
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .service-card {
    width: 260px;
    height: 320px;
    margin: 0.8rem auto;
  }
  
  .service-header {
    height: 180px;
  }
  
  .service-body {
    padding: 1.2rem;
    min-height: 190px;
  }
  
  .service-number-badge {
    width: 22px;
    height: 22px;
    font-size: 0.7rem;
    top: -10px;
    right: 12px;
  }
  
  .service-title {
    font-size: 1.1rem;
    margin: 0.6rem 0 0.3rem;
  }
  
  .service-category-pill {
    font-size: 0.65rem;
    padding: 0.15rem 0.6rem;
    margin-bottom: 0.6rem;
  }
  
  .service-description {
    font-size: 0.75rem;
    margin-bottom: 0.8rem;
  }
  
  .service-features-mini {
    gap: 0.15rem;
    margin-bottom: 0.8rem;
  }
  
  .feature-mini {
    font-size: 0.55rem;
    padding: 0.1rem 0.3rem;
  }
  
  .service-action-btn {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
  
  .service-card.expanded {
    width: 280px;
    height: 370px;
  }
  
  .service-card:hover .service-card-container {
    transform: translateY(-8px) rotateX(1deg);
  }
  
  .project-image-container {
    height: 280px;
  }
  
  .employee-image-container {
    height: 320px;
  }
  
  .reference-logo {
    width: 80px;
    height: 80px;
  }
  
  .reference-overlay {
    width: 120px;
    height: 120px;
    top: -20px;
    left: -20px;
  }
  
  .reference-details h4 {
    font-size: 0.9rem;
  }
  
  .reference-details p {
    font-size: 0.7rem;
  }
  
  .project-card:hover, .employee-card:hover, .reference-card:hover {
    transform: translateY(-5px) scale(1.01);
  }
  
  .service-content-only {
    padding: 1.5rem;
  }
  
  .service-icon-placeholder {
    width: 80px;
    height: 80px;
    font-size: 1.8rem;
  }
}

/* FLOATING ELEMENTS */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.1);
  animation: float 6s ease-in-out infinite;
}

.shape1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape2 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.shape3 {
  width: 60px;
  height: 60px;
  top: 80%;
  left: 20%;
  animation-delay: 4s;
}

.shape4 {
  width: 100px;
  height: 100px;
  top: 30%;
  right: 30%;
  animation-delay: 1s;
}

/* MORPHING SHAPES */
.morphing-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.morph-shape {
  position: absolute;
  background: linear-gradient(45deg, rgba(255, 107, 53, 0.05), rgba(247, 147, 30, 0.05));
  border-radius: 50%;
  animation: morph 8s ease-in-out infinite;
}

.morph1 {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -150px;
  animation-delay: 0s;
}

.morph2 {
  width: 400px;
  height: 400px;
  bottom: -200px;
  right: -200px;
  animation-delay: 4s;
}

/* SCROLL REVEAL */
.scroll-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* TYPING ANIMATION */
.typing-text {
  overflow: hidden;
  white-space: nowrap;
  animation: typing 1s steps(30) 0.5s both;
}

.typing-text::after {
  content: '|';
  animation: blink 1s infinite, fadeOutCursor 0.5s ease-out 8s forwards;
}

@keyframes fadeOutCursor {
  to {
    opacity: 0;
  }
}

/* EXPERIENCE TEXT TYPING ANIMATION */
.typing-text-2 {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  width: 0;
  animation: typing2 1.5s steps(50) 2.5s forwards;
}

.typing-text-2::after {
  content: '|';
  animation: blink 1s infinite 2.5s;
}

@keyframes typing2 {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* HOVER 3D TRANSFORMATIONS */
.hover-3d {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.hover-3d:hover {
  transform: perspective(1000px) rotateX(10deg) rotateY(-10deg) translateZ(20px);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.service-card.hover-3d:hover {
  transform: perspective(1000px) rotateX(5deg) rotateY(5deg) translateZ(30px);
}

.project-card.hover-3d:hover {
  transform: perspective(1000px) rotateX(-5deg) rotateY(10deg) translateZ(25px);
}

.employee-card.hover-3d:hover {
  transform: perspective(1000px) rotateX(10deg) rotateY(-5deg) translateZ(35px);
}

.reference-card.hover-3d:hover {
  transform: perspective(1000px) rotateX(-10deg) rotateY(-10deg) translateZ(20px);
}

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

@keyframes morph {
  0%, 100% {
    border-radius: 50%;
    transform: scale(1) rotate(0deg);
  }
  25% {
    border-radius: 30% 70% 70% 30%;
    transform: scale(1.1) rotate(90deg);
  }
  50% {
    border-radius: 70% 30% 30% 70%;
    transform: scale(0.9) rotate(180deg);
  }
  75% {
    border-radius: 40% 60% 60% 40%;
    transform: scale(1.05) rotate(270deg);
  }
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* SECTION DECORATIONS */
.section-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(0, 18, 72, 0.1), rgba(0, 86, 179, 0.1));
}

.circle-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 5%;
  animation: float 8s ease-in-out infinite, pulse 4s ease-in-out infinite;
}

.circle-2 {
  width: 150px;
  height: 150px;
  bottom: 15%;
  right: 8%;
  animation: float 6s ease-in-out infinite reverse, pulse 3s ease-in-out infinite;
}

.circle-3 {
  width: 180px;
  height: 180px;
  top: 20%;
  right: 10%;
  animation: float 7s ease-in-out infinite, pulse 5s ease-in-out infinite;
}

.circle-4 {
  width: 120px;
  height: 120px;
  bottom: 10%;
  left: 12%;
  animation: float 5s ease-in-out infinite reverse, pulse 3.5s ease-in-out infinite;
}

.section-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

.section-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
  transform: rotateY(180deg);
  animation: waveMove 8s ease-in-out infinite;
}

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

@keyframes waveMove {
  0%, 100% {
    transform: rotateY(180deg) translateX(0);
  }
  50% {
    transform: rotateY(180deg) translateX(-10px);
  }
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  cursor: pointer;
  animation: scrollBounce 2s ease-in-out infinite;
  z-index: 10;
  opacity: 0;
  animation: scrollAppear 1s ease-out 11.5s forwards, scrollBounce 2s ease-in-out 12.5s infinite;
}

.scroll-text {
  font-size: 1.1rem;
  margin-bottom: 12px;
  opacity: 0.8;
  font-weight: 500;
  letter-spacing: 1px;
}

.scroll-arrow {
  font-size: 1.8rem;
  animation: arrowBounce 1.5s ease-in-out infinite;
}

.scroll-indicator:hover {
  opacity: 1;
  transform: translateX(-50%) scale(1.2);
}

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

@keyframes arrowBounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  50% {
    transform: translateY(5px);
    opacity: 1;
  }
}

@keyframes scrollAppear {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@media (max-width: 768px) {
  .scroll-indicator {
    bottom: 80px;
    animation: scrollAppear 1s ease-out 9s forwards, scrollBounce 2s ease-in-out 10s infinite;
  }
  
  .scroll-text {
    font-size: 0.8rem;
  }
  
  .scroll-arrow {
    font-size: 1.2rem;
  }
}

/* COOKIE CONSENT */
.cookie-consent {
  position: fixed;
  bottom: -100px;
  left: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border: 2px solid #FF6B35;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  z-index: 10000;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 500px;
  margin: 0 auto;
}

.cookie-consent.show {
  bottom: 20px;
}

.cookie-content {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cookie-icon {
  font-size: 2rem;
  color: #FF6B35;
  flex-shrink: 0;
}

.cookie-text h3 {
  margin: 0 0 0.5rem 0;
  color: #333;
  font-size: 1.1rem;
}

.cookie-text p {
  margin: 0 0 1rem 0;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.cookie-btn.accept {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
}

.cookie-btn.accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.cookie-btn.decline {
  background: #6c757d;
  color: white;
}

.cookie-btn.decline:hover {
  background: #5a6268;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cookie-consent {
    left: 10px;
    right: 10px;
    bottom: -120px;
  }
  
  .cookie-consent.show {
    bottom: 10px;
  }
  
  .cookie-content {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-icon {
    font-size: 1.5rem;
  }
  
  .cookie-text h3 {
    font-size: 1rem;
  }
  
  .cookie-text p {
    font-size: 0.8rem;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    flex: 1;
    justify-content: center;
  }
}

/* ANIMATED EXPERIENCE SECTION */
.animated-experience {
  margin-top: 3rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
  border-radius: 20px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  position: relative;
  overflow: hidden;
  animation: experienceFloat 6s ease-in-out infinite;
}

.animated-experience::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shimmer 4s ease-in-out infinite;
}

.experience-badge {
  background: linear-gradient(135deg, #FF6B35, #F7931E);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
  animation: badgePulse 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.badge-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  animation: numberCount 2s ease-out;
}

.badge-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 2px;
}

.experience-content {
  text-align: center;
  z-index: 2;
  position: relative;
}

.experience-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.8rem;
  text-shadow: 0 3px 6px rgba(0,0,0,0.4);
  animation: titleGlow 3s ease-in-out infinite alternate;
}

.experience-description {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.95);
  margin: 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.pulse-icon {
  color: #F7931E;
  animation: iconPulse 2s ease-in-out infinite;
  font-size: 1.1rem;
}

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

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.6);
  }
}

@keyframes numberCount {
  0% {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }
  70% {
    transform: scale(1.2) rotate(-90deg);
    opacity: 0.8;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes titleGlow {
  0% {
    text-shadow: 0 3px 6px rgba(0,0,0,0.4);
  }
  100% {
    text-shadow: 0 3px 6px rgba(0,0,0,0.4), 0 0 20px rgba(255,255,255,0.3);
  }
}

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

@media (max-width: 768px) {
  .animated-experience {
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }
  
  .experience-badge {
    width: 100px;
    height: 100px;
  }
  
  .badge-number {
    font-size: 2rem;
  }
  
  .badge-text {
    font-size: 0.8rem;
  }
  
  .experience-title {
    font-size: 1.5rem;
  }
  
  .experience-description {
    font-size: 1rem;
    text-align: center;
  }
}

/* SOSYAL MEDYA BUTONLARI */
.social-media-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.social-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateX(150px);
  animation: slideInSocial 4s ease-out forwards;
}

.social-btn:nth-child(1) { animation-delay: 1s; }
.social-btn:nth-child(2) { animation-delay: 1.3s; }
.social-btn:nth-child(3) { animation-delay: 1.6s; }

.social-btn.whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.social-btn.instagram {
  background: linear-gradient(135deg, #E4405F, #C13584, #833AB4);
}

.social-btn.gmail {
  background: linear-gradient(135deg, #EA4335, #FBBC05);
}

.social-btn:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* SERVİS SOSYAL MEDYA LİNKLERİ */
.service-social-links {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin: 1rem 0;
}

.service-social-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.service-social-btn.whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.service-social-btn.instagram {
  background: linear-gradient(135deg, #E4405F, #C13584);
}

.service-social-btn.gmail {
  background: linear-gradient(135deg, #EA4335, #FBBC05);
}

.service-social-btn:hover {
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* SERVİS GÖRSEL SLIDER */
.service-image-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.service-slide {
  transition: opacity 0.5s ease;
}

@keyframes slideInSocial {
  0% {
    opacity: 0;
    transform: translateX(150px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* MOBILE OPTIMIZATIONS */
@media (max-width: 768px) {
  .decoration-circle {
    transform: scale(0.6);
  }
  
  .circle-1 {
    width: 120px;
    height: 120px;
  }
  
  .circle-2 {
    width: 90px;
    height: 90px;
  }
  
  .circle-3 {
    width: 108px;
    height: 108px;
  }
  
  .circle-4 {
    width: 72px;
    height: 72px;
  }
  
  .section-wave svg {
    height: 40px;
  }
  
  .social-media-buttons {
    bottom: 30px;
    right: 15px;
    gap: 8px;
  }
  
  .social-btn {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
    transform: translateX(120px);
    animation: slideInSocial 3s ease-out forwards;
  }
  
  .social-btn:nth-child(1) { animation-delay: 0.8s; }
  .social-btn:nth-child(2) { animation-delay: 1.1s; }
  .social-btn:nth-child(3) { animation-delay: 1.4s; }
  
  .service-social-links {
    gap: 0.6rem;
    margin: 0.8rem 0;
  }
  
  .service-social-btn {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
}
  
  .floating-shape {
    display: none;
  }
  
  .morph-shape {
    opacity: 0.3;
  }
  
  .hover-3d:hover {
    transform: translateY(-5px) scale(1.02);
  }
  
  .typing-text {
    animation: none;
    white-space: normal;
  }
  
  .typing-text::after {
    display: none;
  }
  
  .typing-text-2 {
    font-size: 0.9rem;
    animation: typing2 1.8s steps(50) 3s forwards;
  }
  
  .typing-text-2::after {
    animation: blink 1s infinite 6s;
  }
}

/* HERO TEXT ANIMATION */
.hero-content.animate-out #hero-main-text {
  animation: moveUp 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-content.animate-out #hero-sub-text {
  animation: moveDown 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes moveUp {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-25vh);
    opacity: 0;
  }
}

@keyframes moveDown {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(25vh);
    opacity: 0;
  }
}

/* HERO SLIDER STYLES */
.swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5; /* Hero content'in arkasında */
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.5s ease, visibility 1.5s ease, transform 1.5s ease;
}

.swiper-container.visible {
  opacity: 0.55; /* ~%45 saydamlık (%55 opaklık) */
  visibility: visible;
}

.swiper-slide {
  position: relative; /* İçerik konumlandırması için gerekli */
  text-align: center;
  font-size: 18px;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.slide-content {
  position: absolute;
  color: white;
  text-align: left;
  width: 80%; /* Genişliği ayarla */
  max-width: 800px; /* Maksimum genişliği belirle */
  padding: 1rem;
  animation: slideTextFadeIn 1s ease forwards;
  top: 50%; /* Dikeyde ortala */
  left: 50%; /* Yatayda ortala */
  transform: translate(-50%, -50%); /* Tam ortalamak için */
  text-align: center; /* Yazıyı ortala */
}

.slide-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 15px rgba(0,0,0,0.5); /* Daha yumuşak metin gölgesi */
}

.slide-content p {
  font-size: 1.2rem;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5); /* Daha yumuşak metin gölgesi */
}

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

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5) !important;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #FF6B35 !important;
  transform: scale(1.3);
}

.swiper-button-next, .swiper-button-prev {
  color: #FF6B35 !important;
  z-index: 10; /* Okların tıklanabilir olması için */
}

.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 1.2rem !important;
  font-weight: 900;
}

@media (max-width: 768px) {
  .swiper-container {
    /* Bu kural zaten var, dokunmuyoruz */
  }
  .slide-content h2 {
    font-size: 1.8rem;
  }
  .slide-content p {
    font-size: 1rem;
    line-height: 1.4;
  }
  .slide-content {
    display: none; /* Mobilde başlık ve yazıları gizle */
  }
}

@media (max-width: 480px) {
  .swiper-container {
    height: 100vh; /* Mobil cihazlarda tam ekran kaplasın */
  }
  .slide-content h2 {
    font-size: 1.8rem;
  }
  .slide-content p {
    font-size: 0.9rem;
    /* display: none;  Çok küçük ekranlarda açıklamayı gizle - Şimdilik kalsın */
  }
  .slide-content {
    width: 90%; /* Mobil için genişliği artır */
  }
}

/* İLETİŞİM BÖLÜMÜ */
.contact {
  padding: 6rem 2rem;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.contact h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #001248;
  position: relative;
  font-weight: 700;
}

.contact h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #FF6B35, #F7931E);
  border-radius: 2px;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 18, 72, 0.1);
}

.contact-info h3, .contact-form-wrapper h3 {
  font-size: 1.8rem;
  color: #001248;
  margin-bottom: 1rem;
  font-weight: 700;
}

.contact-info p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 2rem;
}

#contact-details-list {
  list-style: none;
  padding: 0;
}

#contact-details-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

#contact-details-list i {
  color: #FF6B35;
  font-size: 1.2rem;
  margin-top: 5px;
  width: 20px;
  text-align: center;
}

#contact-details-list a, #contact-details-list span {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

#contact-details-list a:hover {
  color: #FF6B35;
}

.contact-form-wrapper .form-group {
  margin-bottom: 1.5rem;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
  outline: none;
  border-color: #FF6B35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.contact-form-wrapper textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 4rem 1rem;
  }
  .contact h2 {
    font-size: 2rem;
  }
  .contact-container {
    padding: 1.5rem;
  }
  .contact-info h3, .contact-form-wrapper h3 {
    font-size: 1.5rem;
  }
}

/* Google Map Container */
.map-container {
  max-width: 1100px;
  margin: 3rem auto 0;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 18, 72, 0.1);
  border: 5px solid white;
}

#map {
  width: 100%;
  height: 100%;
}

@media (max-width: 992px) {
  .map-container {
    margin: 2rem auto 0;
  }
}

@media (max-width: 768px) {
  .map-container {
    height: 300px;
  }
}