/* style.css - Hilal Transfer Premium Landing Page */

:root {
    /* Brand Colors */
    --color-bg-dark: #070707;
    --color-bg-light: #121212;
    --color-brand-yellow: #f5c518;
    --color-brand-yellow-hover: #e0b013;
    --color-whatsapp: #25D366;
    --color-whatsapp-hover: #1EBE5D;

    /* Text Colors */
    --color-text-main: #FFFFFF;
    --color-text-muted: #A0A0A0;

    /* UI Colors */
    --color-card-bg: rgba(255, 255, 255, 0.05);
    --color-border: rgba(255, 255, 255, 0.1);

    /* Shadows & Effects */
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --shadow-brand: 0 4px 15px rgba(245, 197, 24, 0.3);
    --shadow-wa: 0 4px 15px rgba(37, 211, 102, 0.4);

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.yellow-text {
    color: var(--color-brand-yellow);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.grid {
    display: grid;
    gap: 30px;
}

/* ================== BUTTONS ================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    font-family: var(--font-heading);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn:active {
    transform: scale(0.98);
}

.btn-whatsapp-lg {
    background-color: var(--color-whatsapp);
    color: #fff;
    padding: 16px 32px;
    font-size: 1.1rem;
    box-shadow: var(--shadow-wa);
}

.btn-whatsapp-lg:hover {
    background-color: var(--color-whatsapp-hover);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.btn-call-lg {
    background-color: var(--color-brand-yellow);
    color: #000;
    padding: 16px 32px;
    font-size: 1.1rem;
    box-shadow: var(--shadow-brand);
}

.btn-call-lg:hover {
    background-color: var(--color-brand-yellow-hover);
    box-shadow: 0 6px 20px rgba(245, 197, 24, 0.5);
}

.btn-outline-call {
    background-color: transparent;
    border: 1px solid var(--color-brand-yellow);
    color: var(--color-brand-yellow);
    padding: 10px 20px;
    font-size: 0.95rem;
}

.btn-outline-call:hover {
    background-color: var(--color-brand-yellow);
    color: #000;
}

.btn-submit-form {
    background-color: var(--color-brand-yellow);
    color: #000;
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 10px;
}

.btn-submit-form:hover {
    background-color: var(--color-brand-yellow-hover);
}

.center-cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.btn-call-outline-lg {
    border: 2px solid var(--color-brand-yellow);
    color: var(--color-brand-yellow);
    padding: 15px 40px;
    font-size: 1.1rem;
    background: transparent;
}

.btn-call-outline-lg:hover {
    background: var(--color-brand-yellow);
    color: #000;
}

.btn-service {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 24px;
    margin-top: 20px;
    border: 1px solid var(--color-border);
}

.btn-service:hover {
    background: var(--color-brand-yellow);
    color: #000;
    border-color: var(--color-brand-yellow);
}

.btn-price {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    margin-top: auto;
}

.btn-price:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-price-premium {
    width: 100%;
    padding: 15px;
    background: var(--color-brand-yellow);
    color: #000;
    margin-top: auto;
}

/* ================== NAVIGATION ================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(7, 7, 7, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
    padding: 15px 0;
    transition: all 0.3s;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

/* ================== HERO SECTION ================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1617531653332-bd46c24f2068?q=80&w=2115&auto=format&fit=crop') center/cover no-repeat;
    z-index: -2;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(7, 7, 7, 0.95) 0%, rgba(7, 7, 7, 0.6) 50%, rgba(7, 7, 7, 0.9) 100%);
    z-index: -1;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 650px;
}

.trust-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-card-bg);
    border-radius: 30px;
    padding: 6px 16px;
    margin-bottom: 24px;
    border: 1px solid var(--color-border);
    backdrop-filter: blur(5px);
    font-size: 0.9rem;
}

.trust-badge-top .stars {
    color: var(--color-brand-yellow);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero .subtitle {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 500px;
}

.cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 1.05rem;
}

/* Glass Form */
.hero-form-wrapper {
    flex: 0 0 400px;
}

.glass-form {
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-glass);
}

.glass-form h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
    text-align: center;
}

.input-group {
    position: relative;
    margin-bottom: 15px;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
}

.input-group input {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--color-border);
    color: #fff;
    padding: 14px 14px 14px 45px;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border 0.3s;
}

.input-group input:focus {
    border-color: var(--color-brand-yellow);
}

