/* Global Styles */
body {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fdfbf7;
    color: #333;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #2c2c2c;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    font-family: inherit;
}

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

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

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

.loader-text {
    font-size: 2rem;
    color: #e6c200;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.5;
    }
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Top Ad Bar */
.top-ad-bar {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9rem;
}

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

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e6c200;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.nav-list li a {
    font-weight: 500;
    color: #555;
    position: relative;
}

.nav-list li a:hover {
    color: #e6c200;
}

.cta-button {
    background-color: #e6c200;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

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

.header-cta {
    display: none;
    /* Show only on desktop via media query logic if needed, but standard usually shows */
}

@media (min-width: 769px) {
    .header-cta {
        display: inline-block;
    }

    .hamburger-menu {
        display: none;
    }
}

/* Mobile Menu */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.hamburger-menu .bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100%;
    background-color: #fff;
    z-index: 200;
    padding: 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

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

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

.mobile-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff9e6 0%, #fff 100%);
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-direction: column-reverse;
    /* Mobile first */
}

@media (min-width: 769px) {
    .hero-container {
        flex-direction: row;
    }
}

.hero-content {
    flex: 1;
    text-align: center;
}

@media (min-width: 769px) {
    .hero-content {
        text-align: left;
    }
}

.hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #222;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.hero-price {
    font-size: 2rem;
    font-weight: 700;
    color: #e6c200;
    margin-bottom: 30px;
}

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

.hero-image {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

/* Sections General */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #e6c200;
    margin: 15px auto 0;
    border-radius: 2px;
}

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

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-direction: column;
}

@media (min-width: 769px) {
    .about-content {
        flex-direction: row;
    }
}

.about-text {
    flex: 1;
    font-size: 1.1rem;
    color: #555;
}

.about-image {
    flex: 1;
}

.rounded-image {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Why Us Section */
.why-us-section {
    background-color: #fdfbf7;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 769px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

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

.icon-wrapper {
    color: #e6c200;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 769px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: #fdfbf7;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #eee;
    text-align: center;
}

.testimonial-text {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 700;
    color: #333;
}

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

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.faq-question:hover {
    background-color: #fff9e6;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #fff;
    padding: 0 15px;
    font-size: 0.95rem;
    color: #555;
}

.faq-answer.active {
    /* height handled by JS */
    display: block;
}

/* Close Menu Button */
.close-menu {
    color: #333;
    padding: 10px;
    transition: color 0.3s ease;
}

.close-menu:hover {
    color: #e6c200;
}

/* FooterStyles */
.footer {
    background-color: #222;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-ad-note {
    background-color: #333;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: center;
    font-size: 0.9rem;
    border: 1px solid #444;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 769px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-column h3 {
    color: #e6c200;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a,
.modal-trigger {
    color: #ccc;
    font-size: 0.95rem;
    background: none;
    border: none;
    padding: 0;
    text-align: left;
}

.footer-links a:hover,
.modal-trigger:hover {
    color: #e6c200;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #888;
    font-size: 0.85rem;
}

/* Cookie Popup */
.cookie-popup {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    max-width: 400px;
}

.cookie-content h3 {
    margin-top: 0;
    font-size: 1.2rem;
}

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

.cookie-btn {
    flex: 1;
    padding: 10px;
    border-radius: 5px;
    font-weight: 600;
}

.cookie-btn.accept {
    background-color: #e6c200;
    color: #fff;
}

.cookie-btn.reject {
    background-color: #eee;
    color: #333;
}

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

.modal.active {
    display: flex;
}

.modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #333;
}

/* Responsive Hide Desktop Nav */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
}