/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1.5rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 77px !important;
    /* !important diğer tüm ayarları ezer */
    width: auto !important;
    /* Genişlik orantılı artar */
    max-width: none;
    /* Genişlik sınırlamasını kaldırır */
    border-radius: 50%;
    /* Yuvarlaklık */
    border: 2px solid #e65100;
    /* Çerçeve */
    padding: 5px;
    display: block;
    /* Resmin doğru hizalanmasını sağlar */
}

/* 3. Menüdeki yazıların ortada kalmasını sağlıyoruz */
.nav-container {
    align-items: center;
    /* Logo büyüse de yazılar dikeyde ortalanır */
}

/* Logo ve Yazıyı Yan Yana Hizalama */
.logo {
    display: flex;
    /* Resmi ve yazıyı yan yana getirir */
    align-items: center;
    /* Dikey olarak ortalar */
    gap: 15px;
    /* Resim ile yazı arasına boşluk koyar */
    text-decoration: none;
    /* Alt çizgi varsa kaldırır */
}

/* Yazı (p etiketi) Ayarları */
.logo p {
    color: #e65100;
    /* İsteğiniz Turuncu Renk */
    font-weight: 900;
    /* En Kalın Yazı Tipi (Bold) */
    font-size: 18px;
    /* Yazı Boyutu (İsteğe göre artırabilirsiniz) */
    margin: 0;
    /* Gereksiz boşlukları temizler */
    line-height: 1.2;
    /* Satır aralığını düzeltir */
    font-family: 'Inter', sans-serif;
    /* Font ailesi */
    letter-spacing: 1px;
    /* Harfler arası hafif boşluk */
}

.logo-icon {
    width: 140px;
    height: 140px;
    background: transparent;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.logo img {
    height: 140px;
    /* Yükseklik */
    width: auto;
    /* Genişliği yüksekliğe eşitleyin */
    object-fit: contain;
    max-height: 100%;
    transition: all 0.3s ease;
    /* Resmi kutuya sündürmeden sığdırır */
    background: white;
    /* Arka planı bembeyaz yapar */
    border-radius: 50%;
    /* %50 değeri TAM DAİRE yapar */
    border: 2px solid #d05e00;
    /* Etrafına ince mavi bir çerçeve ekler (Şık durur) */
    padding: 5px;
    /* Logo çerçeveye yapışmasın diye biraz boşluk */
}

/* "ŞEMS" yazısı için ayarlar */
.logo-text h2 {
    color: #ffffff;
    /* Logonuzdaki Koyu Turuncu Rengi */
    font-size: 20px;
    /* Yazı boyutunu biraz büyüttük */
    font-weight: 900;
    /* En kalın yazı tipi (Extra Bold) */
    margin: 0;
    letter-spacing: 1px;
    /* Harfler arası hafif boşluk (Okunabilirlik için) */
    text-transform: uppercase;
    /* Hepsi büyük harf */
}

/* "ULUSLARARASI NAKLİYAT" yazısı için ayarlar */
.logo-text span {
    color: #ffffff;
    /* Biraz daha açık bir turuncu tonu */
    font-size: 15px;
    /* Alt yazı boyutu */
    font-weight: 700;
    /* Kalın yazı (Bold) */
    text-transform: uppercase;
    letter-spacing: 2px;
    /* Alt yazı daha geniş dursun */
    display: block;
    /* Alt satıra geçmesini sağlar */
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #1e293b;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #e65100;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e65100;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1e293b;
    margin: 3px 0;
    transition: 0.3s;
}

/* Vanta.js veya Video için en temiz .hero hali */
.hero {
    min-height: 100vh;
    background: #1e293b;
    /* Animasyon yüklenene kadar görünecek zemin rengi */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Hero Alanı (Kapsayıcı) */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Ekranın tamamını kapla */
    overflow: hidden;
    /* Videonun taşan kısımlarını gizle (ÖNEMLİ) */
    display: flex;
    align-items: center;
    /* İçerikleri dikey ortala */
    justify-content: center;
    /* İçerikleri yatay ortala */
}

/* Video Ayarları */
#bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* SİHİRLİ KOD: Videoyu sündürmeden alanı doldurur */
    z-index: 0;
    /* En altta kal */
}

/* Karartma Katmanı (Yazıların okunması için) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Siyahlık oranı */
    z-index: 1;
    /* Videonun üstünde */
}

/* Yazıların olduğu içerik */
.hero-content {
    position: relative;
    z-index: 2;
    /* En üstte */
    width: 100%;
    max-width: 1200px;
    /* İçeriğin çok yayılmasını engeller */
    padding: 0 20px;
}



/* Ana Başlık Rengi (Güvenilir Nakliyat...) */
.hero-text h1 {
    color: #ffffff;
    /* Şu an BEYAZ. Sarı yapmak isterseniz: #facc15 */
    font-size: 3.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/* Alt Açıklama Rengi (Özel tırlarımızla...) */
.hero-text p {
    color: #f0e8e2;
    /* Şu an AÇIK GRİ/BEYAZIMSI. Tam beyaz için: #ffffff */
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
    /* Yazının çok yayılmasını engeller */
}



.btn {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #f04400, #1d4ed8);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    color: #1e293b;

    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, #f04400, #1d4ed8);
    color: white;
}

.btn-secondary:hover {
    color: #1e293b;
    transform: translateY(-2px);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #f8fafc;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stat h4 {
    font-size: 2rem;
    font-weight: 700;
    color: #e65100;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #64748b;
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #e65100, #e65100);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 80px;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e65100, #e65100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 32px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.service-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Routes Section */
.routes {
    padding: 6rem 0;
    background: #f8fafc;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.route-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.route-card:hover {
    transform: translateY(-5px);
}

.route-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 24px;
}

.route-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.route-card p {
    color: #64748b;
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e65100, #e65100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #64748b;
    line-height: 1.5;
}

.contact-form {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 16px;
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e65100;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #e65100;
}

.footer-section p {
    color: #cbd5e1;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.0rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        justify-content: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .service-card,
    .route-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.route-card,
.contact-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #e65100;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e65100;
}

/* Turuncu Yazı Sınıfı */
.text-orange {
    color: #e65100 !important;
    /* Logonuzdaki koyu turuncu */
}