/* Contrate Hero */
.contrate-hero {
    padding: 10rem 0 2rem;
    background: var(--ice);
    margin-top: 70px;
}

.contrate-hero .hero-content {
    text-align: left;
    max-width: 800px;
}

.contrate-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
    color: var(--black);
    font-weight: 500;
}

.contrate-hero p {
    font-size: 1.3rem;
    color: var(--dark);
    font-weight: 300;
}

/* Contrate Intro */
.contrate-intro {
    padding: 0 0 3rem;
    background: var(--ice);
}

.intro-text {
    max-width: 800px;
    text-align: left;
}

.intro-text p {
    font-size: 1.15rem;
    color: var(--dark);
    line-height: 1.8;
}

/* Mosaic Section */
.mosaic-section {
    padding: 4rem 0;
    background: var(--ice);
}

.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.mosaic-item {
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mosaic-item:hover img {
    transform: scale(1.1);
}

.mosaic-large {
    grid-column: span 2;
    grid-row: span 2;
}

.mosaic-tall {
    grid-row: span 2;
}

/* Form Section */
.form-section {
    padding: 5rem 0;
    background: var(--light);
}

.form-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: start;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.form-intro > p {
    font-size: 1.1rem;
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.form-benefits {
    display: grid;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-icon {
    width: 32px;
    height: 32px;
    background: var(--dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-item p {
    font-size: 1.05rem;
    color: var(--black);
    font-weight: 500;
}

/* Form Container */
.form-container {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    font-size: 0.95rem;
    color: var(--black);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1rem;
    border: 2px solid var(--light);
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: var(--black);
    transition: border-color 0.3s, box-shadow 0.3s;
    background: var(--ice);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dark);
    box-shadow: 0 0 0 3px rgba(141, 143, 146, 0.1);
}

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

.checkbox-group {
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--dark);
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.2rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.btn-submit {
    padding: 1.1rem 2.5rem;
    background: var(--black);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    font-family: 'Inter', sans-serif;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: var(--dark);
    transform: translateY(-2px);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Info Section */
.info-section {
    padding: 4rem 0;
    background: var(--ice);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.info-card p {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.info-detail {
    font-weight: 500;
    color: var(--black);
    font-size: 1.05rem;
}

/* Animations */
.contrate-hero .hero-content {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.intro-text {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.mosaic-item {
    opacity: 0;
    animation: scaleIn 0.6s ease-out forwards;
}

.mosaic-item:nth-child(1) { animation-delay: 0.1s; }
.mosaic-item:nth-child(2) { animation-delay: 0.2s; }
.mosaic-item:nth-child(3) { animation-delay: 0.3s; }
.mosaic-item:nth-child(4) { animation-delay: 0.4s; }
.mosaic-item:nth-child(5) { animation-delay: 0.5s; }

.form-intro {
    opacity: 0;
    animation: fadeInLeft 0.8s ease-out 0.2s forwards;
}

.form-container {
    opacity: 0;
    animation: fadeInRight 0.8s ease-out 0.4s forwards;
}

.info-card {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.2s; }
.info-card:nth-child(3) { animation-delay: 0.3s; }

/* Responsive */
@media (max-width: 1024px) {
    .mosaic-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .form-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .contrate-hero {
        padding: 8rem 0 3rem;
    }
    
    .contrate-hero h1 {
        font-size: 2rem;
    }
    
    .contrate-hero p {
        font-size: 1.1rem;
    }
    
    .contrate-hero .hero-content {
        text-align: left;
    }
    
    .mosaic-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
    }
    
    .mosaic-large,
    .mosaic-tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .form-container {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-intro h2 {
        font-size: 2rem;
    }
}
