﻿.contact-section {
    padding: 30px 0;
    background-color: #f8f9fa;
}

.banner {
    background-image: url('../images/contact-banner.jpg');
    background-color: rgba(0, 0, 0, 0.4);
    background-blend-mode: overlay;
    background-position-y: 50%;
    background-position-x: 50%;
    background-size: cover;
    min-height: 200px;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    color: #e17966;
    margin-bottom: 20px;
    font-size: 32px;
    text-align: center;
}

.contact-intro {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 18px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

.contact-item {
    display: flex;
    align-items: flex-start;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

    .contact-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    }

.contact-icon {
    margin-right: 25px;
    margin-top: 5px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .contact-icon svg {
        stroke: #e17966;
    }

.contact-details h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 20px;
}

.contact-link {
    color: #e17966;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

    .contact-link:hover {
        color: #c95e4a;
        text-decoration: underline;
    }

.whatsapp-link {
    background: #25D366;
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    transition: background 0.3s ease;
}

    .whatsapp-link:hover {
        background: #128C7E;
        text-decoration: none !important;
        color: white !important;
    }

.contact-details p {
    color: #666;
    margin: 5px 0 0 0;
    line-height: 1.5;
}

.emergency-contact {
    background: linear-gradient(135deg, #fff3f1 0%, #ffeae6 100%);
    border: 2px solid #e17966;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    position: relative;
}

.emergency-icon {
    margin-bottom: 15px;
}

    .emergency-icon svg {
        stroke: #e17966;
    }

.emergency-contact h4 {
    color: #e17966;
    margin-bottom: 15px;
    font-size: 22px;
}

.emergency-link {
    color: #e17966;
    font-weight: bold;
    font-size: 20px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
    padding: 12px 24px;
    border: 2px solid #e17966;
    border-radius: 25px;
    transition: all 0.3s ease;
}

    .emergency-link:hover {
        background: #e17966;
        color: white;
        text-decoration: none;
    }

    .emergency-link svg {
        stroke: currentColor;
    }

.emergency-note {
    color: #999;
    font-size: 14px;
    margin-top: 10px;
}

.quick-actions {
    margin: 60px 0;
    text-align: center;
}

    .quick-actions h3 {
        color: #333;
        margin-bottom: 40px;
        font-size: 28px;
    }

.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.action-button {
    display: flex;
    align-items: center;
    padding: 25px;
    background: white;
    border-radius: 15px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .action-button:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        text-decoration: none;
    }

    .action-button.whatsapp {
        background: #25D366;
        color: white;
        border-color: #25D366;
    }

    .action-button.email {
        background: #e17966;
        color: white;
        border-color: #e17966;
    }

    .action-button.price {
        background: #333;
        color: white;
        border-color: #333;
    }

.action-icon {
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
}

.action-button.whatsapp .action-icon svg {
    fill: white;
    stroke: none;
}

.action-button.email .action-icon svg,
.action-button.price .action-icon svg {
    fill: none;
    stroke: white;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.action-text {
    text-align: left;
    flex: 1;
}

    .action-text strong {
        display: block;
        font-size: 18px;
        margin-bottom: 5px;
    }

    .action-text small {
        font-size: 14px;
        opacity: 0.9;
        font-weight: normal;
    }

.contact-note {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-top: 40px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    text-align: center;
}

    .contact-note h4 {
        color: #e17966;
        margin-bottom: 30px;
        font-size: 24px;
    }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 20px;
}

.benefit-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
}

.benefit-item h5 {
    color: #333;
    margin-bottom: 10px;
    font-size: 18px;
}

.benefit-item p {
    color: #666;
    line-height: 1.5;
    font-size: 14px;
}

@media (max-width: 767px) {
    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 25px;
        align-items: center;
    }

    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .contact-details {
        text-align: center;
        width: 100%;
    }

        .contact-details h4 {
            text-align: center;
        }

        .contact-details p {
            text-align: center;
        }

    .action-buttons {
        grid-template-columns: 1fr;
    }

    .action-button {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .action-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .action-text {
        text-align: center;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .emergency-contact {
        padding: 30px 20px;
    }

    .contact-note {
        padding: 30px 20px;
    }
}

@media (min-width: 1200px) {
    .contact-grid {
        gap: 35px;
    }

    .contact-item {
        padding: 35px;
    }
}
