/* Genel Stil Ayarları */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

h1, h2, h3 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

a {
    text-decoration: none;
    color: #2c3e50;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #2c3e50;
    color: #fff;
    border-radius: 50px;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
}

.btn:hover {
    background-color: #ffc107;
}

.btn-whatsapp {
    background-color: #25d366;
    color: #fff;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
}

/* Header */
.main-header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    flex-grow: 0;
}

.logo img {
    height: 80px;
}

.main-nav a {
    margin-left: 2rem;
    font-weight: 600;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #ffc107;
}

.social-icons-header a {
    margin-left: 1rem;
    color: #2c3e50;
    font-size: 1.2rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 750px; /* Masaüstü görünümde yüksekliği koru */
  background-size: cover;
  background-position: center center;
  color: #fff;
  text-align: left;
  overflow: hidden;
}

.hero-section::before {
    content: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.hero-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #fff;
}


.hero-btn {
  position: absolute;
  bottom: 130px; 
  left: 220px;   
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #25d366;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  border-radius: 40px;
  padding: 14px 42px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 3;
}

.hero-btn i {
  font-size: 1.2rem;
}

.hero-btn:hover {
  background-color: #128c7e;
  transform: translateY(-2px);
}

/* ---------- Tablet görünümü ---------- */
@media screen and (max-width: 992px) {
    .hero-section {
        height: 350px;   /* Tabletlerde biraz kısaldı */
        background-position: center top; /* Odak yukarı taşındı */
    }

    .hero-content h1 {
        font-size: 1.9rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

/* ---------- Mobil görünüm ---------- */
@media (max-width: 768px) {
  .hero-section {
    height: 240px !important;              /* görünür yükseklik */
    overflow: hidden !important;
    background-size: cover !important;
    /* Odak noktası: soldan biraz, yukarıdan kırp */
    /* X   Y */
    background-position: 45% -210px !important;
    padding: 0 !important;
  }

  .hero-content {
    padding: 24px 16px 0 !important;
    max-width: 100% !important;
    text-align: center !important;
  }

  .hero-content h1 { font-size: 1.35rem !important; }
  .hero-content p  { display: none !important; }

  /* Buton yazı bloğunun altında, ortalı */
  .hero-btn {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
    margin: 10px auto 12px !important;
    padding: 10px 24px !important;
    font-size: 0.9rem !important;
    border-radius: 40px !important;
  }
}
/* ---------- Çok küçük ekranlar (ör. iPhone SE) ---------- */
@media screen and (max-width: 480px) {
    .hero-section {
        height: 180px;   /* Daha da sıkı */
        background-position: center top;
    }

    .hero-btn {
        bottom: 8px;
        left: 8px;
        font-size: 0.8rem;
        padding: 6px 16px;
    }
}
/* Section Header */
.section-header .sub-title {
    background-color: #f1f1f1;
    color: #2c3e50;
    padding: 5px 15px;
    display: inline-block;
}

.section-header .main-title {
    background-color: #f1f1f1;
    color: #2c3e50;
    padding: 10px 20px;
    display: inline-block;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 0.5rem;
    position: relative;
    z-index: 2;
    background-color: #fff;
    padding: 0 20px;
}

/* Hizmetler ve Diğer Bölümler */
.services-section,
.advantages-section,
.testimonials-section,
.contact-form-section,
.fabrics-section,
.about-us-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

/* Hakkımızda Sayfasına Özel Düzenleme */
/* === Hakkımızda Sayfasına Özel Düzenleme === */
#hakkimizda-sayfasi {
    background-color: #f4f4f4;
}

/* Sarı başlık bandı ortalanmış */
#hakkimizda-sayfasi .page-banner {
    background-color: #ffc107;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.5rem 0;
    margin-bottom: 2rem;
}

#hakkimizda-sayfasi .page-banner h1 {
    color: #2c3e50;
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0;
}

/* İçerik kutusu */
#hakkimizda-sayfasi .about-us-content {
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    max-width: 1000px;
    margin: 3rem auto;
}

/* Metin ve görsel düzeni */
#hakkimizda-sayfasi .about-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

