/* === GENEL TEMA === */
:root {
  --black: #000000;
  --dark-gray: #1a1a1a;
  --orange: #FF6600;
  --orange-dark: #CC5500;
  --orange-light: #FF8833;
  --white: #FFFFFF;
  --light-gray: #f5f5f5;
  --gray: #e0e0e0;
}

/* === HERO BÖLÜMÜ === */
.hero {
  background: url('ofis.jpg') no-repeat center center/cover;
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 40px 20px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 102, 0, 0.3);
  border: 1px solid var(--orange);
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--white);
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.5;
  color: var(--gray);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.hero-buttons a {
  text-decoration: none;
  background-color: var(--orange);
  color: var(--white);
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid var(--orange);
}

.btn {
  background-color: var(--orange);
  color: var(--white);
}

.btn:hover {
  background-color: var(--orange-dark);
  border-color: var(--orange-dark);
}

.btn-secondary {
  background-color: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}

.btn-secondary:hover {
  background-color: var(--orange);
  color: var(--white);
}

/* === HİZMETLER BÖLÜMÜ === */
.services-overview {
  padding: 60px 20px;
  text-align: center;
  background-color: var(--light-gray);
}

.services-overview h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: var(--black);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background-color: var(--white);
  border-radius: 15px;
  overflow: hidden;
  text-align: left;
  text-decoration: none;
  color: var(--black);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--gray);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.2);
  border-color: var(--orange);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-card h3 {
  font-size: 1.4em;
  margin: 15px;
  color: var(--orange);
}

.service-card p {
  font-size: 1em;
  margin: 0 15px 20px;
  color: var(--dark-gray);
}

/* === HEADER === */
.main-header {
  background-color: var(--black);
  color: var(--white);
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  border-bottom: 2px solid var(--orange);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 28px;
  font-weight: bold;
  color: var(--white);
  text-decoration: none;
}

.logo img {
  height: 45px;
  margin-right: 12px;
}

.nav-menu ul {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu ul li a {
  text-decoration: none;
  font-weight: 600;
  padding: 10px 15px;
  border-radius: 6px;
  transition: background 0.3s ease, color 0.3s;
  font-size: 16px;
  background-color: var(--dark-gray);
  color: var(--white);
  border: 1px solid var(--orange);
}

.nav-link.home:hover    { background-color: var(--orange); color: var(--black); }
.nav-link.services:hover{ background-color: var(--orange); color: var(--black); }
.nav-link.about:hover   { background-color: var(--orange); color: var(--black); }
.nav-link.contact:hover { background-color: var(--orange); color: var(--black); }
.nav-link.blog:hover    { background-color: var(--orange); color: var(--black); }
.nav-link.faq:hover     { background-color: var(--orange); color: var(--black); }

/* Sosyal Medya */
.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: var(--white);
  font-size: 20px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--orange);
}

/* Mobil Menü Butonu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
}

/* === REFERANSLAR BÖLÜMÜ === */
.testimonials {
  background: var(--light-gray);
  padding: 60px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--black);
}

.testimonial-container {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
  justify-content: flex-start;
}

.testimonial-card {
  flex: 0 0 300px;
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  scroll-snap-align: start;
  text-align: left;
}

.testimonial-card .stars {
  color: var(--orange);
  font-size: 20px;
  margin-bottom: 10px;
}

.testimonial-card .comment {
  font-style: italic;
  color: var(--dark-gray);
  font-size: 16px;
  margin-bottom: 12px;
}

.testimonial-card .author {
  text-align: right;
  font-weight: 600;
  color: var(--black);
  font-size: 14px;
}

.button-wrapper {
  margin-top: 30px;
}

.btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--orange);
  color: var(--white);
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
  border: 2px solid var(--orange);
}

.btn-secondary:hover {
  background-color: var(--orange-dark);
  border-color: var(--orange-dark);
}

/* Scrollbar */
.testimonial-container::-webkit-scrollbar {
  height: 8px;
}
.testimonial-container::-webkit-scrollbar-track {
  background: var(--gray);
}
.testimonial-container::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 10px;
}

/* === FOOTER === */
.site-footer {
  background: linear-gradient(to right, var(--black), var(--dark-gray));
  color: var(--white);
  padding: 60px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
  border-top: 3px solid var(--orange);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1 1 250px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 10px;
}

.footer-title {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--white);
}

.slogan {
  font-style: italic;
  color: var(--gray);
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--orange);
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--orange);
  text-decoration: underline;
}

/* İletişim */
.footer-contact {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
  font-size: 15px;
  color: var(--gray);
}

.footer-contact p a {
  color: var(--orange);
  text-decoration: none;
}

.footer-contact p a:hover {
  text-decoration: underline;
}

/* Harita */
.footer-map {
  margin-top: 30px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 102, 0, 0.3);
  border: 2px solid var(--orange);
}

.styled-map {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 20px;
}

/* === GALERİ BÖLÜMÜ === */
.gallery-section {
  background-color: var(--light-gray);
  padding: 60px 20px;
}

.gallery-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: var(--black);
}

.gallery-section p {
  text-align: center;
  color: var(--dark-gray);
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 1rem;
}

.gallery-scroll-container {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 10px;
  scroll-behavior: smooth;
}

.gallery-card {
  flex: 0 0 auto;
  width: 280px;
  height: 180px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-card:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 24px rgba(255, 102, 0, 0.2);
  border-color: var(--orange);
}

.gallery-link {
  display: block;
  width: fit-content;
  margin: 30px auto 0;
  padding: 12px 26px;
  background-color: var(--orange);
  color: var(--white);
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  border: 2px solid var(--orange);
}

.gallery-link:hover {
  background-color: var(--orange-dark);
  border-color: var(--orange-dark);
}

/* === 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;
  }
}

/* === MOBİL UYUMLULUK === */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.8em;
  }

  .hero p {
    font-size: 1em;
  }

  .hero-buttons a {
    padding: 12px 20px;
    font-size: 0.95em;
  }

  .hero-content {
    padding: 30px 15px;
  }

  .nav-menu {
    display: none;
    width: 100%;
    background-color: var(--dark-gray);
    margin-top: 10px;
    border: 1px solid var(--orange);
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 0;
  }

  .nav-menu ul li a {
    display: block;
    padding: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .nav-menu.active {
    display: block;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .social-icons {
    justify-content: center;
    width: 100%;
    margin-top: 10px;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-col {
    margin-bottom: 30px;
  }

  .footer-contact {
    text-align: center;
  }
}