/* =============================================
   SMSOnay.net — Ana Sayfa Stilleri
   style.css
   ============================================= */

/* ===== TEMA DEĞİŞKENLERİ ===== */
[data-theme="dark"] {
    --primary: #e8173a;
    --primary-light: #ff3358;
    --accent: #ff6b85;
    --bg: #0c0c0f;
    --bg-card: #14141a;
    --bg-card2: #1c1c24;
    --bg-nav: rgba(12, 12, 15, 0.93);
    --text: #f0eaea;
    --text-muted: #999;
    --text-soft: #d0d0d0;
    --border: rgba(232, 23, 58, 0.15);
    --border-soft: rgba(255, 255, 255, 0.08);
    --shadow: rgba(0, 0, 0, 0.5);
    --code-bg: #08080a;
    --ticker-bg: rgba(232, 23, 58, 0.07);
    --radius: 4px;
}

[data-theme="light"] {
    --primary: #d01232;
    --primary-light: #f02040;
    --accent: #e8173a;
    --bg: #f7f4f5;
    --bg-card: #ffffff;
    --bg-card2: #f0eaec;
    --bg-nav: rgba(255, 255, 255, 0.96);
    --text: #16101a;
    --text-muted: #666;
    --text-soft: #333;
    --border: rgba(208, 18, 50, 0.16);
    --border-soft: rgba(0, 0, 0, 0.1);
    --shadow: rgba(0, 0, 0, 0.1);
    --code-bg: #12101a;
    --ticker-bg: rgba(208, 18, 50, 0.05);
    --radius: 4px;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    transition: background 0.35s, color 0.35s;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

/* ===== NAVBAR ===== */
.navbar {
    background: var(--bg-nav);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background 0.35s, border-color 0.35s;
}

.navbar-brand {
    font-weight: 900;
    font-size: 1.55rem;
    letter-spacing: -0.5px;
    color: var(--text) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 42px;
    width: auto;
    display: block;
}

.navbar-brand span {
    color: var(--primary);
}

.nav-link {
    color: var(--text-muted) !important;
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.2s;
    padding: 0.4rem 0.85rem !important;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.btn-nav {
    background: var(--primary);
    color: #fff !important;
    border-radius: var(--radius);
    padding: 0.42rem 1.15rem !important;
    font-weight: 700;
    font-size: 0.85rem;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
    text-decoration: none;
}

.btn-nav:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
}

.btn-nav-outline {
    border: 1.5px solid var(--border);
    color: var(--text) !important;
    border-radius: var(--radius);
    padding: 0.42rem 1.1rem !important;
    font-weight: 600;
    font-size: 0.85rem;
    transition: border-color 0.2s, background 0.2s;
    text-decoration: none;
    white-space: nowrap;
}

.btn-nav-outline:hover {
    border-color: var(--primary);
    background: rgba(232, 23, 58, 0.08);
}

.balance-badge {
    background: rgba(232, 23, 58, 0.1);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.38rem 0.85rem;
    font-size: 0.82rem;
    color: var(--accent);
    font-weight: 700;
}

/* ===== TEMA TOGGLE ===== */
.theme-toggle-wrap {
    display: flex;
    align-items: center;
    gap: 7px;
}

.theme-toggle {
    width: 46px;
    height: 25px;
    background: var(--bg-card2);
    border: 1.5px solid var(--border);
    border-radius: 999px;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: background 0.3s;
}

.theme-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: var(--primary);
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: #fff;
}

[data-theme="light"] .theme-knob {
    transform: translateX(21px);
}

