/* 
   Mersin Cihan Lojistik - Temiz & Ferah Tasarım
   Renkler: Beyaz Arka Plan, Koyu Gri Metin, Turuncu Vurgu
*/

:root {
    --bg-white: #ffffff;
    --bg-light: #fafafa;
    --text-main: #2b2b2b;
    --text-muted: #666666;
    --accent-orange: #f26b1c; /* Enerjik Turuncu */
    --accent-hover: #d85a12;
    --border-color: #eaeaea;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    color: var(--text-main);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------------- Navbar (Üst Kısım) ---------------- */
.navbar {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 6px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 66px; /* 55px × 1.20 = 66px */
    width: auto;
    transition: var(--transition);
}

.logo-img:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-orange);
}

/* Giriş Yap Butonu */
.btn-login {
    background-color: transparent;
    color: var(--accent-orange) !important;
    border: 2px solid var(--accent-orange);
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600 !important;
}

.btn-login:hover {
    background-color: var(--accent-orange);
    color: var(--bg-white) !important;
    box-shadow: 0 4px 12px rgba(242, 107, 28, 0.2);
}

/* ---------------- Butonlar ---------------- */
.btn-primary {
    background-color: var(--accent-orange);
    color: var(--bg-white);
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
    border: none;
    font-size: 1.05rem;
}
.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(242, 107, 28, 0.25);
}

.btn-outline {
    border: 2px solid var(--border-color);
    color: var(--text-main);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.btn-outline:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

/* ---------------- Ortak Başlık / Rozet ---------------- */
.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(242, 107, 28, 0.1);
    color: var(--accent-orange);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.text-center { text-align: center; }

/* ---------------- Hero (Ana Manşet) ---------------- */
main {
    margin-top: 80px; /* Navbar boşluğu */
}
.hero-section {
    position: relative;
    width: 100%;
    min-height: 420px;
    aspect-ratio: 2.62 / 1; /* Yeni resim boyutu: 3352x1280 oranına mükemmel uyum */
    background-image: url('../images/lojistik.jpg');
    background-size: cover; /* Resmi oranını koruyarak ekranı tamamen doldurur */
    background-position: center center; /* Resmi ortalayarak gösterir */
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Sol rozetler ve sağ içerik kutusu arasında boşluk */
    padding: 0 5vw; /* Ekranın iki kenarından eşit boşluk */
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

/* Sol Taraf: Yetki Belgeleri Rozetleri */
.hero-badges {
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 2;
}
.badge-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 14px;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    min-width: 260px;
}
.badge-card:hover {
    transform: translateX(6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(242, 107, 28, 0.4);
}
.badge-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(242, 107, 28, 0.3);
}
.badge-icon-circle i {
    font-size: 1.15rem;
    color: #ffffff;
}
.badge-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.badge-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
}
.badge-desc {
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.3;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 580px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    padding: 35px 45px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.hero-title {
    font-size: 3.5rem; /* Genişliğe uyum için çok hafif küçültüldü */
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.15;
    letter-spacing: -1px;
}
.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 300; /* Inter Light kullanımı */
    line-height: 1.8;
    margin-bottom: 40px;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* ---------------- Hakkımızda (Minimal Tasarım) ---------------- */
.about-section {
    padding: 140px 0;
    background-color: #f8faff;
    background-image: 
        radial-gradient(ellipse at 50% 100%, rgba(180, 200, 255, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(200, 180, 240, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 90%, rgba(160, 210, 255, 0.2) 0%, transparent 50%);
}
.about-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 3.8rem;
    font-weight: 400;
    line-height: 1.15;
    color: #1a3a5c;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

/* İki Sütunlu Düzen */
.about-columns {
    display: flex;
    gap: 0;
    margin-bottom: 50px;
}
.about-col {
    flex: 1;
    padding: 0 40px;
}
.about-col:first-child {
    padding-left: 0;
}
.about-col:last-child {
    padding-right: 0;
}
.about-col-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a3a5c;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
}
.about-col p {
    font-weight: 300;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 18px;
}

/* Orta Dikey Çizgi */
.about-divider {
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(26, 58, 92, 0.2), transparent);
    flex-shrink: 0;
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}
.about-link:hover {
    gap: 16px;
    color: var(--accent-hover);
}

/* ---------------- Hizmetlerimiz (Premium Tasarım) ---------------- */
.services-section {
    padding: 140px 0;
    background-color: transparent;
}
.services-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #1a3a5c;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}
.services-paragraph {
    font-weight: 300;
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 70px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}
.service-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-main);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(242, 107, 28, 0.08);
    border-color: rgba(242, 107, 28, 0.2);
}
.service-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(242, 107, 28, 0.1), rgba(242, 107, 28, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: var(--transition);
}
.service-icon-box i {
    font-size: 1.8rem;
    color: var(--accent-orange);
    transition: var(--transition);
}
.service-card:hover .service-icon-box {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-hover));
}
.service-card:hover .service-icon-box i {
    color: #ffffff;
}
.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: #1a3a5c;
}
.service-card p {
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 30px;
    flex-grow: 1;
    font-size: 1rem;
}
.service-link {
    font-weight: 600;
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    transition: var(--transition);
}
.service-card:hover .service-link {
    gap: 12px;
}

