* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease-out;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Contact Hero Section */
.contact-hero {
    padding: 150px 20px 40px;
    background-color: #ffffff;
    text-align: center;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 1.5rem;
}

.contact-hero-description {
    font-size: 1.25rem;
    color: #666666;
    line-height: 1.8;
}

/* Contact Content Section */
.contact-content-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.contact-content-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.contact-form-wrapper {
    flex: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 1rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 10px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
    color: #333333;
    background-color: #f9f9f9;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #333333;
    background-color: #ffffff;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999999;
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-submit-button {
    background-color: #333333;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.contact-submit-button:hover {
    background-color: #555555;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-submit-button:active {
    transform: translateY(-1px);
}

.contact-image-wrapper {
    flex: 1;
    max-width: 550px;
    height: 100%;
    display: flex;
    align-items: center;
}

.contact-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Location Section */
.location-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
}

.location-top {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 50px;
}

.location-info {
    flex: 1;
}

.location-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 1.5rem;
}

.location-description {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.8;
}

.info-blocks {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-block {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-block-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.5rem;
}

.info-block-text {
    font-size: 1rem;
    color: #666666;
    margin: 0;
}

.location-map {
    width: 100%;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.map-text {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.map-subtext {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero {
        padding: 120px 20px 40px;
    }

    .contact-hero-title {
        font-size: 2.5rem;
    }

    .contact-hero-description {
        font-size: 1.1rem;
    }

    .contact-content-section {
        padding: 60px 20px;
    }

    .contact-content-container {
        flex-direction: column;
        gap: 40px;
    }

    .contact-image-wrapper {
        max-width: 100%;
    }

    .location-section {
        padding: 60px 20px;
    }

    .location-top {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
        align-items: center;
    }

    .location-info {
        text-align: center;
        width: 100%;
    }

    .location-title {
        font-size: 2rem;
    }

    .location-description {
        font-size: 1rem;
    }

    .info-blocks {
        align-items: center;
        width: 100%;
    }

    .info-block {
        text-align: center;
        width: 100%;
        max-width: 400px;
    }

    .map-placeholder {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 100px 20px 40px;
    }

    .contact-hero-title {
        font-size: 2rem;
    }

    .contact-hero-description {
        font-size: 1rem;
    }

    .contact-content-section {
        padding: 50px 20px;
    }

    .form-input,
    .form-textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .contact-submit-button {
        width: 100%;
        text-align: center;
    }

    .location-top {
        align-items: center;
    }

    .location-info {
        text-align: center;
        width: 100%;
    }

    .location-title {
        font-size: 1.75rem;
    }

    .info-blocks {
        align-items: center;
        width: 100%;
    }

    .info-block {
        text-align: center;
        width: 100%;
        max-width: 400px;
    }

    .map-placeholder {
        height: 300px;
    }

    .map-text {
        font-size: 1.5rem;
    }

    .map-subtext {
        font-size: 0.9rem;
    }
}