::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

/* ================== GENERAL SECTIONS ================== */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-brand-yellow);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin: -30px auto 50px;
    max-width: 600px;
}

/* ================== FEATURES (WHY US) ================== */
.features {
    background-color: var(--color-bg-light);
}

.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.feature-card .icon-wrap {
    width: 70px;
    height: 70px;
    background: rgba(245, 197, 24, 0.1);
    color: var(--color-brand-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.feature-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* ================== SERVICES ================== */
.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.service-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: flex-end;
    border: 1px solid var(--color-border);
}

.service-korsan {
    background: linear-gradient(to top, #000 0%, transparent 100%), var(--color-bg-light);
}

.service-sehirlerarasi {
    background: linear-gradient(to top, #000 0%, transparent 100%), var(--color-bg-light);
    /* Update with image if needed */
}

.service-content {
    padding: 40px;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.5) 80%, transparent 100%);
    width: 100%;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--color-brand-yellow);
}

.service-card p {
    color: #ccc;
    margin-bottom: 0;
}

/* ================== PRICING ================== */
.pricing {
    background: var(--color-bg-light);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.price-card {
    background: var(--color-bg-dark);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s;
}

.price-card:hover {
    transform: translateY(-5px);
}

.price-card.premium {
    border-color: var(--color-brand-yellow);
    box-shadow: 0 10px 30px rgba(245, 197, 24, 0.1);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--color-brand-yellow);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.price-header {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-text-muted);
    margin-bottom: 15px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-brand-yellow);
    margin-bottom: 30px;
}

.price-features {
    margin-bottom: 40px;
}

.price-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features i {
    color: var(--color-whatsapp);
}

/* ================== REVIEWS (CHAT STYLE) ================== */
.reviews-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.chat-review {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-bubble {
    background: #202c33;
    padding: 15px 20px;
    border-radius: 0 15px 15px 15px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
}

.chat-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 0;
    border-color: transparent #202c33 transparent transparent;
}

.chat-time {
    text-align: right;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}

.ms-blue {
    color: #53bdeb;
}

.chat-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 20px;
}

.avatar {
    width: 40px;
    height: 40px;
    background: #4a90e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.avatar.pink {
    background: #e91e63;
}

.avatar.green {
    background: #4caf50;
}

.stars-sm {
    color: var(--color-brand-yellow);
    font-size: 0.8rem;
    letter-spacing: 2px;
}

/* ================== FAQ ================== */
.faq {
    background: var(--color-bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-bg-dark);
    border: 1px solid var(--color-border);
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question i {
    color: var(--color-brand-yellow);
    transition: transform 0.3s;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 300px;
    /* arbitrary high number */
}

.faq-answer p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}


/* ================== FINAL CTA ================== */
.final-cta {
    background: linear-gradient(45deg, var(--color-bg-dark) 0%, #1a1500 100%);
    border-top: 1px solid rgba(245, 197, 24, 0.2);
    text-align: center;
    padding: 120px 0;
}

.final-container h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.final-container p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
}

/* ================== FOOTER ================== */
footer {
    background: #000;
    padding: 80px 0 30px;
    border-top: 1px solid var(--color-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--color-text-muted);
    margin-top: 15px;
    max-width: 300px;
}

.footer-contact h4,
.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer-contact p {
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.footer-contact a {
    color: var(--color-text-muted);
}

.footer-contact a:hover {
    color: var(--color-brand-yellow);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--color-text-muted);
}

.footer-links a:hover {
    color: var(--color-brand-yellow);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}


/* ================== STICKY MOBILE CTAS ================== */
.sticky-cta-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.sticky-btn {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 18px 0;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #fff;
}

.sticky-call {
    background: var(--color-brand-yellow);
    color: #000;
}

.sticky-whatsapp {
    background: var(--color-whatsapp);
}

/* ================== MEDIA QUERIES (MOBILE RESPONSIVE) ================== */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        padding-top: 60px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-form-wrapper {
        width: 100%;
        max-width: 500px;
        flex: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 80px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero .subtitle {
        font-size: 1.05rem;
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    /* Enable Sticky Mobile Bottom Buttons */
    .sticky-cta-mobile {
        display: flex;
    }

    body {
        /* Add padding so footer doesn't get hidden behind mobile sticky bar */
        padding-bottom: 60px;
    }
}