/* Genel Ayarlar */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;

    }


body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

/* Kapsayıcı */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

/* === Top Bar (aynı kalabilir) */
.topbar {
  background-color: #222; /* koyu gri */
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 40px;
  font-size: 14px;
}

.topbar-left span {
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.topbar-right a {
  color: white;
  margin-left: 12px;
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 1px solid white;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  font-size: 13px;
  transition: 0.3s;
}

.topbar-right a:hover {
  background: white;
  color: #222;
}

/* === Header & Logo */
.main-header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  padding: 20px 15px 0;
}

.logo-center img {
  max-height: 80px;
  width: auto;
  margin-bottom: 20px;
}

/* === Menü ve Buton Satırı */
.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* Menü */
.menu ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.menu a {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.menu a.active,
.menu a:hover {
  color: #ddb770;
}

/* Buton */
.quote-btn a {
  background-color: #ddb770;
  color: #fff;
  font-weight: bold;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s ease;
}

.quote-btn a:hover {
  background-color: #caa24f;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-row {
    flex-direction: column;
    align-items: center;
  }

  .quote-btn {
    margin-top: 10px;
  }
}
/* ------ Menü ------ */
.main-menu ul{
  list-style:none;
  margin:35px 0 0;
  padding:0;
  display:flex;
  justify-content:center;
  gap:55px;                         /* maddeler arası mesafe */
  flex-wrap:wrap;
}

.main-menu a{
  position:relative;                /* alt çizgi için */
  font-size:15px;
  font-weight:600;
  letter-spacing:.5px;
  text-decoration:none;
  color:#000;
  transition:color .25s ease;
}

/* Alt çizgi (pseudo-element) */
.main-menu a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-8px;                      /* metnin hemen altı */
  width:0;
  height:2px;
  background:#c6943e;               /* orijinal altın tonu */
  transition:width .45s ease;       /* yavaş soldan sağa */
  transform-origin:left center;
}

/* Hover & Active durumları */
.main-menu a:hover,
.main-menu a.active{
  color:#c6943e;
}

.main-menu a:hover::after,
.main-menu a.active::after{
  width:100%;
}

/* --------- Responsive küçük ekran dokunuşu --------- */
@media(max-width:768px){
  .main-menu ul{gap:25px}
  .logo-wrap img{max-height:90px}
}



/* Header */
.header {
  background-color: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header .logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  float: left;
}

.header nav {
  float: right;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-list li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 8px 12px;
  transition: all 0.3s ease;
}

.nav-list li a:hover {
  color: #007bff;
}

.social-fixed {
  position: fixed;
  top: 45%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.social-fixed a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background-color: white;
  border-radius: 0 6px 6px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.social-fixed a:hover {
  background-color: #f2f2f2;
}

.social-fixed svg {
  width: 24px;
  height: 24px;
}

    body {
      margin: 0;
      padding: 0;
      background: #fff;
      color: #333;
    }
    .container {
      max-width: 1200px;
      margin: 2rem auto;
      padding: 0 1rem;
    }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      align-items: start;
    }
    /* Left Info */
    .contact-info {
      padding-right: 2rem;
    }
    .contact-info h2 {
      font-size: 1.25rem;
      text-transform: uppercase;
      font-weight: 600;
      margin-bottom: 1rem;
    }
    .contact-info ul {
      list-style: none;
      padding: 0;
    }
    .contact-info li {
      display: flex;
      align-items: center;
      margin-bottom: 1rem;
      font-size: 0.95rem;
    }
    .contact-info li i {
      font-size: 1.2rem;
      width: 30px;
      color: #111;
    }
    .contact-info li span {
      margin-left: 0.5rem;
      display: inline-flex;
      align-items: center;
    }
    .badge {
      display: inline-block;
      background: #dcb25f;
      color: #fff;
      font-size: 0.75rem;
      font-weight: 600;
      padding: 0.1rem 0.4rem;
      border-radius: 4px;
      margin-left: 0.5rem;
      text-transform: uppercase;
    }
    /* SAĞ FORM ALANI */
.hero-form {
  flex: 1 1 420px;
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.hero-form h2 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  text-align: center;
}