.t-icon {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ===== TICKER ===== */
.ticker-wrap {
    background: var(--ticker-bg);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 0;
    overflow: hidden;
}

.ticker-track {
    display: flex;
    gap: 2.5rem;
    animation: ticker 35s linear infinite;
    width: max-content;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
    font-weight: 500;
}

.ticker-logo {
    width: 16px;
    height: 16px;
    display: block;
}

.ticker-item i {
    font-size: 0.85rem;
    margin-right: 6px;
}

/* Ticker icon colors */
.ticker-item .fa-whatsapp {
    color: #25d366;
}

.ticker-item .fa-telegram {
    color: #29aae1;
}

.ticker-item .fa-google {
    color: #ea4335;
}

.ticker-item .fa-instagram {
    color: #e1306c;
}

.ticker-item .fa-tiktok {
    color: #ff0050;
}

.ticker-item .fa-discord {
    color: #5865f2;
}

.ticker-item .fa-twitter {
    color: #1da1f2;
}

.ticker-item .fa-facebook {
    color: #1877f2;
}

.ticker-item .fa-steam {
    color: #c7d5e0;
}

.ticker-item .fa-linkedin {
    color: #0a66c2;
}

.ticker-item .fa-snapchat {
    color: #ffb800;
}

.ticker-item .fa-spotify {
    color: #1db954;
}

.ticker-item .fa-amazon {
    color: #ff9900;
}

.ticker-item .fa-paypal {
    color: #003087;
}

.ticker-item .fa-apple {
    color: #ffffff;
}

.ticker-item .fa-microsoft {
    color: #00a4ef;
}

.ticker-item .fa-reddit {
    color: #ff4500;
}

.ticker-item .fa-twitch {
    color: #7289da;
}

[data-theme="light"] .ticker-item .fa-tiktok {
    color: #000;
}

[data-theme="light"] .ticker-item .fa-apple {
    color: #000;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 80px 0 70px;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(232, 23, 58, 0.17) 0%, transparent 68%);
    pointer-events: none;
}

[data-theme="light"] .hero-glow {
    background: radial-gradient(ellipse, rgba(208, 18, 50, 0.09) 0%, transparent 68%);
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(232, 23, 58, 0.1);
    border: 1px solid rgba(232, 23, 58, 0.3);
    color: var(--accent);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1.3rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 4.4rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: 1.2rem;
    color: var(--text);
}

.hero h1 .hl {
    color: var(--primary);
}

.hero p {
    color: var(--text-soft);
    font-size: 1.02rem;
    max-width: 500px;
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 2rem;
}

/* ===== BUTONLAR ===== */
.btn-primary-main {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    padding: 0.78rem 1.9rem;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 6px 24px rgba(232, 23, 58, 0.35);
    font-family: 'Outfit', sans-serif;
}

.btn-primary-main:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(232, 23, 58, 0.5);
    color: #fff;
}

.btn-outline-main {
    border: 1.5px solid var(--border);
    color: var(--text);
    border-radius: var(--radius);
    padding: 0.78rem 1.6rem;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
    font-family: 'Outfit', sans-serif;
}

.btn-outline-main:hover {
    border-color: var(--primary);
    background: rgba(232, 23, 58, 0.07);
    color: var(--text);
}

