/* --- TAŞ NAKLİYAT PREMIUM CSS --- */
:root {
    --primary-dark: #0B132B;
    --primary-light: #1C2541;
    --accent-color: #FF6B35;
    --accent-hover: #E85D2A;
    --text-gray: #6B7280;
    --bg-light: #F8FAFC;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-light);
    color: var(--primary-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .brand-font {
    font-family: 'Outfit', sans-serif;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    padding: 8px 0;
}

    .top-bar a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: 0.3s;
    }

        .top-bar a:hover {
            color: var(--accent-color);
        }

/* Navbar & Dropdown */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-dark) !important;
    letter-spacing: -1px;
}

    .navbar-brand span {
        color: var(--accent-color);
    }

.nav-link {
    font-weight: 600;
    color: var(--primary-light) !important;
    margin: 0 5px;
    transition: 0.3s;
    position: relative;
}

    .nav-link:hover {
        color: var(--accent-color) !important;
    }

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 10px 0;
}

.dropdown-item {
    font-weight: 500;
    padding: 8px 20px;
    transition: 0.3s;
}

    .dropdown-item:hover {
        background-color: rgba(255, 107, 53, 0.1);
        color: var(--accent-color);
    }

/* Buttons */
.btn-custom {
    background: var(--accent-color);
    color: white;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 700;
    border: none;
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
    transition: 0.3s;
}

    .btn-custom:hover {
        background: var(--accent-hover);
        transform: translateY(-2px);
        color: white;
        box-shadow: 0 15px 25px rgba(255, 107, 53, 0.4);
    }

/* Hero Section & Quick Quote Form */
.hero {
    position: relative;
    padding: 140px 0 120px;
    background: url('/images/home-hero.jpeg') no-repeat center center/cover;
    z-index: 1;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(11, 19, 43, 0.95) 0%, rgba(28, 37, 65, 0.7) 100%);
        z-index: -1;
    }

.hero-title {
    color: white;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

    .hero-title span {
        color: var(--accent-color);
    }

.hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.quote-form-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

    .quote-form-card h4 {
        font-weight: 800;
        color: var(--primary-dark);
        margin-bottom: 20px;
    }

.form-control, .form-select {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
}

    .form-control:focus, .form-select:focus {
        border-color: var(--accent-color);
        box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
    }

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

    .section-title h5 {
        color: var(--accent-color);
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-size: 0.9rem;
    }

    .section-title h2 {
        font-size: 2.8rem;
        font-weight: 800;
        color: var(--primary-dark);
    }

/* Service & Vehicle Cards */
.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: 0.4s;
    border: 1px solid rgba(0,0,0,0.03);
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--accent-color);
        transform: scaleX(0);
        transition: 0.4s;
        transform-origin: left;
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    }

        .service-card:hover::before {
            transform: scaleX(1);
        }

    .service-card i {
        font-size: 45px;
        color: var(--primary-light);
        margin-bottom: 25px;
        transition: 0.4s;
    }

    .service-card:hover i {
        color: var(--accent-color);
        transform: scale(1.1);
    }

    .service-card h4 {
        font-weight: 800;
        margin-bottom: 15px;
    }

/* Gallery */
.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 24px;
    cursor: pointer;
}

    .gallery-item img {
        width: 100%;
        transition: 0.5s;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 19, 43, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 40px;
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border-left: 5px solid var(--accent-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.stars i {
    color: #FFC107;
}

/* FAQ Accordion */
.accordion-button {
    font-weight: 700;
    color: var(--primary-dark);
    padding: 20px;
    border-radius: 12px !important;
}

    .accordion-button:not(.collapsed) {
        background-color: rgba(255, 107, 53, 0.1);
        color: var(--accent-color);
        box-shadow: none;
    }

.accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px !important;
    margin-bottom: 15px;
    overflow: hidden;
}

/* Blog Section */
.blog-card {
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
}

    .blog-card:hover {
        transform: translateY(-5px);
    }

    .blog-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

.blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
}

/* Contact Panel */
.contact-panel {
    background: var(--primary-dark);
    border-radius: 24px;
    overflow: hidden;
    color: white;
}

.contact-info-box {
    padding: 50px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent-color);
    flex-shrink: 0;
}

/* Footer */
.footer {
    background: #070D1F;
    color: rgba(255,255,255,0.7);
    padding: 80px 0 30px;
}

.footer-brand {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    display: block;
    text-decoration: none;
}

    .footer-brand span {
        color: var(--accent-color);
    }

.footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: 0.3s;
}

    .footer a:hover {
        color: var(--accent-color);
    }

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        margin-top: 15px;
    }
}