#hakkimizda-sayfasi .about-text-content {
    flex: 1;
    color: #333;
    font-size: 1.05rem;
    line-height: 1.7;
}

#hakkimizda-sayfasi .about-image {
    max-width: 480px;
    margin: 0 auto;
    border: 5px solid #ffc107;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

#hakkimizda-sayfasi .about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Paragraflar */
#hakkimizda-sayfasi .about-text-content p,
#hakkimizda-sayfasi .about-text-content-bottom p {
    text-indent: 2rem;
    margin-bottom: 1.5rem;
}

/* 📱 Mobil uyum */
@media (max-width: 900px) {
    #hakkimizda-sayfasi .about-grid {
        flex-direction: column;
    }
    #hakkimizda-sayfasi .page-banner h1 {
        font-size: 2rem;
    }
    #hakkimizda-sayfasi .about-us-content {
        padding: 2rem;
    }
}

/* Callout Section */
.callout-section {
    position: relative;
    padding: 8rem 0;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}
.callout-section.bg-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:#ffc107;; /* Renk yarı saydam yapıldı */
    z-index: 1;
}

.callout-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto 3rem;
}
.callout-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background-color: #ffc107;
    color: #2c3e50;
    padding: 10px 20px;
}
.callout-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    background-color: #ffc107;
    color: #2c3e50;
    padding: 10px 20px;
}
.stats-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.stat-item {
    background: rgba(250, 248, 240);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}
.stat-item span {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    color: #2c3e50;
}
.stat-item p {
    margin-top: 0.5rem;
    font-size: 1.1rem;
    color: #2c3e50;
}

/* Advantages Section */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.advantage-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}
.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ffc107;
    color: #2c3e50;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}
.advantage-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Testimonials Section */
.testimonials-section .section-header .sub-title {
    font-size: 1.2rem;
    letter-spacing: 3px;
    font-weight: 700;
    color: #2c3e50;
    background: none;
}
.testimonials-section .section-header .main-title {
    background: none;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}
.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}
.author-info {
    text-align: right;
    font-size: 0.9rem;
}
.author-info p {
    font-style: normal;
    margin: 0;
}

/* Contact Section */
.contact-section {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}
.contact-info,
.contact-form-container {
    flex: 1;
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.contact-info h3,
.contact-form-container h3 {
    margin-bottom: 1.5rem;
}
.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.contact-info p i {
    margin-right: 10px;
    color: #ffc107;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}
.contact-form textarea {
    resize: vertical;
}
.contact-form button {
    width: 100%;
    border: none;
    cursor: pointer;
}

/* İletişim sayfasındaki WhatsApp butonu için */
.contact-info .contact-whatsapp-btn {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    padding: 15px 30px;
}

.contact-info .contact-whatsapp-btn i {
    margin-right: 10px;
}

/* Harita Bölümü */
.map-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}
.map-container {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}
.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Footer */
.main-footer {
    background-color: #2c3e50;
    color: #f4f4f4;
    padding: 4rem 2rem 1.5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}
.footer-col h3 {
    color: #ffc107;
    margin-bottom: 1.5rem;
}
.footer-col p,
.footer-col li {
    font-size: 0.95rem;
}
.footer-col ul {
    list-style-type: none;
    padding: 0;
}
.footer-col li {
    margin-bottom: 0.5rem;
}
.footer-col a {
    color: #f4f4f4;
    transition: color 0.3s;
}
.footer-col a:hover {
    color: #ffc107;
}
.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
}
.copyright {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.copyright p {
    font-size: 0.85rem;
    margin: 0.5rem 0;
}

/* Footer'daki sosyal medya linkleri için yeni sınıf */
.social-links-footer a {
    color: #f4f4f4;
    font-size: 1.2rem;
    margin: 0 0.5rem;
}

/* Fotoğraf Galerisi için yeni grid yapısı */
.photo-gallery-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}
.photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.photo-item {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    height: 250px;
    border: 3px solid #ffc107;
}
.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.photo-item:hover img {
    transform: scale(1.05);
}

