@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
}

.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

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

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.section-divider {
    position: relative;
    height: 1px;
    background: rgba(197, 160, 89, 0.2);
    margin: 4rem auto;
    max-width: 200px;
}

.section-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: #c5a059;
    border-radius: 50%;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.animate-shimmer {
    animation: shimmer 2.5s infinite;
}

.hero-text-shadow {
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}


/* PREMIUM SCROLLBAR STYLING */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f8f4f1;
}
::-webkit-scrollbar-thumb {
    background: #8ba892;
    border-radius: 10px;
    border: 2px solid #f8f4f1;
}
::-webkit-scrollbar-thumb:hover {
    background: #c5a059;
}

/* For Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: #8ba892 #f8f4f1;
}

/* TESTIMONIALS SLIDER */
.testimonials-slider .owl-stage {
    display: flex;
    align-items: stretch;
}
.testimonials-slider .owl-item {
    height: 100%;
}
.testimonials-slider .testimonial-card {
    height: 100%;
    margin: 15px;
}
.owl-dots {
    margin-top: 50px !important;
}
.owl-dot span {
    width: 12px !important;
    height: 12px !important;
    background: rgba(197, 160, 89, 0.2) !important;
    transition: all 0.3s ease !important;
}
.owl-dot.active span {
    background: #c5a059 !important;
    width: 30px !important;
}

/* FAQ ACCORDION */
.faq-item.active {
    border-color: rgba(197, 160, 89, 0.4);
    box-shadow: 0 20px 40px -15px rgba(197, 160, 89, 0.15);
}

.faq-item.active .faq-toggle span {
    color: #c5a059;
}
