/* =============================================================================
   Genel Ayarlar - Türk Dizisi Tarzı Lüks & Dramatik Tema
   ============================================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", Arial, sans-serif;
    background: #0b0b1a;                     /* Gece mavisi arka plan - dizi atmosferi */
    color: #f5f5f5;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 1090px;
    padding: 0 15px;
    background-image:
        radial-gradient(circle at top left,    rgba(139, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at bottom right, rgba(218, 165, 32, 0.15) 0%, transparent 50%);
}

/* =============================================================================
   Bloklar için kontrastlı renk dönüşümü (her blok farklı atmosfer)
   ============================================================================= */

.section {
    padding: 80px 40px;
    margin: 40px auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    position: relative;
    overflow: hidden;
}

.hero {
    background: linear-gradient(135deg, #8B0000 0%, #2F0000 100%); /* Bordo - kırmızı tutkusu */
    min-height: 470px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="rgba(255,255,255,0.03)" d="M0 50 Q25 0 50 50 T100 50 L100 100 L0 100 Z"/></svg>') repeat;
    pointer-events: none;
}

.reviews { background: linear-gradient(135deg, #1C2526 0%, #2C3E50 100%); }        /* Derin gece mavisi */
.prices { background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%); color: #1a1a1a; } /* Altın - zenginlik */
.media-mentions { background: #2C2C2C; }
.subscribe { background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%); }
.team { background: linear-gradient(135deg, #4A148C 0%, #7D1DB3 100%); }          /* Mor - gizem */
.blog { background: linear-gradient(135deg, #004D40 0%, #00796B 100%); color: #fff; } /* Zümrüt yeşili */
.contact { background: #141414; }
.footer { background: #000; color: #888; padding: 40px 20px; text-align: center; }

/* =============================================================================
   Tipografi - Dramatik Türk dizisi havası
   ============================================================================= */

h1, h2, h3 {
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #DAA520;
    border-radius: 2px;
}

.highlight { color: #DAA520; } /* Altın sarısı vurgu */

.big-text {
    font-size: 1.5rem;
    margin: 30px 0;
    font-weight: 300;
}

/* =============================================================================
   Butonlar ve Link-Butonlar
   ============================================================================= */

.btn-primary {
    display: inline-block;
    background: linear-gradient(to right, #DAA520, #B8860B);
    color: #000;
    font-weight: bold;
    font-size: 1.4rem;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(218, 165, 32, 0.6);
    background: linear-gradient(to right, #FFD700, #DAA520);
}

button[type="submit"] {
    background: linear-gradient(to right, #DAA520, #B8860B);
    color: #000;
    border: none;
    padding: 16px 40px;
    font-size: 1.3rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

button[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(218,165,32,0.5);
}

/* =============================================================================
   Form Tasarımı
   ============================================================================= */

form {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

form input[type="email"] {
    width: 100%;
    padding: 18px 25px;
    border-radius: 50px;
    border: none;
    font-size: 1.2rem;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    backdrop-filter: blur(5px);
}

form input[type="email"]::placeholder {
    color: #ccc;
}

form input[type="email"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(218,165,32,0.4);
}

/* =============================================================================
   Fiyat Listesi
   ============================================================================= */

.price-list, .team-grid, .review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.price-item, .team-member, .review {
    background: rgba(0,0,0,0.3);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(218,165,32,0.2);
    transition: transform 0.3s;
}

.price-item:hover, .team-member:hover {
    transform: translateY(-10px);
}

.price-item strong {
    font-size: 2rem;
    color: #DAA520;
}

/* =============================================================================
   Makale (Blog) Vurgusu
   ============================================================================= */

.blog {
    border: 3px solid #DAA520;
    position: relative;
}

.blog::before {
    content: "ÖZEL";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #DAA520;
    color: #000;
    padding: 10px 30px;
    font-weight: bold;
    border-radius: 50px;
    font-size: 1.2rem;
}

.blog ol {
    counter-reset: item;
    padding-left: 10px;
}

.blog li {
    margin: 20px 0;
    font-size: 1.2rem;
    position: relative;
    padding-left: 50px;
}

.blog li::before {
    content: counter(item) ".";
    counter-increment: item;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2rem;
    font-weight: bold;
    color: #DAA520;
}

/* =============================================================================
   Harita
   ============================================================================= */

.map-wrapper {
    margin-top: 40px;
    border: 5px solid #DAA520;
    border-radius: 15px;
    overflow: hidden;
}

/* =============================================================================
   Mobil Uyum
   ============================================================================= */

@media (max-width: 768px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    .big-text { font-size: 1.3rem; }
    .btn-primary { padding: 16px 35px; font-size: 1.2rem; }
    .section { padding: 60px 20px; margin: 30px auto; }
    .hero { min-height: 400px; padding: 60px 20px; }
}

@media (max-width: 480px) {
    h1 { font-size: 2.4rem; }
    .price-list, .team-grid, .review-grid { grid-template-columns: 1fr; }
}
