body, html {
  overflow-x: hidden;
}

.container, .container-fluid {
  padding-left: 12px !important;
  padding-right: 12px !important;
}

.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
/*
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #222;
  position: relative;
}
*/
body {
  margin: 0;
  font-family: 'Quicksand', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #222;
  position: relative;
}

#particles-body {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}
main, header, nav, .slider, section, footer {
  position: relative;
  z-index: 1;
}

/***** Slider ve Particles için ek stiller *****/
.slider {
  margin-bottom: 0;
  min-height: 220px;
  height: 350px;
  background: #222;
  position: relative;
  overflow: hidden;
}
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.slider-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}
/***** Ürünler grid ve kartlar için ek stiller *****/
/* Ürünlerimiz alanı için sade, temayla uyumlu kartlar */
.product-item {
  background: rgba(20,24,40,0.85);
  border-radius: 0.75rem;
  box-shadow: 0 1px 8px 0 rgba(0,0,0,0.10);
  border: 2px solid #fff;
  backdrop-filter: blur(8px);
  color: #fff;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  padding: 1.5rem 1rem 1.2rem 1rem;
}
.product-item .fs-4,
.product-item .fw-semibold,
.product-item .text-xs,
.product-item .product-item-price,
.product-item .old-price {
  color: #fff !important;
}
.product-item .old-price {
  color: #bbb !important;
}
.product-item .btn {
  background: #008ba9;
  color: #fff;
  border-radius: 1.5rem;
  padding: 8px 28px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  transition: background 0.2s, transform 0.2s;
}
.product-item .btn:hover {
  background: #fd7e14;
  color: #fff;
  transform: scale(1.06);
}
.product-item:hover {
  border-color: #fd7e14;
  box-shadow: 0 4px 16px 0 rgba(33,99,235,0.18);
  transform: translateY(-4px) scale(1.02);
}
.rounded-5 {
  border-radius: 1.25rem !important;
}
.bg-form-product-price {
  background: #f8f9fa;
}
.text-primary-dark {
  color: #222 !important;
}
.text-primary-red {
  color: #e74c3c !important;
}
/***** Responsive grid için ekler *****/
@media (max-width: 1200px) {
  .col-xl-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .slider {
    height: 220px;
  }
}
.text-xs {
  font-size: 0.85rem;
}
.slider-gif-bg {
  display: none;
}
.slider-gif-ratio {
  max-width: 220px;
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .slider-gif-ratio {
    max-width: 120px;
    margin: 0 auto;
  }
}
.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  background: #008ba9;
}
.icon-circle.orange {
  background: #fd7e14;
}
.icon-circle i {
  color: #fff !important;
  font-size: 2.5rem;
}
.old-price {
  text-decoration: line-through;
  color: #888;
  font-weight: 400;
  font-size: 1rem;
}
.custom-btn-anim {
  transition: transform 0.2s, box-shadow 0.2s;
}
.custom-btn-anim:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 24px 0 rgba(0,184,148,0.15);
}
.navbar {
  position: sticky !important;
  top: 0;
  z-index: 1050;
  background: #000;
}
#particles-navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.navbar .container {
  position: relative;
  z-index: 1;
}
.moving-text {
  display: inline-block;
  white-space: nowrap;
  font-size: 30px;
  font-weight: bold;
  color: #1a237e;
  animation: slide-left 10s linear infinite;
}

@keyframes slide-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.moving-text-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  position: relative;
  overflow: hidden;
}

.moving-text-left, .moving-text-right {
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  position: relative;
  opacity: 0;
}

.moving-text-left {
  animation: left-to-center 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
}

.moving-text-right {
  animation: right-to-center 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
  animation-delay: 0.2s;
}

