* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0c1424;
  color: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(10, 20, 40, 0.9);
  backdrop-filter: blur(10px);
  z-index: 999;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo strong {
  font-size: 18px;
}

.logo small {
  display: block;
  font-size: 10px;
  color: #aaa;
}

.menu {
  display: flex;
  gap: 30px;
}

.menu a {
  text-decoration: none;
  color: #ccc;
  font-size: 14px;
}

.menu a.active,
.menu a:hover {
  color: #f5a623;
}

.phone-btn {
  border: 1px solid #f5a623;
  padding: 10px 18px;
  border-radius: 30px;
  color: #f5a623;
  text-decoration: none;
  font-size: 14px;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* HERO */
.hero {
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1543852786-1cf6624b9987') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #0c1424 40%, rgba(0,0,0,0.2));
}

.hero-content {
  position: relative;
  max-width: 600px;
}

.badge {
  display: inline-block;
  border: 1px solid #f5a623;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 12px;
  margin-bottom: 20px;
  color: #f5a623;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.2;
}

.hero h1 span {
  color: #f5a623;
}

.hero p {
  margin: 20px 0;
  color: #aaa;
  font-size: 14px;
}

.buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.btn {
  padding: 14px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
}

.primary {
  background: #f5a623;
  color: #000;
}

.secondary {
  border: 1px solid #555;
  color: #fff;
}

.features {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: #ccc;
}

/* MOBILE */
@media(max-width: 768px){

  .menu {
    position: absolute;
    top: 70px;
    right: 0;
    background: #0c1424;
    flex-direction: column;
    width: 200px;
    display: none;
    padding: 20px;
  }

  .menu.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .phone-btn {
    display: none;
  }

  .hero h1 {
    font-size: 30px;
  }

  .features {
    flex-direction: column;
  }

  .buttons {
    flex-direction: column;
  }
}













/* STATS */
.stats {
  background: #0b1220;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stats-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  flex: 1;
}

.stat h2 {
  font-size: 32px;
  color: #fff;
}

.stat p {
  font-size: 12px;
  color: #aaa;
}

.highlight {
  text-align: right;
}

.highlight h3 {
  color: #f5a623;
  font-size: 16px;
}

.highlight span {
  font-size: 11px;
  color: #888;
}

/* ABOUT */
.about {
  padding: 80px 0;
}

.about-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-img {
  position: relative;
  flex: 1;
}

.about-img img {
  width: 100%;
  border-radius: 20px;
}

.experience-box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #111a2e;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
}

.experience-box strong {
  font-size: 28px;
  color: #f5a623;
}

.experience-box span {
  display: block;
  font-size: 12px;
  color: #aaa;
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 36px;
  margin: 15px 0;
}

.about-content p {
  color: #aaa;
  font-size: 14px;
  line-height: 1.6;
}

.about-features {
  display: flex;
  gap: 30px;
  margin: 20px 0;
  font-size: 14px;
}

.about-features small {
  color: #888;
}

/* MOBILE */
@media(max-width: 768px){

  .stats-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .highlight {
    text-align: center;
  }

  .about-wrapper {
    flex-direction: column;
  }

  .about-content h2 {
    font-size: 26px;
  }

  .experience-box {
    right: 10px;
    bottom: 10px;
  }

}



