/* Index Page Specific Styles */
/* Used by: index.html only */

/* Contact cards outline styling */
.contact-info {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 200px;
    text-align: center;
}

.contact-info:hover {
    border-color: #457BF7;
    box-shadow: 0 4px 20px rgba(69, 123, 247, 0.15);
    transform: translateY(-2px);
}

.contact-info .contact-icon {
    color: #457BF7;
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
    width: 100%;
    text-align: center;
    border: none;
    outline: none;
    background: none;
    box-shadow: none;
}

.contact-info .contact-icon i {
    border: none;
    outline: none;
    background: none;
    box-shadow: none;
}

.contact-info h4 {
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-info a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #457BF7;
}

/* Contact card link styling */
.contact-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.contact-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.contact-card-link:hover .contact-info {
    border-color: #457BF7;
    box-shadow: 0 4px 20px rgba(69, 123, 247, 0.15);
    transform: translateY(-2px);
}

/* Mobile hero section reordering */
@media (max-width: 767px) {
    .tp-hero__area .row {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .tp-hero__area {
        padding-top: 0px !important;
        padding-bottom: 40px !important;
    }
}