:root {
    --color-primary-red: #E63946;
    --color-primary-orange: #F97517;
    --color-primary-orange-hover: #e56000;
    --color-white: #ffffff;
    --color-bg-light: #f8f9fa;
    --color-text-dark: #1d1d1f;
    --color-text-light: #6e6e73;
    --color-border: #d2d2d7;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

/* Resets & Utilities */
.body-reset {
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    color: var(--color-text-dark);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

.hidden {
    display: none !important;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary-orange), var(--color-primary-red));
    color: var(--color-white);
    box-shadow: 0 4px 10px rgba(249, 117, 23, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(249, 117, 23, 0.4);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--color-text-light);
    color: var(--color-text-dark);
}

.btn-secondary:hover {
    border-color: var(--color-text-dark);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

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

.page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

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

.loader-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary-orange);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--color-bg-light);
    border-top: 4px solid var(--color-primary-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

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

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Top Ad Bar */
.top-ad-bar {
    background-color: var(--color-bg-light);
    padding: 8px 0;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.ad-text {
    margin: 0;
}

/* Header */
.main-header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
}

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

.brand-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-primary-orange);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

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

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

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

/* Hero Section */
.hero-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--color-text-dark) 0%, var(--color-primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 30px;
    max-width: 90%;
}

.hero-btns {
    margin-bottom: 40px;
}

.trust-badges {
    display: flex;
    gap: 15px;
}

.badge {
    background-color: rgba(249, 117, 23, 0.1);
    color: var(--color-primary-orange);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--color-white);
}

.hero-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--color-text-dark);
}

.section-desc {
    color: var(--color-text-light);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* About Section */
.about-section {
    background-color: var(--color-bg-light);
}

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

.about-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.card-title {
    color: var(--color-primary-red);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Why Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: var(--color-white);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(249, 117, 23, 0.2);
}

.icon-wrapper {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-title {
    margin-bottom: 10px;
}

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

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

/* Light orange tint */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-text {
    font-style: italic;
    color: var(--color-text-dark);
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-primary-orange);
    text-align: right;
}

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

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

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

.faq-question:after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-primary-orange);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-text {
    padding-bottom: 20px;
    color: var(--color-text-light);
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

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

.footer-info {
    color: #a1a1a6;
    margin-bottom: 10px;
}

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

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

.footer-btn-link {
    background: none;
    border: none;
    color: #a1a1a6;
    padding: 0;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: underline;
    font-family: inherit;
    transition: var(--transition);
}

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

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

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

.footer-disclaimer-box {
    background-color: #2c2c2e;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    border-left: 4px solid var(--color-primary-orange);
}

.disclaimer-text {
    margin: 0;
    color: #d2d2d7;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #86868b;
    font-size: 0.9rem;
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    /* Start off-screen */
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    visibility: hidden;
    opacity: 0;
}

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

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    /* Requested 75% width */
    height: 100%;
    background-color: var(--color-white);
    padding: 30px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.brand-logo-mobile {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary-orange);
}

.close-menu-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--color-text-dark);
}

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

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

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

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: var(--shadow-lg);
    max-height: 80vh;
    overflow-y: auto;
}

.modal-content.hidden {
    display: none;
}

.modal-title {
    margin-top: 0;
    color: var(--color-primary-orange);
    margin-bottom: 20px;
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--color-text-light);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background-color: var(--color-white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 3000;
    border-left: 5px solid var(--color-primary-orange);
    display: none;
    /* Controlled by JS */
    animation: slideUp 0.5s ease;
}

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

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

.cookie-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

@keyframes slideUp {
    from {
        transform: translate(-50%, 100px);
        opacity: 0;
    }

    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

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

    .hamburger-menu {
        display: flex;
    }

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

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

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

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .about-content {
        grid-template-columns: 1fr;
    }

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