/* Reset and Base Styles */
body,
html,
div,
ul,
li,
a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
span,
button,
img,
section,
header,
footer,
nav,
input,
label {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

.page-body {
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

.loader-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #D32F2F;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #D32F2F;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

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

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

/* Advertisement Note Top */
.ad-note-top {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.ad-text {
    font-size: 0.8rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Header */
.site-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #D32F2F;
    /* Premium Red */
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(45deg, #D32F2F, #B71C1C);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.desktop-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333333;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.nav-link:hover {
    color: #D32F2F;
}

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

.cta-button {
    background-color: #D32F2F;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, background-color 0.2s ease;
    display: inline-block;
    border: none;
}

.cta-button:hover {
    background-color: #B71C1C;
    transform: translateY(-2px);
}

.hamburger-btn {
    display: none;
    /* Hidden on desktop */
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #333333;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    /* Hidden by default */
    width: 75%;
    height: 100%;
    background-color: #ffffff;
    z-index: 9999;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}

.close-menu-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #333333;
}

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

.mobile-nav-link {
    font-size: 1.2rem;
    color: #333333;
    text-decoration: none;
    font-weight: 500;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-badge {
    background-color: #FFC107;
    color: #333333;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #212121;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #555555;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-cta-wrapper {
    margin-bottom: 30px;
}

.hero-features-list {
    display: flex;
    gap: 20px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #555555;
}

.feature-icon {
    color: #4CAF50;
    font-weight: bold;
}

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

.hero-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.02);
}

/* Section Common */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #212121;
}

.title-underline {
    width: 60px;
    height: 3px;
    background-color: #D32F2F;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background-color: #ffffff;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 1.1rem;
    color: #555555;
    margin-bottom: 20px;
}

/* Features Section */
.features-section {
    background-color: #f9f9f9;
}

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

.feature-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333333;
}

.card-text {
    color: #666666;
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials-section {
    background-color: #ffffff;
}

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

.testimonial-card {
    background-color: #fff;
    border: 1px solid #eee;
    padding: 40px;
    border-radius: 10px;
}

.testimonial-stars {
    color: #FFC107;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    color: #555555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.author-name {
    display: block;
    font-weight: 700;
    color: #333333;
}

.author-role {
    font-size: 0.85rem;
    color: #888888;
}

/* FAQ */
.faq-section {
    background-color: #f9f9f9;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.faq-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.faq-question {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #212121;
}

.faq-answer {
    color: #555555;
}

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #333333;
}

.footer-heading {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links-list,
.footer-contact-list {
    list-style: none;
}

.contact-item,
.footer-link-item {
    margin-bottom: 15px;
    color: #aaaaaa;
    font-size: 0.95rem;
}

.footer-link,
.legal-text {
    color: #aaaaaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
}

.mt-small {
    margin-top: 20px;
}

.legal-text {
    margin-bottom: 5px;
    display: block;
}

.footer-disclaimer-section {
    padding: 30px 0;
    text-align: center;
    background-color: #111111;
}

.disclaimer-text {
    color: #777777;
    font-size: 0.85rem;
    max-width: 800px;
    margin: 0 auto 15px;
}



.footer-bottom {
    background-color: #000000;
    padding: 20px 0;
    text-align: center;
}

.copyright-text {
    color: #555555;
    font-size: 0.85rem;
}

/* Cookie Popup */
.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
}

.cookie-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 400px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-popup.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.cookie-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333333;
}

.cookie-text {
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 20px;
}

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

.cookie-btn {
    flex: 1;
    padding: 10px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.accept-btn {
    background-color: #D32F2F;
    color: #ffffff;
}

.reject-btn {
    background-color: #f1f1f1;
    color: #333333;
}

.cookie-btn:hover {
    opacity: 0.9;
}

/* Legal Modals */
.legal-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.legal-modal-backdrop.show {
    display: block;
    opacity: 1;
}

.legal-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    background-color: #ffffff;
    border-radius: 10px;
    z-index: 10002;
    padding: 40px;
    overflow-y: auto;
    display: none;
    opacity: 0;
    transition: all 0.3s ease;
}

.legal-modal.show {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.close-modal-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #aaaaaa;
}

.modal-content.injected-content {
    font-size: 0.95rem;
    color: #444;
}

.modal-content.injected-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #212121;
}

.modal-content.injected-content p {
    margin-bottom: 15px;
}

/* Media Queries */
@media (max-width: 992px) {
    .header-container {
        padding: 0 20px;
    }

    .desktop-nav,
    .header-actions {
        display: none;
    }

    .mobile-cta {
        display: block;
        text-align: center;
        margin-top: 10px;
        width: 100%;
    }

    .hamburger-btn {
        display: flex;
    }

    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 40px;
    }

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

    .hero-subtitle {
        margin: 0 auto 30px;
    }

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

    .hero-features-list {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .feature-card,
    .testimonial-card {
        padding: 25px;
    }
}