/* Simplified Contact Page Styles */

/* CONTACT HERO */
.contact-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.contact-hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.contact-hero .color-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(11, 28, 45, 0.85) 0%,
        rgba(24, 165, 88, 0.25) 50%,
        rgba(11, 28, 45, 0.85) 100%);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    max-width: 900px;
    color: #fff;
    text-align: center;
    padding: 0 40px;
    z-index: 2;
    animation: heroFadeIn 1s ease forwards;
}

.contact-hero h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin: 20px 0;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.contact-hero p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto 30px;
}

/* FREE CONSULTATION CTA */
.consultation-cta {
    padding: 80px 0;
    background: #0b1c2d;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.consultation-cta .cta-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        #0b1c2d 0%, 
        #1a3a5f 25%, 
        #2a4a7f 50%, 
        #3a5a9f 75%, 
        #0b1c2d 100%);
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.consultation-cta .cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.consultation-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.consultation-cta .cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.consultation-cta .cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.consultation-cta .feature {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.consultation-cta .feature-icon {
    width: 40px;
    height: 40px;
    background: var(--feature-color, var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.consultation-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.consultation-cta .btn-primary {
    border-color: var(--primary-color);
}

/* CONTACT OPTIONS */
.contact-options {
    padding: 80px 0;
    background: #ffffff;
}

.options-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.option-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border-top: 4px solid var(--option-color, var(--primary-color));
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.option-icon {
    width: 70px;
    height: 70px;
    background: rgba(var(--option-color-rgb, 24, 165, 88), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--option-color, var(--primary-color));
    font-size: 1.8rem;
}

.option-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.option-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 20px;
    flex-grow: 1;
}

.option-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--option-color, var(--primary-color));
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 15px 0;
    padding: 10px;
    border-radius: 8px;
    background: rgba(var(--option-color-rgb, 24, 165, 88), 0.05);
    transition: all 0.3s ease;
}

.option-link:hover {
    background: rgba(var(--option-color-rgb, 24, 165, 88), 0.1);
    transform: translateY(-2px);
}

.address-link {
    cursor: default;
    background: rgba(165, 153, 233, 0.05);
    color: #A599E9;
}

.address-link:hover {
    background: rgba(165, 153, 233, 0.05);
    transform: none;
}

.option-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 15px;
}

.option-tags span {
    background: rgba(var(--option-color-rgb, 24, 165, 88), 0.1);
    color: var(--option-color, var(--primary-color));
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* OFFICE INFO */
.office-info {
    padding: 80px 0;
    background: #ffffff;
}

.office-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.office-content .section-header {
    text-align: left;
}

.office-details {
    margin-top: 30px;
}

.office-address, .office-hours {
    margin-bottom: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
}

.office-address h3, .office-hours h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.office-address h3 i, .office-hours h3 i {
    color: var(--primary-color);
}

.office-address p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin: 0;
}

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

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hour-item:last-child {
    border-bottom: none;
}

.hour-item span:first-child {
    font-weight: 600;
    color: var(--text-medium);
}

.hour-item span:last-child {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.office-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.office-actions .btn-primary,
.office-actions .btn-secondary {
    padding: 14px 28px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.office-map {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

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

/* SIMPLE FAQ */
.simple-faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.faq-list {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    padding: 25px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h3 i {
    color: var(--primary-color);
    font-size: 1rem;
}

.faq-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin: 0;
    padding-left: 26px;
}

/* RESPONSIVE STYLES */
@media (max-width: 1200px) {
    .consultation-cta .cta-container,
    .options-container,
    .office-container,
    .faq-container {
        padding: 0 30px;
    }
    
    .contact-hero h1 {
        font-size: 2.8rem;
    }
    
    .options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .contact-hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .contact-hero h1 {
        font-size: 2.4rem;
    }
    
    .contact-hero p {
        font-size: 1.1rem;
    }
    
    .consultation-cta h2 {
        font-size: 2rem;
    }
    
    .consultation-cta .cta-subtitle {
        font-size: 1rem;
    }
    
    .office-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .office-map {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 45vh;
        min-height: 350px;
        margin-top: 70px;
    }
    
    .contact-hero-content {
        padding: 0 20px;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-hero p {
        font-size: 1rem;
    }
    
    .consultation-cta .cta-container,
    .options-container,
    .office-container,
    .faq-container {
        padding: 0 20px;
    }
    
    .consultation-cta,
    .contact-options,
    .office-info,
    .simple-faq {
        padding: 60px 0;
    }
    
    .consultation-cta .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .consultation-cta .feature {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .consultation-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .office-actions {
        flex-direction: column;
    }
    
    .office-actions .btn-primary,
    .office-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 1.8rem;
    }
    
    .contact-hero p {
        font-size: 0.9rem;
    }
    
    .consultation-cta h2 {
        font-size: 1.8rem;
    }
    
    .consultation-cta .cta-subtitle {
        font-size: 0.9rem;
    }
    
    .option-card {
        padding: 25px 20px;
    }
    
    .option-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .faq-item h3 {
        font-size: 1rem;
    }
    
    .faq-item p {
        padding-left: 0;
    }
}