/* PAGE SECTION */
.page-section {
    padding: 80px 40px;
}

.page-box {
    max-width: 900px;
    margin: auto;
    background: #ffffff;
    padding: 35px 40px;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.page-box h3 {
    margin-top: 28px;
    margin-bottom: 10px;
    color: #ff416c;
    font-size: 20px;
    font-weight: 600;
}

.page-box ul {
    margin-left: 20px;
    margin-top: 10px;
}

.page-box ul li {
    margin-bottom: 8px;
}
/* CONTACT PAGE */
.contact-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.contact-card {
    width: 280px;
    padding: 25px;
    background: #ffffff;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-card h3 {
    color: #ff416c;
    margin-bottom: 8px;
    font-size: 20px;
}

.contact-card p {
    color: #444;
}

.contact-card a {
    color: #ff416c;
    text-decoration: none;
}

.contact-icon {
    width: 48px;
    margin-bottom: 10px;
}

.map-box {
    margin: 40px auto;
    max-width: 900px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Full form styling same as index style */
.contact-page-form .input-group input,
.contact-page-form .input-group textarea {
    background: #fafafa;
    padding: 14px;
    font-size: 16px;
    border-radius: 10px;
    border: 1px solid #ddd;
}
/* CONTACT ICONS */
.contact-icon {
    width: 48px;
    margin-bottom: 12px;
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-floating {
    position: fixed;
    right: 22px;
    bottom: 85px;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    z-index: 2000;
    animation: pulse 1.6s infinite ease-in-out;
}

.whatsapp-floating img {
    width: 34px;
}

@keyframes pulse {
    0%   { box-shadow: 0 0 0 rgba(0,0,0,0.3); }
    50%  { box-shadow: 0 0 15px rgba(0,0,0,0.4); }
    100% { box-shadow: 0 0 0 rgba(0,0,0,0.3); }
}

@media (max-width: 600px) {
    .whatsapp-floating {
        width: 50px;
        height: 50px;
        right: 15px;
        bottom: 70px;
    }
    
    .whatsapp-floating img {
        width: 28px;
    }
}
