body {
    font-family: 'Poppins', sans-serif;
    background-image: url('https://images.unsplash.com/photo-1533134486753-c833f0ed4866?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    color: #E5E7EB;
    position: relative;
}
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-color: rgba(10, 10, 10, 0.85);
    z-index: -1;
}
.font-playfair {
    font-family: 'Playfair Display', serif;
}
.gold-text {
    color: #D4AF37;
}
.gold-gradient-text {
    background: linear-gradient(90deg, #FDE08D, #D4AF37, #A47D2A);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.fade-in {
    opacity: 0;
    animation: fadeIn 1.1s ease-out forwards;
}
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
.gold-bg {
    background-color: #D4AF37;
}
.gold-gradient-bg {
    background: linear-gradient(90deg, #FDE08D, #D4AF37, #A47D2A);
}
.dark-bg {
    background-color: rgba(17, 17, 17, 0.7);
}
.translucent-gradient-dark {
    background: linear-gradient(to right, rgba(6, 78, 59, 0.85), rgba(22, 101, 52, 0.85), rgba(0, 0, 0, 0.85));
}
.header-scrolled {
    background: linear-gradient(to right, rgba(6, 78, 59, 0.98), rgba(22, 101, 52, 0.98), rgba(0, 0, 0, 0.98));
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.section-padding {
    padding: 4rem 1rem;
}
@media (min-width: 768px) {
    .section-padding {
        padding: 6rem 2rem;
    }
}
.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.sticky-nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, #FDE08D, #D4AF37, #A47D2A);
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding-top: 1rem;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
.nav-link {
    position: relative;
    padding-bottom: 0.25rem;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #FDE08D, #D4AF37, #A47D2A);
    transition: width 0.3s ease-in-out;
}
.nav-link:hover::after {
    width: 100%;
}

.form-input {
    background-color: #1a1a1a;
    border: 1px solid #444;
    color: #fff;
}
.form-input:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.5);
}
.calculator-error {
    background: none;
    background-clip: unset;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    color: #ef4444;
}
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}
footer {
    position: relative;
}
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, #FDE08D, #D4AF37, #A47D2A);
}
.footer-title-underline::after {
    content: '';
    display: block;
    width: 4rem;
    height: 2px;
    background: linear-gradient(90deg, #FDE08D, #D4AF37, #A47D2A);
    margin-top: 0.5rem;
}
.footer-link {
    display: inline-block;
    position: relative;
    transition: transform 0.3s ease, color 0.3s ease;
}
.footer-link:hover {
    transform: translateX(10px);
}
.footer-link::before {
    content: '→';
    position: absolute;
    left: -1.2em;
    top: 50%;
    transform: translateY(-50%);
    color: #D4AF37;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.footer-link:hover::before {
    opacity: 1;
}

.gold-gradient-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, #FDE08D, #D4AF37, #A47D2A);
}
@keyframes animateGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.animated-gradient-text {
    background: linear-gradient(90deg, #FDE08D, #D4AF37, #A47D2A, #D4AF37, #FDE08D);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animateGradient 5s ease infinite;
}
.hover\:gold-glow:hover {
    filter: drop-shadow(0 0 8px rgba(253, 224, 141, 0.7));
}
.hero-swiper {
    height: 100%;
}
.hero-swiper .swiper-pagination-bullet {
    background-color: #fff;
    opacity: 0.7;
    width: 10px;
    height: 10px;
    transition: width .3s, background .3s;
}
.hero-swiper .swiper-pagination-bullet-active {
    background: linear-gradient(90deg, #FDE08D, #D4AF37, #A47D2A);
    opacity: 1;
    width: 24px;
    border-radius: 5px;
}
.swiper-slide .tagline-content {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    transition-delay: 0.5s;
}
.swiper-slide-active .tagline-content {
    opacity: 1;
    transform: translateX(0);
}
