/* Contact Page Specific Styles */

.contact-header {
    background: linear-gradient(135deg, #7ea8e8 0%, #5888c8 100%);
    color: var(--white);
    text-align: center;
    padding: 3rem 0;
}

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.contact-header h1 i {
    margin-right: 15px;
}

.contact-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.contact-container {
    padding: 4rem 20px;
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s;
    border-top: 4px solid #7ea8e8;
}

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

.whatsapp-card {
    border-top-color: var(--accent-green);
    background: linear-gradient(135deg, #ffffff 0%, #f0fff4 100%);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7ea8e8 0%, #5888c8 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(126, 168, 232, 0.3);
}

.phone-icon {
    background: linear-gradient(135deg, #e8776e 0%, #c85860 100%);
    box-shadow: 0 5px 15px rgba(232, 119, 110, 0.3);
}

.whatsapp-icon {
    background: linear-gradient(135deg, var(--accent-green) 0%, #20b858 100%);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.card-content h3 {
    font-size: 1.8rem;
    color: var(--dark-brown);
    margin-bottom: 1rem;
}

.card-content p {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.phone-number {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 1rem 0 !important;
}

.phone-number a {
    color: #e8776e;
    text-decoration: none;
    transition: color 0.3s;
}

.phone-number a:hover {
    color: #c85860;
}

.phone-note {
    font-size: 0.95rem;
    color: var(--text-light);
}

.discount-text {
    color: var(--accent-green);
    font-size: 1.5rem;
    font-weight: bold;
    margin: 1rem 0 !important;
}

.btn-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 10px 20px;
    background: #7ea8e8;
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s;
}

.btn-link:hover {
    background: #5888c8;
    transform: translateY(-2px);
}

.btn-whatsapp {
    display: inline-block;
    margin-top: 1rem;
    padding: 12px 30px;
    background: var(--accent-green);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20b858;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
    margin-right: 8px;
}

/* Opening Hours Section */
.opening-hours-section {
    background: linear-gradient(135deg, var(--light-bg) 0%, #fff9e6 100%);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 4rem;
}

.opening-hours-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 2rem;
}

.opening-hours-section h2 i {
    color: #e8a87e;
    margin-right: 15px;
}

.hours-table {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.hours-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    padding: 1.5rem;
    border-bottom: 1px solid var(--light-bg);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row.closed {
    background: #ffe8e6;
}

.hours-row.weekend {
    background: #f0f9ff;
}

.day {
    font-weight: bold;
    color: var(--dark-brown);
    font-size: 1.1rem;
}

.time {
    color: var(--text-dark);
    text-align: right;
}

.hours-row.closed .time {
    color: #d9534f;
    font-weight: bold;
}

/* Map Section */
.map-section {
    margin-bottom: 4rem;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 2rem;
}

.map-section h2 i {
    color: #7ea8e8;
    margin-right: 15px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin-bottom: 1.5rem;
}

.map-note {
    text-align: center;
    color: var(--text-light);
    font-size: 1.05rem;
}

.map-note i {
    color: #7ea8e8;
    margin-right: 8px;
}

/* Delivery Info Section */
.delivery-info-section {
    background: linear-gradient(135deg, #ffe8e6 0%, #fff9e6 100%);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 4rem;
}

.delivery-info-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 2rem;
}

.delivery-info-section h2 i {
    color: #e8776e;
    margin-right: 15px;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.delivery-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.delivery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.delivery-card i {
    font-size: 3rem;
    color: #e8776e;
    margin-bottom: 1rem;
}

.delivery-card:nth-child(2) i {
    color: #e8a87e;
}

.delivery-card:nth-child(3) i {
    color: #7ea8e8;
}

.delivery-card:nth-child(4) i {
    color: var(--accent-green);
}

.delivery-card h3 {
    font-size: 1.5rem;
    color: var(--dark-brown);
    margin-bottom: 0.8rem;
}

.delivery-card p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* Contact Form Section */
.contact-form-section {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 4rem;
}

.contact-form-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 1rem;
}

.contact-form-section h2 i {
    color: #7ea8e8;
    margin-right: 15px;
}

.form-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: bold;
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.form-group label i {
    color: #7ea8e8;
    margin-right: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-bg);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7ea8e8;
    box-shadow: 0 0 0 3px rgba(126, 168, 232, 0.1);
}

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

.checkbox-group {
    margin: 2rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-label span {
    color: var(--text-dark);
    line-height: 1.6;
}

.checkbox-label a {
    color: #7ea8e8;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #7ea8e8 0%, #5888c8 100%);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(126, 168, 232, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(126, 168, 232, 0.4);
}

.btn-submit i {
    margin-right: 10px;
}

.form-note {
    text-align: center;
    color: var(--text-light);
    margin-top: 1rem;
    font-size: 0.95rem;
}

/* Form Success Message */
.form-success {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #f0fff4 0%, #e6f7e9 100%);
    border-radius: 15px;
    border: 2px solid var(--accent-green);
}

.form-success i {
    font-size: 4rem;
    color: var(--accent-green);
    margin-bottom: 1rem;
}

.form-success h3 {
    font-size: 2rem;
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--text-dark);
    font-size: 1.1rem;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .contact-header h1 {
        font-size: 2rem;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .opening-hours-section,
    .delivery-info-section,
    .contact-form-section {
        padding: 2rem 1.5rem;
    }

    .hours-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .time {
        text-align: left;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .delivery-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .contact-container {
        padding: 2rem 15px;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .phone-number {
        font-size: 1.4rem;
    }

    .hours-row {
        padding: 1rem;
    }
}