/* Video galerisini gizlemek için bu kodu ekleyin */
.video-gallery-section {
    display: none;
}

.services-section {
    padding: 60px 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Daha iyi bir mobil uyumluluk için */
    gap: 30px;
    margin-top: 40px;
}

/* Hizmet kartlarının düzeni ve stili */
.service-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

/* Kart görsellerinin eşit boyutta olması */
.service-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

/* Kart içeriğinin stili */
.service-card .card-content {
    padding: 24px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card h3 {
    color: #2c3e50;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Modal (Tam Ekran Resim Görüntüleyici) */

/* Modal (Tam Ekran Resim Görüntüleyici) */
.modal {
    display: none; /* Bu satır modal'ı varsayılan olarak gizler */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    max-height: 90%;
    object-fit: contain;
}
.modal-description {
    margin: 10px auto 0 auto;
    display: block;
    width: 80%;
    max-width: 900px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
}
.close-btn {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}
.close-btn:hover,
.close-btn:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Responsive Menü ve Header Ayarları */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}
@media (max-width: 768px) {
    .header-inner {
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 999;
    }
    .main-nav.active {
        transform: translateY(0);
    }
    .main-nav a {
        margin: 15px 0;
        font-size: 1.5rem;
    }
    .social-icons-header {
        display: flex;
        order: 3;
        gap: 10px;
    }
    .menu-toggle {
        display: block;
        order: 2;
    }
    .logo {
        flex-grow: 0;
    }
}
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
#hakkimizda-sayfasi .about-us-content {
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    max-width: 1000px;
    margin: 5rem auto;
}

#hakkimizda-sayfasi .about-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

#hakkimizda-sayfasi .about-text-content {
    flex: 1;
}

#hakkimizda-sayfasi .about-image {
    max-width: 500px;
    margin: 0 auto;
    border: 5px solid #ffc107;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

#hakkimizda-sayfasi .about-image img {
    width: 100%;
    height: auto;
    display: block;
}

#hakkimizda-sayfasi .about-text-content p,
#hakkimizda-sayfasi .about-text-content-bottom p {
    text-indent: 2rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 900px) {
    #hakkimizda-sayfasi .about-grid {
        flex-direction: column;
    }
    #hakkimizda-sayfasi .about-image {
        max-width: 100%;
    }
}
/* Mobil Görünüm İçin Stiller */
@media screen and (max-width: 768px) {
    .main-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px; /* Header yüksekliğinize göre ayarlayabilirsiniz */
        left: 0;
        background-color: #2c3e50; /* Menü arka plan rengi */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
        z-index: 1000;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        color: #fff;
        padding: 15px 20px;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .menu-toggle {
        display: block; /* Mobil butonu görünür hale getirir */
    }

    .social-icons-header {
        display: none;
    }
}
/* Mobil cihazlar için özel stiller */
@media screen and (max-width: 768px) {
    /* ... (Mevcut mobil menü stiliniz burada kalacak) ... */

    .hero-content h1 {
        font-size: 1.8rem; /* Başlık fontu mobil için küçüldü */
        padding: 5px 10px;
    }
    
    .hero-content p {
        display: none; /* Paragraf metni mobilde gizlendi */
    }

    .hero-btn {
        font-size: 1rem;
        padding: 10px 20px;
    }
}
/* === HERO BANNER MOBİL DÜZENLEMESİ (GÜNCELLENDİ) === */
@media (max-width: 768px) {
  .hero-section {
    height: 220px !important;                /* Görünen yüksekliği belirler */
    overflow: hidden !important;
    background-size: cover !important;
    background-position: 25% -210px !important; /* -210px yukarıdan kırp, koltuk görünmez */
    padding: 0 !important;
  }

  .hero-content {
    padding: 1.5rem 1rem 0 !important;
    text-align: center !important;
  }

  .hero-content h1 {
    font-size: 1.3rem !important;
    margin-bottom: 0.3rem !important;
  }

  .hero-content p {
    display: none !important; /* Alt yazı gizli kalsın */
  }

  .hero-btn {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
    margin: 8px auto 0 !important;
    padding: 10px 24px !important;
    font-size: 0.9rem !important;
    border-radius: 40px !important;
  }
}
/* Küçük ekranlar (ör. iPhone SE, Galaxy A serisi vb.) */
@media screen and (max-width: 480px) {
    .hero-section {
        min-height: 320px;
        padding: 50px 10px;
    }

    .hero-content h1 {
        font-size: 1.3rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .hero-btn {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
}


@media screen and (max-width: 768px) {
  .hero-section {
    height: 150px !important;           /* Yüksekliği kısaltır */
    background-size: cover !important;  /* Görselin tamamını kapla */
    background-position: left bottom !important; /* ✅ Görselin alt kısmını gösterir */
  }

  .hero-content {
    position: absolute;
    bottom: 40px;                      /* Yazı ve butonun konumu */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }

  .hero-btn {
    position: static;                  /* İçerik akışına göre hizalanır */
    margin-top: 15px;
  }
}

/* === ÇALIŞMALARIMIZ SAYFASI === */
#calismalarimiz-sayfasi {
    background-color: #f4f4f4;
}

/* Sarı başlık bandı ortalanmış */
#calismalarimiz-sayfasi .page-banner {
    background-color: #ffc107;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.5rem 0;
    margin-bottom: 2rem;
}

