/* Color Scheme */
:root {
    --primary-gold: #d4af37;
    --primary-dark: #000000;
    --primary-light: #1a1a1a;
    --white: #ffffff;
    --text-muted: #666666;
}

/* General Styles */
* {
    transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

a {
    color: var(--primary-gold);
    text-decoration: none;
}

a:hover {
    color: var(--primary-dark);
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.3rem;
}

.navbar-nav .nav-link {
    margin-left: 15px;
    font-weight: 500;
    border-bottom: 2px solid transparent;
}

.navbar-nav .nav-link:hover {
    border-bottom-color: var(--primary-gold);
    color: var(--primary-gold) !important;
}

/* Hero Banner */
.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
}

.hero-caption h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: var(--primary-gold);
}

.hero-caption p {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: var(--white);
}

/* CTA Section */
.cta-section .btn {
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 5px;
}

.cta-section .btn-danger {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border: none;
}

.cta-section .btn-success {
    background: linear-gradient(135deg, #25d366 0%, #1fa851 100%);
    border: none;
}

/* Service Cards */
.service-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.service-card .card-title {
    border-bottom: 2px solid var(--primary-gold);
    padding-bottom: 10px;
}

/* Hover Effects */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    display: block;
    border-radius: 8px;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    cursor: pointer;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    font-size: 40px;
    color: #fff;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.video-item iframe {
    border-radius: 8px;
}

/* Footer */
.footer {
    margin-top: auto;
}

.footer a {
    color: var(--primary-gold);
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Floating Buttons */
.whatsapp-btn,
.call-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: #fff;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.whatsapp-btn {
    right: 30px;
    background: #25d366;
}

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

.call-btn {
    right: 100px;
    background: #dc3545;
}

.call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.3);
}

/* Contact Form */
.contact-form input,
.contact-form textarea {
    border-radius: 5px;
    border: 1px solid #ddd;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

/* Stat Cards */
.stat-box {
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 768px) {
    .carousel {
        height: 350px !important;
    }

    .whatsapp-btn,
    .call-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 20px;
        right: 20px;
    }

    .call-btn {
        right: 80px;
    }

    .hero-caption h1 {
        font-size: 1.5rem !important;
    }

    .hero-caption p {
        font-size: 0.9rem !important;
    }

    .display-4,
    .display-5 {
        font-size: 1.8rem !important;
    }
}

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

.animate-slide-up {
    animation: slideInUp 0.5s ease;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Print Styles */
@media print {
    .whatsapp-btn,
    .call-btn,
    .navbar,
    .footer {
        display: none;
    }
}

/* Instagram Button Styling */
.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white !important;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(224, 148, 51, 0.4);
    color: white;
}

.btn-instagram:focus {
    color: white;
    box-shadow: 0 0 0 0.25rem rgba(224, 148, 51, 0.25);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cta-section .btn-lg {
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }
}