/* ================================
   CONTACT PAGE STYLES
   ================================ */

/* Dark gradient background - only as tall as content */
.contact-wrapper {
  background: radial-gradient(circle at top left, #272727 0%, #000000 40%, #1a1a1a 100%);
  padding: 60px 0;
}

/* Section titles */
.contact-wrapper h1,
.contact-wrapper h4 {
  color: #fff;
  font-weight: 700;
}

.contact-wrapper p,
.contact-wrapper li {
  color: #ddd;
  font-size: 0.95rem;
}

/* Contact Card with gradient background */
.contact-wrapper .card {
  background: linear-gradient(180deg, #141414 0%, #1c1c1c 50%, #111111 100%);
  border-radius: 12px;
  box-shadow: none !important;   /* border ve gölge kaldırıldı */
  border: none !important;
  padding: 1.5rem;
}

/* Map Wrapper fills card height */
.map-wrapper iframe {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  min-height: 300px;
}


/* Contact List */
.contact-wrapper ul {
  padding-left: 0;
}

.contact-wrapper ul li {
  list-style: none;
  margin-bottom: 10px;
}

.contact-wrapper ul li a {
  color: #ddd;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-wrapper ul li a:hover {
  color: #D90404;
  text-decoration: underline;
}

/* Icons - brand red */
.contact-wrapper i {
  font-size: 1.2rem;
  color: #D90404 !important;
  margin-right: 8px;
  vertical-align: middle;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-wrapper {
    padding: 40px 15px;
  }
  .contact-wrapper h1 {
    font-size: 1.8rem;
  }
}
