/* İletişim Page Styles */

/* Scroll padding for fixed navbar */
html {
    scroll-padding-top: 150px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /*min-height: 100vh;*/
}

.hero-content {
    opacity: 1;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

    .hero-content.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

/* Page Title */
.page-title {
    font-family: 'Times New Roman', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: #032D63;
    margin: 0;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

    .page-title.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

/* Page Slogan */
.page-slogan {
    margin-top: 30px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

    .page-slogan.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

.slogan-text {
    font-family: 'Times New Roman', serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    color: #032D63;
    display: block;
    line-height: 1.3;
}

.slogan-highlight {
    font-family: 'Times New Roman', serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    color: #B91C4A;
    display: block;
    line-height: 1.3;
}

/* Scroll Arrow */
.scroll-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 24px;
    cursor: pointer;
    opacity: 1;
    transition: all 0.8s ease;
    animation: bounce 2s infinite;
}

    .scroll-arrow.animate-in {
        opacity: 1;
    }

    .scroll-arrow:hover {
        color: #8AB84F;
        transform: translateX(-50%) translateY(-5px);
    }

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Google Map Section */
.map-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #052331 0%, #032D63 100%);
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.map-title {
    font-family: 'Times New Roman', serif;
    font-size: 2.5rem;
    color: white;
    text-align: center;
    margin-bottom: 40px;
    opacity: 1;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

    .map-title.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

.google-map {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    opacity: 1;
    transform: scale(0.95);
    transition: all 0.8s ease;
    overflow: hidden;
}

    .google-map.map-loaded {
        opacity: 1;
        transform: scale(1);
    }

.map-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.map-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 14px;
    opacity: 1;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

    .map-info-item.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

    .map-info-item i {
        color: white;
        font-size: 16px;
    }

/* Contact Content Section */
.contact-content-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Contact Info */
.contact-info {
    opacity: 1;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

    .contact-info.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

    .contact-info h2 {
        font-family: 'Times New Roman', serif;
        font-size: 2.5rem;
        color: #032D63;
        margin-bottom: 40px;
        text-align: center;
    }

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateX(-20px);
}

    .contact-item.animate-in {
        opacity: 1;
        transform: translateX(0);
    }

    .contact-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }

.contact-icon {
    width: 60px;
    height: 60px;
    /*background: linear-gradient(135deg, #052331 0%, #8AB84F 100%);*/
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #032D63;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-text h3 {
    font-family: 'Times New Roman', serif;
    font-size: 1.3rem;
    color: #032D63;
    margin-bottom: 8px;
    text-align: center;
    align-items: center;
}

.contact-text p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    text-align: center;
    align-items: center;
}

/* Contact Form */
.contact-form-section {
    opacity: 1;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

    .contact-form-section.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

    .contact-form-section h2 {
        font-family: 'Times New Roman', serif;
        font-size: 2.5rem;
        color: #032D63;
        margin-bottom: 40px;
        text-align: center;
    }

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

    .form-group label {
        display: block;
        font-weight: 500;
        color: #032D63;
        margin-bottom: 8px;
        font-size: 14px;
    }

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
}

    .form-control:focus {
        outline: none;
        border-color: #052331;
        box-shadow: 0 0 0 3px rgba(5, 35, 49, 0.1);
    }

    .form-control[required]:invalid {
        border-color: #dc3545;
    }

    .form-control[required]:valid {
        border-color: #28a745;
    }

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox {
    margin-top: 2px;
    flex-shrink: 0;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 13px;
    line-height: 1.4;
    color: #666;
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}

.btn-submit {
    background: #032D63;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .btn-submit:hover {
        background: #b2d5e6;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(5, 35, 49, 0.3);
    }

    .btn-submit:active {
        transform: translateY(0);
    }

/* Alert Messages */
.alert {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    padding: 15px 20px;
    border-radius: 8px;
    max-width: 400px;
    font-weight: 500;
    animation: slideIn 0.3s ease;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 1;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .map-container {
        padding: 0 20px;
    }

    .map-title {
        font-size: 2rem;
    }

    .google-map {
        height: 300px;
    }

    .map-info {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .contact-info h2,
    .contact-form-section h2 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .contact-item {
        padding: 20px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .slogan-text,
    .slogan-highlight {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 0 20px;
    }

    .map-container {
        padding: 0 15px;
    }

    .google-map {
        height: 250px;
    }

    .contact-container {
        padding: 0 15px;
    }

    .contact-form {
        padding: 20px 15px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .contact-icon {
        align-self: center;
    }
}
