@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --primary-gold: #D4AF37;
    --primary-gold-light: #E5C76B;
    --dark-bg: #1a1a1a;
    --light-bg: #ffffff;
    --off-white: #f9f9f9;
    --text-main: #333333;
    --text-muted: #666666;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.main-wrapper {
    width: 100%;
    position: relative;
}

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

.loader-content {
    text-align: center;
}

.loader-text {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary-gold);
    letter-spacing: 5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: scale(0.95);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0.5;
        transform: scale(0.95);
    }
}

/* Advertisement Banner */
.top-ad-banner {
    background-color: #f1f1f1;
    color: #444;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.85rem;
    border-bottom: 1px solid #ddd;
}

.ad-banner-text {
    margin: 0;
    font-weight: 500;
}

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

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

.brand-logo {
    text-decoration: none;
    color: var(--text-main);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-accent {
    color: var(--primary-gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin-left: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-gold);
}

.header-cta-container {
    display: flex;
    align-items: center;
}

.cta-button {
    background-color: var(--primary-gold);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #b8952d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Mobile Hamburger */
.hamburger-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    height: 3px;
    width: 100%;
    background-color: var(--text-main);
    border-radius: 10px;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100%;
    background-color: var(--white);
    z-index: 2000;
    transition: 0.4s ease-in-out;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    padding: 80px 40px;
}

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

.close-mobile-nav {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-main);
}

.mobile-menu {
    list-style: none;
    padding: 0;
}

.mobile-nav-item {
    margin-bottom: 25px;
}

.mobile-nav-link {
    text-decoration: none;
    color: var(--text-main);
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    padding: 100px 20px;
    background-color: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: fadeInLeft 1s ease-out;
}

.hero-badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--dark-bg);
}

.hero-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-image-container {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

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

/* Common Section Styles */
.section-padding {
    padding: 100px 20px;
}

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

.section-title-container {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark-bg);
}

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

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #eee;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--primary-gold-light);
}

.feature-icon-container {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.feature-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-card-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* About Us Section */
.about-section {
    background-color: var(--off-white);
}

.about-content-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-image {
    flex: 1;
}

/* Modal System */
.legal-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 6000;
    padding: 20px;
}

.legal-modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: modalSlideUp 0.4s ease-out;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2.5rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary-gold);
}

.modal-body {
    margin-top: 30px;
    color: var(--text-main);
    line-height: 2;
    font-size: 1.1rem;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive modal padding */
@media (max-width: 768px) {
    .modal-content {
        padding: 30px;
    }
}

.about-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.about-text {
    flex: 1;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-stars {
    color: #ffcc00;
    margin-bottom: 15px;
}

.testimonial-quote {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 20px;
    font-size: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-bg);
}

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

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

.faq-question {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.faq-icon::after {
    content: '+';
    font-size: 1.5rem;
}

.faq-item.active .faq-icon::after {
    content: '-';
}

/* Cookies Modal */
.cookie-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: var(--white);
    padding: 25px 40px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
    z-index: 5000;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 5px solid var(--primary-gold);
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
}

.cookie-popup.active {
    visibility: visible;
    opacity: 1;
}

.cookie-text {
    font-size: 0.95rem;
    color: var(--text-main);
    max-width: 70%;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn-reject {
    background: transparent;
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

/* Footer */
.main-footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 80px 20px 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}

.footer-brand .logo-text {
    color: var(--white);
    margin-bottom: 20px;
    display: block;
}

.footer-desc {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 25px;
}

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

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

.footer-link {
    color: #999;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-link:hover {
    color: var(--primary-gold);
}

.footer-contact-info {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-ad-note {
    grid-column: 1 / -1;
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-top: 40px;
    font-size: 0.85rem;
    color: #777;
}

.footer-bottom {
    grid-column: 1 / -1;
    border-top: 1px solid #333;
    padding-top: 30px;
    margin-top: 30px;
    text-align: center;
    color: #666;
    font-size: 0.85rem;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .header-container {
        padding: 15px;
    }

    .nav-menu,
    .header-cta-container .cta-button {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hamburger-toggle {
        display: flex;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .about-content-wrapper {
        flex-direction: column;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .cookie-popup {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cookie-text {
        max-width: 100%;
    }
}