﻿/* Additional styles for Contact Us page */
.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

    .contact-content .page-header {
        text-align: center;
        margin-bottom: 3rem;
    }

        .contact-content .page-header h1 {
            font-size: 2.8rem;
            font-weight: 700;
            background: linear-gradient(145deg, #e6b18c, #c47d58);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
            margin-bottom: 0.5rem;
        }

        .contact-content .page-header p {
            color: #9a877a;
            font-size: 1.1rem;
        }

.back-to-menu {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #c47d58;
    color: #0e0d0c;
    padding: 0.8rem 2rem;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

    .back-to-menu:hover {
        background: #e6b18c;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(196, 125, 88, 0.3);
        color: #0e0d0c;
    }

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

/* Contact Info Column */
.contact-info-column .contact-section {
    background: #1a1714;
    border-radius: 28px;
    padding: 2rem 2.5rem;
    border: 1px solid #2f2822;
    margin-bottom: 1.5rem;
}

    .contact-info-column .contact-section h2 {
        color: #e6b18c;
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        gap: 12px;
    }

        .contact-info-column .contact-section h2 i {
            color: #c47d58;
        }

    .contact-info-column .contact-section p {
        color: #c7b2a0;
        font-size: 0.95rem;
        line-height: 1.8;
    }

/* Contact Details */
.contact-details {
    background: #1a1714;
    border-radius: 28px;
    padding: 2rem 2.5rem;
    border: 1px solid #2f2822;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid #2f2822;
}

    .contact-item:last-child {
        border-bottom: none;
    }

    .contact-item i {
        font-size: 1.5rem;
        color: #c47d58;
        min-width: 40px;
        margin-top: 0.2rem;
    }

    .contact-item h4 {
        color: #e6b18c;
        font-size: 0.95rem;
        font-weight: 600;
        margin-bottom: 0.1rem;
    }

    .contact-item p {
        color: #c7b2a0;
        font-size: 0.9rem;
        margin: 0;
    }

        .contact-item p a {
            color: #c7b2a0;
            text-decoration: none;
            transition: color 0.2s;
        }

            .contact-item p a:hover {
                color: #e6b18c;
            }

    .contact-item span {
        color: #9a877a;
        font-size: 0.8rem;
    }

/* Business Hours */
.business-hours {
    background: #1a1714;
    border-radius: 28px;
    padding: 1.5rem 2rem;
    border: 1px solid #2f2822;
    margin-bottom: 1.5rem;
}

    .business-hours h4 {
        color: #e6b18c;
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 0.8rem;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .business-hours h4 i {
            color: #c47d58;
        }

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    color: #c7b2a0;
    font-size: 0.9rem;
    border-bottom: 1px solid #2f2822;
}

    .hours-row:last-child {
        border-bottom: none;
    }

    .hours-row span:last-child {
        color: #e6b18c;
        font-weight: 500;
    }

/* Social Connect */
.social-connect {
    background: #1a1714;
    border-radius: 28px;
    padding: 1.5rem 2rem;
    border: 1px solid #2f2822;
}

    .social-connect h4 {
        color: #e6b18c;
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 0.8rem;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .social-connect h4 i {
            color: #c47d58;
        }

.social-icons-large {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

    .social-icons-large a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: #2c2520;
        color: #9a877a;
        border: 1px solid #3d322b;
        transition: all 0.3s;
        text-decoration: none;
        font-size: 1.2rem;
    }

        .social-icons-large a:hover {
            background: #c47d58;
            color: #0e0d0c;
            border-color: #c47d58;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(196, 125, 88, 0.3);
        }

/* Contact Form Column */
.contact-form-column .contact-form {
    background: #1a1714;
    border-radius: 28px;
    padding: 2rem 2.5rem;
    border: 1px solid #2f2822;
}

.contact-form h2 {
    color: #e6b18c;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .contact-form h2 i {
        color: #c47d58;
    }

.contact-form p {
    color: #9a877a;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.2rem;
}

    .form-group label {
        display: block;
        color: #e6b18c;
        font-size: 0.9rem;
        font-weight: 500;
        margin-bottom: 0.4rem;
    }

        .form-group label i {
            color: #c47d58;
            margin-right: 6px;
        }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 0.8rem 1rem;
        background: #221d19;
        border: 1px solid #2f2822;
        border-radius: 12px;
        color: #ece3db;
        font-size: 0.95rem;
        transition: border-color 0.3s, box-shadow 0.3s;
        font-family: 'Inter', sans-serif;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #c47d58;
            box-shadow: 0 0 0 3px rgba(196, 125, 88, 0.15);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #6b5544;
        }

    .form-group select {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a877a' stroke-width='2' fill='none'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 1rem center;
        cursor: pointer;
    }

        .form-group select option {
            background: #1a1714;
            color: #ece3db;
        }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

/* Submit Button */
.submit-btn {
    width: 100%;
    background: #c47d58;
    color: #0e0d0c;
    border: none;
    padding: 0.9rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .submit-btn:hover {
        background: #e6b18c;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(196, 125, 88, 0.3);
    }

    .submit-btn:active {
        transform: scale(0.97);
    }

/* Map Section */
.map-section {
    background: #1a1714;
    border-radius: 28px;
    padding: 2rem 2.5rem;
    border: 1px solid #2f2822;
    margin-top: 2rem;
}

    .map-section h2 {
        color: #e6b18c;
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        gap: 12px;
    }

        .map-section h2 i {
            color: #c47d58;
        }

.map-container {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #2f2822;
    position: relative;
}

    .map-container iframe {
        display: block;
    }

.map-address {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 1rem;
    padding: 0.8rem 1.2rem;
    background: #221d19;
    border-radius: 12px;
    border: 1px solid #2f2822;
}

    .map-address i {
        color: #c47d58;
        font-size: 1.2rem;
    }

    .map-address span {
        color: #c7b2a0;
        font-size: 0.95rem;
    }

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.quick-action {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: #1a1714;
    border-radius: 16px;
    border: 1px solid #2f2822;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .quick-action:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .quick-action i {
        font-size: 2rem;
        color: #c47d58;
        min-width: 40px;
    }

    .quick-action h4 {
        color: #e6b18c;
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 0.1rem;
    }

    .quick-action p {
        color: #9a877a;
        font-size: 0.85rem;
        margin: 0;
    }

.whatsapp-action:hover {
    border-color: #25D366;
    background: #1e2a22;
}

    .whatsapp-action:hover i {
        color: #25D366;
    }

.call-action:hover {
    border-color: #4ade80;
    background: #1e2a22;
}

    .call-action:hover i {
        color: #4ade80;
    }

.email-action:hover {
    border-color: #60a5fa;
    background: #1e242a;
}

    .email-action:hover i {
        color: #60a5fa;
    }

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-form-column .contact-form {
        padding: 1.8rem;
    }

    .contact-info-column .contact-section {
        padding: 1.8rem;
    }

    .contact-details {
        padding: 1.8rem;
    }

    .map-section {
        padding: 1.5rem;
    }
}

@media (max-width: 680px) {
    .contact-content .page-header h1 {
        font-size: 2rem;
    }

    .contact-form-column .contact-form {
        padding: 1.5rem;
    }

    .contact-info-column .contact-section {
        padding: 1.5rem;
    }

    .contact-details {
        padding: 1.5rem;
    }

    .business-hours {
        padding: 1.5rem;
    }

    .social-connect {
        padding: 1.5rem;
    }

    .map-section {
        padding: 1rem;
    }

    .quick-actions {
        grid-template-columns: 1fr;
    }

    .hours-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }

    .back-to-menu {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .social-icons-large {
        justify-content: center;
    }

    .map-address {
        flex-direction: column;
        text-align: center;
    }
}
