/* Start custom CSS for html, class: .elementor-element-cc0eadd *//* Jungle Pet Shop - Simple Styles (No Animations) */

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Heebo', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.gradient-text-purple {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Navigation */
.nav-link {
    color: #4b5563;
    font-weight: 500;
    text-decoration: none;
}

.nav-link:hover {
    color: #f97316;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5);
}

.btn-call {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.btn-call:hover {
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5);
}

.btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: white;
    color: #7c3aed;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid #7c3aed;
}

.btn-secondary:hover {
    background: #7c3aed;
    color: white;
}

.btn-whatsapp {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Info Cards */
.info-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.info-card:hover {
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.2);
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.service-card:hover {
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.2);
    border-color: #7c3aed;
}

/* Contact Cards */
.contact-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.contact-card:hover {
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.25);
    border-color: #7c3aed;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

/* Social Links */
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
}

.social-link.facebook {
    background: linear-gradient(135deg, #3b5998 0%, #2d4373 100%);
}

.social-link.instagram {
    background: linear-gradient(135deg, #e4405f 0%, #f77737 50%, #f4b442 100%);
}

.social-link.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.social-link:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.social-link-footer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
}

.social-link-footer.facebook {
    background: #3b5998;
}

.social-link-footer.instagram {
    background: #e4405f;
}

.social-link-footer.whatsapp {
    background: #25D366;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-right: 4px solid #f97316;
}

.testimonial-card:hover {
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.2);
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    margin-left: 1rem;
}

.stars {
    color: #fbbf24;
    font-size: 0.875rem;
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 100px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    color: white;
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    z-index: 40;
}

.scroll-top-btn.visible {
    opacity: 1;
    pointer-events: auto;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 50;
}

.whatsapp-float:hover {
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #fb923c 0%, #fdba74 100%);
}

/* Responsive */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        left: 15px;
    }
    
    .scroll-top-btn {
        width: 45px;
        height: 45px;
        bottom: 85px;
        left: 15px;
    }
}

/* Print Styles */
@media print {
    nav,
    .whatsapp-float,
    .scroll-top-btn {
        display: none !important;
    }
}/* End custom CSS */