﻿
/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 10rem 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(179, 146, 47, 0.1) 0%, rgba(1, 2, 2, 0.9) 70%);
    z-index: -1;
}

.hero-content {
    max-width: 1400px;
    z-index: 1;
    margin: 2rem auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(90deg, #ffffff, var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: white;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
    opacity: 0;
}

.delay-2 {
    animation-delay: 0.4s;
    opacity: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.9rem;
    }

    .hero p {
        font-size: 1rem;
    }
}



/* İhracat Hizmetleri Bölümü */
.export-services {
    padding: 80px 5%;
    background-color: var(--gray);
    height: max-content;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 30px;
    margin-bottom: 15px;
    color: var(--orange);
}

.section-header .subtitle {
    font-size: 1.3rem;
    color: var(--text-color-hover);
    font-weight: bold;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--linear);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-hover));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.card-icon svg {
    width: 35px;
    height: 35px;
}

.service-card h3 {
    font-size: 30px;
    margin-bottom: 15px;
    color: var(--orange);
    text-align: center;
}

.service-card p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
    text-align: center;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .export-services {
        padding: 60px 5%;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 25px;
    }
}
/* İş Geliştirme Bölümü */
.business-development {
    padding: 80px 5%;
    background-color: var(--bg);
    border-top: 1px solid var(--border-color);
}

.card-image {
    width: 100%;
}

.card-image img {
    width: 100%;
    height: 270px;
    object-fit: cover;
}

.development-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

.development-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    overflow: hidden;
    flex-direction: column;
}

.development-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--orange), var(--orange-hover));
    transition: width 0.3s ease;
}

.development-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.development-card:hover::before {
    width: 6px;
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-content {
    flex: 1;
}

.development-card h3 {
    font-size: 30px;
    margin-bottom: 15px;
    color: var(--orange);
    font-weight: bold;
}

.development-card p {
    color: var(--text-color);
    line-height: 1.5;
    text-align: justify;
    font-size: 17px;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .business-development {
        padding: 60px 5%;
    }

    .development-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .development-card {
        padding: 25px;
        flex-direction: column;
        text-align: center;
    }

    .development-card::before {
        width: 100%;
        height: 3px;
        transition: height 0.3s ease;
    }

    .development-card:hover::before {
        width: 100%;
        height: 4px;
    }

    .card-icon {
        margin-top: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .development-grid {
        grid-template-columns: 1fr;
    }

    .development-card {
        padding: 20px;
    }

    .development-card h3 {
        font-size: 1.2rem;
    }

    .development-card p {
        font-size: 0.9rem;
    }
}


/* Son Yazılar Bölümü */
.latest-blogs {
    padding: 80px 5%;
    background-color: var(--card-bg);
    border-top: 1px solid var(--border-color);
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(49%, 1fr));
    gap: 1rem;
    margin-bottom: 50px;
}

.blog-card {
    background: var(--bg);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    max-width: 600px;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-hover));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.blog-card:hover::before {
    transform: scaleX(1);
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-category {
    background: var(--orange);
    color: var(--text-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    position: absolute;
    right: 20px;
    top: 20px;
}

.blog-date {
    color: var(--text-color-hover);
    font-size: 13px;
}

.blog-title {
    font-size: 25px;
    margin-bottom: 15px;
    color: var(--text-color);
    line-height: 1.4;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Kaç satırda kesilecek */
    -webkit-box-orient: vertical;
}

.blog-excerpt {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.9;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Kaç satırda kesilecek */
    -webkit-box-orient: vertical;
}

.read-more {
    color: var(--orange);
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--orange-hover);
}

.read-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(3px);
}

.blogs-cta {
    text-align: center;
    padding: 40px 0 20px;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.blogs-cta p {
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.blog-cover-image {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1rem;
    height: 250px;
}

.blog-cover-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 300ms;
}

.blog-card:hover .blog-cover-image img {
    transform: scale(1.02);
}
/* Responsive Tasarım */
@media (max-width: 768px) {
    .latest-blogs {
        padding: 60px 5%;
    }

    .blogs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-card {
        padding: 25px;
    }

    .blog-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .blogs-grid {
        grid-template-columns: 1fr;
    }

    .blog-card {
        padding: 20px;
    }

    .blog-title {
        font-size: 1.1rem;
    }

    .blog-excerpt {
        font-size: 0.9rem;
    }
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
}

.pagination button {
    background: var(--orange);
    color: var(--bg);
    border: none;
    border-radius: 5px;
    padding: 6px 10px;
    cursor: pointer;
    transition: 0.2s;
    margin-right: 10px;
}

.pagination button:disabled {
    background: var(--border-color);
    cursor: not-allowed;
}

.page-numbers span {
    background: var(--card-bg);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    padding: 6px 10px;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
    font-size: 14px;
    transition: 0.2s;
}

.page-numbers span.active {
    background: var(--orange);
    color: var(--text-color);
    font-weight: bold;
}

.page-numbers span:hover {
    background: var(--orange-hover);
    color: var(--text-color);
}

/*#region FAQ Section*/

.faq-section {
    padding: 80px 0;
    background-color: var(--border-color);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 30px;
}

.section-title p {
    font-size: 20px;
    margin-top: 10px;
}

.faq-container {
    margin: 0 auto;
}

.faq-container p {
    font-size: 13px;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    background-color: var(--gray);
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: var(--gray);
}

.faq-question h3 {
    font-size: 15px;
    margin: 0;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
    background-color: var(--input-bg);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-toggle {
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(90deg);
}

/*#endregion*/

/* Logo Slider */
.logo-slider-wrapper {
    background: var(--linear);
    padding: 40px 0;
    overflow: hidden;
    position: relative;
    width: 100%; /* EKRANIN TAMAMI */
}

.logo-slider-wrapper h2 {
    margin-bottom: 3rem;
    color: var(--orange);
    text-align: center;
}

.logo-slider {
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: scroll 25s linear infinite;
    width: max-content;
}

.logo-track img {
    height: 75px;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.logo-track img:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.05);
}

/* Hover durunca duraklama */
.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

/* Sonsuz kayma efekti */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Mask efekti */
.logo-slider::before,
.logo-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
}

.logo-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
}

/* Responsive */
@media (max-width: 1200px) {
    .faq-container {
        width: calc(100% - 2rem);
    }
}

@media (max-width: 768px) {
    .logo-track {
        gap: 40px;
        animation-duration: 18s;
    }

    .logo-track img {
        height: 40px;
    }

    .hero-content {
        width: calc(100% - 2rem);
    }

    .section-title h2 {
        font-size: 25px;
    }

    .section-title p {
        font-size: 13px;
    }

    .faq-container p {
        font-size: 14px;
    }

    .faq-question h3 {
        font-size: 15px;
    }
}
