/* ========================================
   MODERN ABOUT PAGE STYLES - LOGISKO INSPIRED
   ======================================== */

/* Page Header */
.about-page-header {
    position: relative;
    background: linear-gradient(135deg, #04223e 0%, #0a4275 100%);
    padding: 80px 0 60px;
    margin-top: 0;
    overflow: hidden;
}

.about-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.about-page-header .container {
    max-width: 1200px !important;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--logisko-red, #e74c3c);
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.5);
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

/* About Company Section - Reference Style Modernized */
.about-company-section {
    padding: 120px 0;
    background: #ffffff;
    overflow: visible;
    /* Resim taşmaları için */
}

.about-company-section .container {
    max-width: 1200px !important;
    padding: 0 20px;
    margin: 0 auto;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Multi-layered Images Side */
.about-images-multi {
    position: relative;
    height: 600px;
}

.img-frame-bg {
    position: relative;
    width: 80%;
    background: #ffffff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.bg-ship-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
}

.jumping-man {
    position: absolute;
    top: -40px;
    right: 0;
    width: 60%;
    z-index: 3;
    pointer-events: none;
}

.courier-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.img-frame-small {
    position: absolute;
    bottom: -20px;
    left: 80px;
    width: 50%;
    background: #ffffff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    z-index: 4;
}

.small-ship-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

.vertical-tag {
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%) rotate(-180deg);
    writing-mode: vertical-rl;
    background: #e74c3c;
    color: #fff;
    padding: 20px 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 5;
    white-space: nowrap;
}

/* Content Side Refined */
.about-content {
    padding-left: 0;
}

.content-subtitle-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.subtitle-text {
    color: #e74c3c;
    font-weight: 700;
    font-size: 0.95rem;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 3px;
}

.main-title {
    font-size: 3rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 25px;
}

.red-underline {
    position: relative;
    display: inline-block;
}

.red-underline::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: #e74c3c;
    z-index: -1;
    border-radius: 4px;
}

.desc-p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Feature Blocks */
.feature-blocks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.feature-block-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.block-icon-red {
    width: 54px;
    height: 54px;
    min-width: 54px;
    background: #e74c3c;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.block-text h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.block-text p {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
}

/* Checkmark List */
.checkmark-list {
    list-style: none;
    padding: 0;
    margin-bottom: 50px;
}

.checkmark-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #444;
    font-weight: 600;
}

/* Action Footer */
.action-footer-modern {
    display: flex;
    align-items: center;
    gap: 40px;
}

.btn-red-solid {
    background: #e74c3c;
    color: #fff;
    padding: 18px 35px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.2);
}

.btn-red-solid:hover {
    background: #1a1a1a;
    transform: translateY(-3px);
}

.contact-support {
    display: flex;
    align-items: center;
    gap: 15px;
}

.support-icon-ring {
    width: 48px;
    height: 48px;
    border: 2px solid #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-text strong {
    display: block;
    font-size: 0.85rem;
    color: #1a1a1a;
}

.support-text span {
    font-size: 1.1rem;
    font-weight: 800;
    color: #555;
}

/* Services Feature Cards - Wide */
.services-feature-section .container {
    max-width: 1200px !important;
    padding: 0 20px;
    margin: 0 auto;
}

.services-feature-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    padding: 50px 40px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.card-light {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.card-light:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.card-red {
    background: linear-gradient(135deg, var(--logisko-red, #e74c3c) 0%, #c0392b 100%);
    color: #ffffff;
}

.card-red h3,
.card-red p {
    color: #ffffff;
}

.card-red .card-icon svg {
    color: #ffffff;
}

.card-red .card-link {
    color: #ffffff;
}

.card-blue {
    background: linear-gradient(135deg, var(--logisko-blue, #04223e) 0%, #0a4275 100%);
    color: #ffffff;
}

.card-blue h3,
.card-blue p {
    color: #ffffff;
}

.card-blue .card-icon svg {
    color: #ffffff;
}

.card-blue .card-link {
    color: #ffffff;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.feature-card:hover .card-icon {
    transform: rotateY(360deg);
}

.card-icon svg {
    color: var(--logisko-red, #e74c3c);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px 0;
}

.feature-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0 0 20px 0;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--logisko-blue, #04223e);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.card-link svg {
    transition: transform 0.3s ease;
}

.card-link:hover {
    gap: 12px;
}

.card-link:hover svg {
    transform: translateX(4px);
}

/* Scrolling Marquee - Full Width */
.scrolling-marquee {
    width: 100%;
    background: var(--logisko-red, #e74c3c);
    padding: 24px 0;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    gap: 40px;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Stats Section - Wide */
.stats-section .container {
    max-width: 1200px !important;
    padding: 0 20px;
    margin: 0 auto;
}

.stats-section {
    padding: 120px 0;
    background: #ffffff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 50px 30px;
    background: #f8f9fa;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transform: translateY(-8px);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--logisko-blue, #04223e) 0%, #0a4275 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--logisko-red, #e74c3c);
    margin: 0 0 10px 0;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--logisko-blue, #04223e) 0%, #0a4275 100%);
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.cta-section .container {
    max-width: 1200px !important;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 50px 0;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: var(--logisko-red, #e74c3c);
    color: #ffffff;
}

.cta-btn.secondary {
    background: #ffffff;
    color: var(--logisko-blue, #04223e);
}

/* Responsive Design - Comprehensive Mobile Optimization */
@media (max-width: 1024px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .about-content {
        text-align: center;
    }

    .content-subtitle-box,
    .action-footer-modern {
        justify-content: center;
    }

    .checkmark-list li {
        justify-content: center;
    }

    .feature-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-page-header {
        padding: 60px 0 40px;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .main-title {
        font-size: 2.2rem;
    }

    .about-images-multi {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .img-frame-bg,
    .img-frame-small {
        position: relative;
        width: 100%;
        left: 0;
        bottom: 0;
    }

    .bg-ship-img {
        height: 300px;
    }

    .jumping-man {
        display: none;
        /* Mobilde görsel kirliliği önlemek için kuryeyi gizle veya küçült */
    }

    .vertical-tag {
        display: none;
    }

    .feature-cards-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 40px 30px;
    }

    .feature-blocks-grid {
        grid-template-columns: 1fr;
    }

    .action-footer-modern {
        flex-direction: column;
        gap: 30px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stats-section {
        padding: 80px 0;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.8rem;
    }

    .btn-red-solid {
        width: 100%;
        text-align: center;
    }
}