#calismalarimiz-sayfasi .page-banner h1 {
    color: #2c3e50;
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0;
}

/* İçerik kutusu */
#calismalarimiz-sayfasi .works-content {
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    max-width: 1200px;
    margin: 3rem auto;
}

/* Görsel düzeni */
#calismalarimiz-sayfasi .works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

#calismalarimiz-sayfasi .works-grid img {
    width: 100%;
    border-radius: 8px;
    border: 3px solid #ffc107;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

#calismalarimiz-sayfasi .works-grid img:hover {
    transform: scale(1.05);
}

/* === İLETİŞİM SAYFASI === */
#iletisim-sayfasi {
    background-color: #f4f4f4;
}

/* Sarı başlık bandı ortalanmış */
#iletisim-sayfasi .page-banner {
    background-color: #ffc107;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.5rem 0;
    margin-bottom: 2rem;
}

#iletisim-sayfasi .page-banner h1 {
    color: #2c3e50;
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0;
}

/* İçerik kutusu */
#iletisim-sayfasi .contact-container {
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    max-width: 1000px;
    margin: 3rem auto;
}

/* Grid düzeni */
#iletisim-sayfasi .contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

#iletisim-sayfasi .contact-info,
#iletisim-sayfasi .contact-form {
    flex: 1;
}

#iletisim-sayfasi .contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

#iletisim-sayfasi .contact-info p i {
    color: #ffc107;
    margin-right: 8px;
}

#iletisim-sayfasi .contact-form input,
#iletisim-sayfasi .contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 1rem;
    font-family: inherit;
}

#iletisim-sayfasi .contact-form button {
    background-color: #25d366;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

#iletisim-sayfasi .contact-form button:hover {
    background-color: #128c7e;
}

/* 📱 Mobil uyum */
@media (max-width: 900px) {
    #calismalarimiz-sayfasi .page-banner h1,
    #iletisim-sayfasi .page-banner h1 {
        font-size: 2rem;
    }

    #calismalarimiz-sayfasi .works-grid {
        grid-template-columns: 1fr;
    }

    #iletisim-sayfasi .contact-grid {
        flex-direction: column;
    }

    #calismalarimiz-sayfasi .works-content,
    #iletisim-sayfasi .contact-container {
        padding: 2rem;
    }
}
.page-banner {
    background-color: #ffc107;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.5rem 0;
    margin-bottom: 2rem;
}

.page-banner h1 {
    color: #2c3e50;
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0;
}

/* Sayfa özel renk veya stil gerekiyorsa */
#calismalarimiz-sayfasi .page-banner,
#iletisim-sayfasi .page-banner {
    background-color: #ffc107; /* aynı sarı tonu */
}

/* Mobil uyum */
@media (max-width: 900px) {
    .page-banner h1 {
        font-size: 2rem;
    }
}










