/* --- Global Styles & Modern Theme --- */
:root {
    --primary-color: #0d1b2a; /* Dark Blue */
    --secondary-color: #d4af37; /* Gold */
    --text-color: #ffffff;
    --body-bg: #f8f9fa;
    --font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--body-bg);
    padding-top: 56px;
    position: relative;
    padding-bottom: 180px; /* Space for footer */
}

/* --- Dynamic Banner (styles moved to inline style in index.php) --- */
.banner-section {
    position: relative;
    /* background-image is now set inline via PHP */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 10rem 0;
    color: var(--text-color);
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(13, 27, 42, 0.7); /* Darker overlay */
    z-index: 1;
}

.banner-section .container {
    position: relative;
    z-index: 2;
}

/* ... The rest of your style.css remains unchanged ... */
/* --- Meta-Style Multi-Step Form --- */
.form-container {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.progress-bar-container {
    background-color: #e9ecef;
    padding: 2px;
}

.progress-bar-custom {
    height: 6px;
    width: 50%;
    background-color: var(--secondary-color);
    border-radius: 3px;
    transition: width 0.4s ease-in-out;
}

.form-step {
    display: none;
    animation: slide-in 0.5s forwards;
}

.form-step.active {
    display: block;
}

@keyframes slide-in {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

/* --- Buttons --- */
.btn-primary.btn-gold {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-color);
    font-weight: bold;
    padding: 12px;
    transition: all 0.3s ease;
}

.btn-primary.btn-gold:hover {
    background-color: #c5a22e;
    border-color: #c5a22e;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* --- Content & Icons --- */
#why-us .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#why-us .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

#why-us i {
    color: var(--secondary-color);
}

/* --- Testimonials Carousel --- */
#testimonialCarousel .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next-icon {
    background-color: var(--primary-color);
    border-radius: 50%;
}

/* --- FAQ Accordion --- */
.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: #f0f6ff;
    font-weight: bold;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

.accordion-item {
    border: 1px solid #dee2e6;
    margin-bottom: 10px;
    border-radius: 5px;
}
/* --- Scroll Animations --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    animation: fadeInAnimation 1.5s ease-in-out forwards;
}

@keyframes fadeInAnimation {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Floating Contact Bar --- */
.floating-contact-bar {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.contact-icon:hover {
    transform: scale(1.1);
}

.whatsapp { background-color: #25D366; }
.call { background-color: #34B7F1; }
.email { background-color: #EA4335; }


/* --- Sticky Footer --- */
.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    body {
        padding-top: 56px;
    }
    .banner-section {
        padding: 6rem 0;
        background-attachment: scroll; /* Fix parallax on mobile */
    }
    .display-3 {
        font-size: 2.5rem;
    }
    #why-us .col-6 {
        margin-bottom: 1rem;
    }
}