/* Custom colors */
.bg-navy-900 { background-color: #0a1a2e; }
.bg-navy-800 { background-color: #0f2d4a; }
.bg-navy-700 { background-color: #1a3a5a; }
.text-navy-900 { color: #0a1a2e; }

.bg-gold-500 { background-color: #d4af37; }
.bg-gold-600 { background-color: #c9a227; }
.bg-gold-700 { background-color: #be9717; }
.text-gold-500 { color: #d4af37; }
.text-gold-600 { color: #c9a227; }

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn i {
    margin-right: 8px;
    font-size: 20px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content {
        text-align: center;
    }
    
    .hero-image {
        margin-top: 30px;
    }
}

/* Form styling */
#contactForm input,
#contactForm select,
#contactForm textarea {
    transition: all 0.3s ease;
}

#contactForm input:focus,
#contactForm select:focus,
#contactForm textarea:focus {
    border-color: #d4af37;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

/* Service card hover effect */
.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Testimonial styling */
.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
/* Add these to your existing CSS */
.bg-navy-900 { background-color: #0a1a2e; }
.text-white { color: #ffffff; }

/* Fix for hero section content visibility */
#home {
    position: relative;
    z-index: 1;
}

#home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, #0a1a2e, #1a3a5a);
    z-index: -1;
}

/* Ensure text is visible against background */
#home h1,
#home p,
#home a {
    position: relative;
    z-index: 2;
}