@keyframes left-to-center {
  0% {
    left: -100vw;
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}

@keyframes right-to-center {
  0% {
    right: -100vw;
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  100% {
    right: 0;
    opacity: 1;
  }
}

.moving-text-merged {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  display: inline-block;
  text-align: center;
  animation: merged-zoom-glow 1s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

@keyframes merged-zoom-glow {
  0% {
    transform: scale(0.7);
    text-shadow: 0 0 0px #fff;
    opacity: 0;
  }
  60% {
    opacity: 1;
    text-shadow: 0 0 20px #fff, 0 0 40px #fff;
  }
  100% {
    transform: scale(1);
    text-shadow: 0 0 10px #fff;
    opacity: 1;
  }
}

.scroll-effect {
  animation: scroll-glow 0.7s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

@keyframes scroll-glow {
  0% {
    transform: scale(1);
    text-shadow: 0 0 0px #fff;
  }
  40% {
    transform: scale(1.12);
    text-shadow: 0 0 30px #fff, 0 0 60px #fff;
  }
  100% {
    transform: scale(1);
    text-shadow: 0 0 10px #fff;
  }
}

.scroll-animatable.scroll-effect {
  animation: scroll-glow 0.7s cubic-bezier(0.68, -0.55, 0.27, 1.55);
} 
img:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.18);
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55), box-shadow 0.3s;
  z-index: 2;
}
img {
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55), box-shadow 0.3s;
} 
.section-title {
  color: #fff !important;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.18), 0 1px 0 #222;
  margin-bottom: 1.2rem;
  margin-top: 2rem;
  text-align: center;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 1.6rem;
  }
} 
.eimza-box {
  background: rgba(20, 24, 40, 0.85);
  border-radius: 1.25rem;
  box-shadow: 0 4px 32px 0 rgba(33,150,243,0.10);
  padding: 2rem 1.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
}
.eimza-box p {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}
.eimza-box ul {
  padding-left: 1.2rem;
  margin-bottom: 0;
}
.eimza-box li {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.2em;
}
.eimza-box li::before {
  content: "✔";
  color: #fd7e14;
  position: absolute;
  left: 0;
  font-size: 1.1em;
  top: 0.1em;
}
.eimza-img {
  border-radius: 1.25rem;
  box-shadow: 0 4px 32px 0 rgba(33,150,243,0.18);
  background: #fff;
  padding: 0.5rem;
} 
.service-item {
  background: rgba(20,24,40,0.85);
  border-radius: 0.75rem;
  box-shadow: 0 1px 8px 0 rgba(0,0,0,0.10);
  border: 2px solid #fff;
  backdrop-filter: blur(8px);
  color: #fff;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  padding: 1.5rem 1rem 1.2rem 1rem;
}
.service-item:hover {
  border-color: #fd7e14;
  box-shadow: 0 4px 16px 0 rgba(33,99,235,0.18);
  transform: translateY(-4px) scale(1.02);
}
.service-item .fw-semibold,
.service-item .fs-4,
.service-item .text-xs,
.service-item .old-price {
  color: #fff !important;
}
.service-item .old-price {
  color: #bbb !important;
}
.service-item .btn {
  background: #008ba9;
  color: #fff;
  border-radius: 1.5rem;
  padding: 8px 28px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  transition: background 0.2s, transform 0.2s;
}
.service-item .btn:hover {
  background: #fd7e14;
  color: #fff;
  transform: scale(1.06);
} 
.product-item img {
  max-width: 120px;
  height: auto;
  margin-bottom: 1rem;
} 
.slider-side-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
  letter-spacing: 1px;
  background: rgba(0,0,0,0.18);
  border-radius: 1.2rem;
  padding: 0.7rem 1.5rem;
  display: inline-block;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .slider-side-text {
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    margin-bottom: 0.5rem;
  }
} 

