* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa; /* Daha temiz bir arka plan */
    color: #212529;
    line-height: 1.6;
}

/* HEADER & NAV */
header {
    background-color: #990000; /* Daha derin bir kan kırmızısı */
    color: white;
    text-align: center;
    padding: 25px 20px 0;
    border-bottom: 4px solid #111;
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    letter-spacing: 2px;
    margin-bottom: 0;
}

.subtitle {
    font-size: 0.9rem;
    letter-spacing: 6px;
    opacity: 0.9;
    margin-bottom: 20px;
}

nav {
    background-color: #1a1a1a;
    border-top: 1px solid #333;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    display: block;
    color: #f1f1f1;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 18px 25px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    background-color: #990000;
    color: white;
}

/* BREAKING NEWS */
.breaking-news {
    background-color: #fff;
    border-bottom: 2px solid #ddd;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.breaking-news .badge {
    background-color: #990000;
    color: white;
    padding: 10px 20px;
    font-weight: bold;
    white-space: nowrap;
    text-transform: uppercase;
}

/* LAYOUT & CARDS */
.container {
    max-width: 1300px;
    margin: 40px auto;
    padding: 0 20px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    border-bottom: 3px solid #990000;
    padding-bottom: 10px;
    margin-bottom: 30px;
    font-size: 2rem;
    text-transform: uppercase;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.news-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.news-category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #990000;
    color: white;
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 3px;
    text-transform: uppercase;
    z-index: 2;
}

.news-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.news-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.news-date {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 12px;
    display: block;
    font-weight: 500;
}

.news-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #111;
    margin-bottom: 15px;
    line-height: 1.3;
}

.news-text {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.read-more {
    display: inline-block;
    color: #990000;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
    align-self: flex-start;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.read-more:hover {
    border-color: #990000;
}

/* MANŞET (EN ÜSTTEKİ HABER) BÜYÜTME */
.featured-news {
    grid-column: 1 / -1;
    flex-direction: row;
}

.featured-news .news-image {
    width: 55%;
    height: 450px;
    border-bottom: none;
    border-right: 1px solid #eee;
}

.featured-news .news-content {
    width: 45%;
    padding: 40px;
}

.featured-news .news-title {
    font-size: 2.5rem;
}

.featured-news .news-text {
    font-size: 1.1rem;
}

/* HABER OKUMA SAYFASI (TAM EKRAN) */
.article-container {
    max-width: 900px;
    margin: 50px auto;
    background: white;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: 8px;
    border-top: 5px solid #990000;
}

.article-category {
    color: #990000;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.article-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.2;
    margin: 15px 0 20px;
    color: #111;
}

.article-meta {
    display: flex;
    gap: 20px;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-hero-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 40px;
    max-height: 500px;
    object-fit: cover;
}

.article-body p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.article-footer {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.back-btn {
    display: inline-block;
    background-color: #1a1a1a;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background 0.3s;
}

.back-btn:hover {
    background-color: #990000;
}

footer {
    background-color: #1a1a1a;
    color: #ccc;
    text-align: center;
    padding: 40px 20px;
    margin-top: 50px;
}

/* MOBİL UYUM */
@media (max-width: 900px) {
    .featured-news {
        flex-direction: column;
    }
    .featured-news .news-image, .featured-news .news-content {
        width: 100%;
    }
    .article-container {
        padding: 20px;
        margin: 20px;
    }
    .article-title {
        font-size: 2.2rem;
    }
    nav ul {
        flex-wrap: wrap;
    }
    nav ul li a {
        padding: 10px 15px;
    }
}

/* =========================================
   İLETİŞİM & İHBAR SAYFASI TASARIMI
   ========================================= */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr; /* İki sütunlu tasarım (sol yazı, sağ form) */
    gap: 50px;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-top: 5px solid #990000;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #111;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #444;
}

.info-box {
    background-color: #f8f9fa;
    padding: 25px;
    border-left: 4px solid #1a1a1a;
    margin-top: 35px;
    border-radius: 0 4px 4px 0;
}

.info-box p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #111;
}

.info-box p:last-child {
    margin-bottom: 0;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 700;
    margin-bottom: 8px;
    color: #111;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input, 
.form-group textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    background-color: #fafafa;
    transition: all 0.3s;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: #990000;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(153, 0, 0, 0.1);
}

.submit-btn {
    background-color: #990000;
    color: white;
    border: none;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #1a1a1a;
}

/* Tablet ve Telefonlar için Mobil Uyum */
@media (max-width: 850px) {
    .contact-wrapper {
        grid-template-columns: 1fr; /* Mobilde alt alta geçsin */
        gap: 30px;
        padding: 25px;
    }
}

/* =========================================
   YENİ PROFESYONEL İLETİŞİM & YETKİLİ KARTI
   ========================================= */

.contact-wrapper {
    display: grid;
    grid-template-columns: 4.5fr 5.5fr; /* Yetkili kartı ve form oranları */
    gap: 40px;
    align-items: start;
    margin-top: 20px;
}

/* Sol Taraf - Yetkili Profili */
.official-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-top: 5px solid #990000;
}

.official-image-container {
    position: relative;
    width: 100%;
    height: 320px;
    background-color: #1a1a1a;
}

.official-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.official-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: #990000;
    color: white;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 3px;
}

.official-info-body {
    padding: 30px;
}

.official-info-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #111;
    margin-bottom: 5px;
}

.official-title-sub {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.official-contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.detail-item .icon {
    font-size: 1.4rem;
    background: #f8f9fa;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #eee;
}

.detail-item .label {
    display: block;
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.detail-item .value {
    display: block;
    font-size: 1rem;
    color: #111;
    font-weight: 500;
    word-break: break-all;
}

/* Sağ Taraf - İhbar Formu */
.contact-form {
    background: white;
    border: 1px solid #e0e0e0;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.form-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #111;
    margin-bottom: 8px;
}

.form-subtext {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 700;
    margin-bottom: 6px;
    color: #222;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input, 
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    background-color: #fafafa;
    transition: all 0.2s ease;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: #990000;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(153, 0, 0, 0.08);
}

.submit-btn {
    background-color: #990000;
    color: white;
    border: none;
    padding: 15px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.2s;
    margin-top: 5px;
}

.submit-btn:hover {
    background-color: #1a1a1a;
}

/* Mobil Cihazlar İçin Ayar */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}