/* Contact Page Specific Styles */

.page-hero {
    margin-top: 72px;
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
}

.page-hero-title {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.page-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.contact-info h2 {
    font-size: 36px;
    color: #ffffff !important;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 15px rgba(255,255,255,0.5);
}

.contact-intro {
    color: #ffffff !important;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
    font-size: 18px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}

/* Cards Container */
.cards-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

/* Consultation Card */
.consultation-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    color: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(100, 255, 218, 0.2);
    margin-bottom: 10px;
}

.consultation-card h2 {
    color: white !important;
    font-size: 32px;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.consultation-card p {
    color: rgba(255, 255, 255, 0.95) !important;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
    font-size: 18px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

.consultation-card .btn {
    background: white;
    color: var(--primary-color) !important;
    font-weight: 700;
    padding: 16px 40px;
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.consultation-card .btn:hover {
    background: var(--accent-color);
    color: var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(100, 255, 218, 0.4);
    border-color: var(--accent-color);
}

/* Contact Methods Grid */
.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* Contact Card */
.contact-card {
    background: rgba(17, 34, 64, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(100, 255, 218, 0.15);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-color);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    height: 100%;
}

.method-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), #7ff0da);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.3);
}

.method-content {
    flex: 1;
}

.method-content h3 {
    font-size: 20px;
    color: #ffffff !important;
    margin-bottom: 12px;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.method-content a {
    color: var(--accent-color) !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 6px;
    word-break: break-word;
}

.method-content a:hover {
    color: white !important;
    transform: translateX(4px);
}

.method-content p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 4px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* Business Hours Card */
.business-hours-card {
    background: rgba(17, 34, 64, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(100, 255, 218, 0.15);
    border-top: 4px solid var(--accent-color);
    grid-column: span 2;
}

.business-hours-card h3 {
    font-size: 24px;
    color: #ffffff !important;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(100, 255, 218, 0.2);
}

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

.hours-row span:first-child {
    color: #ffffff !important;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.hours-row span:last-child {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
}

/* WhatsApp Link Specific */
.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 211, 102, 0.15);
    padding: 8px 16px;
    border-radius: 50px;
    margin-top: 8px;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.whatsapp-link:hover {
    background: rgba(37, 211, 102, 0.25);
    border-color: #25D366;
}

/* Tablet Responsive */
@media (max-width: 992px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info h2 {
        font-size: 32px;
    }
    
    .consultation-card {
        padding: 40px 30px;
    }
    
    .consultation-card h2 {
        font-size: 28px;
    }
    
    .consultation-card p {
        font-size: 16px;
    }
    
    .contact-card {
        padding: 25px;
    }
    
    .method-icon {
        width: 50px;
        height: 50px;
    }
    
    .method-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .method-content h3 {
        font-size: 18px;
    }
    
    .method-content a {
        font-size: 15px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .page-hero {
        margin-top: 60px;
        padding: 60px 0 50px;
    }
    
    .page-hero-title {
        font-size: 32px;
    }
    
    .page-hero-subtitle {
        font-size: 18px;
    }
    
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-info h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .contact-intro {
        font-size: 16px;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    /* Stack cards vertically on mobile */
    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .business-hours-card {
        grid-column: span 1;
    }
    
    .consultation-card {
        padding: 30px 20px;
    }
    
    .consultation-card h2 {
        font-size: 24px;
    }
    
    .consultation-card p {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .consultation-card .btn {
        padding: 14px 30px;
        font-size: 15px;
    }
    
    .contact-card {
        padding: 25px 20px;
    }
    
    .contact-method {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .method-icon {
        margin: 0 auto 5px;
        width: 60px;
        height: 60px;
    }
    
    .method-content h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .method-content a {
        font-size: 16px;
        display: block;
        margin-bottom: 8px;
    }
    
    .method-content p {
        font-size: 14px;
    }
    
    .whatsapp-link {
        justify-content: center;
        width: fit-content;
        margin: 10px auto 0;
    }
    
    .business-hours-card {
        padding: 25px 20px;
    }
    
    .business-hours-card h3 {
        font-size: 22px;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .hours-grid {
        gap: 12px;
    }
    
    .hours-row {
        padding: 10px 0;
    }
    
    .hours-row span {
        font-size: 15px;
    }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
    .page-hero {
        padding: 50px 0 40px;
    }
    
    .page-hero-title {
        font-size: 28px;
    }
    
    .page-hero-subtitle {
        font-size: 16px;
    }
    
    .contact-info h2 {
        font-size: 24px;
    }
    
    .contact-intro {
        font-size: 15px;
        padding: 0 10px;
    }
    
    .consultation-card {
        padding: 25px 15px;
    }
    
    .consultation-card h2 {
        font-size: 22px;
    }
    
    .consultation-card p {
        font-size: 14px;
    }
    
    .consultation-card .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .contact-card {
        padding: 20px 15px;
    }
    
    .method-icon {
        width: 50px;
        height: 50px;
    }
    
    .method-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .method-content h3 {
        font-size: 18px;
    }
    
    .method-content a {
        font-size: 15px;
        word-break: break-all;
    }
    
    .method-content p {
        font-size: 13px;
    }
    
    .business-hours-card {
        padding: 20px 15px;
    }
    
    .business-hours-card h3 {
        font-size: 20px;
    }
    
    .hours-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .hours-row span {
        font-size: 14px;
    }
    
    .hours-row span:first-child {
        margin-bottom: 2px;
    }
}

/* Ensure all text is visible */
.contact-card p,
.contact-card a,
.business-hours-card p,
.hours-row span {
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* Fix container padding on mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}