@media (max-width: 768px) {
  .arrow-anim.active {
    transform: scale(1) translateX(30px);
  }
} 
.flying-arrow {
  position: absolute;
  left: 120px;
  top: 60px;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
}
.flying-arrow.active {
  opacity: 1;
  animation: arrow-fly-curve 1.3s cubic-bezier(0.68,-0.55,0.27,1.55) forwards;
}
@keyframes arrow-fly-curve {
  0% {
    left: 120px;
    top: 60px;
    opacity: 0;
    transform: rotate(-10deg) scale(0.7);
  }
  10% {
    opacity: 1;
  }
  40% {
    left: 220px;
    top: 120px;
    transform: rotate(10deg) scale(1.1);
  }
  70% {
    left: 420px;
    top: 120px;
    transform: rotate(0deg) scale(1.1);
  }
  100% {
    left: 540px;
    top: 60px;
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}
@media (max-width: 768px) {
  .flying-arrow, .flying-arrow.active {
    left: 40px;
    top: 40px;
  }
  @keyframes arrow-fly-curve {
    0% { left: 40px; top: 40px; }
    40% { left: 80px; top: 90px; }
    70% { left: 160px; top: 90px; }
    100% { left: 210px; top: 40px; }
  }
} 
.flying-arrow-static {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -10px;
  margin-bottom: 10px;
  min-height: 40px;
  overflow: visible;
  z-index: 2;
}
.flying-arrow-static img {
  display: block;
  margin: 0 auto;
  max-width: 180px;
  width: 40vw;
  min-width: 80px;
  height: auto;
}
@media (max-width: 768px) {
  .flying-arrow-static img {
    max-width: 90px;
    width: 30vw;
    min-width: 40px;
  }
} 
.slider-orange-arrow {
  position: absolute;
  left: 0;
  right: 0;
  top: 80px;
  width: 100%;
  height: 160px;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}
@media (max-width: 768px) {
  .slider-orange-arrow {
    height: 90px;
    top: 60px;
  }
} 
/* Satın Al Formu için özel stiller */
.satinal-form-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.08);
  padding: 40px 32px;
  max-width: 950px;
  margin: 0 auto 48px auto;
}
.satinal-form-card h2.section-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #B22222;
  margin-bottom: 32px;
  letter-spacing: 1px;
}
.satinal-divider {
  border: none;
  border-top: 1.5px solid #eee;
  margin: 32px 0 24px 0;
}
.satinal-form-card label {
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
  display: block;
}
.satinal-form-card input[type="text"],
.satinal-form-card input[type="email"],
.satinal-form-card input[type="date"],
.satinal-form-card input[type="tel"],
.satinal-form-card select,
.satinal-form-card textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  background: #fafbfc;
  transition: border 0.2s, box-shadow 0.2s;
  margin-bottom: 8px;
}
.satinal-form-card input:focus,
.satinal-form-card select:focus,
.satinal-form-card textarea:focus {
  border-color: #B22222;
  outline: none;
  box-shadow: 0 0 0 2px #f8d7da;
}
.satinal-form-card .base-form-group {
  margin-bottom: 18px;
}
.satinal-form-card .btn {
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 12px 32px;
  border: none;
  background: #B22222;
  color: #fff;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px 0 rgba(178,34,34,0.08);
}
.satinal-form-card .btn:hover {
  background: #a01c1c;
  color: #fff;
}
.satinal-form-card .btn.btn-common {
  background: #2563eb;
}
.satinal-form-card .btn.btn-common:hover {
  background: #1746a2;
}
.satinal-form-card .btn[disabled] {
  background: #e5e7eb;
  color: #aaa;
  cursor: not-allowed;
}
.satinal-form-card .text-primary-red {
  color: #B22222;
}
.satinal-form-card .error-msg {
  color: #B22222;
  font-size: 0.92rem;
  margin-top: 2px;
}
.satinal-form-card .aydinlatma-box {
  background: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 2px 8px 0 rgba(178,34,34,0.04);
  padding: 18px 20px;
  max-height: 180px;
  overflow-y: auto;
  font-size: 0.98rem;
  color: #333;
  margin-bottom: 12px;
}
.satinal-form-card .section-label {
  font-size: 1.2rem;
  font-weight: 700;
  color: #B22222;
  margin-bottom: 18px;
}
@media (max-width: 900px) {
  .satinal-form-card {
    padding: 24px 8px;
  }
}
@media (max-width: 600px) {
  .satinal-form-card {
    padding: 10px 2px;
  }
}

/* Referanslar Bölümü Stilleri */
.references-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(20,24,40,0.95) 0%, rgba(0,139,169,0.1) 100%);
  position: relative;
  overflow: hidden;
}

