:root {
    --primary-color: #ff9d00;
    --primary-hover: #e68a00;
    --secondary-color: #0f172a;
    --accent-color: #22c55e;
    --text-color: #1e293b;
    --text-light: #64748b;
    --bg-light: #ffffff;
    --bg-alt: #f8fafc;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
    --max-width: 1200px;
}

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

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

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

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

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

.loader-text {
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
}

/* Advertisement Bar */
.top-ad-bar {
    background-color: #fffbeb;
    padding: 10px 20px;
    text-align: center;
    border-bottom: 1px solid #fde68a;
}

.top-ad-text {
    margin: 0;
    font-size: 0.9rem;
    color: #92400e;
    font-weight: 500;
}

/* Header */
.main-header {
    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
}

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

.desktop-nav {
    display: block;
}

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

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

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

.cta-button {
    text-decoration: none;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.cta-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 157, 0, 0.4);
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger-bar {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
}

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

.mobile-nav-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 100%;
    background: var(--white);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
}

.hamburger-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--secondary-color);
}

.mobile-logo {
    margin-bottom: 40px;
}

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

.mobile-nav-link {
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
}

/* Main Content */
.main-content {
    width: 100%;
}

.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
    overflow: hidden;
}

.hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 50px;
}

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

.hero-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.hero-image-wrapper {
    flex: 1;
}

.hero-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Features */
.features-section {
    padding: 100px 0;
}

.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--secondary-color);
}

.section-title.left-align {
    text-align: left;
}

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

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-icon-box {
    margin-bottom: 25px;
    height: 150px;
    overflow: hidden;
    border-radius: 12px;
}

.feature-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card-title {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.feature-card-text {
    color: var(--text-light);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--bg-alt);
}

.about-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image-wrapper {
    flex: 1;
}

.about-img {
    width: 100%;
    border-radius: 24px;
}

.about-text-content {
    flex: 1;
}

.about-text {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-light);
}

.secondary-button {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    transition: var(--transition);
}

.secondary-button:hover {
    color: var(--primary-hover);
    gap: 12px;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
}

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

.testimonial-card {
    background: #f1f5f9;
    padding: 40px;
    border-radius: 20px;
    position: relative;
}

.testimonial-quote {
    font-style: italic;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

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

.testimonial-rating {
    color: #fbbf24;
    font-size: 1.2rem;
}

/* FAQ */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-alt);
}

.faq-wrapper {
    max-width: 800px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    color: var(--secondary-color);
    transition: var(--transition);
}

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

.faq-toggle {
    font-size: 20px;
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-out;
}

.faq-answer.show {
    padding-bottom: 25px;
    max-height: 500px;
}

/* Footer */
.main-footer {
    background: var(--secondary-color);
    color: #cbd5e1;
    padding: 80px 0 20px;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

.footer-heading {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-about-text {
    margin-bottom: 20px;
}

.contact-item {
    margin-bottom: 10px;
}

.footer-ad-note {
    border-top: 1px solid #334155;
    padding: 40px 0;
    text-align: center;
}

.ad-text-bottom {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: #94a3b8;
}

.consumer-notice {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
    text-align: center;
}

.copyright {
    font-size: 0.85rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 20px;
    right: 20px;
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
    z-index: 3000;
    transition: all 0.5s ease;
    max-width: 500px;
    margin: 0 auto;
}

.cookie-popup.active {
    bottom: 30px;
}

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

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

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

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

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

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

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

.modal.active {
    display: flex;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .about-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .desktop-nav, .header-cta {
        display: none;
    }
    .hamburger-menu {
        display: flex;
    }
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .about-grid {
        flex-direction: column;
    }
    .about-text-content {
        order: -1;
    }
    .section-title.left-align {
        text-align: center;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
