/* Contact Hero Section */
.contact-hero {
    min-height: 60vh;
   
    display: flex;
    align-items: center;
    position: relative;
    padding: 180px 0 100px;
    background-image: url('../images/slider-background.jpg');
    background-size: cover;
    background-position: center;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.9), rgba(0,0,0,0.7));
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.contact-hero-content h1 {
    font-size: 65px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 600;
}

.contact-hero-content .subtitle {
    font-size: 24px;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Info Section */
.contact-info {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: -200px;
    position: relative;
    z-index: 2;
}

.info-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.info-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.info-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.info-card:hover .info-icon {
    background: var(--arma-resin-red);
}

.info-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--arma-resin-red);
    transition: all 0.4s ease;
}

.info-card:hover .info-icon svg {
    fill: var(--white);
}

.info-card h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.info-card p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 16px;
}

.info-card a {
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-card:hover a {
    color: var(--arma-resin-red);
}

/* Contact Form Section */
.contact-form {
    padding: 0 0 120px;
    background: var(--white);
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.form-content {
    padding: 60px;
}

.form-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--dark);
    font-weight: 600;
}

.form-content > p {
    color: var(--gray);
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 1.6;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--arma-resin-red);
    box-shadow: 0 0 0 4px rgba(205, 1, 0, 0.1);
}

.map-container {
    height: 100%;
    min-height: 600px;
}

button.btn-arma-resin-red {
    background: var(--arma-resin-red);
    color: var(--white);
    border: none;
    padding: 18px 40px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

button.btn-arma-resin-red:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(205, 1, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-hero {
        padding: 140px 0 80px;
        min-height: 50vh;
    }

    .contact-hero-content h1 {
        font-size: 48px;
        padding: 0 20px;
    }
    
    .contact-hero-content .subtitle {
        font-size: 20px;
        padding: 0 20px;
    }
    
    .contact-info {
        padding: 80px 0;
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -150px;
        gap: 30px;
        padding: 0 20px;
    }

    .info-card {
        padding: 40px 30px;
    }

    .info-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 25px;
    }
    
    .form-wrapper {
        grid-template-columns: 1fr;
        margin: 0 20px;
    }
    
    .form-content {
        padding: 40px;
    }

    .form-content h2 {
        font-size: 36px;
    }

    .form-content > p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .map-container {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 120px 0 60px;
        min-height: 40vh;
    }

    .contact-hero-content h1 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .contact-hero-content .subtitle {
        font-size: 18px;
        line-height: 1.5;
    }
    
    .contact-info {
        padding: 60px 0;
    }

    .info-grid {
        grid-template-columns: 1fr;
        margin-top: -100px;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 15px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-content {
        padding: 30px;
    }

    .form-content h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .form-content > p {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .info-card {
        padding: 30px 20px;
    }

    .info-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .info-icon svg {
        width: 35px;
        height: 35px;
    }

    .info-card h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .info-card p {
        font-size: 15px;
    }

    .form-group label {
        font-size: 14px;
        margin-bottom: 8px;
    }

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

    button.btn-arma-resin-red {
        width: 100%;
        padding: 15px 30px;
        font-size: 15px;
    }

    .map-container {
        min-height: 300px;
    }
}

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

    .contact-hero-content h1 {
        font-size: 28px;
    }

    .contact-hero-content .subtitle {
        font-size: 16px;
    }

    .contact-info {
        padding: 50px 0;
    }

    .info-grid {
        margin-top: -80px;
    }

    .info-card {
        padding: 25px 15px;
    }

    .info-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .info-icon svg {
        width: 30px;
        height: 30px;
    }

    .info-card h3 {
        font-size: 18px;
    }

    .info-card p {
        font-size: 14px;
        line-height: 1.6;
    }

    .form-content {
        padding: 25px 15px;
    }

    .form-content h2 {
        font-size: 28px;
    }

    .form-content > p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 14px;
    }

    button.btn-arma-resin-red {
        padding: 12px 25px;
        font-size: 14px;
    }

    .map-container {
        min-height: 250px;
    }
} 