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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    min-height: 100vh;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 0;
}

.main-logo {
    width: 300px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    animation: fadeInDown 1s ease-out;
}



.logo p {
    font-size: 1.4rem;
    color: #6c757d;
    font-weight: 400;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.2s both;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}



.contact-hero {
    text-align: center;
    margin-bottom: 50px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: fadeIn 1s ease-out 0.6s both;
}

.contact-hero h2 {
    font-size: 2.5rem;
    color: #495057;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-hero p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    animation: slideInUp 0.8s ease-out;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.email-card .card-icon {
    background: linear-gradient(135deg, #e9ecef, #f8f9fa);
    color: #6c757d;
}

.phone-card .card-icon {
    background: linear-gradient(135deg, #dee2e6, #e9ecef);
    color: #6c757d;
}

.website-card .card-icon {
    background: linear-gradient(135deg, #f1f3f4, #e9ecef);
    color: #6c757d;
}

.instagram-card .card-icon {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.whatsapp-card .card-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.form-card .card-icon {
    background: linear-gradient(135deg, #f1f3f4, #e9ecef);
    color: #6c757d;
}

.blog-card .card-icon {
    background: linear-gradient(135deg, #f1f3f4, #e9ecef);
    color: #6c757d;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.contact-card p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(108, 117, 125, 0.3);
    background: linear-gradient(135deg, #495057, #343a40);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e) !important;
}

.whatsapp-btn:hover {
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4) !important;
}

.instagram-card .contact-btn {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4) !important;
}

.instagram-card .contact-btn:hover {
    background: linear-gradient(135deg, #e1306c, #c13584, #833ab4, #405de6) !important;
    box-shadow: 0 10px 25px rgba(225, 48, 108, 0.4) !important;
}

.quick-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quick-form input,
.quick-form textarea {
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.quick-form input:focus,
.quick-form textarea:focus {
    outline: none;
    border-color: #6c757d;
    box-shadow: 0 0 0 3px rgba(108, 117, 125, 0.1);
}

.social-links {
    text-align: center;
    margin-bottom: 40px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.social-links h3 {
    font-size: 1.8rem;
    color: #495057;
    margin-bottom: 25px;
    font-weight: 600;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-btn.instagram {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.social-btn.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.footer {
    text-align: center;
    padding: 30px 0;
    color: #6c757d;
    font-size: 1rem;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-brand-logo {
    height: 80px;
    width: auto;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transition: all 0.3s ease;
}

.footer-brand-logo:hover {
    transform: scale(1.05);
    box-shadow: none;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .main-logo {
        width: 200px;
    }
    
    .brand-logo {
        height: 40px;
    }
    
    .logo h1 {
        font-size: 2.2rem;
    }
    
    .contact-hero h2 {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        padding: 25px;
    }
    
    .social-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-btn {
        width: 200px;
        justify-content: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .footer-brand-logo {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .main-logo {
        width: 150px;
    }
    
    .brand-logo {
        height: 30px;
    }
    
    .brand-logos {
        gap: 10px;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .contact-hero {
        padding: 25px;
    }
    
    .contact-hero h2 {
        font-size: 1.6rem;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .footer-brand-logo {
        height: 50px;
    }
}