
@import url('index.css');

.renmar-contact-hero {
    height: 60vh;
    background: linear-gradient(135deg, rgba(30,136,229,0.95), rgba(76,175,80,0.95));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 8%;
    position: relative;
}

.renmar-contact-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.renmar-contact-hero p {
    font-size: 20px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.renmar-contact-section {
    padding: 8rem 8%;
    background: white;
}

.renmar-contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.renmar-contact-info {
    background: #f9f9f9;
    padding: 3rem;
    border-radius: 20px;
}

.renmar-contact-info h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    margin-bottom: 2rem;
    color: #333;
}

.renmar-info-item {
    margin-bottom: 2rem;
}

.renmar-info-item h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    color: #1E88E5;
    margin-bottom: 1rem;
}

.renmar-info-item p {
    color: #666;
    line-height: 1.6;
}

.renmar-contact-form {
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.renmar-contact-form h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    margin-bottom: 2rem;
    color: #333;
}

.renmar-form-group {
    position: relative;
    margin-bottom: 2rem;
}

.renmar-form-group input,
.renmar-form-group select,
.renmar-form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.renmar-form-group textarea {
    height: 150px;
    resize: none;
}

.renmar-form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: #666;
    transition: all 0.3s ease;
    pointer-events: none;
}

.renmar-form-group input:focus,
.renmar-form-group textarea:focus {
    border-color: #1E88E5;
    outline: none;
}

.renmar-form-group input:focus + label,
.renmar-form-group textarea:focus + label,
.renmar-form-group input:valid + label,
.renmar-form-group textarea:valid + label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 12px;
    background: white;
    padding: 0 0.5rem;
    color: #1E88E5;
}

.renmar-submit-btn {
    background: #1E88E5;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.renmar-submit-btn:hover {
    background: #FF4081;
    transform: translateY(-3px);
}

.renmar-map {
    padding: 8rem 8%;
    background: #f9f9f9;
    text-align: center;
}

.renmar-map h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    margin-bottom: 4rem;
    color: #333;
}

.renmar-map-container {
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.renmar-map-container img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1024px) {
    .renmar-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .renmar-contact-hero h1 {
        font-size: 36px;
    }

    .renmar-contact-info,
    .renmar-contact-form {
        padding: 2rem;
    }
} 