/* General Page Styling */
.main-content {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

/* Contact Page Header */
.contact-page-header {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../pics/hero5.webp') no-repeat center center/cover;
}

.contact-header-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #ffd700;
    margin-top: 10%;
}

.contact-header-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
}

/* Section Styling */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #ffd700;
    text-align: center;
    margin-bottom: 2rem;
}

/* Contact Info Section */
.contact-info-section {
    padding: 5rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

/* Contact Form */
.contact-form-container {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255,215,0,0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.8);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid rgba(255,215,0,0.3);
    background: #1a1a1a;
    color: #fff;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #ffd700, #ff9500);
    color: #111;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
}

/* Contact Details */
.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.method-icon {
    width: 40px;
}

.contact-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #ffd700;
}

.availability {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
}

/* Hours Section */
.hours-section {
    padding: 5rem 2rem;
    background: #1a1a1a;
    text-align: center;
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 600px;
    margin: 2rem auto;
}

.day-hours {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}

.special-hours {
    margin-top: 2rem;
}

/* Map Section */
.map-section {
    padding: 5rem 2rem;
}

.map-container {
    margin-top: 2rem;
}

.map-placeholder {
    position: relative;
    text-align: center;
}

.location-image {
    width: 100%;
    border-radius: 15px;
}

.map-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.7);
    padding: 2rem;
    border-radius: 15px;
}

.map-btn {
    background: #ffd700;
    color: #111;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    margin: 0.5rem;
}

.location-features {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
}

/* ==== MOBILE FIXES FOR FIND US (MAP SECTION) ==== */
@media (max-width: 768px) {
    .map-section { padding: 3.5rem 1.2rem; }
    .map-container { margin-top: 1.5rem; }
    .map-placeholder { max-width: 100%; overflow: hidden; }
    .location-image {
        width: 100%;
        height: 240px;
        object-fit: cover;
        object-position: center;
        filter: brightness(0.55) contrast(1.1);
    }
    .map-info {
        width: 90%;
        padding: 1.2rem 1rem 1.4rem;
        background: linear-gradient(135deg, rgba(0,0,0,0.85), rgba(0,0,0,0.65));
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        backdrop-filter: blur(4px);
    }
    .map-info h3 { font-size: 1.3rem; margin-bottom: 0.4rem; color: #ffd700; }
    .map-info p { font-size: 0.9rem; line-height: 1.4; color: rgba(255,255,255,0.85); }
    .map-actions { margin-top: 0.7rem; display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; }
    .map-btn { padding: 0.55rem 1.1rem; font-size: 0.85rem; margin: 0.25rem 0.2rem; border-radius: 14px; }
    .location-features { flex-wrap: wrap; gap: 0.7rem; justify-content: center; }
    .feature { flex: 1 1 45%; max-width: 46%; text-align: center; background: rgba(255,255,255,0.05); padding: 0.6rem 0.4rem; border-radius: 10px; }
    .feature-icon { display: block; font-size: 1.1rem; margin-bottom: 0.2rem; }
    .feature-text { font-size: 0.75rem; line-height: 1.2; }
}

@media (max-width: 480px) {
    .location-image { height: 210px; }
    .map-info { padding: 1rem 0.8rem 1.1rem; width: 94%; }
    .map-info h3 { font-size: 1.15rem; }
    .map-info p { font-size: 0.85rem; }
    .map-btn { font-size: 0.78rem; padding: 0.5rem 0.9rem; }
    .feature { flex: 1 1 48%; max-width: 48%; }
    .feature-text { font-size: 0.7rem; }
}

/* Quick Actions */
.quick-actions {
    padding: 5rem 2rem;
    background: #1a1a1a;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.action-card {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,215,0,0.2);
}

.action-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.action-btn {
    background: #ffd700;
    color: #111;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 1rem;
}
