@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #c5a059;
    /* Elegant Gold */
    --accent-color: #f8f8f8;
    --text-color: #333333;
    --light-text: #666666;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.body-site {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

.body-site *,
.body-site *:before,
.body-site *:after {
    box-sizing: border-box;
}

.heading-font {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* Page Loader */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(197, 160, 89, 0.1);
    border-top: 3px solid var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-text {
    margin-top: 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Advertisement Note Top */
.top-ad-note {
    background-color: #f0f0f0;
    padding: 8px 15px;
    text-align: center;
    font-size: 12px;
    color: #555;
    border-bottom: 1px solid #e0e0e0;
}

/* Header & Nav */
.header-main {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-size: 24px;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
}

.nav-item-link:hover {
    color: var(--secondary-color);
}

.header-cta-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.header-cta-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.mobile-nav-sidebar {
    position: fixed;
    top: 0;
    right: -75%;
    width: 75%;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    z-index: 2100;
    padding: 80px 30px;
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(3px);
}

.mobile-nav-active .mobile-nav-sidebar {
    right: 0;
}

.mobile-nav-active .mobile-overlay {
    opacity: 1;
    visibility: visible;
}

.sidebar-close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    background: #f5f5f5;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary-color);
    transition: var(--transition);
}

.sidebar-close-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    display: block;
    transition: var(--transition);
}

.mobile-nav-link:hover {
    padding-left: 10px;
    color: var(--secondary-color);
}

/* Sections */
.section-padding {
    padding: 100px 25px;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    gap: 50px;
    background-color: var(--accent-color);
}

.hero-content {
    flex: 1;
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.hero-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-desc {
    font-size: 18px;
    color: var(--light-text);
    margin-bottom: 35px;
}

.primary-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
}

.primary-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Feature Section (Why Us) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-box {
    padding: 40px;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 8px;
    transition: var(--transition);
}

.feature-box:hover {
    box-shadow: var(--shadow);
    border-color: var(--secondary-color);
}

.feature-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(197, 160, 89, 0.1);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 24px;
    margin-bottom: 20px;
}

/* Testimonials */
.testimonials-section {
    background: #1a1a1a;
    color: var(--white);
}

.testimonial-card {
    background: #2a2a2a;
    padding: 40px;
    border-radius: 8px;
    margin-top: 30px;
}

.testimonial-stars {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--secondary-color);
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    margin-top: 15px;
    color: var(--light-text);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Footer */
.footer-main {
    background: #fdfdfd;
    border-top: 1px solid #eee;
    padding: 80px 25px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-heading {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-item {
    margin-bottom: 15px;
}

.footer-anchor {
    text-decoration: none;
    color: var(--light-text);
    font-size: 14px;
    transition: var(--transition);
}

.footer-anchor:hover {
    color: var(--secondary-color);
}

.footer-info {
    font-size: 14px;
    color: var(--light-text);
    line-height: 1.8;
}

.footer-ad-disclaimer {
    text-align: center;
    font-size: 12px;
    color: #999;
    padding: 20px 0;
    border-top: 1px solid #eee;
    margin-top: 40px;
}

.footer-copyright {
    text-align: center;
    font-size: 12px;
    color: #bbb;
    margin-top: 10px;
}

/* Cookie Pop-up */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 350px;
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.15);
    z-index: 3000;
    display: none;
}

.cookie-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.cookie-desc {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 20px;
}

.cookie-btns {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    flex: 1;
    padding: 10px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-accept {
    background: var(--primary-color);
    color: var(--white);
}

.btn-reject {
    background: #eee;
    color: var(--text-color);
}

/* Modal Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 4000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background: var(--white);
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 8px;
    padding: 40px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .header-cta-btn {
        display: none;
    }

    .hamburger-toggle {
        display: flex;
    }

    .section-padding {
        padding: 60px 20px;
    }
}