/* === GENEL TEMA === */
:root {
  --black: #000000;
  --dark-gray: #1a1a1a;
  --orange: #FF6600;
  --orange-dark: #CC5500;
  --orange-light: #FF8833;
  --white: #FFFFFF;
  --light-gray: #f5f5f5;
  --gray: #e0e0e0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  background-color: var(--light-gray);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

/* === HEADER - TIKLAMA SORUNU DÜZELTMESİ === */
.header {
  background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
  color: var(--white);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border-bottom: 2px solid var(--orange);
  width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  width: 100%;
}

.logo a {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--white);
  text-decoration: none;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
  white-space: nowrap;
  position: relative;
  z-index: 1002;
}

.navbar {
  display: flex;
  gap: 10px;
}

.navbar a {
  color: var(--white);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-weight: 600;
  background-color: var(--dark-gray);
  border: 1px solid var(--orange);
  font-size: 0.9rem;
  white-space: nowrap;
  position: relative;
  z-index: 1002;
}

.navbar a:hover,
.navbar .active {
  background-color: var(--orange);
  color: var(--black);
  transform: translateY(-2px);
}

.header .social-icons {
  display: flex;
  gap: 8px;
  position: relative;
  z-index: 1002;
}

.header .social-icons a {
  color: var(--white);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  padding: 6px;
  border-radius: 50%;
  background-color: var(--dark-gray);
  border: 1px solid var(--orange);
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1002;
}

.header .social-icons a:hover {
  color: var(--black);
  background-color: var(--orange);
  transform: scale(1.1);
}

/* Hamburger menü */
.menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--white);
  background: none;
  border: none;
  padding: 5px;
  z-index: 1001;
  position: relative;
}

/* === CONTACT HERO SECTION - TIKLAMA SORUNU DÜZELTMESİ === */
.contact-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px 15px;
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
  color: var(--black);
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  border-top: 5px solid var(--orange);
  width: 100%;
  position: relative;
  z-index: 1;
}

.contact-left {
  flex: 1;
  background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
  color: var(--white);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--orange);
  min-width: 300px;
  position: relative;
  z-index: 2;
}

.contact-left h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--white);
  border-bottom: 2px solid var(--orange);
  padding-bottom: 8px;
  line-height: 1.3;
}

.contact-left p {
  margin: 12px 0;
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.5;
}

.contact-left a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  word-break: break-all;
  position: relative;
  z-index: 2;
}

.contact-left a:hover {
  color: var(--orange-light);
  text-decoration: underline;
}

.contact-left .social-icons {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.contact-left .social-icons a {
  font-size: 1.1rem;
  color: var(--white);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  border: 1px solid var(--orange);
  text-decoration: none;
  flex: 1;
  min-width: 120px;
  justify-content: center;
  position: relative;
  z-index: 3;
}

.contact-left .social-icons a:hover {
  transform: translateY(-3px);
  color: var(--orange);
  background: rgba(255, 255, 255, 0.2);
}

.service-info {
  margin-top: 25px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  border-left: 4px solid var(--orange);
  position: relative;
  z-index: 2;
}

.service-info h3 {
  color: var(--orange);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.service-info p {
  margin: 6px 0;
  color: var(--gray);
  font-size: 0.9rem;
}

.contact-right {
  flex: 1;
  padding: 25px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--orange);
  min-width: 300px;
  position: relative;
  z-index: 2;
}

.map-container {
  margin-bottom: 25px;
}

.map-container h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  color: var(--black);
}

.map-container iframe {
  border-radius: 8px;
  width: 100%;
  height: 250px;
  position: relative;
  z-index: 1;
}

.contact-right form {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
  position: relative;
  z-index: 2;
}

.contact-right h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
  color: var(--black);
  border-bottom: 2px solid var(--orange);
  padding-bottom: 8px;
}

.contact-right input,
.contact-right select,
.contact-right textarea {
  margin-bottom: 15px;
  padding: 12px;
  border: 2px solid var(--gray);
  border-radius: 6px;
  font-size: 0.95rem;
  background-color: var(--light-gray);
  transition: all 0.3s ease;
  color: var(--black);
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  width: 100%;
  position: relative;
  z-index: 2;
}

.contact-right input:focus,
.contact-right select:focus,
.contact-right textarea:focus {
  border-color: var(--orange);
  background-color: var(--white);
  outline: none;
  box-shadow: 0 0 8px rgba(255, 102, 0, 0.2);
}

.contact-right button {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  padding: 14px 20px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  width: 100%;
  position: relative;
  z-index: 3;
}

.contact-right button:hover {
  background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.6);
}

/* === FOOTER - TIKLAMA SORUNU DÜZELTMESİ === */
.site-footer {
  background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
  color: var(--white);
  padding: 40px 15px 20px;
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  border-top: 5px solid var(--orange);
  width: 100%;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 30px;
  max-width: 1200px;
  margin: 0 auto 30px;
}

.footer-col {
  flex: 1;
  min-width: 100%;
  position: relative;
  z-index: 2;
}

.footer-logo {
  width: 60px;
  height: auto;
  margin-bottom: 12px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  border: 2px solid var(--orange);
}