.hero-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-form input {
  flex: 1;
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.hero-form button {
  margin-top: 10px;
  padding: 13px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero-form button:hover {
  background: #333;
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .form-row {
    flex-direction: column;
  }
  .hero-text h1 {
    font-size: 2.2rem;
  }
}

.btn {
  background-color: #007bff;
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #0056b3;
}

.btn-outline {
  background: transparent;
  border: 2px solid #007bff;
  color: #007bff;
  padding: 10px 25px;
  margin-left: 10px;
  text-decoration: none;
  border-radius: 5px;
}

.btn-outline:hover {
  background: #007bff;
  color: white;
}
    /* Right Form */
    .contact-form {
      border-left: 1px solid #e0e0e0;
      padding-left: 2rem;
    }
    .contact-form h2 {
      font-size: 1.25rem;
      text-transform: uppercase;
      font-weight: 600;
      margin-bottom: 1rem;
    }
    .form-row {
      display: flex;
      gap: 1rem;
      margin-bottom: 1rem;
    }
    .form-group {
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .form-group label {
      font-size: 0.9rem;
      margin-bottom: 0.5rem;
    }
    .form-group input,
    .form-group textarea {
      padding: 0.6rem;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-family: inherit;
      font-size: 0.95rem;
    }
    .form-group textarea {
      resize: vertical;
      min-height: 120px;
    }
    .contact-form button {
      padding: 0.7rem 1.5rem;
      background: #111;
      color: #fff;
      border: none;
      border-radius: 4px;
      text-transform: uppercase;
      cursor: pointer;
      margin-top: 1rem;
    }
    @media (max-width: 900px) {
      .contact-grid {
        grid-template-columns: 1fr;
      }
      .contact-form {
        border-left: none;
        padding-left: 0;
        margin-top: 2rem;
      }
      .form-row {
        flex-direction: column;
      }
    }
        .map-container {
      /* Span full width under the two-column grid but slightly narrowed */
      grid-column: 1 / -1;
      /* Increased width */
      width: 120%;
      max-width: 1200px;
      margin: 2rem auto;
      /* Slightly taller for better visibility */
      height: 250px;
      border-radius: 8px;
      overflow: hidden;
    }
    .map-container iframe { width: 100%; height: 100%; border: 0; }
    @media (max-width: 900px) {
      .contact-grid { grid-template-columns: 1fr; }
      .contact-form { border-left: none; padding-left: 0; margin-top: 2rem; }
      .form-row { flex-direction: column; }
      .map-container { height: 200px; }
    }






/* ==============================
   Clean & Modern Locations
   ============================== */
:root {
  --lc-primary:   #000000;
  --lc-accent:    #dcb25f;
  --lc-bg:        #ffffff;
  --lc-card-bg:   #ffffff;
  --lc-text:      #333333;
  --lc-muted:     #666666;
  --lc-shadow:    rgba(0, 0, 0, 0.08);
  --lc-radius:    12px;
  --lc-gap:       1.5rem;
  --lc-font:      'Helvetica Neue', Arial, sans-serif;
}

.locations-clean {
  background: var(--lc-bg);
  padding: 4rem 0;
  font-family: var(--lc-font);
}
.locations-clean .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.lc-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.lc-header h2 {
  font-size: 2.8rem;
  color: var(--lc-primary);
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}
.lc-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--lc-accent);
  margin: 8px auto 0;
  border-radius: 2px;
}
.lc-header p {
  color: var(--lc-muted);
  font-size: 1rem;
}

/* Grid */
.lc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: var(--lc-gap);
}

/* Card */
.lc-card {
  background: var(--lc-card-bg);
  border-radius: var(--lc-radius);
  box-shadow: 0 4px 12px var(--lc-shadow);
  padding: 1.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px var(--lc-shadow);
}

/* Card Title */
.lc-card-title {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.flag {
  font-size: 1.6rem;
  margin-right: 0.75rem;
}
.lc-card-title h3 {
  font-size: 1.4rem;
  color: var(--lc-primary);
  margin: 0;
}

/* List */
.lc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lc-list li {
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
  position: relative;
  color: var(--lc-text);
  font-size: 1rem;
}
.lc-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--lc-accent);
  font-size: 1.2rem;
  line-height: 1;
}

/* Responsive */
@media (max-width: 600px) {
  .lc-header h2 { font-size: 2.2rem; }
  .lc-card { padding: 1.5rem; }
  .flag { font-size: 1.4rem; }
  .lc-card-title h3 { font-size: 1.2rem; }
  .lc-list li { font-size: 0.95rem; }
}



    .footer {
  background: #191919;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding-top: 2rem;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1rem;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.feature-box {
  display: flex;
  gap: 1rem;
  max-width: 250px;
  flex: 1;
}
.feature-number {
  font-size: 2.5rem;
  color: #eab85b;
  font-weight: bold;
}
.feature-content strong {
  display: block;
  color: #fff;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  padding: 3rem 0;
  flex-wrap: wrap;
  text-align: left;
  gap: 2rem;
}
.footer-col {
  flex: 1;
  min-width: 200px;
  padding: 1rem;
}
.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #fff;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  line-height: 2;
}
.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #eab85b;
}
.footer-col .tag {
  background-color: #eab85b;
  color: #111;
  padding: 0 5px;
  border-radius: 5px;
  font-size: 0.7rem;
  margin-left: 5px;
}
.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.logo-col img {
  max-width: 100px;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .footer-top, .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .feature-box {
    max-width: 100%;
    justify-content: center;
  }
  .footer-col {
    padding: 0.5rem;
  }
}