/* Brand Colors */
:root {
    --orange: #581a20; /* Primary brand color */
    --orange-dark: #3d1014;
    --orange-light: #a03a45;
    --gradient: linear-gradient(135deg, var(--orange-dark), var(--orange-light));
}

/* Custom Styles */
.text-orange {
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
  color: #08030373;
    animation: gradient 3s ease infinite;
}

.text-orange-dark {
    color: var(--orange-dark);
}

.bg-orange {
    background: var(--gradient);
    background-size: 200% 200%;
    animation: gradient 3s ease infinite;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Service Cards */
.service-card {
    background: white;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Form Styles */
input:focus,
textarea:focus {
    outline: none;
    border-color: var(--orange);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 1rem;
    }
    
    .service-card {
        margin-bottom: 1rem;
    }
    
    .text-2xl {
        font-size: 1.5rem;
    }
}

/* Mobile Menu */
#menu-toggle {
    border: none;
    background: none;
    cursor: pointer;
    padding: 0.5rem;
}

/* Contact Form */
#contactForm {
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
footer {
    background-color: #1a1a1a;
}

/* Google Maps */
iframe {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}