.footer-title {
  margin: 0;
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--white);
}

.slogan {
  font-style: italic;
  margin-top: 6px;
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.4;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 6px;
  color: var(--white);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: var(--gray);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 4px 0;
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 8px;
  border-left: 3px solid var(--orange);
  transform: translateX(3px);
}

.footer-contact {
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
}

.footer-contact p {
  margin: 8px 0;
}

.footer-contact a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  word-break: break-all;
  position: relative;
  z-index: 2;
}

.footer-contact a:hover {
  color: var(--orange-light);
  text-decoration: underline;
}

.footer-map {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-map iframe {
  border-radius: 10px;
  width: 100%;
  height: 250px;
  display: block;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  border: 2px solid var(--orange);
}

/* === MOBİL UYUMLULUK - TIKLAMA SORUNU DÜZELTMELERİ === */
@media screen and (max-width: 768px) {
  /* Header mobil düzenlemesi */
  .container {
    padding: 0 10px;
  }
  
  .logo a {
    font-size: 1.2rem;
    z-index: 1002;
  }
  
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    flex-direction: column;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    padding: 80px 20px 20px;
    border-radius: 0;
    border-left: 2px solid var(--orange);
    transition: right 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
  }
  
  .menu-toggle:checked ~ .navbar {
    right: 0;
  }
  
  .navbar a {
    padding: 12px 15px;
    margin-bottom: 8px;
    text-align: center;
    font-size: 1rem;
    z-index: 1002;
  }
  
  .hamburger {
    display: block;
    position: relative;
    z-index: 1002;
  }
  
  /* Overlay için */
  .navbar::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }
  
  .menu-toggle:checked ~ .navbar::before {
    opacity: 1;
    pointer-events: auto;
  }
  
  .header .social-icons {
    display: none;
  }
  
  /* Contact hero mobil düzenlemesi */
  .contact-hero {
    padding: 30px 10px;
    gap: 15px;
  }
  
  .contact-left,
  .contact-right {
    padding: 20px 15px;
    min-width: 100%;
    z-index: 2;
  }
  
  .contact-left h2 {
    font-size: 1.4rem;
  }
  
  .contact-left .social-icons {
    flex-direction: column;
  }
  
  .contact-left .social-icons a {
    min-width: 100%;
    justify-content: flex-start;
    z-index: 3;
  }
  
  .contact-right h3 {
    font-size: 1.2rem;
  }
  
  .contact-right button {
    z-index: 3;
  }
  
  /* Footer mobil düzenlemesi */
  .footer-top {
    gap: 20px;
  }
  
  .footer-col {
    margin-bottom: 25px;
    z-index: 2;
  }
  
  .footer-title {
    font-size: 1.2rem;
  }
  
  .footer-contact {
    padding: 15px;
    z-index: 2;
  }
  
  .footer-contact a {
    z-index: 2;
  }
}

@media screen and (max-width: 480px) {
  .logo a {
    font-size: 1.1rem;
    z-index: 1002;
  }
  
  .contact-left h2 {
    font-size: 1.3rem;
  }
  
  .contact-right h3 {
    font-size: 1.1rem;
  }
  
  .footer-title {
    font-size: 1.1rem;
  }
  
  .contact-left .social-icons a {
    font-size: 1rem;
    z-index: 3;
  }
  
  .contact-right button {
    font-size: 0.95rem;
    padding: 12px 15px;
    z-index: 3;
  }
}

/* Küçük ekranlar için ek düzenlemeler */
@media screen and (max-width: 360px) {
  .container {
    padding: 0 8px;
  }
  
  .logo a {
    font-size: 1rem;
    z-index: 1002;
  }
  
  .contact-hero {
    padding: 20px 8px;
  }
  
  .contact-left,
  .contact-right {
    padding: 15px 12px;
  }
  
  .contact-left h2 {
    font-size: 1.2rem;
  }
  
  .contact-right h3 {
    font-size: 1rem;
  }
  
  .footer-contact {
    padding: 12px;
  }
  
  .footer-contact p {
    font-size: 0.85rem;
  }
}

/* Yatay mod için düzenlemeler */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .navbar {
    padding-top: 60px;
  }
  
  .navbar a {
    padding: 8px 15px;
    margin-bottom: 5px;
  }
  
  .contact-hero {
    padding: 20px 15px;
  }
}

/* TIKLAMA SORUNU İÇİN EK DÜZENLEMELER */
/* Tüm tıklanabilir elementler için z-index ve pointer-events */
a, button, input[type="submit"], input[type="button"] {
  position: relative;
  z-index: 2;
}

/* Özellikle sosyal medya linkleri için */
.social-icons a {
  z-index: 3 !important;
}

/* WhatsApp butonu için */
.contact-right button {
  z-index: 3 !important;
}

/* Linkler için pointer-events */
a {
  pointer-events: auto !important;
}

/* Butonlar için pointer-events */
button, input[type="submit"], input[type="button"] {
  pointer-events: auto !important;
}

/* Mobil menü linkleri için ek güvenlik */
@media screen and (max-width: 768px) {
  .navbar a {
    pointer-events: auto !important;
    z-index: 1002 !important;
  }
}