/* ---------------- İletişim Formu (Premium Tasarım) ---------------- */
.contact-section {
    background-color: transparent;
    padding: 140px 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.contact-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #1a3a5c;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}
.contact-paragraph {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.8;
}
.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
}
.detail-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(242, 107, 28, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}
.detail-icon i {
    font-size: 1.3rem;
    color: var(--accent-orange);
}
.contact-detail-item:hover .detail-icon {
    background: var(--accent-orange);
}
.contact-detail-item:hover .detail-icon i {
    color: #ffffff;
}
.detail-text {
    display: flex;
    flex-direction: column;
}
.detail-text span {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 3px;
}
.detail-text strong {
    font-size: 1.1rem;
    color: #1a3a5c;
    font-weight: 600;
}

/* Form Tasarımı */
.contact-form {
    background: #ffffff;
    padding: 50px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
}
.form-group {
    margin-bottom: 25px;
}
.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #1a3a5c;
}
.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: #f8fafc;
    border: 1px solid transparent;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    color: var(--text-main);
}
.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    background: #ffffff;
    border-color: rgba(242, 107, 28, 0.4);
    box-shadow: 0 0 0 4px rgba(242, 107, 28, 0.1);
}
.nav-links a:hover {
    color: var(--accent-orange);
}
.btn-login {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-hover));
    color: #ffffff !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(242, 107, 28, 0.3);
}
.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 107, 28, 0.4);
    color: #ffffff;
}
.menu-toggle, .close-menu-btn {
    display: none;
}
.btn-submit {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-hover));
    color: #ffffff;
    border: none;
    padding: 16px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    width: 100%;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(242, 107, 28, 0.25);
}
.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(242, 107, 28, 0.35);
}

/* Response Messages */
.response-message {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    display: none;
}
.response-message.success {
    background-color: #e6f9ed;
    color: #128c3a;
    border: 1px solid #c2efd3;
    display: block;
}
.response-message.error {
    background-color: #fcebeb;
    color: #c92a2a;
    border: 1px solid #fad5d5;
    display: block;
}

/* ---------------- Geliştirilmiş Footer ---------------- */
.main-footer {
    background-color: #0d0d0d;
    color: #a0a0a0;
    padding-top: 80px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}
.footer-brand p {
    margin-top: 25px;
    font-weight: 300;
    line-height: 1.8;
    font-size: 1rem;
}
.footer-logo {
    height: 70px; /* Footer beyaz logo yüksekliği */
    width: auto;
    opacity: 0.9;
    transition: var(--transition);
}
.main-footer h3 {
    color: var(--bg-white);
    font-size: 1.25rem;
    margin-bottom: 25px;
    font-weight: 600;
}
.footer-links ul, .footer-hours ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 15px;
}
.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 300;
}
.footer-links a:hover {
    color: var(--accent-orange);
    padding-left: 8px;
}
.footer-contact p {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 300;
}
.footer-hours li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 10px;
    font-weight: 300;
}
.footer-hours span {
    font-weight: 500;
    color: var(--bg-white);
}

