/* === GENEL TEMA === */
:root {
  --black: #000000;
  --dark-gray: #1a1a1a;
  --orange: #FF6600;
  --orange-dark: #CC5500;
  --orange-light: #FF8833;
  --white: #FFFFFF;
  --light-gray: #f5f5f5;
  --gray: #e0e0e0;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: var(--light-gray);
  color: var(--black);
  line-height: 1.6;
}

/* === HEADER === */
.page-header {
  background: linear-gradient(to right, var(--black), var(--orange));
  color: var(--white);
  padding: 3rem 2rem;
  text-align: center;
  border-bottom: 3px solid var(--orange);
}

.page-header h1 {
  font-size: 3rem;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-header p {
  font-size: 1.2rem;
  margin-top: 1rem;
  opacity: 0.9;
}

/* === HERO SECTION === */
.service-hero {
  padding: 120px 20px;
  color: var(--white);
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.85) 0%, rgba(204, 85, 0, 0.85) 100%), url('yol2.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}

.hero-logo {
  max-width: 180px;
  margin-bottom: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.4);
  border: 3px solid var(--white);
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
  color: var(--white);
}

.hero-slogan {
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 15px;
  opacity: 0.95;
  max-width: 600px;
  line-height: 1.5;
  color: var(--light-gray);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* === SERVICES OVERVIEW === */
.services-overview {
  padding: 3rem 2rem;
  background-color: var(--white);
  max-width: 1200px;
  margin: 0 auto;
}

.services-overview h2 {
  text-align: center;
  color: var(--black);
  font-size: 2.5rem;
  margin-bottom: 3rem;
  border-bottom: 3px solid var(--orange);
  padding-bottom: 10px;
  display: inline-block;
}

.services-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.service-card {
  background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
  border: 2px solid var(--gray);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: var(--black);
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(255, 102, 0, 0.2);
  border-color: var(--orange);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid var(--orange);
}

.service-card h3 {
  font-size: 1.3rem;
  margin: 1.5rem 1rem 1rem;
  color: var(--orange);
  font-weight: 700;
}

.service-card p {
  font-size: 0.95rem;
  margin: 0 1rem 1.5rem;
  color: var(--dark-gray);
  line-height: 1.5;
}

/* === SITE HEADER === */
.site-header {
  background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
  color: var(--white);
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--orange);
}

.site-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--white);
  text-decoration: none;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-menu a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 6px;
  background-color: var(--dark-gray);
  border: 1px solid var(--orange);
}

.nav-menu a:hover {
  color: var(--black);
  background-color: var(--orange);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--white);
  cursor: pointer;
  padding: 5px;
}

/* === DROPDOWN STYLES === */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  color: var(--white);
  text-decoration: none;
  padding: 8px 16px;
  display: inline-block;
  border-radius: 6px;
  font-weight: 600;
  background-color: var(--dark-gray);
  border: 1px solid var(--orange);
}

.dropdown-menu {
  display: none;
  position: absolute;
  background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
  top: 100%;
  left: 0;
  min-width: 220px;
  z-index: 999;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  flex-direction: column;
  border: 2px solid var(--orange);
  border-top: none;
}

.dropdown-menu a {
  padding: 12px 1rem;
  color: var(--white);
  text-decoration: none;
  display: block;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 102, 0, 0.3);
  background: transparent;
  border-radius: 0;
}

.dropdown-menu a:hover {
  background-color: var(--orange);
  padding-left: 1.5rem;
  color: var(--black);
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

/* === SITE FOOTER === */
.site-footer {
  background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
  color: var(--white);
  padding: 50px 20px;
  font-family: 'Segoe UI', sans-serif;
  border-top: 5px solid var(--orange);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  width: 70px;
  height: auto;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  border: 2px solid var(--orange);
}

.footer-title {
  margin: 0;
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--white);
}

.slogan {
  font-style: italic;
  margin-top: 8px;
  color: var(--gray);
  font-size: 1rem;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 8px;
  color: var(--white);
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: var(--gray);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 5px 0;
  display: block;
  font-weight: 500;
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 10px;
  border-left: 3px solid var(--orange);
  transform: translateX(5px);
}

.footer-contact {
  text-align: center;
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 40px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  backdrop-filter: blur(10px);
}

.footer-contact a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--orange-light);
  text-decoration: underline;
}

.footer-map iframe {
  border-radius: 12px;
  width: 100%;
  max-width: 800px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  border: 2px solid var(--orange);
}

/* === FLOATING CONTACT === */
.floating-contact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.contact-icon {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--orange);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 12px rgba(255, 102, 0, 0.4);
  cursor: pointer;
  transition: transform 0.3s ease;
  border: 2px solid var(--white);
}

.contact-icon:hover {
  transform: scale(1.1);
  background-color: var(--orange-dark);
}

.contact-icon i {
  font-size: 25px;
  color: var(--white);
}

.contact-icon.whatsapp {
  background-color: #25d366;
}

.contact-icon.whatsapp:hover {
  background-color: #1ebe57;
}

.contact-icon.phone::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  background: rgba(255, 102, 0, 0.3);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
  pointer-events: none;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.whatsapp-form {
  display: none;
  flex-direction: column;
  gap: 5px;
  background-color: var(--white);
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  width: 240px;
  border: 2px solid var(--orange);
}

.whatsapp-form textarea {
  resize: none;
  height: 60px;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid var(--gray);
  font-family: inherit;
}

.whatsapp-form button {
  background-color: var(--orange);
  color: var(--white);
  border: none;
  padding: 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: inherit;
  font-weight: bold;
}

.whatsapp-form button:hover {
  background-color: var(--orange-dark);
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

/* === MASAÜSTÜ GÖRÜNÜM === */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-menu {
    display: flex;
  }
}

/* === MOBİL UYUMLULUK === */
@media (max-width: 768px) {
  .service-hero {
    padding: 80px 20px;
    background-attachment: scroll;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-slogan {
    font-size: 1.1rem;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    position: absolute;
    top: 100%;
    right: 1rem;
    width: 280px;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    border: 2px solid var(--orange);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .dropdown-menu {
    position: static;
    background: transparent;
    box-shadow: none;
    border: none;
    margin-top: 10px;
  }

  .dropdown-menu a {
    background-color: rgba(255, 102, 0, 0.2);
    margin-top: 5px;
    border-radius: 6px;
    border: 1px solid rgba(255, 102, 0, 0.3);
  }

  .dropdown.active .dropdown-menu {
    display: flex;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
  }

  .footer-col {
    margin-bottom: 30px;
  }

  .footer-map iframe {
    height: 250px;
  }

  .page-header h1 {
    font-size: 2.2rem;
  }

  .page-header p {
    font-size: 1rem;
  }

  .services-overview h2 {
    font-size: 2rem;
  }
}