/* Hero Section with Carousel */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: transparent;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
    background: transparent;
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: transparent;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    background: transparent;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.carousel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.carousel-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    z-index: 1;
}

.carousel-content {
    max-width: 800px;
    padding: 2rem;
    text-align: center;
    color: white;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease 0.4s;
    position: relative;
}

.carousel-slide.active .carousel-content {
    opacity: 1;
    transform: translateY(0);
}

.carousel-content h1 {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
}

.carousel-content h1 .highlight {
    color: #007bff;
    font-weight: 800;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
}

.carousel-content p {
    font-size: 1.5rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
    line-height: 1.6;
}

.btn-primary {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    background: #007bff;
    color: white;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
}

.btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,123,255,0.4);
}

/* Carousel Controls */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(4px);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.carousel-control:hover {
    background: rgba(0,0,0,0.5);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
    left: 20px;
}

.carousel-control.next {
    right: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
    background: rgba(0,0,0,0.2);
    padding: 8px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.indicator {
    width: 10px;
    height: 10px;
    margin: 0 2px;
    opacity: 0.7;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.3);
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .carousel-content h1 {
        font-size: 4.5rem;
    }
}

@media (max-width: 768px) {
    .carousel-content {
        padding: 1rem;
    }

    .carousel-content h1 {
        font-size: 3.5rem;
    }

    .carousel-content p {
        font-size: 1.3rem;
        padding: 0 1rem;
    }

    .carousel-control {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .carousel-content h1 {
        font-size: 2.8rem;
    }

    .carousel-content p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    .carousel-control {
        width: 35px;
        height: 35px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* About Section Styles */
.about-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8f9fa, #fff);
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.8rem;
    color: #007bff;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Üst Kısım: Yazı ve Resim */
.about-top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.about-text-wrapper {
    padding-right: 20px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.lead-text {
    font-size: 1.2rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.9;
}

.about-text p {
    margin-bottom: 20px;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* İstatistikler */
.stats-section {
    margin-bottom: 80px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(0,123,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.stat-icon i {
    font-size: 1.5rem;
    color: #007bff;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 8px;
    line-height: 1.2;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Özellikler */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(0,123,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 1.8rem;
    color: #007bff;
}

.feature-card h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text-wrapper {
        padding-right: 0;
    }

    .about-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.5rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .lead-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .stats-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-item,
    .feature-card {
        padding: 25px 20px;
    }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #fff;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header .section-title {
    margin-bottom: 20px;
}

.services-header .section-subtitle {
    font-size: 2.4rem;
    font-weight: 700;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.services-menu {
    margin-top: 30px;
    padding: 40px 0;
}

.services-menu ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-menu li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #555;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 30px 20px;
    position: relative;
    background: #f8f9fa;
    border-radius: 8px;
    height: 100%;
    min-height: 160px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.services-menu li a::before {
    content: '';
    display: block;
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.services-menu li:nth-child(1) a::before {
    background-image: url('/assets/icons/container.svg');
}

.services-menu li:nth-child(2) a::before {
    background-image: url('/assets/icons/cargo.svg');
}

.services-menu li:nth-child(3) a::before {
    background-image: url('/assets/icons/tariff.svg');
}

.services-menu li:nth-child(4) a::before {
    background-image: url('/assets/icons/service-list.svg');
}

.services-menu li:nth-child(5) a::before {
    background-image: url('/assets/icons/form.svg');
}

.services-menu li a:hover {
    color: #007bff;
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,123,255,0.1);
}

.services-menu li a:hover::before {
    opacity: 1;
}

/* Responsive tasarım için eklemeler */
@media (max-width: 992px) {
    .services-menu ul {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .services-header .section-subtitle {
        font-size: 2rem;
    }

    .services-menu ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .services-menu li a {
        font-size: 0.95rem;
        min-height: 140px;
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .services-menu ul {
        grid-template-columns: 1fr;
    }

    .services-menu li a {
        font-size: 0.9rem;
        min-height: 120px;
    }
}

/* Contact Section */
.contact {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
    overflow: hidden;
}

.contact-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    pointer-events: none;
}

.contact-text {
    text-align: center;
    margin-bottom: 60px;
}

.contact-subtitle {
    font-size: 2.4rem;
    font-weight: 700;
    color: #333;
    margin: 20px 0;
    font-family: 'Montserrat', sans-serif;
}

.contact-text p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,123,255,0.1);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(0,123,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card-icon i {
    font-size: 28px;
    color: #007bff;
}

.contact-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.contact-card p {
    color: #666;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.card-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.card-link:hover {
    color: #0056b3;
}

.contact-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,123,255,0.2);
}

.btn-contact i {
    transition: transform 0.3s ease;
}

.btn-contact:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0,123,255,0.3);
}

.btn-contact:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }

    .contact-subtitle {
        font-size: 2rem;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .contact-subtitle {
        font-size: 1.6rem;
    }

    .btn-contact {
        width: 100%;
        justify-content: center;
    }
}

/* Services Grid Styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #007bff0f;
    border-radius: 50%;
}

.service-icon i {
    font-size: 1.8rem;
    color: #007bff;
}

.service-card h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: #007bff;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }
}

.liman-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}