:root {
    --primary-color: #25D366;
    /* WhatsApp Green */
    --text-color: #333;
    --bg-color: #f9f9f9;
    --card-bg: #ffffff;
    --font-main: 'Outfit', sans-serif;
    --transition-speed: 0.3s;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 450px;
    /* Mobile-first, sleek card width */
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
    text-align: center;
    animation: fadeIn 0.8s ease-out;
}

/* Video Styling */
.video-wrapper {
    width: 100%;
    height: auto;
    /* Allow height to adjust based on video content */
    overflow: hidden;
    position: relative;
    background: #000;
    line-height: 0;
    /* Remove potential gap below video */
}

#intro-video {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.9;
}

/* Content Styling */
.content {
    padding: 30px 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.logo-container {
    margin-top: -60px;
    /* Adjusted overlap effect for larger logo */
    position: relative;
    z-index: 2;
    background: var(--card-bg);
    padding: 10px;
    border-radius: 50%;
    /* You can change this if you want a different shape */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 140px;
    /* Increased container size */
    height: 140px;
    /* Increased container size */
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.text-content {
    text-align: center;
    color: #444;
    padding: 0 10px;
    animation: slideUp 0.6s ease-out 0.2s backwards;
}

.text-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.5;
}

.description {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-style: italic;
}

.note {
    font-weight: 500;
    margin-bottom: 5px;
}

.small-note {
    font-size: 0.8rem;
    color: #777;
}

/* Contact Info Styling */
/* Contact Section Styling */
.contact-section {
    margin-top: 20px;
    text-align: center;
    animation: slideUp 0.6s ease-out 0.4s backwards;
}

.contact-section h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-link i {
    font-size: 1.4rem;
}

/* Footer Quiet Area */
.footer-quiet {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    width: 100%;
}

.footer-mail {
    display: block;
    color: #555;
    text-decoration: none;
    margin-bottom: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-mail:hover {
    color: var(--text-color);
}

.locations {
    margin-bottom: 15px;
    line-height: 1.6;
}

.locations p {
    margin: 2px 0;
}

.footer-disclaimer {
    font-size: 0.75rem;
    font-style: italic;
    color: #999;
    line-height: 1.4;
    max-width: 90%;
    margin: 0 auto;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    display: none;
    /* Hiding for now as requested */
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    align-items: center;
    /* keep these in case we unhide later, but display:none overrides flex display */
    justify-content: center;
    text-decoration: none;
    z-index: 100;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 2px 5px 15px rgba(37, 211, 102, 0.4);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Tweaks */
@media (max-width: 480px) {
    .container {
        height: auto;
        border-radius: 0;
        box-shadow: none;
        max-width: 100%;
        min-height: 100vh;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}