/* ================================================================================
   CAPPA LIFE TRAVEL — LUXURY SUPPLEMENT v3.0
   (style.css'in üstüne binen, tamamlayıcı bileşenler)
   Çakışma riski sıfır: burada yalnızca style.css'te olmayan sınıflar vardır.
   ================================================================================ */

/* ================================================================================
   HERO ALT BİLGİ ÇUBUĞU (KARTLARın ALTINDA ISTATISTIK ŞERITI)
   ================================================================================ */
.hero-stats-bar {
    position: relative;
    z-index: 10;
    margin-top: -1px;
    background: var(--pure-white);
    border-bottom: 1px solid var(--border);
    padding: 0;
}

.hero-stats-inner {
    display: flex;
    align-items: stretch;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.hero-stat-item {
    flex: 1;
    padding: 24px 28px;
    border-right: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-stat-item:last-child { border-right: none; }

.hero-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--obsidian) 0%, var(--obsidian-light) 100%);
    color: var(--champagne);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.hero-stat-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--obsidian);
    line-height: 1;
    margin-bottom: 3px;
}

.hero-stat-text span {
    font-size: 12.5px;
    color: var(--slate);
    font-weight: 500;
}

/* ================================================================================
   ABOUT SAYFASI — ÖZEL BILEŞENLER
   ================================================================================ */
.about-hero-block {
    position: relative;
    padding: 150px 0 110px;
    background-color: var(--obsidian);
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.about-hero-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,17,24,0.87) 0%, rgba(17,26,36,0.74) 100%);
    z-index: 1;
}

.about-hero-block .container { position: relative; z-index: 2; }

.about-hero-block h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 0 4px 18px rgba(0,0,0,0.45);
}

.about-hero-block p {
    font-size: 1.2rem;
    color: #CBD5E1;
    max-width: 680px;
    margin: 0 auto;
}

/* Hikaye bölümü */
.about-story-section { padding: 96px 0; background: var(--ivory); }

.about-grid-two {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-text-box h2 {
    font-size: clamp(2rem, 3.5vw, 2.7rem);
    font-weight: 800;
    color: var(--obsidian);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 18px;
    letter-spacing: -0.4px;
}

.about-text-box h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 64px;
    height: 3px;
    background: var(--champagne);
    border-radius: 2px;
}

.about-text-box p {
    font-size: 1.05rem;
    color: var(--slate);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-img-wrap {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.about-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.55s var(--ease-out);
}

.about-img-wrap:hover img { transform: scale(1.04); }

/* İstatistik şeridi (koyu arka plan üstünde) */
.about-stats-band {
    background: var(--obsidian);
    padding: 72px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 28px;
    text-align: center;
}

.stat-item h3 {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--champagne);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-item p {
    font-size: 0.9rem;
    color: #94A3B8;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ================================================================================
   BLOG DETAY SAYFASI
   ================================================================================ */
.blog-detail-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 64px 24px 80px;
}

.blog-detail-article h1 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--obsidian);
    line-height: 1.2;
    margin-bottom: 20px;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13.5px;
    color: var(--slate-pale);
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}

.blog-detail-meta i { color: var(--champagne); margin-right: 5px; }

.blog-detail-cover {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--shadow-md);
}

.blog-detail-cover img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.blog-detail-content {
    font-size: 1.05rem;
    color: var(--slate);
    line-height: 1.85;
}

.blog-detail-content h2,
.blog-detail-content h3 {
    color: var(--obsidian);
    margin-top: 40px;
    margin-bottom: 16px;
}

.blog-detail-content p { margin-bottom: 22px; }

.blog-detail-content blockquote {
    border-left: 4px solid var(--champagne);
    padding: 16px 24px;
    margin: 30px 0;
    background: var(--champagne-pale);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--obsidian);
}

/* ================================================================================
   KAMPANYA / TUR DETAY — YAN PANEL DANIŞMAN KUTUSU
   ================================================================================ */
.advisor-box {
    background: var(--obsidian);
    border-radius: var(--radius-lg);
    padding: 30px;
    color: #fff;
    text-align: center;
    margin-top: 20px;
    border: 1px solid rgba(212,175,55,0.25);
}

.advisor-box h4 {
    color: var(--champagne);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.advisor-box p {
    font-size: 13.5px;
    color: #94A3B8;
    line-height: 1.6;
    margin-bottom: 22px;
}

.whatsapp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
    padding: 14px 22px;
    background: #25D366;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-cta-btn i { font-size: 20px; }

.whatsapp-cta-btn:hover {
    background: #1FAF59;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
    color: #fff;
}

/* ================================================================================
   TAHMİN RAPORU / PAKET SAYFASI BOŞ DURUM KARTI
   ================================================================================ */
.empty-state-card {
    max-width: 720px;
    margin: 0 auto;
    background: var(--pure-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.empty-state-card .icon-wrap {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--obsidian) 0%, var(--obsidian-light) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--champagne);
    margin: 0 auto 28px;
    border: 1px solid rgba(212,175,55,0.2);
}

.empty-state-card h2 {
    font-size: 1.7rem;
    color: var(--obsidian);
    margin-bottom: 14px;
    font-weight: 800;
}

.empty-state-card p {
    color: var(--slate);
    font-size: 1rem;
    line-height: 1.72;
    margin-bottom: 32px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

/* ================================================================================
   TRANSFER SAYFASI
   ================================================================================ */
.transfer-hero-text {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: var(--radius-md);
    margin-bottom: 32px;
}

.transfer-hero-text i {
    font-size: 28px;
    color: var(--champagne);
    flex-shrink: 0;
}

.transfer-hero-text p {
    font-size: 15px;
    color: var(--obsidian);
    font-weight: 500;
    margin: 0;
    line-height: 1.55;
}

/* ================================================================================
   MOBİL RESPONSIVE EK KURALLAR
   ================================================================================ */
@media (max-width: 992px) {
    .hero-stats-inner { flex-direction: column; }
    .hero-stat-item   { border-right: none; border-bottom: 1px solid var(--border); }
    .hero-stat-item:last-child { border-bottom: none; }

    .about-grid-two { grid-template-columns: 1fr; gap: 40px; }
    .about-img-wrap img { height: 340px; }

    .blog-detail-cover img { height: 300px; }
    .blog-detail-article { padding: 40px 16px 60px; }
}

@media (max-width: 767px) {
    .about-stats-band { padding: 48px 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item h3 { font-size: 2.4rem; }

    .empty-state-card { padding: 40px 22px; }
}
