.contact-page {
    background: #f8fafc;
}

.contact-hero {
    background: #0f172a;
    color: white;
    text-align: center;
    padding: 120px 20px;
}

.contact-hero h1 {
    font-size: 54px;
    margin-bottom: 15px;
}

.contact-hero p {
    max-width: 700px;
    margin: auto;
    color: #cbd5e1;
    font-size: 18px;
}

.contact-container {
    max-width: 1300px;
    margin: auto;
    padding: 80px 30px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.service-card {
    background: white;
    padding: 35px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,.05);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(255,122,0,.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: #ff7a00;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    color: #ff7a00;
    margin-bottom: 15px;
}

.service-card p {
    color: #64748b;
    line-height: 1.7;
}

.contact-info-box {
    background: white;
    padding: 30px;
    border-radius: 14px;
    display: flex;
    justify-content: space-around;
    margin-bottom: 40px;
    box-shadow: 0 8px 25px rgba(0,0,0,.05);
}

.info-item {
    text-align: center;
}

.info-item strong {
    display: block;
    color: #ff7a00;
    margin-bottom: 10px;
}

.info-item span {
    color: #64748b;
}

.contact-form-box {
    background: white;
    padding: 50px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,.05);
}

.contact-form-box h2 {
    margin-bottom: 25px;
    color: #ff7a00;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 15px;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ff7a00;
}

.contact-form button {
    background: #ff7a00;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    cursor: pointer;
}

.working-hours {
    max-width: 1200px;
    margin: 0 auto 80px;
    text-align: center;
    padding: 0 30px;
}

.working-hours h2 {
    color: #ff7a00;
    margin-bottom: 30px;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.hours-grid div {
    background: white;
    padding: 25px;
    border-radius: 12px;
}

.hours-grid strong {
    display: block;
    margin-bottom: 10px;
}

.contact-cta {
    max-width: 1200px;
    margin: 0 auto 80px;
    background: #0f172a;
    color: white;
    text-align: center;
    padding: 80px 40px;
    border-radius: 16px;
}

.contact-cta h2 {
    margin-bottom: 20px;
}

.contact-cta p {
    max-width: 800px;
    margin: 0 auto 30px;
    color: #cbd5e1;
    line-height: 1.8;
}

.contact-cta a {
    display: inline-block;
    background: #ff7a00;
    color: white;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 8px;
}

.contact-map {
    height: 500px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media(max-width:900px){

    .service-cards,
    .hours-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-box {
        flex-direction: column;
        gap: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-box {
        padding: 30px;
    }
}