/* CSS Variables & Reset */
:root {
    --primary-color: #FF5500;
    /* Vivid Orange from source */
    --primary-dark: #CC4400;
    --text-color: #000000;
    --text-light: #4A4A4A;
    --bg-color: #FFFFFF;
    --bg-secondary: #F5F5F7;
    --border-color: #E5E5E5;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
    --max-width: 1200px;
}

/* Global Reset handled via classes where possible, minimal reset for box-sizing */
.box-sizing-border {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Base Utilities replacing direct selectors */
.link-base {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.list-reset {
    list-style: none;
}

.img-fluid {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */
/* Typography Utilities */
.heading-style {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-color);
}

.section-time-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.logo-text {
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Ad Disclaimer Top */
.ad-disclaimer-top {
    background-color: #f1f1f1;
    color: #555;
    font-size: 11px;
    text-align: center;
    padding: 8px 0;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1001;
}

/* Header */
.main-header {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.cta-button {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.2s ease, background 0.2s ease;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #000;
    transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    /* Hidden by default */
    width: 75%;
    /* Requested 75% width */
    height: 100%;
    background: #fff;
    z-index: 2000;
    transition: right 0.4s ease;
    padding: 40px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.close-menu-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #000;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
}

.mobile-nav-link {
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    color: inherit;
}

.mobile-cta {
    margin-top: 30px;
    width: 100%;
    text-align: center;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-secondary);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    order: 1;
}

.hero-image-wrapper {
    order: 2;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-img {
    position: relative;
    z-index: 2;
    transform: rotate(-15deg);
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover .hero-img {
    transform: rotate(-5deg) scale(1.05);
}

.hero-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
    border-radius: 50%;
    z-index: 1;
}

.eyebrow {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-color);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 90%;
}

/* General Sections */
.section {
    padding: 80px 0;
}

.center-text {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.section-line {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto;
    border-radius: 2px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-heading {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.about-paragraph {
    margin-bottom: 20px;
    color: var(--text-light);
}

.feature-img {
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Why Us */
.why-us-section {
    background-color: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 85, 0, 0.1);
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.icon-box svg {
    width: 30px;
    height: 30px;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Testimonials */
.testimonials-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 10px;
}

.quote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.stars {
    color: #FFB800;
}

/* FAQ */
.faq-section {
    background-color: #fff;
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 10px;
}

.accordion-btn {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 0;
    font-size: 1.2rem;
    font-weight: 500;
    font-family: var(--font-heading);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-btn::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.accordion-btn.active::after {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--text-light);
}

.accordion-text {
    padding-bottom: 20px;
}

/* Footer */
.main-footer {
    background-color: #111;
    color: #fff;
    padding-top: 0;
}

.footer-ad-note {
    background-color: #222;
    padding: 15px 0;
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 60px 15px;
}

.footer-heading {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-list-item {
    margin-bottom: 12px;
    color: #bbb;
    font-size: 0.95rem;
}

.footer-link-item:hover {
    color: var(--primary-color);
}

.contact-link-item {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-link-item:hover,
.footer-link-item:hover {
    color: var(--primary-color);
}

.consumer-notice {
    padding: 20px 0;
    background-color: #000;
    border-top: 1px solid #333;
    font-size: 0.8rem;
    text-align: center;
    color: #888;
}

.footer-bottom {
    background-color: #000;
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    border-top: 1px solid #1a1a1a;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 999;
    transition: bottom 0.5s ease;
    border-top: 2px solid var(--primary-color);
}

.cookie-popup.show {
    bottom: 0;
}

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.btn-reject {
    background: #eee;
    color: #333;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
}

/* Responsiveness */
@media (max-width: 900px) {

    .desktop-nav,
    .header-cta {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-image-wrapper {
        order: 1;
        margin-bottom: 30px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}