/* Contact Page Specific Styles */

/* Hero Video Background */
.hero-video-wrap {
    position: relative;
    width: 100%;
    height: 55vh;
    overflow: hidden;
}

.hero-video-wrap video {
    position: absolute;
    top: 50%; 
    left: 50%;
    min-width: 100%; 
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 2rem;
}

.hero-overlay h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin: 0;
    font-weight: 800;
    letter-spacing: 2px;
}

.hero-overlay p {
    font-size: 1.1rem;
    max-width: 720px;
    margin-top: 1rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 2rem;
    margin-top: 4rem;
}

/* Contact Card Styling */
.contact-card {
    --accent: #d40000;
    background: #eef2f1;
    color: #000;
    padding: 2.5rem 2rem;
    border-radius: 0.6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform .4s cubic-bezier(.25,.8,.25,1), box-shadow .4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    text-decoration: none;
    cursor: pointer;
}

.contact-card.dark {
    background: #0f0f0f;
    color: #fff;
}

.contact-card i {
    font-size: 2.4rem;
    margin-bottom: 1.1rem;
    transition: color .35s ease;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin: 0 0 .15rem;
}

.contact-card::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: .35rem;
    background: var(--accent);
    transition: width .35s ease, left .35s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 30px -12px rgba(0,0,0,.25);
}

.contact-card:hover::after {
    width: 100%;
    left: 0;
}

.contact-card:hover i {
    color: var(--accent);
}

.accent-red   { --accent: #d40000; }
.accent-green { --accent: #25d366; }
.accent-blue  { --accent: #1e7df7; }

/* CONTACT PAGE SOCIAL ICONS - FIXED */
.contact-social {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-social a {
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-social .social-icon {
    font-size: 2.2rem;
    color: #666666;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 18px;
    border-radius: 50%;
    background: #f8f8f8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    position: relative;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-social a:hover .social-icon {
    transform: translateY(-8px) scale(1.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Instagram Contact Icon */
.contact-social a[href*="instagram"]:hover .social-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    color: #ffffff !important;
    border-color: #e4405f !important;
}

/* WhatsApp Contact Icon */
.contact-social a[href*="whatsapp"]:hover .social-icon,
.contact-social a[href*="wa.me"]:hover .social-icon {
    background: #25d366 !important;
    color: #ffffff !important;
    border-color: #25d366 !important;
}

/* Email Contact Icon */
.contact-social a[href^="mailto"]:hover .social-icon {
    background: #ea4335 !important;
    color: #ffffff !important;
    border-color: #ea4335 !important;
}

/* LinkedIn Contact Icon */
.contact-social a[href*="linkedin"]:hover .social-icon {
    background: #0a66c2 !important;
    color: #ffffff !important;
    border-color: #0a66c2 !important;
}

/* YouTube Contact Icon */
.contact-social a[href*="youtube"]:hover .social-icon {
    background: #ff0000 !important;
    color: #ffffff !important;
    border-color: #ff0000 !important;
}

/* FAQ Section */
.faq-section {
    background-color: var(--light-gray);
    padding: 5rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    background-color: var(--white);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: var(--black);
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 0.75rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-social {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-social {
        gap: 1.2rem;
    }
    
    .contact-social .social-icon {
        font-size: 1.8rem;
        width: 60px;
        height: 60px;
        padding: 15px;
    }
}

/* Footer styles moved to base.css for consistency */