/* Home Page Styles */
/* ================= */

/* General Styles */
section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

@media (max-width: 767.98px) {
    section {
        padding: 3rem 0;
    }
}

@media (max-width: 575.98px) {
    section {
        padding: 2rem 0;
    }
}

.section-title {
    position: relative;
    margin-bottom: 3.5rem;
    text-align: center;
    color: #0F172A;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .section-title {
        margin-bottom: 2.5rem;
        font-size: 1.75rem;
    }
}

@media (max-width: 575.98px) {
    .section-title {
        margin-bottom: 2rem;
        font-size: 1.5rem;
    }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #EA580C 0%, #F97316 100%);
    border-radius: 2px;
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.bg-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/default/Lines-texture.png');
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.bg-texture-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/default/Line-Pattern-Transparent.png');
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.hover-lift {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.hover-lift:hover {
    transform: translateY(-10px);
}

.icon-box {
    width: 24px;
    text-align: center;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section .card-img {
    transition: transform 10s ease;
    height: 450px;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-section:hover .card-img {
    transform: scale(1.1);
}

.hero-section .card-text {
    max-width: 700px;
}

/* Categories Section */
.categories-section {
    background: #FFFFFF;
}

.homecat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

@media (max-width: 767.98px) {
    .homecat-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 575.98px) {
    .homecat-grid {
        grid-template-columns: 1fr;
    }
}

.homecat-card {
    height: 100%;
    border-radius: 15px;
    background: #F1F5F9;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
    position: relative;
}

.homecat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #EA580C;
}

.homecat-image {
    width: 100%;
    height: 180px;
    background-color: #e9ecef;
    overflow: hidden;
}

.homecat-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.homecat-card:hover .homecat-image img {
    transform: scale(1.1);
}

.homecat-content {
    padding: 1.5rem;
    position: relative;
}

.homecat-title {
    color: #0F172A;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.homecat-description {
    color: #64748B;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.homecat-link {
    position: relative;
    color: #1E40AF;
    font-weight: 600;
    text-decoration: none;
    padding-right: 1.5rem;
    transition: all 0.3s ease;
}

.homecat-link:after {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.homecat-card:hover .homecat-link {
    color: #EA580C;
    padding-right: 2rem;
}

.homecat-card:hover .homecat-link:after {
    right: 0.5rem;
}

/* Jant Kapağı Showcase */
.jant-kapagi-showcase {
    min-height: 80vh;
    background: linear-gradient(135deg, #F1F5F9 0%, #FFFFFF 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 2rem 0;
}

@media (max-width: 991.98px) {
    .jant-kapagi-showcase {
        min-height: auto;
        padding: 3rem 0;
    }
}

@media (max-width: 993px) {
    .jant-kapagi-showcase {
        text-align: center;
        padding: 2.5rem 0;
    }
}

.jant-kapagi-showcase .bg-texture {
    opacity: 0.05;
}

.showcase-content {
    position: relative;
    z-index: 2;
}

@media (max-width: 767.98px) {
    .showcase-content {
        margin-bottom: 2rem;
    }
}

.showcase-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #1E40AF 0%, #EA580C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (max-width: 1199.98px) {
    .showcase-title {
        font-size: 3rem;
    }
}

@media (max-width: 991.98px) {
    .showcase-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .showcase-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 575.98px) {
    .showcase-title {
        font-size: 1.75rem;
    }
}

.showcase-subtitle {
    font-size: 1.5rem;
    color: #EA580C;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .showcase-subtitle {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 575.98px) {
    .showcase-subtitle {
        font-size: 1.1rem;
    }
}

.showcase-description {
    font-size: 1.1rem;
    color: #64748B;
    margin-bottom: 2rem;
    max-width: 500px;
}

@media (max-width: 767.98px) {
    .showcase-description {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1.5rem;
    }
}

.jant-container {
    position: relative;
    height: 450px;
    perspective: 1000px;
    z-index: 2;
}

@media (max-width: 991.98px) {
    .jant-container {
        height: 400px;
    }
}

@media (max-width: 767.98px) {
    .jant-container {
        height: 350px;
    }
}

@media (max-width: 575.98px) {
    .jant-container {
        height: 300px;
    }
}

.jant-item {
    position: absolute;
    width: 280px;
    height: 280px;
    transition: all 0.5s ease;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .jant-item {
        width: 240px;
        height: 240px;
    }
}

@media (max-width: 767.98px) {
    .jant-item {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 575.98px) {
    .jant-item {
        width: 160px;
        height: 160px;
    }
}

.jant-item:hover {
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.jant-item.center {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 300px;
    height: 300px;
}

@media (max-width: 991.98px) {
    .jant-item.center {
        width: 260px;
        height: 260px;
    }
}

@media (max-width: 767.98px) {
    .jant-item.center {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 575.98px) {
    .jant-item.center {
        width: 180px;
        height: 180px;
    }
}

.jant-item.left {
    left: 5%;
    top: 50%;
    transform: translate(0, -50%) scale(0.8);
    z-index: 2;
}



.jant-item.right {
    right: 5%;
    top: 50%;
    transform: translate(0, -50%) scale(0.8);
    z-index: 2;
}



.jant-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
    transition: all 0.5s ease;
}

.jant-item:hover img {
    transform: rotate(-5deg);
}

/* Featured Products Section */
.featured-products {
    background: #F1F5F9;
}

.featured-products .bg-texture {
    opacity: 0.05;
}

.product-card {
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 2;
}

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

.product-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #EA580C;
    color: #FFFFFF;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.product-content {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #0F172A;
}

.product-category {
    font-size: 0.85rem;
    color: #64748B;
    margin-bottom: 1rem;
}

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

.product-price {
    font-weight: 700;
    color: #1E40AF;
    font-size: 1.1rem;
}

.product-action {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #F1F5F9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1E40AF;
    transition: all 0.3s ease;
}

.product-card:hover .product-action {
    background: #1E40AF;
    color: #FFFFFF;
}

/* Features Section */
.features-section {
    background: #FFFFFF;
}

.features-section .bg-texture {
    opacity: 0.03;
}

.feature-card {
    text-align: center;
    padding: 2.5rem;
    background: #F1F5F9;
    border-radius: 20px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    position: relative;
    z-index: 2;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #EA580C;
    background: #FFFFFF;
}

.feature-icon {
    font-size: 2.5rem;
    color: #EA580C;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: #FFFFFF;
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover .feature-icon {
    background: #EA580C;
    color: #FFFFFF;
    transform: rotateY(180deg);
}

.feature-title {
    color: #0F172A;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-description {
    color: #64748B;
}

/* Contact Section */
.contact-section {
    color: #FFFFFF;
    padding: 5rem 0;
    position: relative;
    background: linear-gradient(to bottom, #0F172A, #1E293B);
}

.contact-section .section-title::after {
    background: linear-gradient(90deg, #EA580C 0%, #F97316 100%);
}

.contact-section .bg-texture {
    opacity: 0.08;
}

/* Modern Contact Section Styles */
.contact-card {
    background: rgba(17, 24, 39, 0.8);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.contact-card-header {
    background: linear-gradient(90deg, #1E40AF 0%, #3B82F6 100%);
    padding: 1.5rem;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card-icon {
    font-size: 1.75rem;
    color: #FFFFFF;
}

.contact-card-body {
    padding: 1.8rem;
}

.contact-section-title {
    color: #3B82F6;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.contact-section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #3B82F6;
    border-radius: 1.5px;
}

.contact-section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* İletişim Bilgileri (Üstte) */
.contact-info-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
}

.contact-item-modern {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    padding: 0.75rem;
    border-radius: 8px;
    height: 100%;
}

.contact-item-modern:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.contact-item-icon-wrapper {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
        justify-content: center;
    margin-right: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-item-modern:hover .contact-item-icon-wrapper {
    background: rgba(59, 130, 246, 0.25);
}

.contact-item-icon {
    color: #3B82F6;
    font-size: 1.1rem;
}

/* Şirket Bilgileri (Ortada) */
.company-info {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
}

.company-info p {
    line-height: 1.6;
}

/* Müşteri Temsilcileri (Alt kısım) */
.contact-persons {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
}

.contact-person-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.2rem;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid transparent;
}

.contact-person-card:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-3px);
    border-color: rgba(59, 130, 246, 0.2);
}

.contact-person-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: #FFFFFF;
    font-size: 1.25rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.contact-person-info {
    flex: 1;
}

.contact-person-name {
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.contact-person-title {
    color: #3B82F6;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.contact-person-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.contact-person-action {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-person-action.call {
    background: #1E40AF;
    color: #FFFFFF;
}

.contact-person-action.whatsapp {
    background: #25D366;
    color: #FFFFFF;
}

.contact-person-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    opacity: 0.95;
    color: #FFFFFF;
}

.contact-person-action i {
    margin-right: 0.35rem;
}

/* Sosyal Medya (En alt) */
.social-media-container {
    padding-top: 1rem;
}

.contact-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.contact-social-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.2rem;
}

.contact-social-icon:hover {
    background: #1E40AF;
    transform: translateY(-3px) scale(1.1);
    color: #FFFFFF;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .contact-info-top .row {
        flex-direction: column;
    }
    
    .contact-item-modern {
        margin-bottom: 1rem;
    }
    
    /* Fix button alignment */
    .d-flex.gap-3.justify-content-lg-start.justify-content-center {
        flex-wrap: wrap;
    }
    
    .btn.btn-lg {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .contact-person-card {
        margin-bottom: 1rem;
    }
    
    .contact-social {
        flex-wrap: wrap;
    }
    
    /* Adjust feature cards */
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        line-height: 70px;
        font-size: 2rem;
    }
}

@media (max-width: 575.98px) {
    .contact-card-body {
        padding: 1.2rem;
    }
    
    .contact-item-modern {
        padding: 0.5rem;
    }
    
    .contact-person-card {
        padding: 1rem;
    }
    
    .contact-person-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-person-action {
        width: 100%;
        justify-content: center;
    }
    
 
    
    /* Adjust spacing */
    section + section {
        margin-top: -1rem;
    }
}

.text-primary-foreground {
    color: #FFFFFF !important;
}

