/* CONTACT PAGE NEW DESIGN STYLES */

/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #2038afc2 0%, #03afffc7 100%), url(../img/bg1.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
    color: #ffffff;
    margin-bottom: 40px;
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.contact-hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

.lpn-contact-main {
    padding: 20px 0 60px;
    background-color: #f8f9fa;
    font-family: 'Inter', sans-serif;
}

.lpn-contact-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.lpn-contact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.header-text {
    flex: 1.2;
}

.lpn-contact-title {
    font-size: 42px;
    font-weight: 900;
    color: #0a6a94;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.lpn-welcome-msg {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin-bottom: 25px;
}

.lpn-sub-msg {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 35px;
    text-align: left;
    padding: 20px;
}

.lpn-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #007bff;
    color: #fff;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.lpn-whatsapp-btn:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    color: #fff !important;
}

.wa-icon {
    width: 25px;
    height: 25px;
    filter: brightness(0) invert(1);
}

.lpn-office-details {
    margin-top: 40px;
    border-left: 4px solid #0a6a94;
    padding-left: 20px;
}

.lpn-office-details p {
    font-size: 14px;
    color: #444;
    margin-bottom: 8px;
    line-height: 1.4;
}

.header-image {
    flex: 0.8;
}

.rep-img {
    width: 100%;
    border-radius: 15px;
    /* Optional: filter to make it look cleaner if needed */
}

.panel-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 40px 0;
}

/* CONTACT CARDS STYLES */
.lpn-contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.lpn-card {
    background: #fdfdfd;
    border: 1px solid #eee;
    padding: 35px 20px;
    border-radius: 20px;
    text-align: center;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lpn-card:hover {
    transform: translateY(-10px);
    border-color: #007bff;
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.1);
}

.card-icon-box {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.lpn-card:hover .card-icon-box {
    transform: scale(1.1) rotate(10deg);
}

.card-icon-box.call {
    background: #e7f3ff;
    color: #007bff;
}

.card-icon-box.email {
    background: #fef2f2;
    color: #dc2626;
}

.card-icon-box.whatsapp {
    background: #f0fdf4;
    color: #16a34a;
}

.lpn-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
}

.lpn-card p {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.card-action {
    font-size: 14px;
    font-weight: 700;
    color: #007bff;
    padding: 8px 20px;
    background: #f0f7ff;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.lpn-card:hover .card-action {
    background: #007bff;
    color: #fff;
}

/* RESPONSIVENESS */
@media (max-width: 900px) {
    .lpn-contact-header {
        flex-direction: column;
        text-align: center;
    }

    .header-text {
        order: 2;
    }

    .header-image {
        order: 1;
        max-width: 300px;
        margin: 0 auto;
    }

    .lpn-office-details {
        text-align: left;
        display: inline-block;
        padding-left: 20px;
        border-left: 4px solid #0a6a94;
    }

    .lpn-contact-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lpn-contact-title {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .lpn-contact-container {
        padding: 15px;
        border-radius: 0;
    }

    .lpn-whatsapp-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 20px;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-hero p {
        font-size: 1.1rem;
    }
}

