* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0f2418 0%, #0f2418 100%);
    min-height: 100vh;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    max-width: 600px;
    width: 100%;
    text-align: center;
    padding: 40px 20px;
}

/* Logo Section */
.logo-section {
    margin-bottom: 30px;
}

.logo img {
    border-radius: 50%;
    background: white;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Company Name */
.company-name {
    color: #f0972d;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.tagline {
    color: white;
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Contact Information */
.contact-info {
    color: white;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

.contact-item i {
    font-size: 16px;
}

/* Social Media Buttons */
.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: white;
    color: #333;
    padding: 18px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    min-width: 280px;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.social-btn i {
    font-size: 24px;
}

/* Individual Button Colors */
.social-btn.whatsapp {
    color: #25D366;
}

.social-btn.whatsapp:hover {
    background: #25D366;
    color: white;
}

.social-btn.instagram {
    color: #E4405F;
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-btn.facebook {
    color: #1877F2;
}

.social-btn.facebook:hover {
    background: #1877F2;
    color: white;
}

.social-btn.tiktok {
    color: #000000;
}

.social-btn.tiktok:hover {
    background: #000000;
    color: white;
}

.social-btn.youtube {
    color: #FF0000;
}

.social-btn.youtube:hover {
    background: #FF0000;
    color: white;
}

.highlight {
    background: #ff6b35;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .company-name {
        font-size: 24px;
    }
    
    .tagline {
        font-size: 14px;
    }
    
    .contact-item {
        font-size: 12px;
        flex-direction: column;
        gap: 5px;
    }
    
    .social-btn {
        padding: 15px 20px;
        font-size: 14px;
        min-width: 240px;
    }
    
    .social-btn i {
        font-size: 20px;
    }
}/* Footer Styling */
.footer {
    margin-top: 50px;
    color: rgba(255, 255, 255, 0.7); /* Slightly transparent white */
    font-size: 13px;
    letter-spacing: 0.5px;
}

.footer strong {
    color: #ffffff; /* Solid white for the brand name */
    font-weight: bold;
}/* Styling for the clickable footer link */
.footer-link {
    text-decoration: none; /* Removes the blue underline */
    color: #ffffff; /* Makes the text solid white */
    transition: all 0.3s ease; /* Makes the hover effect smooth */
}

/* What happens when you hover over the link */
.footer-link:hover {
    color: #ff6b35; /* Changes text to your brand's orange color */
    text-shadow: 0px 0px 8px rgba(255, 107, 53, 0.5); /* Adds a subtle glow */
}/* Google Maps Button Styling */
.social-btn.google-maps {
    color: #4285F4; /* Google Blue */
}

.social-btn.google-maps:hover {
    background: #4285F4;
    color: white;
}

.social-btn.google-maps i {
    font-size: 24px;
}