/* --- Page Background & Section --- */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background: linear-gradient(135deg, #f0f4f8, #e2e8f0); /* modern soft gradient */
    color: #1f2937;
}

.contact-section {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1400px;
    margin: 80px auto;
    padding: 20px;
    position: relative;
}

/* About snippet */
.about-snippet {
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.7;
    max-width: 850px;
    margin: 0 auto 40px auto;
    color: #334155;
}

/* Scattered images */
.contact-images {
    position: relative;
}

.contact-images .img {
    position: absolute;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    width: 220px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-images .img:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* Individual image positions */
.img-top-left { top: -50px; left: 10%; }
.img-bottom-right { bottom: -50px; right: 10%; }
.img-center-left { top: 30%; left: -80px; }
.img-center-right { top: 40%; right: -80px; }

/* Contact card */
.contact-details-container {
    display: flex;
    justify-content: center;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 50px 40px;
    width: 100%;
    max-width: 700px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    animation: fadeIn 1s ease-in-out;
}

/* Headings */
.contact-card h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 40px;
    text-align: center;
    color: #0f172a;
}

/* Info groups */
.info-group {
    margin-bottom: 30px;
    transition: transform 0.3s ease-in-out;
}

.info-group:hover {
    transform: translateX(5px);
}

.info-group h3 {
    color: #2563eb;
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.info-group p, .info-group a {
    color: #000000;
    font-size: 1.1rem;
    text-decoration: none;
}

.info-group a:hover {
    color: #254ceac3;
    text-decoration: underline;
}

/* Live chat button */
.live-chat-button {
    display: inline-block;
    background-color: #eb7425;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.live-chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-images .img { display: none; } /* hide floating images on smaller screens */
}

@media (max-width: 768px) {
    .contact-card { padding: 30px 20px; }
    .contact-card h1 { font-size: 2rem; }
    .about-snippet { font-size: 1.1rem; }
}