/* ===== İSTATİSTİKLER ===== */
.stats-row {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.stat-num {
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 0.73rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 2px;
    font-weight: 500;
}

/* ===== HERO İLLÜSTRASYON ===== */
.hero-illus-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-illus-wrap .main-illus {
    max-width: 100%;
    width: 520px;
    animation: floatImg 5s ease-in-out infinite;
    filter: drop-shadow(0 20px 50px rgba(232, 23, 58, 0.25));
}

[data-theme="light"] .hero-illus-wrap .main-illus {
    filter: drop-shadow(0 20px 50px rgba(208, 18, 50, 0.14));
}

@keyframes floatImg {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

.float-badge {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.55rem 1rem;
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--text-soft);
    display: flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 8px 24px var(--shadow);
}

.float-badge i {
    color: var(--primary);
}

.fb1 {
    top: 25px;
    right: 5px;
    animation: fb 4s ease-in-out infinite 0s;
}

.fb2 {
    bottom: 55px;
    left: 5px;
    animation: fb 4s ease-in-out infinite 2s;
}

.fb3 {
    bottom: 150px;
    right: -15px;
    animation: fb 4s ease-in-out infinite 1s;
}

@keyframes fb {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ===== ORTAK BÖLÜM STİLLERİ ===== */
.section-label {
    font-size: 0.71rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(1.7rem, 3.2vw, 2.55rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.8px;
    color: var(--text);
}

.section-sub {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.divider-line {
    height: 1px;
    background: var(--border-soft);
}

/* ===== SERVİSLER ===== */
.services-section {
    padding: 90px 0;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 1rem 1.3rem;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 3px var(--shadow);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-2px);
    border-color: rgba(232, 23, 58, 0.3);
    box-shadow: 0 4px 12px rgba(232, 23, 58, 0.08);
}

.service-icon-fa {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border: 1px solid;
    flex-shrink: 0;
}

.service-icon-fa img {
    display: block;
}

.service-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}

.app-pill {
    background: var(--bg-card2);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 2px 8px;
    font-size: 0.69rem;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.logos-band {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 1.4rem 1.8rem;
    margin-top: 3rem;
}

/* ===== ÜLKELER ===== */
.countries-section {
    padding: 90px 0;
}

.country-search {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 0.65rem 1.1rem;
    color: var(--text);
    font-size: 0.88rem;
    font-family: 'Outfit', sans-serif;
    width: 100%;
    max-width: 360px;
    outline: none;
    transition: border-color 0.2s;
}

.country-search:focus {
    border-color: var(--primary);
}

.country-search::placeholder {
    color: var(--text-muted);
}

.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    gap: 10px;
    margin-top: 1.5rem;
}

.country-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.country-card:hover {
    border-color: rgba(232, 23, 58, 0.4);
    background: rgba(232, 23, 58, 0.04);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(232, 23, 58, 0.1);
}

.country-flag {
    font-size: 1.5rem;
    line-height: 1;
}

.country-flag img {
    width: 32px;
    height: 24px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.country-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text);
}

.country-price {
    font-size: 0.7rem;
    color: var(--primary);
    font-weight: 600;
}

/* ===== NASIL ÇALIŞIR ===== */
.how-section {
    padding: 90px 0;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0 2px 12px var(--shadow);
}

.step-illus {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto 1.2rem;
    display: block;
    filter: drop-shadow(0 4px 14px rgba(232, 23, 58, 0.2));
}

.step-num {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(232, 23, 58, 0.1);
    line-height: 1;
    position: absolute;
    top: 1rem;
    right: 1.3rem;
}

.step-title {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.step-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ===== NEDEN BİZ ===== */
.features-section {
    padding: 90px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}

.feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.6rem;
}

.feature-icon-wrap {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: rgba(232, 23, 58, 0.08);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.95rem;
    border: 1px solid rgba(232, 23, 58, 0.15);
}

.feature-title {
    font-weight: 800;
    font-size: 0.92rem;
    margin-bottom: 2px;
    color: var(--text);
}

.feature-desc {
    font-size: 0.79rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.features-illus {
    max-width: 100%;
    width: 460px;
    filter: drop-shadow(0 16px 40px rgba(232, 23, 58, 0.18));
}

[data-theme="light"] .features-illus {
    filter: drop-shadow(0 16px 40px rgba(208, 18, 50, 0.12));
}

/* ===== API ===== */
.api-section {
    padding: 90px 0;
}

.code-block {
    background: var(--code-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 1.8rem;
    font-family: 'Courier New', monospace;
    font-size: 0.79rem;
    line-height: 1.85;
    overflow-x: auto;
}

/* Kod renkleri */
.cc {
    color: #555;
}

.ck {
    color: #ff6b85;
}

.cv {
    color: #7dd3a8;
}

.cs {
    color: #ffd580;
}

.cw {
    color: #c792ea;
}

/* ===== FİYATLANDIRMA ===== */
.pricing-section {
    padding: 90px 0;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 2px 14px var(--shadow);
}

.price-card:hover {
    transform: translateY(-6px);
}

.price-card.featured {
    border-color: var(--primary);
    background: linear-gradient(160deg, rgba(232, 23, 58, 0.07), var(--bg-card));
    box-shadow: 0 0 50px rgba(232, 23, 58, 0.15);
}

.price-label {
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.7rem;
}

.price-label.fl {
    color: var(--primary);
}

.price-amount {
    font-size: 2.9rem;
    font-weight: 900;
    color: var(--text);
    line-height: 1;
    margin-bottom: 0.3rem;
    letter-spacing: -1px;
}

.price-unit {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 1.4rem;
}

.price-list {
    list-style: none;
    text-align: left;
    margin-bottom: 1.8rem;
}

.price-list li {
    font-size: 0.83rem;
    color: var(--text-soft);
    padding: 0.38rem 0;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border-soft);
}

.price-list li:last-child {
    border-bottom: none;
}

.price-list li i {
    color: var(--primary);
    font-size: 0.7rem;
}

.btn-price {
    width: 100%;
    padding: 0.72rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.87rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Outfit', sans-serif;
}

.btn-price-outline {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--text);
}

.btn-price-outline:hover {
    border-color: var(--primary);
    background: rgba(232, 23, 58, 0.08);
}

.btn-price-fill {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(232, 23, 58, 0.3);
}

.btn-price-fill:hover {
    background: var(--primary-light);
    box-shadow: 0 6px 28px rgba(232, 23, 58, 0.45);
}

/* ===== YORUMLAR ===== */
.testimonials-section {
    padding: 90px 0;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 1.8rem;
    height: 100%;
    box-shadow: 0 2px 12px var(--shadow);
}

.stars {
    color: var(--primary);
    font-size: 0.82rem;
    margin-bottom: 0.9rem;
    letter-spacing: 1px;
}

.testimonial-text {
    font-size: 0.85rem;
    color: var(--text-soft);
    line-height: 1.65;
    margin-bottom: 1.2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(232, 23, 58, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--primary);
    border: 1px solid rgba(232, 23, 58, 0.2);
}

.author-name {
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--text);
}

