/* ======================================================
   SPECIAL VIP TÜRKİYE - MAIN STYLES
   Tüm sayfalarda kullanılan ortak stiller
   ====================================================== */

/* ===== CSS VARIABLES ===== */
:root {
    --navy: #0d1b2a;
    --navy-light: #1b2d45;
    --gold: #c9a84c;
    --gold-light: #d4b96a;
    --gold-soft: rgba(201, 168, 76, 0.12);
    --cream: #faf8f4;
    --white: #ffffff;
    --text-dark: #1a1a2e;
    --text-mid: #4a4a5a;
    --text-light: #8a8a9a;
    --border: #e8e6e1;
    --driver-accent: #1a6b4a;
    --driver-bg: #f0f7f4;
    --biz-accent: #2c5282;
    --biz-bg: #f0f4f8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}
h1, h2, h3, .display-font {
    font-family: 'Playfair Display', serif;
}
a { text-decoration: none; }

.password-validate-invalid { color: #c0392b; }
.password-validate-valid { color: var(--driver-accent); }

/* ===== NAVBAR ===== */
.navbar-custom {
    background: rgba(13, 27, 42, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    transition: all 0.4s ease;
}
.navbar-custom.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.15);
}
.navbar-brand-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--white) !important;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.navbar-brand-text span { color: var(--gold); }
.nav-link {
    color: rgba(255,255,255,0.7) !important;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    padding: 0.5rem 1rem !important;
}
.nav-link:hover, .nav-link.active { color: var(--gold) !important; }
.btn-nav-gold {
    background: var(--gold);
    color: var(--navy) !important;
    font-weight: 600;
    font-size: 0.82rem;
    padding: 0.45rem 1.2rem;
    border-radius: 6px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}
.btn-nav-gold:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}
.dropdown-menu {
    background: var(--navy-light);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    margin-top: 0.5rem;
    padding: 0.5rem;
}
.dropdown-item {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}
.dropdown-item:hover, .dropdown-item:focus {
    background: rgba(201,168,76,0.1);
    color: var(--gold);
}

/* ===== SECTION COMMONS ===== */
.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
}
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.6rem;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* ===== BUTTONS ===== */
.btn-gold-primary {
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s;
}
.btn-gold-primary:hover {
    background: var(--gold-light);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201,168,76,0.3);
}
.btn-outline-light-custom {
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    border: 1.5px solid rgba(255,255,255,0.25);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s;
}
.btn-outline-light-custom:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,168,76,0.05);
}
.btn-driver {
    background: var(--driver-accent);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 2.2rem;
    border-radius: 8px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}
.btn-driver:hover {
    background: #155a3e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26,107,74,0.25);
}
.btn-business {
    background: var(--biz-accent);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 2.2rem;
    border-radius: 8px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}
.btn-business:hover {
    background: #1e3a5f;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44,82,130,0.25);
}
.btn-text-link {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.3s;
}
.btn-text-link:hover {
    color: var(--gold-light);
    gap: 0.7rem;
}

/* ===== BENEFIT CARDS ===== */
.benefit-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.8rem;
    border: 1px solid var(--border);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.benefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 0;
    background: var(--driver-accent);
    transition: height 0.4s ease;
}
.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border-color: transparent;
}
.benefit-card:hover::before { height: 100%; }
.benefit-card.biz-card::before { background: var(--biz-accent); }
.benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--driver-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--driver-accent);
    margin-bottom: 1rem;
}
.benefit-icon.biz-icon {
    background: var(--biz-bg);
    color: var(--biz-accent);
}
.benefit-card h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.benefit-card p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.6;
    margin: 0;
}

/* ===== PAGE HERO (alt sayfalar için header) ===== */
.page-hero {
    background: linear-gradient(165deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 140px 0 60px;
    position: relative;
    overflow: hidden;
    color: white;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.page-hero-tag {
    display: inline-block;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.page-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.page-hero h1 .gold { color: var(--gold); }
.page-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    max-width: 700px;
    line-height: 1.6;
    font-weight: 300;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-custom {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.5rem;
}
.breadcrumb-custom a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}
.breadcrumb-custom a:hover { color: var(--gold); }
.breadcrumb-custom i { font-size: 0.7rem; opacity: 0.5; }

/* ===== FOOTER ===== */
footer {
    background: #080f1a;
    padding: 4rem 0 1.5rem;
    color: rgba(255,255,255,0.5);
    position: relative;
}
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.5;
}
.footer-brand {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 0.9rem;
}
.footer-brand span { color: var(--gold); }
.footer-desc {
    font-size: 0.82rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    max-width: 340px;
}
.footer-social {
    display: flex;
    gap: 0.6rem;
}
.footer-social a {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    transition: all 0.3s;
}
.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}
.footer-heading {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.2rem;
    padding-bottom: 0.6rem;
    position: relative;
    display: inline-block;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.footer-links a:hover {
    color: var(--gold);
    transform: translateX(3px);
}
.footer-apps {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}
.footer-app-link {
    position: relative;
    display: inline-block;
}
.footer-apps img {
    height: 38px;
    border-radius: 6px;
    opacity: 0.55;
    transition: opacity 0.3s;
}
.footer-app-link:hover img { opacity: 0.85; }
.app-coming-badge {
    position: absolute;
    top: -7px;
    right: -7px;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    padding: 2px 6px;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(201,168,76,0.4);
    line-height: 1;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 2.8rem;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    margin: 0;
}
.footer-security {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    background: rgba(201,168,76,0.05);
    border: 1px solid rgba(201,168,76,0.15);
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
}
.footer-security i { color: var(--gold); font-size: 0.85rem; }

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== UTILITY CLASSES ===== */
.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy); color: white; }
.bg-driver { background: var(--driver-bg); }
.bg-biz { background: var(--biz-bg); }

.section-padding {
    padding: 5rem 0;
}
.section-padding-sm {
    padding: 3.5rem 0;
}

/* ===== TRUST NOTE ===== */
.trust-note {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.8rem;
}
.trust-note i { color: var(--driver-accent); }
.trust-note.biz i { color: var(--biz-accent); }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .page-hero { padding: 120px 0 50px; }
}
@media (max-width: 767px) {
    .section-padding { padding: 3.5rem 0; }
    .page-hero h1 { font-size: 1.8rem; }
}
