/* İletişim Sayfası Stilleri */
:root {
    --red: #e20613;
    --dark: #333;
    --white: #fff;
    --light-bg: #f8f8f8;
    --gray: #666;
    --light-gray: #ddd;
}

/* İletişim Hero Bölümü */
.contact-hero {
    position: relative;
    background-color: var(--light-bg);
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    z-index: 2;
}

.contact-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.contact-hero h1 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    position: relative;
}

.contact-breadcrumb {
    font-size: 1.1rem;
    color: var(--gray);
}

.contact-breadcrumb a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-breadcrumb a:hover {
    color: var(--red);
}

.contact-breadcrumb span {
    color: var(--red);
    font-weight: 500;
}

/* Hero Arka Plan Şekli */
.contact-hero-shape {
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    z-index: 1;
}

.contact-hero-shape svg {
    width: 100%;
    height: 100%;
}

.contact-hero-shape svg path {
    fill: var(--red);
    opacity: 0.8;
}

/* İletişim Ana Bölümü */
.contact-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--white);
    overflow: hidden;
    z-index: 2;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 3;
}

/* İletişim Bilgileri */
.contact-info {
    flex: 0 0 45%;
    padding: 40px;
    background-color: var(--light-bg);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 40px;
}

.contact-info h2 span {
    color: var(--red);
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-icon {
    flex: 0 0 60px;
    height: 60px;
    background-color: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(226, 6, 19, 0.2);
}

.info-content h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.info-content p {
    color: var(--gray);
    margin-bottom: 5px;
    line-height: 1.5;
}

.contact-social {
    margin-top: 30px;
}

.contact-social h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: var(--red);
    color: var(--white);
    transform: translateY(-5px);
}

/* İletişim Formu */
.contact-form-container {
    flex: 0 0 calc(55% - 50px);
    padding: 40px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--light-gray);
}

.contact-form h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 30px;
}

.contact-form h2 span {
    color: var(--red);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--dark);
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 2px rgba(226, 6, 19, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-checkbox input {
    width: auto;
    margin: 0;
}

.form-checkbox label {
    font-size: 0.9rem;
    color: var(--gray);
    cursor: pointer;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--red);
    color: var(--white);
    border: none;
    border-radius: 30px;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.submit-btn:hover {
    background-color: #c50000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(226, 6, 19, 0.3);
}

.submit-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Süsleme Öğeleri */
.contact-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.decoration-shape {
    position: absolute;
    width: 300px;
    height: 300px;
}

.decoration-shape svg {
    width: 100%;
    height: 100%;
}

.decoration-shape svg path {
    fill: var(--red);
    opacity: 0.1;
}

.decoration-image {
    position: absolute;
    width: 60%;
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.top-right {
    top: -150px;
    right: -150px;
}

.top-right .decoration-image {
    top: 30%;
    right: 30%;
    transform: rotate(15deg);
    animation: floatAnimation1 15s infinite ease-in-out;
}

.bottom-left {
    bottom: -150px;
    left: -150px;
}

.bottom-left .decoration-image {
    bottom: 30%;
    left: 30%;
    transform: rotate(-10deg);
    animation: floatAnimation2 15s infinite ease-in-out;
}

@keyframes floatAnimation1 {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(15deg);
    }
    25% {
        transform: translateY(15px) translateX(10px) rotate(17deg);
    }
    50% {
        transform: translateY(5px) translateX(20px) rotate(14deg);
    }
    75% {
        transform: translateY(10px) translateX(5px) rotate(16deg);
    }
}

@keyframes floatAnimation2 {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(-10deg);
    }
    25% {
        transform: translateY(-10px) translateX(15px) rotate(-9deg);
    }
    50% {
        transform: translateY(-5px) translateX(5px) rotate(-11deg);
    }
    75% {
        transform: translateY(-15px) translateX(10px) rotate(-8deg);
    }
}

/* Harita Bölümü */
.map-section {
    padding: 0;
    position: relative;
    z-index: 2;
}

.map-container {
    width: 100%;
    height: 500px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-info,
    .contact-form-container {
        flex: 0 0 100%;
    }

    .decoration-shape {
        width: 200px;
        height: 200px;
    }

    .contact-hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 0;
    }

    .contact-section {
        padding: 80px 0;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-info h2,
    .contact-form h2 {
        font-size: 2rem;
    }

    .info-icon {
        flex: 0 0 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .decoration-shape {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 60px 0;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-info,
    .contact-form-container {
        padding: 25px;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .submit-btn {
        width: 100%;
    }

    .map-container {
        height: 350px;
    }
}