/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-image: url('Background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #212121;
    position: relative;
    overflow-x: hidden;
}

/* Blur Overlay for Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('Background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px);
    z-index: -1;
    pointer-events: none;
}

/* Dark Overlay for Better Readability */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
    z-index: 0;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Container */
.container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 25px;
    box-shadow: 
        0 20px 60px rgba(29, 29, 29, 0.15),
        0 5px 20px rgba(212, 22, 50, 0.1);
    max-width: 850px;
    width: 100%;
    padding: 50px 35px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo Section */
.logo-section {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeIn 1s ease-out 0.3s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.logo {
    max-width: 350px;
    width: 100%;
    margin: 0 auto 20px;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.logo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 20px rgba(212, 22, 50, 0.2));
}

.tagline {
    font-size: 1.05rem;
    color: #212121;
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Main Message */
.main-message {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeIn 1s ease-out 0.6s both;
}

.title {
    font-size: 1.75rem;
    color: #212121;
    margin-bottom: 12px;
    font-weight: 700;
}

.subtitle {
    font-size: 1.15rem;
    color: #D41632;
    margin-bottom: 20px;
    font-weight: 600;
}

.divider {
    width: 80px;
    height: 2.5px;
    background: #D41632;
    margin: 20px auto;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(212, 22, 50, 0.3);
}

.description {
    font-size: 0.98rem;
    color: #555555;
    line-height: 1.7;
    max-width: 550px;
    margin: 0 auto;
    font-weight: 400;
}

/* Services Section - Compact Horizontal */
.services-section {
    margin-bottom: 35px;
    animation: fadeIn 1s ease-out 0.8s both;
}

.services-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 12px;
    border: 1px solid rgba(33, 33, 33, 0.06);
}

.service-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    transition: all 0.3s ease;
}

.service-icon-small {
    width: 28px;
    height: 28px;
    background: #D41632;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    transition: all 0.3s ease;
}

.service-icon-small svg {
    width: 16px;
    height: 16px;
}

.service-text {
    font-size: 0.88rem;
    color: #212121;
    font-weight: 500;
    white-space: nowrap;
}

.service-divider {
    width: 1px;
    height: 24px;
    background: rgba(212, 22, 50, 0.2);
    margin: 0 8px;
}

/* Contact Section */
.contact-section {
    margin-bottom: 35px;
    animation: fadeIn 1s ease-out 0.9s both;
}

.contact-title {
    text-align: center;
    font-size: 1.5rem;
    color: #212121;
    margin-bottom: 28px;
    font-weight: 700;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 18px;
}

.contact-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid rgba(33, 33, 33, 0.06);
    cursor: pointer;
}

.contact-item-link:hover .contact-item {
    box-shadow: 0 8px 25px rgba(212, 22, 50, 0.2);
    border-color: #D41632;
    transform: translateY(-2px);
}

.icon {
    width: 36px;
    height: 36px;
    background: #D41632;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    box-shadow: 0 4px 15px rgba(212, 22, 50, 0.3);
}

.icon svg {
    width: 20px;
    height: 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label {
    font-size: 0.75rem;
    color: #757575;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.contact-value {
    font-size: 0.92rem;
    color: #212121;
    font-weight: 500;
    text-decoration: none;
}

/* WhatsApp CTA Button */
.whatsapp-cta {
    text-align: center;
    margin: 35px 0 25px;
    animation: fadeIn 1s ease-out 1.2s both;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.whatsapp-button svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.whatsapp-button span {
    white-space: nowrap;
}

/* Footer */
.footer {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(33, 33, 33, 0.08);
    animation: fadeIn 1s ease-out 1.5s both;
}

.footer p {
    font-size: 0.82rem;
    color: #757575;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 15px;
    }

    .container {
        padding: 40px 25px;
        border-radius: 20px;
    }

    .logo {
        max-width: 300px;
    }

    .tagline {
        font-size: 1rem;
    }

    .title {
        font-size: 1.6rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .description {
        font-size: 1rem;
        line-height: 1.6;
    }

    .services-container {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
        text-align: center;
    }

    .service-divider {
        display: none;
    }

    .service-item {
        width: 100%;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    .service-text {
        text-align: center;
    }

    .contact-title {
        font-size: 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-item {
        padding: 18px;
    }

    .whatsapp-button {
        padding: 16px 35px;
        font-size: 1rem;
    }

    .whatsapp-button svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .container {
        padding: 30px 20px;
        border-radius: 15px;
        text-align: center;
    }

    .logo {
        max-width: 280px;
    }

    .tagline {
        font-size: 0.9rem;
        text-align: center;
    }

    .title {
        font-size: 1.4rem;
        margin-bottom: 12px;
        text-align: center;
    }

    .subtitle {
        font-size: 1rem;
        line-height: 1.4;
        text-align: center;
    }

    .description {
        font-size: 0.95rem;
        line-height: 1.6;
        text-align: center;
    }

    .divider {
        width: 80px;
        margin: 20px auto;
    }

    .services-container {
        text-align: center;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .service-text {
        text-align: center;
        white-space: normal;
    }

    .contact-title {
        font-size: 1.3rem;
        margin-bottom: 25px;
        text-align: center;
    }

    .contact-grid {
        gap: 12px;
    }

    .contact-item {
        padding: 15px;
        gap: 12px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .icon {
        width: 36px;
        height: 36px;
    }

    .icon svg {
        width: 18px;
        height: 18px;
    }

    .contact-info {
        align-items: center;
        text-align: center;
    }

    .contact-label {
        font-size: 0.8rem;
        text-align: center;
    }

    .contact-value {
        font-size: 0.95rem;
        text-align: center;
    }

    .whatsapp-cta {
        margin: 30px 0 25px;
        text-align: center;
    }

    .whatsapp-button {
        width: 100%;
        padding: 16px 25px;
        font-size: 0.95rem;
        justify-content: center;
    }

    .whatsapp-button svg {
        width: 22px;
        height: 22px;
    }

    .footer {
        text-align: center;
    }

    .footer p {
        font-size: 0.85rem;
        text-align: center;
    }
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading {
    animation: shimmer 2s infinite linear;
    background: linear-gradient(to right, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%);
    background-size: 1000px 100%;
}

