* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 800px;
    width: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

/* FIXED: Logo Section - Horizontal Layout */
.logo-section {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    color: white;
}

.logo {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.brand-text {
    flex: 1;
    text-align: right;
}

.brand-text h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.tagline {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 300;
}

/* Hero Content */
.hero-content {
    padding: 40px 30px;
    text-align: center;
}

.hero-content h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* Contact Options */
.contact-options {
    margin-top: 35px;
    padding-top: 35px;
    border-top: 2px solid #eee;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.contact-options.show {
    opacity: 1;
    max-height: 800px;
}

.contact-options h3 {
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

/* FIXED: Mobile-friendly contact grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.contact-card {
    background: white;
    border: 2px solid #eee;
    border-radius: 15px;
    padding: 25px 15px;
    text-align: center;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-card .icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card .icon svg {
    width: 28px;
    height: 28px;
}

.whatsapp .icon {
    background: #25D366;
    color: white;
}

.whatsapp:hover {
    border-color: #25D366;
}

.phone .icon {
    background: #4A90E2;
    color: white;
}

.phone:hover {
    border-color: #4A90E2;
}

.email .icon {
    background: #EA4335;
    color: white;
}

.email:hover {
    border-color: #EA4335;
}

.contact-card h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-card p {
    color: #777;
    font-size: 0.9rem;
}

/* Desktop-only phone number display */
.desktop-number {
    color: #4A90E2;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 8px;
}

/* Email notification */
.email-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    z-index: 1000;
    pointer-events: none;
}

.email-notification.show {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
footer {
    background: #f8f9fa;
    padding: 20px;
    text-align: center;
    color: #777;
    font-size: 0.9rem;
}

/* FIXED: Mobile Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .logo-section {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        gap: 15px;
    }

    .logo {
        width: 100px;
        height: 100px;
    }

    .brand-text {
        text-align: center;
    }

    .brand-text h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .hero-content {
        padding: 30px 20px;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .description {
        font-size: 1rem;
        line-height: 1.6;
    }

    .cta-button {
        font-size: 1.2rem;
        padding: 16px 35px;
        width: 100%;
        max-width: 320px;
    }

    .contact-options h3 {
        font-size: 1.1rem;
    }

    /* FIXED: Single column on mobile for better visibility */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 350px;
        margin: 20px auto 0;
    }

    .contact-card {
        padding: 20px 15px;
    }

    .email-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        border-radius: 15px;
    }

    .logo {
        width: 90px;
        height: 90px;
    }

    .brand-text h1 {
        font-size: 1.8rem;
    }

    .hero-content h2 {
        font-size: 1.6rem;
    }

    .cta-button {
        font-size: 1.1rem;
        padding: 14px 30px;
    }
}