﻿.brand-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.brand-card-image {
    height: 250px;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--secondary-pink) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.brand-card-image img {
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
}

.brand-card-content {
    padding: 2rem;
}

.brand-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.brand-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.brand-card .btn {
    width: 100%;
    text-align: center;
}


.manufacturing-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
}

.manufacturing-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.manufacturing-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--secondary-pink) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-gold);
    transition: all 0.3s;
}

.manufacturing-card:hover .manufacturing-icon {
    transform: scale(1.1) rotate(5deg);
}

.manufacturing-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.manufacturing-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}




.stats-section {
    /* Royal Gradient: Siyahtan Altına Derin Geçiş */
    background: radial-gradient(circle at top right, #996515 0%, #000000 60%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    z-index: 1;
}


.stats-section::before {
    display: none;
}



.stats-card {
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
}

.stats-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;

    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stats-label {
    font-size: 1.1rem;
    color: #ffffff;

    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}


.value-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--primary-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-gold);
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.8;
}


.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.blog-image {
    height: 430px;
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 1.8rem;
}

.blog-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: block;
    letter-spacing: 1px;
}

.blog-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.blog-content h3 a {
    color: var(--text-dark);
    transition: color 0.3s;
}

.blog-content h3 a:hover {
    color: var(--primary-gold);
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.read-more {
    color: var(--text-dark);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.read-more:hover {
    color: var(--primary-gold);
    gap: 0.8rem;
}


.reference-logo {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.reference-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.reference-logo img {
    max-width: 80%;
    max-height: 80px;
    object-fit: contain;
    transition: all 0.3s;
}


.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin: 3rem 0;
    position: relative;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -2rem;
    width: calc(100% + 2rem);
    height: 2px;
    background: var(--secondary-pink);
    z-index: -1;
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 600;
    font-family: var(--font-heading);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
}


.cta-section {
    background: radial-gradient(circle at top right, #996515 0%, #000000 60%);
    padding: 5rem 2rem;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
    margin: 4rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-section .btn {
    background-color: var(--white);
    color: var(--text-dark);
}

.cta-section .btn:hover {
    background-color: var(--text-dark);
    color: var(--white);
}


.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group .error-message {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
}

.form-group.has-error input,
.form-group.has-error textarea {
    border-color: #e74c3c;
}

.form-group.has-error .error-message {
    display: block;
}


.contact-info {
    background: var(--primary-pink);
    padding: 3rem;
    border-radius: 15px;
}

.contact-item {
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-top: 0.2rem;
}

.contact-item-content h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.contact-item-content p {
    color: var(--text-light);
}


@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
    }

    .process-step::after {
        display: none;
    }

    .contact-form,
    .contact-info {
        padding: 2rem;
    }
}