.author-label {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ===== SSS ===== */
.faq-section {
    padding: 90px 0;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-q {
    padding: 1.05rem 1.4rem;
    font-weight: 700;
    font-size: 0.87rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    color: var(--text);
    transition: color 0.2s;
}

.faq-q:hover {
    color: var(--primary);
}

.faq-q i {
    color: var(--primary);
    transition: transform 0.25s;
    flex-shrink: 0;
}

.faq-item.open .faq-q i {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 1.4rem 1.2rem;
}

/* ===== CTA ===== */
.cta-section {
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(232, 23, 58, 0.16) 0%, transparent 70%);
    pointer-events: none;
}

/* ===== FOOTER ===== */
footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-soft);
    padding: 3rem 0 1.5rem;
}

.footer-brand {
    font-size: 1.45rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
    color: var(--text);
}

.footer-brand img {
    height: 45px;
    width: auto;
    display: block;
}

.footer-brand span {
    color: var(--primary);
}

.footer-desc {
    font-size: 0.81rem;
    color: var(--text-muted);
    max-width: 280px;
    line-height: 1.6;
}

.footer-heading {
    font-size: 0.71rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.footer-link {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-social a {
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: color 0.2s;
    text-decoration: none;
}

.footer-social a:hover {
    color: var(--primary);
}

.footer-copy {
    font-size: 0.76rem;
    color: var(--text-muted);
    opacity: 0.6;
}

/* ===== CANLI DOT ===== */
.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #2ecc71;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

/* ===== SCROLL FADE IN ===== */
.fi {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fi.vis {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */

/* Tablet ve küçük ekranlar (768px - 991px) */
@media (max-width: 991px) {
    .navbar-brand {
        font-size: 1.3rem;
    }

    .navbar-brand img {
        height: 36px;
    }

    .hero h1 {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .hero p {
        font-size: 0.95rem;
    }

    .stats-row {
        gap: 1.5rem;
    }

    .stat-num {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 3vw, 2rem);
    }

    .service-card {
        padding: 1.3rem;
    }

    .country-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }

    .hero-login-card {
        margin-top: 2rem;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Mobil cihazlar (max 768px) */
@media (max-width: 768px) {
    .navbar {
        padding: 0.6rem 0;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    .navbar-brand img {
        height: 32px;
    }

    .navbar-collapse {
        background: var(--bg-card);
        padding: 1rem;
        border-radius: var(--radius);
        margin-top: 1rem;
        border: 1px solid var(--border-soft);
    }

    .nav-item {
        margin: 0.3rem 0;
    }

    .balance-badge {
        display: block;
        text-align: center;
        margin: 0.5rem 0;
    }

    .theme-toggle-wrap {
        justify-content: center;
        margin: 0.5rem 0;
    }

    .btn-nav,
    .btn-nav-outline {
        display: block;
        width: 100%;
        text-align: center;
        margin: 0.3rem 0 !important;
    }

    .ticker-item {
        font-size: 0.7rem;
    }

    .hero {
        padding: 40px 0 30px;
        text-align: center;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 0.9rem;
        max-width: 100%;
    }

    .hero .d-flex {
        justify-content: center;
    }

    .hero .btn-primary-main,
    .hero .btn-outline-main {
        font-size: 0.85rem;
        padding: 0.65rem 1.3rem;
    }

    .stats-row {
        justify-content: center;
        gap: 1.2rem;
        margin-top: 1.5rem;
    }

    .stat-num {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .hero-login-card {
        margin-top: 2rem;
        padding: 24px;
    }

    .hero-login-card-title {
        font-size: 1.5rem;
    }

    .hero-illus-wrap .main-illus {
        width: 280px;
    }

    .fb1,
    .fb2,
    .fb3 {
        display: none;
    }

    .services-section,
    .countries-section,
    .how-section,
    .features-section,
    .testimonials-section,
    .faq-section,
    .cta-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
        text-align: center;
    }

    .section-sub {
        font-size: 0.85rem;
        text-align: center;
    }

    .faq-section .col-lg-4 {
        text-align: center !important;
    }

    .faq-section .section-label,
    .faq-section .section-title {
        text-align: center !important;
    }

    .faq-section .btn-primary-main {
        display: inline-flex !important;
        margin: 1.5rem auto 0 !important;
    }

    .service-card {
        padding: 1.2rem;
    }

    .service-icon-fa {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .service-name {
        font-size: 0.95rem;
    }

    .service-desc {
        font-size: 0.75rem;
    }

    .service-price {
        font-size: 1.2rem;
    }

    .country-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 8px;
    }

    .country-card {
        padding: 0.6rem 0.8rem;
    }

    .country-flag {
        font-size: 1.3rem;
    }

    .country-name {
        font-size: 0.75rem;
    }

    .country-price {
        font-size: 0.65rem;
    }

    .country-search {
        max-width: 100%;
        font-size: 0.85rem;
    }

    .step-card {
        padding: 1.5rem;
    }

    .step-illus {
        width: 80px;
        height: 80px;
    }

    .step-num {
        font-size: 2.5rem;
    }

    .step-title {
        font-size: 0.95rem;
    }

    .step-desc {
        font-size: 0.75rem;
    }

    .feature-item {
        margin-bottom: 1.2rem;
    }

    .feature-icon-wrap {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 0.85rem;
    }

    .feature-title {
        font-size: 0.85rem;
    }

    .feature-desc {
        font-size: 0.73rem;
    }

    .features-illus {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 2rem;
    }

    .testimonial-card {
        padding: 1.4rem;
    }

    .testimonial-text {
        font-size: 0.8rem;
    }

    .faq-q {
        font-size: 0.82rem;
        padding: 0.9rem 1.1rem;
    }

    .faq-a {
        font-size: 0.78rem;
    }

    .cta-section h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .cta-section .btn-primary-main,
    .cta-section .btn-outline-main {
        font-size: 0.85rem !important;
        padding: 0.7rem 1.5rem !important;
    }

    footer {
        padding: 2rem 0 1rem;
    }

    .footer-brand {
        font-size: 1.3rem;
        text-align: center;
    }

    .footer-brand img {
        height: 40px;
        margin: 0 auto;
    }

    .footer-desc {
        text-align: center;
        max-width: 100%;
        margin: 0 auto 1rem;
    }

    .footer-social {
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .footer-heading {
        font-size: 0.68rem;
        margin-top: 1rem;
    }

    .footer-link {
        font-size: 0.78rem;
    }

    .footer-copy {
        text-align: center;
        font-size: 0.7rem;
    }

    .logos-band {
        padding: 1rem 1.2rem;
    }

    .app-pill {
        font-size: 0.65rem;
        padding: 1px 6px;
    }
}

/* Çok küçük mobil cihazlar (max 480px) */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .stats-row {
        gap: 1rem;
    }

    .stat-num {
        font-size: 1.1rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }

    .hero-login-card {
        padding: 20px;
    }

    .btn-primary-main,
    .btn-outline-main {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }

    .service-card,
    .country-card,
    .step-card,
    .testimonial-card {
        padding: 1rem;
    }

    .country-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 1.3rem;
    }
}

/* Landscape mobil (max height 500px) */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 30px 0;
    }

    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .stats-row {
        margin-top: 1rem;
    }

    .hero-login-card {
        padding: 20px;
    }
}

/* ===== HERO LOGIN CARD ===== */
.hero-login-card {
    background: rgba(20, 20, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(232, 23, 58, 0.25);
}

[data-theme="light"] .hero-login-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(208, 18, 50, 0.2);
}

.hero-login-card-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.3rem;
}

.login-sub {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.hero-login-card .input-group-text {
    background: var(--bg-card2);
    border: 1px solid var(--border-soft);
    color: var(--text-muted);
}

.hero-login-card .form-control {
    background: var(--bg-card2);
    border: 1px solid var(--border-soft);
    color: var(--text);
    padding: 0.65rem 1rem;
}

.hero-login-card .form-control:focus {
    background: var(--bg-card2);
    border-color: var(--primary);
    color: var(--text);
    box-shadow: 0 0 0 0.2rem rgba(232, 23, 58, 0.15);
}

.hero-login-card .form-control::placeholder {
    color: var(--text-muted);
}

.hero-login-card small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.hero-login-card small a {
    color: var(--primary);
    text-decoration: none;
}

.hero-login-card small a:hover {
    text-decoration: underline;
}

.btn-hero-login {
    width: 100%;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    padding: 0.75rem;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Outfit', sans-serif;
}

.btn-hero-login:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(232, 23, 58, 0.4);
}

.btn-hero-login:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.hero-login-card .alert {
    padding: 0.6rem 1rem;
    border-radius: var(--radius);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

/* ===== RESPONSIVE LOGIN CARD ===== */
@media (max-width: 991px) {
    .hero-login-card {
        margin-top: 2rem;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ===== AUTH PAGES (LOGIN/REGISTER) ===== */
.auth-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding: 60px 0;
    position: relative;
}

.auth-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(232, 23, 58, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.auth-card {
    background: rgba(20, 20, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(232, 23, 58, 0.25);
    position: relative;
    z-index: 1;
}

[data-theme="light"] .auth-card {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(208, 18, 50, 0.2);
}

.auth-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.auth-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.auth-card .form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.auth-card .form-text {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-top: 0.25rem;
    display: block;
}

.auth-card .input-group-text {
    background: var(--bg-card2);
    border: 1px solid var(--border-soft);
    color: var(--text-muted);
    border-radius: var(--radius) 0 0 var(--radius);
}

.auth-card .form-control {
    background: var(--bg-card2);
    border: 1px solid var(--border-soft);
    color: var(--text);
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.auth-card .form-control:focus {
    background: var(--bg-card2);
    border-color: var(--primary);
    color: var(--text);
    box-shadow: 0 0 0 0.2rem rgba(232, 23, 58, 0.15);
}

.auth-card .form-control::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.auth-card .form-check-input {
    background-color: var(--bg-card2);
    border: 1px solid var(--border-soft);
    cursor: pointer;
}

.auth-card .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.auth-card .form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(232, 23, 58, 0.15);
}

.auth-card .form-check-label {
    color: var(--text-soft);
    font-size: 0.85rem;
    cursor: pointer;
}

.btn-auth {
    width: 100%;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    padding: 0.8rem;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-auth:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(232, 23, 58, 0.4);
}

.btn-auth:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.auth-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.auth-link:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.auth-link-bold {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s;
}

.auth-link-bold:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.auth-footer {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.auth-card .alert {
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    border: 1px solid;
}

.auth-card .alert-success {
    background: rgba(46, 204, 113, 0.1);
    border-color: rgba(46, 204, 113, 0.3);
    color: #2ecc71;
}

.auth-card .alert-danger {
    background: rgba(232, 23, 58, 0.1);
    border-color: rgba(232, 23, 58, 0.3);
    color: var(--primary);
}

/* Responsive Auth Pages */
@media (max-width: 768px) {
    .auth-section {
        padding: 40px 0;
    }

    .auth-card {
        padding: 30px 20px;
    }

    .auth-title {
        font-size: 1.6rem;
    }

    .auth-subtitle {
        font-size: 0.85rem;
    }
}


/* ===== OFFCANVAS MENU ===== */
.offcanvas {
    background: var(--bg) !important;
    border-left: 1px solid var(--border);
    width: 300px !important;
    max-width: 90vw !important;
    height: 100vh !important;
    overflow: hidden !important;
}

.offcanvas-header {
    border-bottom: 1px solid var(--border-soft);
    padding: 1.5rem;
    background: var(--bg-card);
    min-height: 70px;
    flex-shrink: 0;
}

.offcanvas-title {
    margin: 0;
}

.offcanvas-title img {
    display: block;
    height: 40px;
}

.btn-close {
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1.5em auto no-repeat;
    opacity: 1;
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
}

.btn-close:hover {
    opacity: 0.75;
}

.offcanvas-body {
    padding: 1.5rem;
    background: var(--bg);
    overflow-y: auto !important;
    overflow-x: hidden !important;
    flex: 1;
    -webkit-overflow-scrolling: touch;
}

.offcanvas .navbar-nav {
    width: 100%;
    gap: 0.5rem;
}

.offcanvas .nav-item {
    width: 100%;
}

.offcanvas .nav-link {
    padding: 0.9rem 1.2rem;
    border-radius: var(--radius);
    transition: all 0.2s;
    color: var(--text) !important;
    display: block;
    font-size: 1rem;
    font-weight: 600;
}

.offcanvas .nav-link:hover {
    background: rgba(232, 23, 58, 0.1);
    color: var(--primary) !important;
}

.offcanvas .theme-toggle-wrap {
    justify-content: flex-start;
    padding: 0.9rem 1.2rem;
}

.offcanvas .btn-nav,
.offcanvas .btn-nav-outline {
    width: 100%;
    margin: 0.5rem 0;
    justify-content: center;
    padding: 0.9rem 1.2rem;
    font-size: 0.95rem;
    font-weight: 700;
}

/* Offcanvas backdrop */
.offcanvas-backdrop {
    background-color: rgba(0, 0, 0, 0.75) !important;
}

@media (min-width: 992px) {
    .offcanvas {
        position: static !important;
        transform: none !important;
        visibility: visible !important;
        background: transparent !important;
        border: none !important;
        width: auto !important;
        height: auto !important;
    }

    .offcanvas-header {
        display: none;
    }

    .offcanvas-body {
        padding: 0;
        background: transparent;
        overflow-y: visible;
    }

    .offcanvas .navbar-nav {
        flex-direction: row;
        align-items: center;
        width: auto;
        gap: 0.25rem;
    }

    .offcanvas .nav-item {
        width: auto;
    }

    .offcanvas .nav-link {
        padding: 0.4rem 0.85rem;
        font-size: 0.88rem;
    }

    .offcanvas .btn-nav,
    .offcanvas .btn-nav-outline {
        width: auto;
        margin: 0;
        padding: 0.42rem 1.15rem;
        font-size: 0.85rem;
    }
}