.footer-bottom {
    background-color: #050505;
    padding: 25px 0;
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    font-weight: 300;
}

/* ---------------- Hakkımızda & Detay Sayfaları ---------------- */
.detail-hero {
    padding: 180px 0 100px;
    background: #f8faff;
    background-image: 
        radial-gradient(ellipse at 50% 100%, rgba(180, 200, 255, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(200, 180, 240, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 90%, rgba(160, 210, 255, 0.2) 0%, transparent 50%);
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.detail-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #1a3a5c;
    margin-top: 15px;
    letter-spacing: -0.5px;
}
.detail-content {
    padding: 100px 0;
    max-width: 1000px;
    margin: 0 auto;
}
.detail-content p {
    font-weight: 300;
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 25px;
}
.detail-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    color: #1a3a5c;
    margin: 50px 0 20px;
}

/* Hakkımızda Sayfası İç Düzeni */
.about-page-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}
.about-page-text h3 {
    margin-top: 0;
}

.why-us-title {
    text-align: center;
    font-size: 2.5rem;
    margin-top: 80px;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
    color: #1a3a5c;
}

.why-us-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-weight: 300;
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-muted);
}

/* Değerlerimiz Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.value-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(242, 107, 28, 0.08);
    border-color: rgba(242, 107, 28, 0.2);
}
.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(242, 107, 28, 0.1), rgba(242, 107, 28, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--accent-orange);
}
.value-card h4 {
    font-size: 1.2rem;
    color: #1a3a5c;
    margin-bottom: 10px;
}
.value-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.cta-box {
    background: linear-gradient(135deg, #1a3a5c, #0d2136);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    margin-top: 80px;
    color: white;
    box-shadow: 0 20px 50px rgba(26, 58, 92, 0.2);
}
.cta-box h3 {
    color: white;
    margin-top: 0;
}
.cta-box p {
    color: rgba(255, 255, 255, 0.8);
}
.cta-box .btn-primary {
    background: var(--accent-orange);
    color: white;
    margin-top: 20px;
    display: inline-block;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}
.cta-box .btn-primary:hover {
    background: var(--accent-hover);
}

/* ---------------- Page Loader ---------------- */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader {
    width: 40px;
    aspect-ratio: 1.154;
    /* Rengini temamıza uyumlu hale getirdik (Turuncu) */
    --_g: no-repeat radial-gradient(farthest-side, #f26b1c 90%, #0000);
    background: 
        var(--_g) 50%  0,
        var(--_g) 0    100%,
        var(--_g) 100% 100%;
    background-size: 35% calc(35%*1.154);
    animation: l16 1s infinite;
}

@keyframes l16{ 
    50%, 100% {
        background-position: 100% 100%, 50% 0, 0 100%
    } 
}

/* ---------------- SweetAlert Premium Tasarım ---------------- */
.premium-swal-popup {
    border-radius: 24px !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
    box-shadow: 0 25px 80px rgba(0,0,0,0.1) !important;
    padding-bottom: 25px !important;
}
.swal2-confirm {
    border-radius: 12px !important;
    font-weight: 600 !important;
    padding: 12px 24px !important;
    box-shadow: 0 8px 20px rgba(242, 107, 28, 0.25) !important;
}

/* ==========================================================================
   Responsive (Mobil Uyumluluk)
   ========================================================================== */
.sidebar-top { display: none; }
.nav-links i { display: none; }


/* Tablet ve Geniş Mobil Ekranlar (max-width: 992px) */
@media (max-width: 992px) {
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
    }
    
    .menu-toggle {
        display: flex !important;
        font-size: 1.8rem;
        color: #1a3a5c;
        cursor: pointer;
        margin-left: auto;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 340px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 30px 0;
        gap: 0;
        transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
        z-index: 1000;
        box-shadow: -15px 0 50px rgba(0,0,0,0.15);
        border-left: 1px solid rgba(255, 255, 255, 0.8);
    }

    .nav-links.active {
        right: 0;
    }

    .sidebar-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0 30px 30px;
        margin-bottom: 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .sidebar-logo {
        height: 45px;
        width: auto;
    }
    
    .close-menu-btn {
        position: static;
        font-size: 1.5rem;
        color: #1a3a5c;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.04);
        transition: var(--transition);
    }
    
    .close-menu-btn:hover {
        background: rgba(242, 107, 28, 0.1);
        color: var(--accent-orange);
    }

    .nav-links i {
        display: inline-block;
        width: 24px;
        margin-right: 12px;
        color: var(--text-muted);
        text-align: center;
        transition: var(--transition);
    }

    .nav-links li {
        width: 100%;
        text-align: left;
        border-bottom: none;
    }
    
    .nav-links li.nav-login-item {
        padding: 0 30px;
        margin-top: 30px;
    }

    .nav-links a {
        font-size: 1.15rem;
        font-weight: 500;
        color: #1a3a5c;
        display: flex;
        align-items: center;
        padding: 16px 30px;
        transition: all 0.3s ease;
        border-left: 3px solid transparent;
    }
    
    .nav-links a:hover {
        color: var(--accent-orange);
        background: linear-gradient(90deg, rgba(242, 107, 28, 0.05) 0%, transparent 100%);
        border-left: 3px solid var(--accent-orange);
        padding-left: 35px;
    }
    
    .nav-links a:hover i {
        color: var(--accent-orange);
    }
    
    .nav-links .btn-login {
        display: flex;
        justify-content: center;
        text-align: center;
        padding: 15px;
        border-left: none;
        width: 100%;
    }
    
    .nav-links .btn-login i {
        color: #fff;
    }
    
    .nav-links .btn-login:hover {
        padding-left: 15px !important;
        border-left: none;
        background: linear-gradient(135deg, var(--accent-orange), var(--accent-hover));
    }
    
    .nav-links .btn-login:hover i {
        color: #fff;
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        display: none;
        opacity: 0;
        transition: opacity 0.4s ease;
    }
    
    .menu-overlay.active {
        display: block;
        opacity: 1;
    }
    
    .hero-section {
        padding: 120px 20px 80px;
        flex-direction: column-reverse; /* Put the text content above the badges */
        justify-content: center;
        gap: 40px;
        aspect-ratio: auto; /* Remove aspect ratio constraint on mobile */
    }
    .hero-content {
        margin: 0;
        max-width: 100%;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .hero-badges {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .badge-card {
        padding: 12px 20px;
    }
    
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-columns {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-col {
        padding: 0 !important;
        text-align: center;
    }
    
    .about-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(26, 58, 92, 0.2), transparent);
        margin: 10px 0;
    }

    .about-heading {
        font-size: 2.8rem;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .about-link {
        width: 100%;
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .about-page-layout {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    .about-page-layout > div {
        direction: ltr !important;
    }
}

/* Telefonlar (max-width: 768px) */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 20px 60px;
        flex-direction: column-reverse;
    }
    .hero-content {
        margin: 0;
        max-width: 100%;
        padding: 30px 20px;
    }
    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    .hero-content p {
        font-size: 1.05rem;
    }
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .btn-primary, .btn-secondary, .btn-outline {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .section-header h2, .about-heading {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    /* Hizmetler ve Hakkımızda detay sayfaları */
    .detail-content {
        padding: 50px 20px;
    }
    
    .why-us-title {
        font-size: 2rem;
        margin-top: 50px;
    }
    
    .why-us-text {
        font-size: 1.05rem;
        padding: 0 10px;
    }

    .detailed-service-block {
        padding: 30px 20px;
    }
    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .service-header h2 {
        font-size: 1.8rem;
    }
    .service-features-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-hero-title {
        font-size: 2.5rem;
    }
    .detail-hero {
        padding: 150px 0 60px;
    }
    
    .cta-box {
        padding: 40px 20px;
    }
    .cta-box h3 {
        font-size: 1.8rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info, .contact-form-wrapper {
        padding: 30px 20px;
    }
}