.references-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.references-title {
  text-align: center;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.references-subtitle {
  text-align: center;
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.references-container {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

.references-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.references-row.top {
  animation: slideLeft 30s linear infinite;
}

.references-row.bottom {
  animation: slideRight 25s linear infinite;
}

.reference-item {
  flex-shrink: 0;
  width: 120px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.reference-item:hover {
  transform: translateY(-5px) scale(1.05);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(0, 139, 169, 0.5);
  box-shadow: 0 10px 30px rgba(0, 139, 169, 0.3);
}

.reference-item img {
  max-width: 80%;
  max-height: 70%;
  object-fit: contain;
  filter: brightness(0.9) contrast(1.1);
  transition: all 0.3s ease;
}

.reference-item:hover img {
  filter: brightness(1) contrast(1.2);
  transform: scale(1.1);
}

.reference-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.reference-item:hover::before {
  left: 100%;
}

@keyframes slideLeft {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes slideRight {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Mobil responsive */
@media (max-width: 768px) {
  .references-title {
    font-size: 2rem;
  }
  
  .references-subtitle {
    font-size: 1rem;
  }
  
  .reference-item {
    width: 100px;
    height: 70px;
  }
  
  .references-row {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .reference-item {
    width: 80px;
    height: 60px;
  }
  
  .references-row {
    gap: 1rem;
  }
}

/* Ürün Kategori Başlıkları */
.product-category-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.product-category-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #008ba9, #fd7e14);
  border-radius: 2px;
}

.product-category-title::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #008ba9, #fd7e14);
  border-radius: 2px;
  opacity: 0.6;
}

/* Mobil responsive */
@media (max-width: 768px) {
  .product-category-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .product-category-title::after {
    width: 60px;
  }
  
  .product-category-title::before {
    width: 30px;
  }
}

/* Ofisler Sayfası Stilleri */
.office-category-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.office-category-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #008ba9, #fd7e14);
  border-radius: 2px;
}

.office-category-title::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #008ba9, #fd7e14);
  border-radius: 2px;
  opacity: 0.6;
}

/* Ana Ofis Kartı */
.office-card {
  background: rgba(20,24,40,0.85);
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: all 0.3s ease;
}

.office-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 139, 169, 0.5);
  box-shadow: 0 15px 40px rgba(0, 139, 169, 0.2);
}

.office-image {
  background: linear-gradient(135deg, #008ba9, #fd7e14);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.office-image img {
  max-width: 80%;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.office-content {
  padding: 2rem;
  color: #fff;
}

.office-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.office-info {
  margin-bottom: 1.5rem;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: #ccc;
}

.info-item i {
  color: #008ba9;
  margin-right: 0.75rem;
  font-size: 1.1rem;
  width: 20px;
}

.office-actions .btn {
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.office-actions .btn:hover {
  transform: translateY(-2px);
}

/* Küçük Ofis Kartları */
.office-card-small {
  background: rgba(20,24,40,0.85);
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  transition: all 0.3s ease;
  height: 100%;
}

.office-card-small:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 139, 169, 0.5);
  box-shadow: 0 8px 25px rgba(0, 139, 169, 0.15);
}

.office-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.office-icon {
  background: linear-gradient(135deg, #008ba9, #fd7e14);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.office-icon i {
  color: #fff;
  font-size: 1.5rem;
}

.office-name {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.office-details {
  margin-bottom: 1.5rem;
}

.detail-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  color: #ccc;
  font-size: 0.9rem;
}

.detail-item i {
  color: #008ba9;
  margin-right: 0.5rem;
  width: 16px;
}

.office-actions-small .btn {
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.office-actions-small .btn:hover {
  transform: translateY(-2px);
}

/* İletişim Kartları */
.contact-card {
  background: rgba(20,24,40,0.85);
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 139, 169, 0.5);
  box-shadow: 0 8px 25px rgba(0, 139, 169, 0.15);
}

.contact-icon {
  background: linear-gradient(135deg, #008ba9, #fd7e14);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.contact-icon i {
  color: #fff;
  font-size: 2rem;
}

.contact-card h5 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-card p {
  color: #ccc;
  margin-bottom: 1.5rem;
}

.contact-card .btn {
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-card .btn:hover {
  transform: translateY(-2px);
}

/* Harita Konteyner */
.map-container {
  background: rgba(20,24,40,0.85);
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  overflow: hidden;
  min-height: 400px;
}

.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 400px;
  color: #ccc;
  text-align: center;
}

.map-placeholder i {
  font-size: 4rem;
  color: #008ba9;
  margin-bottom: 1rem;
}

.map-placeholder h4 {
  color: #fff;
  margin-bottom: 0.5rem;
}

/* Mobil responsive */
@media (max-width: 768px) {
  .office-category-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .office-category-title::after {
    width: 60px;
  }
  
  .office-category-title::before {
    width: 30px;
  }
  
  .office-content {
    padding: 1.5rem;
  }
  
  .office-image {
    min-height: 150px;
    padding: 1.5rem;
  }
  
  .contact-card {
    padding: 1.5rem;
  }
  
  .contact-icon {
    width: 60px;
    height: 60px;
  }
  
  .contact-icon i {
    font-size: 1.5rem;
  }
  
  .map-placeholder {
    height: 300px;
  }
  
  .map-placeholder i {
    font-size: 3rem;
  }
} 