/* Global Variables */
:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #333333;
    --text-color: #1a1a1a;
    --light-gray: #f5f5f5;
    --font-family: 'Outfit', sans-serif;
    --container-width: 1200px;
    --spacing-unit: 1rem;
    --transition-speed: 0.3s;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
    color: var(--text-color);
    background-color: var(--secondary-color);
    line-height: 1.6;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

body.no-scroll {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    color: var(--primary-color);
}

p {
    margin-bottom: var(--spacing-unit);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

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

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

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

/* Utility Classes */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 1rem 2rem;
    border-radius: 2px;
    /* Slight rounded corners, almost sharp for premium feel */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--primary-color);
    transition: all var(--transition-speed);
}

.cta-button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

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

.loader-text {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.loader-bar {
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    animation: load 2s ease-in-out forwards;
}

@keyframes load {
    0% {
        width: 0;
    }

    100% {
        width: 200px;
    }
}

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

/* Top Disclaimer */
.top-disclaimer {
    background-color: var(--light-gray);
    color: #555;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.8rem;
    border-bottom: 1px solid #e0e0e0;
}

/* Header */
.site-header {
    background-color: var(--secondary-color);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
}

.desktop-nav .nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width var(--transition-speed);
}

.nav-link:hover::after {
    width: 100%;
}

.header-cta {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

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

.hamburger-menu span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    /* Start off-screen */
    width: 75%;
    /* 75% width per requirement */
    height: 100%;
    background-color: var(--secondary-color);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.mobile-nav-overlay.active {
    right: 0;
}

.close-menu {
    align-self: flex-end;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    padding: 4rem 0;
    background-color: var(--light-gray);
    overflow: hidden;
}

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

.hero-content {
    flex: 1;
    animation: fadeInLeft 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    animation: fadeInRight 1s ease-out;
}

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

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

/* About Section */
.about-section {
    padding: 6rem 0;
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-img {
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text p {
    font-size: 1.1rem;
    color: #444;
}

/* Why Us Section */
.why-us-section {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.why-us-image-centered {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.feature-large-img {
    max-width: 80%;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


/* Testimonials */
.testimonials-section {
    padding: 6rem 0;
}

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

.testimonial-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 4px;
    position: relative;
}

.stars {
    color: #f1c40f;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    color: #333;
}

.reviewer-name {
    margin-top: 1rem;
    font-weight: 700;
    text-align: right;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background-color: var(--secondary-color);
}

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

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #555;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-right: 2rem;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: #555;
}

/* Return Policy */
.return-policy-section {
    padding: 4rem 0;
    background-color: var(--light-gray);
    text-align: center;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Footer */
.site-footer {
    background-color: #111;
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column p,
.footer-column a {
    color: #aaa;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: #fff;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-disclaimer-container {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
}

.footer-disclaimer-text {
    font-size: 0.85rem;
    color: #888;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.5;
}

.copyright {
    color: #555;
    font-size: 0.8rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    display: none;
    /* Hidden by default, shown via JS */
    border-top: 1px solid #ddd;
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

.cookie-btn.reject {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

/* Modal Styles */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.6);
    /* Black w/ opacity */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 2.5rem;
    border: 1px solid #888;
    width: 90%;
    max-width: 700px;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    max-height: 85vh;
    display: flex;
    flex-direction: column;
}

.close-modal {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover,
.close-modal:focus {
    color: #000;
    text-decoration: none;
}

.modal-body-scroll {
    overflow-y: auto;
    margin-top: 1rem;
    padding-right: 1rem;
}

.modal h2 {
    margin-bottom: 0.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.modal h3 {
    margin-top: 1.5rem;
    font-size: 1.1rem;
}

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

/* Responsive Design */
@media (max-width: 900px) {
    .section-title {
        font-size: 2rem;
    }

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

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

    .hero-container {
        flex-direction: column-reverse;
        /* Image top on mobile if desired, or standard stack */
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {

    .desktop-nav,
    .header-cta {
        display: none;
        /* Hide desktop nav and button on mobile */
    }

    .hamburger-menu {
        display: flex;
        /* Show hamburger */
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-section {
        padding: 2rem 0;
    }

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

    /* Additional mobile adjustments */
    .about-image {
        order: -1;
        /* Image first on about section in mobile too? */
    }
}