/* GENEL AYARLAR & RENKLER */
:root {
    --dark-blue: #0b1b3d;
    --gold: #c89845;
    --gold-hover: #b0853c;
    --light-bg: #f4f6f9;
    --text-dark: #333333;
    --text-gray: #666666;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.text-center {
    text-align: center;
}

/* WHATSAPP CONTAINER */
.whatsapp-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float {
    width: 55px;
    height: 55px;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.wp-cengizhan {
    background-color: #25d366;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.wp-tooltip {
    position: absolute;
    right: 70px;
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
}

.whatsapp-float:hover .wp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ÜST MENÜ (HEADER) & LOGO YAZI UYUMU */
header {
    background-color: var(--white);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 3%;
    /* Sağ-sol boşluğu esnek yüzde yaparak küçük ekranda sıkışmayı önler */
    flex-wrap: nowrap;
    /* Menü elemanlarının alt satıra kaymasını engeller */
    width: 100%;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo a img {
    max-height: 48px;
    width: auto;
    display: block;
    border-radius: 4px;
    transition: transform 0.3s;
}

.logo a:hover img {
    transform: scale(1.05);
}

.logo-text {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark-blue);
    line-height: 1.1;
}

.logo-text span {
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    gap: 15px;
    /* 25px büyük ekranda iyidir ama küçük ekrana sığmaz, 15px yapıyoruz */
    align-items: center;
}

nav ul li a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    /* 15px yerine 14px yaparak küçük ekranda rahatlamasını sağladık */
    transition: color 0.3s;
    padding-bottom: 5px;
    white-space: nowrap;
    /* Kelimelerin alt satıra kırılmasını engeller */
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--gold);
    border-bottom: 2px solid var(--gold);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-phone i {
    font-size: 24px;
    color: var(--gold);
}

.header-phone small {
    display: block;
    font-size: 11px;
    color: var(--text-gray);
    font-weight: 600;
}

.header-phone strong {
    font-size: 16px;
    color: var(--text-dark);
}

.btn-dark {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-dark:hover {
    background-color: #08142c;
}

/* GİRİŞ ALANI (HERO) */
.hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(11, 27, 61, 0.92) 0%, rgba(11, 27, 61, 0.4) 100%);
}

.hero-content {
    position: relative;
    color: var(--white);
    z-index: 10;
}

.hero-subtitle {
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-size: 55px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-gold {
    background-color: var(--gold);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 4px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-gold:hover {
    background-color: var(--gold-hover);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 13px 35px;
    border-radius: 4px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--dark-blue);
}

/* OVERLAP SERVICES */
.overlap-services {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    margin-top: -60px;
    position: relative;
    z-index: 20;
    padding: 35px 20px;
}

.service-box {
    text-align: center;
    padding: 0 15px;
    border-right: 1px solid #eee;
}

.service-box:last-child {
    border-right: none;
}

.service-box i {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 15px;
}

.service-box h3 {
    font-size: 15px;
    color: var(--dark-blue);
    margin-bottom: 10px;
    font-weight: 700;
}

.service-box p {
    font-size: 12px;
    color: var(--text-gray);
}

/* BÖLÜM AYARLARI */
.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--light-bg);
}

.subtitle {
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

/* DETAYLI HAKKIMIZDA */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-box {
    position: relative;
}

.about-img-box img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--gold);
    color: var(--white);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.experience-badge h3 {
    font-size: 32px;
    font-weight: 800;
}

.experience-badge p {
    font-size: 12px;
    font-weight: 600;
}

.about-content-box h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.lead {
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
}

.about-content-box p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feat-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.about-feat-item i {
    font-size: 24px;
    color: var(--gold);
    margin-top: 3px;
}

.about-feat-item h4 {
    font-size: 16px;
    color: var(--dark-blue);
    font-weight: 700;
    margin-bottom: 5px;
}

.about-feat-item p {
    font-size: 14px;
    margin-bottom: 0;
}

/* DETAYLI HIZMET KARTLARI */
.detailed-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.detailed-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.detailed-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-body {
    padding: 30px;
    position: relative;
}

.card-body i {
    font-size: 35px;
    color: var(--gold);
    background: var(--white);
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    top: -38px;
    left: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card-body h3 {
    font-size: 20px;
    color: var(--dark-blue);
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 700;
}

.card-body p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ARAÇ FİLOMUZ */
.fleet-section {
    background-color: var(--dark-blue);
    padding: 100px 0;
    color: var(--white);
}

.fleet-header {
    margin-bottom: 50px;
    text-align: center;
}

.fleet-header h2 {
    font-size: 38px;
    font-weight: 800;
    margin-top: 5px;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.fleet-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    color: var(--text-dark);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.fleet-card:hover {
    transform: translateY(-5px);
}

.fleet-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.fleet-info {
    padding: 20px;
}

.fleet-info h3 {
    font-size: 17px;
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.features {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 600;
}

.features i {
    color: var(--gold);
    margin-right: 5px;
}

/* RESİM GALERİSİ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 10px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    height: 230px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* İSTATİSTİKLER VE CTA FORM BÖLÜMÜ */
.stats-cta-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-item i {
    font-size: 45px;
    color: var(--gold);
}

.stat-item h4 {
    font-size: 28px;
    color: var(--dark-blue);
    font-weight: 800;
}

.stat-item p {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 600;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background-color: var(--dark-blue);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(11, 27, 61, 0.25);
}

.contact-info-panel {
    background-color: #07132c;
    padding: 50px;
    color: var(--white);
}

.contact-info-panel h2 {
    font-size: 32px;
    font-weight: 800;
    margin-top: 10px;
    margin-bottom: 20px;
}

.contact-info-panel p {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 40px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-list-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-list-item i {
    font-size: 28px;
    color: var(--gold);
    width: 35px;
}

.info-list-item div strong {
    display: block;
    font-size: 16px;
    color: var(--white);
}

.info-list-item div span {
    font-size: 15px;
    opacity: 0.8;
}

.form-panel {
    padding: 50px;
    color: var(--white);
}

.form-panel h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-panel p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: var(--white);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background-color: rgba(255, 255, 255, 0.15);
}

.form-group select option {
    background-color: var(--dark-blue);
    color: var(--white);
}

.btn-form-submit {
    width: 100%;
    background-color: var(--gold);
    color: var(--white);
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-form-submit:hover {
    background-color: var(--gold-hover);
}

/* FOOTER */
footer {
    background-color: #050d1d;
    padding: 40px 0;
    color: var(--white);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo p {
    font-size: 12px;
    opacity: 0.6;
    margin-top: 5px;
}

.footer-links p {
    font-size: 13px;
    opacity: 0.7;
}

/* RESPONSIVE AYARLARI */
@media (max-width: 1200px) {
    .overlap-services {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .overlap-services {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {

    .header-right,
    nav ul {
        display: none;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .overlap-services {
        grid-template-columns: 1fr;
        margin-top: 20px;
    }

    .service-box {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .service-box:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .detailed-services-grid {
        grid-template-columns: 1fr;
    }

    .fleet-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-panel,
    .form-panel {
        padding: 30px 20px;
    }
}