/* Contacts Page Specific Styles */

/* Statistics Section - Added for consistency */
.statistics-section {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    margin: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 1rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.stat-label {
    font-size: 1.2rem;
    color: white;
    opacity: 0.9;
    font-weight: 500;
}

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

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    /* Android improvements */
    touch-action: manipulation;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.contact-card h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.contact-card a {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
    /* Android improvements */
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    min-height: 50px;
    min-width: 50px;
    line-height: 1.4;
    padding: 12px 20px;
    border-radius: 25px;
    background: rgba(255, 215, 0, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-card a:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.contact-card a:active {
    transform: translateY(0);
}

/* Map Section */
.map-section {
    margin: 3rem 0;
    text-align: center;
}

.map-section h2 {
    margin-bottom: 1.5rem;
}

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

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-description {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.map-description p {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.map-description p:last-child {
    margin-bottom: 0;
}

.map-description strong {
    color: #ffd700;
}

/* Address Section */
.address-section {
    text-align: center;
    margin: 2rem 0;
}

.address-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    display: inline-block;
    max-width: 600px;
}

.address-card h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.address-card p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* Working Hours */
.hours-section {
    margin: 3rem 0;
}

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

.hours-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.hours-card h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
}

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

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    margin: 2rem 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #ffd700;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(0,0,0,0.3);
    color: white;
    font-size: 1rem;
    /* Android improvements */
    touch-action: manipulation;
    min-height: 50px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 350px;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .address-card {
        padding: 1.5rem;
    }
    
    .map-description {
        padding: 1rem;
    }
    
    .map-description p {
        font-size: 1rem;
    }
    
    /* Statistics Section - Mobile */
    .statistics-section {
        padding: 40px 0;
        margin: 30px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    /* Android improvements for mobile */
    .contact-card a {
        font-size: 1.1rem;
        padding: 15px 25px;
        min-height: 50px;
        border-radius: 25px;
    }
}

@media (max-width: 480px) {
    .map-container {
        height: 300px;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .hours-card {
        padding: 1.5rem;
    }
    
    .map-description {
        padding: 1rem;
    }
    
    /* Statistics Section - Small Screens */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 10px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* Android improvements for small screens */
    .contact-card a {
        font-size: 1rem;
        padding: 12px 20px;
        min-height: 46px;
        max-width: 200px; /* As per requirements */
        border-radius: 23px;
    }
    
    .form-group input,
    .form-group textarea {
        min-height: 46px;
        font-size: 0.9rem;
    }
}