/* Koyu degrade arka plan */
body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(135deg, #181c24 0%, #23272f 100%);
  color: #f5f5f5;
  min-height: 100vh;
}

/* Glassmorphism Header */
.glass-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(24,28,36,0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px #0003;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 70px;
}
.logo {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #ffd600;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2.2rem;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.nav-links a.active, .nav-links a:hover {
  background: #ffd600;
  color: #181818;
  box-shadow: 0 2px 8px #ffd60044;
}

/* Hero */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 3.5rem auto 2.5rem auto;
  padding: 2.5rem 2rem;
  border-radius: 32px;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 8px 48px #0002;
  position: relative;
  overflow: hidden;
}
.hero-bg-anim {
  position: absolute;
  left: -20%;
  top: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle at 30% 30%, #ffd60044 0%, transparent 60%),
              radial-gradient(circle at 80% 70%, #ffd60022 0%, transparent 70%);
  z-index: 0;
  animation: heroBgMove 8s infinite alternate linear;
}
@keyframes heroBgMove {
  0% { transform: scale(1) translateY(0); }
  100% { transform: scale(1.1) translateY(20px); }
}
.hero-content {
  z-index: 1;
  flex: 1 1 420px;
}
.hero-title {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1.1;
}
.hero-title .highlight {
  color: #ffd600;
  text-shadow: 0 2px 12px #ffd60055;
}
.hero-desc {
  font-size: 1.25rem;
  color: #e9e9e9;
  margin-bottom: 2.2rem;
}
.cta-btn.animated {
  background: linear-gradient(90deg, #ffd600 0%, #fffde4 100%);
  color: #181818;
  padding: 1.2rem 2.7rem;
  border: none;
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: bold;
  box-shadow: 0 4px 24px #ffd60044;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  display: inline-block;
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 24px #ffd60044; }
  50% { box-shadow: 0 8px 48px #ffd60099; }
}
.cta-btn.animated:hover {
  background: #181818;
  color: #ffd600;
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 8px 32px #ffd60099;
}
.hero-image {
  flex: 1 1 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.hero-image img {
  width: 320px;
  max-width: 100%;
  border-radius: 24px;
  box-shadow: 0 8px 48px #ffd60033;
  background: #fffde4;
  object-fit: contain;
}

/* Hızlı Hizmetler */
.quick-services {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  margin: 0 auto 3.5rem auto;
  max-width: 1100px;
}
.service-glass-card {
  background: rgba(255,255,255,0.10);
  border-radius: 18px;
  box-shadow: 0 4px 32px #ffd60022;
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 220px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(6px);
  color: #fff;
}
.service-glass-card i {
  font-size: 2.5rem;
  color: #ffd600;
  margin-bottom: 1.1rem;
  display: block;
}
.service-glass-card h2 {
  color: #ffd600;
  font-size: 1.25rem;
  margin-bottom: 0.7rem;
  font-weight: 700;
}
.service-glass-card p {
  color: #e9e9e9;
  font-size: 1.05rem;
}
.service-glass-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 12px 48px #ffd60055;
  background: rgba(255,255,255,0.18);
}

/* Footer */
.footer-glass {
  background: rgba(24,28,36,0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 -2px 24px #0003;
  padding: 2.2rem 0 1.2rem 0;
  margin-top: 3rem;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.footer-logo {
  font-size: 1.3rem;
  color: #ffd600;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-social a {
  color: #ffd600;
  font-size: 1.5rem;
  margin-right: 1.2rem;
  transition: color 0.2s, transform 0.2s;
}
.footer-social a:hover {
  color: #fff;
  transform: scale(1.2);
}
.footer-copy {
  color: #fff;
  font-size: 1.05rem;
  letter-spacing: 1px;
}

/* İletişim Glassmorphism - GÜNCELLEME */
.glass-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto 3rem auto;
  background: rgba(255,255,255,0.08);
  border-radius: 24px;
  box-shadow: 0 4px 32px #ffd60022;
  padding: 2.5rem 2rem;
  backdrop-filter: blur(8px);
}
.glass-form {
  flex: 1 1 350px;
  min-width: 260px;
  background: rgba(255,255,255,0.13);
  border-radius: 18px;
  box-shadow: 0 2px 16px #ffd60022;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  color: #fff;
  backdrop-filter: blur(6px);
  justify-content: center;
  height: 100%;
}
.map-section {
  flex: 1 1 350px;
  min-width: 260px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.13);
  border-radius: 18px;
  box-shadow: 0 2px 16px #ffd60022;
  overflow: hidden;
  height: 100%;
}
.map-section iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
  border-radius: 16px;
  display: block;
}
.glass-form h2 {
  color: #ffd600;
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.glass-form label {
  font-weight: 600;
  color: #fff;
}
.glass-form input, .glass-form textarea {
  padding: 0.7rem 1rem;
  border-radius: 8px;
  border: 1px solid #ffd60099;
  font-size: 1rem;
  background: rgba(255,255,255,0.18);
  color: #181818;
  transition: border 0.2s, box-shadow 0.2s;
}
.glass-form input:focus, .glass-form textarea:focus {
  border: 1.5px solid #ffd600;
  outline: none;
  box-shadow: 0 2px 8px #ffd60033;
}
.glass-form button {
  margin-top: 0.5rem;
}
.glass-form a {
  color: #ffd600;
  text-decoration: underline;
  font-weight: 600;
}
@media (max-width: 900px) {
  .glass-contact {
    flex-direction: column;
    gap: 2rem;
    padding: 1.5rem 1rem;
  }
  .glass-form, .map-section {
    min-width: 0;
    width: 100%;
    height: auto;
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
  .map-section iframe {
    min-height: 200px;
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .hero, .footer-content, .quick-services {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 1rem;
  }
  .hero {
    padding: 2rem 1rem;
  }
}
@media (max-width: 700px) {
  .hero-title {
    font-size: 2rem;
  }
  .logo {
    font-size: 1.1rem;
  }
  .hero-image img {
    width: 180px;
  }
  .service-glass-card {
    min-width: 160px;
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
} 

/* Sabit Telefon Butonu */
.fixed-phone-btn {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 9999;
  background: linear-gradient(90deg, #ffd600 0%, #fffde4 100%);
  color: #181818;
  border: none;
  border-radius: 50px;
  box-shadow: 0 4px 24px #ffd60055;
  padding: 0.9rem 2rem 0.9rem 1.3rem;
  font-size: 1.15rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  animation: phonePulse 2.5s infinite;
  text-decoration: none;
}
.fixed-phone-btn:hover {
  background: #181818;
  color: #ffd600;
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 8px 32px #ffd60099;
}
@keyframes phonePulse {
  0%, 100% { box-shadow: 0 4px 24px #ffd60044; }
  50% { box-shadow: 0 8px 48px #ffd60099; }
}
@media (max-width: 700px) {
  .fixed-phone-btn {
    right: 12px;
    bottom: 12px;
    font-size: 1rem;
    padding: 0.7rem 1.3rem 0.7rem 1rem;
  }
} 

/* Mobil Uyum ve Görsel Kalitesi */
@media (max-width: 900px) {
  .hero, .glass-contact, .footer-content, .quick-services, .home-advantages, .how-we-work, .home-gallery-preview {
    flex-direction: column !important;
    align-items: center !important;
    gap: 1.2rem !important;
    padding: 1.2rem 0.5rem !important;
    max-width: 100vw !important;
  }
  .hero-content, .hero-slider {
    width: 100% !important;
    min-width: 0 !important;
    padding: 0 !important;
  }
  .hero-title {
    font-size: 1.5rem !important;
    text-align: center;
  }
  .hero-desc {
    font-size: 1rem !important;
    text-align: center;
  }
  .hero-slider {
    margin-top: 1.2rem;
  }
  .hero-slider > div {
    width: 98vw !important;
    max-width: 98vw !important;
    height: 180px !important;
  }
  .hero-slide-img {
    width: 100% !important;
    height: 180px !important;
    object-fit: cover !important;
    border-radius: 18px !important;
    image-rendering: auto !important;
  }
  .home-gallery-preview > div[style*='grid-template-columns'] {
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: repeat(2, 90px) !important;
  }
  .home-gallery-preview img {
    height: 90px !important;
    border-radius: 10px !important;
    object-fit: cover !important;
    image-rendering: auto !important;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.7rem !important;
    padding: 0.5rem !important;
  }
  .gallery-grid img {
    height: 90px !important;
    border-radius: 10px !important;
    object-fit: cover !important;
    image-rendering: auto !important;
  }
  .service-glass-card, .glass-form, .about-text, .contact-info, .map-section {
    min-width: 0 !important;
    width: 100% !important;
    padding: 1rem 0.5rem !important;
    font-size: 0.98rem !important;
  }
  .footer-content {
    flex-direction: column !important;
    gap: 1rem !important;
    padding: 1rem 0.5rem !important;
  }
}
@media (max-width: 600px) {
  .hero-title {
    font-size: 1.1rem !important;
  }
  .hero-slider > div {
    height: 120px !important;
  }
  .hero-slide-img {
    height: 120px !important;
  }
  .home-gallery-preview > div[style*='grid-template-columns'] {
    grid-template-columns: 1fr !important;
    grid-template-rows: repeat(4, 90px) !important;
  }
  .home-gallery-preview img, .gallery-grid img {
    height: 70px !important;
  }
  .fixed-phone-btn {
    right: 6px;
    bottom: 6px;
    font-size: 0.95rem;
    padding: 0.5rem 1rem 0.5rem 0.7rem;
  }
} 

/* Hamburger Menü */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  cursor: pointer;
  margin-left: 1rem;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 4px;
  background: #ffd600;
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (min-width: 901px) {
  .nav-links {
    position: static !important;
    flex-direction: row !important;
    gap: 2.2rem !important;
    background: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    overflow-y: visible !important;
    max-height: none !important;
    height: auto !important;
    padding: 0 !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .nav-links li {
    border-bottom: none !important;
    padding: 0 !important;
    text-align: left !important;
  }
  .nav-links a {
    display: flex !important;
    align-items: center !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 8px !important;
    font-size: 1.08rem !important;
    gap: 0.5rem !important;
    width: auto !important;
    background: none !important;
    color: #fff !important;
  }
  .nav-links a.active, .nav-links a:hover {
    background: #ffd600 !important;
    color: #181818 !important;
  }
  .hamburger {
    display: none !important;
  }
}

@media (max-width: 900px) {
  nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding: 0 1rem;
    position: relative;
  }
  .hamburger {
    display: flex;
    z-index: 1201;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 80vw;
    max-width: 340px;
    background: rgba(24,28,36,0.97);
    backdrop-filter: blur(8px);
    flex-direction: column;
    gap: 0;
    box-shadow: -4px 0 32px #18181855;
    border-radius: 0 0 0 24px;
    overflow-y: auto !important;
    max-height: 100vh !important;
    transition: transform 0.3s cubic-bezier(.4,2,.6,1), opacity 0.2s;
    transform: translateX(100%);
    opacity: 0;
    padding: 2.5rem 0 1.5rem 0;
    z-index: 1200;
  }
  .nav-links.open {
    transform: translateX(0);
    opacity: 1;
  }
  .nav-links li {
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #ffd60022;
    padding: 0 2rem;
  }
  .nav-links a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1.2rem 0;
    border-radius: 0;
    font-size: 1.15rem;
    gap: 0.7rem;
  }
  .nav-links a.active {
    background: #ffd600;
    color: #181818;
  }
  .nav-links a:hover {
    background: #ffd60033;
    color: #ffd600;
  }
  .hamburger {
    position: fixed;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    z-index: 1300;
  }
  body {
    padding-top: 60px !important;
    overflow-x: hidden;
  }
} 

@media (max-width: 900px) {
  .hero-content {
    width: 100% !important;
    min-width: 0 !important;
    padding: 0 !important;
    margin-bottom: 0.2rem !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .cta-btn.animated {
    display: block !important;
    margin: 1.2rem auto 0.1rem auto !important;
    text-align: center !important;
    float: none !important;
  }
  .hero-slider {
    margin-top: 0 !important;
  }
}
@media (max-width: 600px) {
  .hero-slider > div {
    height: 160px !important;
  }
  .hero-slide-img {
    height: 160px !important;
  }
} 

@media (max-width: 900px) {
  html, body, main {
    min-height: unset !important;
    height: auto !important;
    overflow: visible !important;
    padding-bottom: 3.5rem !important;
  }
  .glass-contact, .how-we-work, .home-gallery-preview, .about-content, .footer-glass {
    padding-bottom: 2.5rem !important;
    margin-bottom: 2.5rem !important;
    overflow: visible !important;
    min-height: unset !important;
    height: auto !important;
  }
} 