:root {
    --primary: #FF2D20;
    --primary-dark: #d9261a;
    --secondary: #2d3748;
    --light: #f9fafb;
    --grey: #718096;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Figtree', sans-serif; 
    color: var(--secondary); 
    line-height: 1.6;
    background-color: var(--light);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header & Navigation */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 100px; /* 40px'den 50px'e çıkarıldı */
    width: auto;
}

/* Ekran boyutuna göre farklı logo boyutları */
@media (min-width: 992px) {
    .logo-image {
        height: 105px; /* Daha büyük ekranlarda biraz daha büyük */
    }
}

@media (max-width: 576px) {
    .logo-image {
        height: 105px; /* Çok küçük ekranlarda biraz daha küçük */
    }
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link.btn {
    background-color: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
}

.nav-link.btn:hover {
    background-color: var(--primary-dark);
}

/* Hero Section */
.hero {
    background-color: var(--white);
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--grey);
    margin-bottom: 2rem;
}

/* Hero Butonları */
.buttons-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    width: 100%;
}

.hero-button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.hero-button i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.courier-button {
    background-color: var(--primary);
    color: white;
}

.courier-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.business-button {
    background-color: var(--secondary);
    color: white;
}

.business-button:hover {
    background-color: #1e2735;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Form Styles */
.courier-form {
    width: 100%;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-align: left;
}

.form-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    width: 100%;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.price-tag {
    font-size: 1.1rem;
    margin-top: 1rem;
}

.price-highlight {
    font-weight: 700;
    color: var(--primary);
}

/* Services Section */
.services {
    padding: 3rem 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-icon {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 45, 32, 0.05);
}

.service-icon i {
    font-size: 3rem;
    color: var(--primary);
}

.service-content {
    padding: 1.5rem;
}

.service-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

/* App Section */
.app-section {
    background-color: var(--white);
    padding: 4rem 0;
    margin: 3rem 0;
}

.app-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.app-content {
    flex: 1;
}

.app-image {
    flex: 1;
    text-align: center;
}

.app-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

.app-qr {
    max-width: 150px;
    margin-top: 1rem;
}

/* App görselini küçültme */
.app-image img {
    max-width: 100%;
    max-height: 300px;
    width: auto;
    object-fit: contain;
}

/* Mobil cihazlar için daha küçük boyut */
@media (max-width: 768px) {
    .app-image img {
        max-height: 220px;
    }
}

/* Become Courier Section */
.become-courier {
    text-align: center;
    padding: 4rem 0;
    background-color: rgba(255, 45, 32, 0.05);
    border-radius: 8px;
    margin: 3rem 0;
}

.courier-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

.courier-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.courier-step {
    flex: 1;
    max-width: 250px;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Giriş/Kayıt açılır menü */
.login-dropdown {
    position: relative;
    display: inline-block;
}

.login-btn {
    padding-right: 2.5rem !important; /* Değeri artırıldı */
    position: relative;
    --rotation: 0deg;
}

.login-btn::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 1rem; /* Bu değeri 0.6rem'den 1rem'e artırdık */
    top: 50%;
    transform: translateY(-50%) rotate(var(--rotation));
    transition: transform 0.3s ease;
}

/* Düzeltilmiş dropdown-menu tanımı - sadece bir tane olmalı */
.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 180px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    display: none; /* Varsayılan olarak gizli */
    z-index: 100;
    overflow: hidden;
}

.dropdown-menu.show {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--primary);
}

.dropdown-item i {
    margin-right: 10px;
    width: 18px;
    text-align: center;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Uygulamalar için dropdown */
.app-buttons {
    margin-top: 15px;
    position: relative;
}

.app-download-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.app-download-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 45, 32, 0.3);
}

.app-options {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    width: 230px;
    display: none;
    overflow: hidden;
    margin-top: 10px;
    z-index: 10;
}

.app-options.show {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

.app-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.app-option:not(:last-child) {
    border-bottom: 1px solid #edf2f7;
}

.app-option:hover {
    background: #f7fafc;
    color: var(--primary);
}

/* Footer Stillerini ekleyin veya güncelleyin */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-link {
    margin-bottom: 0.8rem;
}

.footer-link a {
    color: var(--grey);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.footer-link a:hover {
    color: var(--primary);
}

.copyright {
    text-align: center;
    color: var(--grey);
    padding-top: 1.5rem;
    border-top: 1px solid #edf2f7;
    font-size: 0.9rem;
}

footer {
    background-color: var(--white);
    padding: 3rem 0;
    margin-top: 3rem;
}

/* Mobil cihazlar için düzenlemeler */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        padding: 1rem;
    }
    
    .main-nav {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .app-container {
        flex-direction: column;
    }
    
    .courier-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .courier-step {
        max-width: 100%;
    }

    .buttons-container {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-logo {
        text-align: center;
    }
    
    .login-btn {
        padding-right: 2rem !important;
        text-align: center;
    }
    
    .login-btn::after {
        right: 0.8rem;
    }
    
    .login-dropdown {
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .login-btn {
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .dropdown-menu {
        width: 100%;
        position: static;
        display: none;
        box-shadow: none;
        margin-top: 0.5rem;
        border: 1px solid #edf2f7;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    
    .login-dropdown:hover .dropdown-menu {
        display: block;
    }
}