:root {
    --accent: #f8b400; /* Altın sarısı */
    --dark-bg: #0b0e14;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

.modern-hero {
    background: radial-gradient(circle at top right, #1a1f29, #0b0e14);
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    width: 100%;
    gap: 40px;
}

/* Sol Metin Alanı */
.hero-content .badge {
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 13px;
    border-left: 3px solid var(--accent);
    padding-left: 10px;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #fff;
    margin: 20px 0;
    line-height: 1.1;
}

.hero-content .highlight {
    background: linear-gradient(to right, var(--accent), #ffcc33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    color: #a0a0a0;
    font-size: 1.1rem;
    max-width: 450px;
}

/* Sağ Cam Kart Tasarımı */
.glass-call-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.glass-call-card:hover {
    transform: translateY(-10px);
    border-color: rgba(248, 180, 0, 0.3);
    box-shadow: 0 25px 50px rgba(248, 180, 0, 0.1);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: var(--accent);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: #000;
    z-index: 2;
    position: relative;
}

/* Hareketli Halka Efekti */
.pulse-container {
    position: relative;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--accent);
    border-radius: 20px;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}

.info-box small {
    color: var(--text-gray);
    display: block;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.phone-number {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.phone-number:hover {
    color: var(--accent);
}

/* Mobil Uyumluluk */
@media (max-width: 850px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content p { margin: 0 auto 30px; }
    .glass-call-card { padding: 30px; width: 100%; justify-content: center; }
}


.contact-card {
    background-color: #161b22;
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.contact-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-item .icon {
    background: rgba(253, 187, 45, 0.1);
    color: #fdbb2d;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 18px;
}

.info-item span {
    display: block;
    font-size: 11px;
    color: #888;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.info-item p {
    font-weight: 600;
    font-size: 15px;
}
.contact-wrapper {
    width: 95%;
    max-width: 1200px;
    padding: 40px 20px;
    z-index: 10;
}

.header-content {
    text-align: center;
    margin-bottom: 60px;
}

.sub-title {
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: rgba(253, 187, 45, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
}

.header-content h1 {
    font-size: clamp(32px, 5vw, 56px);
    margin: 20px 0;
    font-weight: 800;
}



.glass-panel {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 40px;
    transition: transform 0.3s ease;
}



.contact-item .icon {
    color: var(--primary);
    width: 28px;
    height: 28px;
    stroke-width: 1.5px;
}

.text-group label {
    display: block;
    font-size: 10px;
    color: var(--text-dim);
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.text-group a, .text-group p {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.wp-button {
    margin-top: 10px;
    background: var(--wp-green);
    border: none;
    padding: 18px;
    border-radius: 16px;
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.wp-button:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

.map-side {
    padding: 10px;
    overflow: hidden;
}

#map-container {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    filter: grayscale(1) invert(0.92) contrast(1.1);
}

#map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}





.main-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Oranı biraz daha dengeledik */
    gap: 30px;
    align-items: stretch; /* Her iki kutunun boyunu eşitler */
    justify-content: center; /* Kartları yatayda ortalar */
}

.info-side {
    display: flex;
    flex-direction: column;
    justify-content: center; /* İçerikleri dikeyde tam ortalar, sola kayık hissini bitirir */
    gap: 35px;
    padding: 50px; /* İç boşluğu artırarak daha dolgun durmasını sağladık */
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    /* Eğer metinler hala çok solda geliyorsa buraya padding-left ekleyebilirsin */
}

/* Mobil için düzeltme */
@media (max-width: 900px) {
    .main-card {
        grid-template-columns: 1fr;
        max-width: 500px; /* Mobilde çok yayılmaması için genişliği sınırladık */
        margin: 0 auto;
    }
    
    .info-side {
        padding: 30px;
    }

    .map-side {
        height: 350px;
    }
}











.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.icon-box {
    color: var(--accent-orange);
    font-size: 20px;
    margin-top: 5px;
}

.text label {
    display: block;
    color: #6366f1; /* Morumsu başlık rengi */
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.text a, .text p {
    color: var(--text-white);
    text-decoration: none;
    font-size: 16px;
    margin: 0;
}

.whatsapp-btn {
    background-color: var(--whatsapp-green);
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    filter: brightness(1.1);
}

/* Harita */
.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    filter: grayscale(1) invert(0.9) contrast(1.2); /* Haritayı koyu temaya uyarlama */
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .contact-card {
        grid-template-columns: 1fr;
    }
    
    .header h1 {
        font-size: 2rem;
    }

    .map-container iframe {
        height: 300px;
    }
}


/* Footer Styles */
.glass-footer {
    margin-top: 80px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 30px 0;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 60px;
    padding: 0 20px;
}

.footer-section h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 700;
}

/* Brand Section */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.logo-icon {
    color: var(--primary);
    width: 35px;
    height: 35px;
}

.brand-name {
    display: block;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
}

.brand-sub {
    font-size: 10px;
    color: var(--primary);
    letter-spacing: 2px;
    font-weight: 600;
}

.footer-desc {
    color: var(--text-dim);
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-item {
    width: 40px;
    height: 40px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s;
    text-decoration: none;
}

.social-item:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-3px);
}

/* Links Section */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

/* Contact Section */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dim);
    font-size: 14px;
}

.c-icon {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

/* Bottom Bar */
.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-bottom p {
    color: #64748b;
    font-size: 12px;
}

/* MOBİL UYUMLULUK */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-logo, .social-links, .contact-line {
        justify-content: center;
    }

    .footer-links a:hover {
        padding-left: 0;
    }
    
    .glass-footer {
        padding: 50px 0 20px 0;
    }
}



.floating-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.floating-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.floating-icons img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.floating-icons .whatsapp-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
@media (max-width: 600px) {
  .floating-icons {
      bottom: 10px;
      right: 10px;
  }

  .floating-icons a {
      width: 50px;
      height: 50px;
  }

  .floating-icons img {
      width: 100%;
      height: 100%;
  }
}