/**
 * Public Contact Page Stylesheet
 * Mobile-first responsive design
 * 
 * @version 1.0
 */

/* ================================
   BASE STYLES
   ================================ */

.contact-page {
    min-height: 100vh;
    background: #f9f9f9;
    padding: 40px 20px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ================================
   HEADER
   ================================ */

.contact-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-header h1 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-header h1 i {
    color: #19427f;
    font-size: 32px;
}

.contact-header p {
    color: #666;
    font-size: 16px;
}

/* ================================
   CONTACT CARDS GRID
   ================================ */

.contact-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: #19427f;
    box-shadow: 0 8px 20px rgba(25, 66, 127, 0.2);
}

.contact-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #19427f 0%, #2563eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-icon-circle i {
    font-size: 28px;
    color: white;
}

.contact-info-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.contact-detail-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    margin-bottom: 15px;
}

.contact-detail-row i {
    color: #19427f;
    font-size: 18px;
}

.contact-detail-row a {
    color: #19427f;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-detail-row a:hover {
    color: #2563eb;
    text-decoration: underline;
}

.contact-address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #666;
    margin-bottom: 15px;
}

.contact-address i {
    color: #19427f;
    font-size: 18px;
    margin-top: 2px;
}

.contact-info-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* ================================
   BUSINESS HOURS
   ================================ */

.business-hours-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.business-hours-card h3 {
    color: #333;
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.business-hours-card h3 i {
    color: #19427f;
    font-size: 24px;
}

.hours-grid {
    display: grid;
    gap: 12px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-day {
    color: #666;
    font-weight: 600;
}

.hours-time {
    color: #333;
    font-weight: 500;
}

.hours-closed {
    color: #ef4444;
    font-weight: 600;
}

/* ================================
   REVIEW SECTION
   ================================ */

.review-section {
    background: linear-gradient(135deg, #19427f 0%, #2563eb 100%);
    padding: 50px 30px;
    border-radius: 12px;
    text-align: center;
    color: white;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(25, 66, 127, 0.3);
}

.review-section i {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
    color: #fbbf24;
}

.review-section h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.review-section p {
    font-size: 16px;
    opacity: 0.95;
    margin-bottom: 30px;
    color: white;
}

.review-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    background: #4285f4;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.review-button:hover {
    background: #357ae8;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    color: white;
}

/* ================================
   MAP SECTION
   ================================ */

.map-section {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.map-section h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-section h3 i {
    color: #19427f;
    font-size: 24px;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #f0f0f0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ================================
   TABLET (768px and up)
   ================================ */

@media (min-width: 768px) {
    .contact-page {
        padding: 60px 30px;
    }
    
    .contact-header h1 {
        font-size: 36px;
    }
    
    .contact-header h1 i {
        font-size: 40px;
    }
    
    .contact-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .map-container {
        height: 450px;
    }
}

/* ================================
   DESKTOP (992px and up)
   ================================ */

@media (min-width: 992px) {
    .contact-page {
        padding: 80px 40px;
    }
    
    .contact-header {
        padding: 40px 30px;
    }
    
    .contact-info-card {
        padding: 35px;
    }
    
    .business-hours-card {
        padding: 35px;
    }
    
    .map-section {
        padding: 35px;
    }
    
    .map-container {
        height: 500px;
    }
}