/* Variables for Theme Colors */
:root {
    --color-navy: #001f3f;
    --color-navy-dark: #001226;
    --color-red: #D91E18;
    --color-red-hover: #b91914;
    --color-black: #111111;
    --color-white: #ffffff;
    --color-gray-light: #f4f4f4;
    --color-gray-dark: #333333;
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Reset - Avoiding * selector as requested, targeting main elements */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}

/* Base Styles */
.page-body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-black);
    background-color: var(--color-white);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-navy);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.loader-content {
    text-align: center;
}

.loader-text {
    color: var(--color-white);
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.circle-animation {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top: 5px solid var(--color-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Top Ad Disclaimer */
.ad-disclaimer-bar {
    background-color: var(--color-gray-light);
    text-align: center;
    padding: 8px 0;
    font-size: 0.85rem;
    color: var(--color-gray-dark);
    border-bottom: 1px solid #ddd;
}

/* Header */
.main-header {
    background-color: var(--color-navy);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    color: var(--color-white);
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.nav-link:hover {
    color: var(--color-red);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-shop-now {
    background-color: var(--color-red);
    color: var(--color-white);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s;
}

.btn-shop-now:hover {
    background-color: var(--color-red-hover);
    transform: translateY(-2px);
}

.hamburger-menu {
    display: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden by default */
    width: 75%;
    height: 100vh;
    background-color: var(--color-navy-dark);
    z-index: 2000;
    transition: right 0.4s ease-in-out;
    padding: 20px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.5);
}

.mobile-nav-overlay.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
}

.mobile-logo {
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: bold;
}

.close-icon {
    color: var(--color-red);
    font-size: 2rem;
    cursor: pointer;
}

.mobile-nav-list {
    list-style: none;
}

.mobile-nav-item {
    margin-bottom: 20px;
}

.mobile-nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.2rem;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Hero Section */
.hero-section {
    background-color: var(--color-gray-light);
    padding: 80px 0;
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.hero-heading {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subheading {
    font-size: 1.2rem;
    color: var(--color-gray-dark);
    margin-bottom: 30px;
}

.btn-hero-cta {
    display: inline-block;
    background-color: var(--color-red);
    color: var(--color-white);
    padding: 15px 35px;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(217, 30, 24, 0.4);
    transition: all 0.3s ease;
}

.btn-hero-cta:hover {
    background-color: var(--color-red-hover);
    transform: scale(1.05);
}

.hero-image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: rotate(-10deg); /* Slight styling for dynamic look */
    transition: transform 0.5s ease;
}

.hero-img:hover {
    transform: rotate(0deg) scale(1.02);
}

/* Common Section Styles */
.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--color-navy);
    margin-bottom: 50px;
    font-weight: 700;
}

/* About Section */
.about-section {
    background-color: var(--color-white);
}

.section-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-gray-dark);
}

/* Why Us Section */
.why-us-section {
    background-color: var(--color-gray-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature-card {
    background: var(--color-white);
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--color-navy);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--color-black);
}

/* Testimonials */
.testimonials-section {
    background-color: var(--color-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 10px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.customer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.customer-name {
    font-weight: bold;
    color: var(--color-navy);
}

.testimonial-text {
    font-style: italic;
    color: var(--color-gray-dark);
}

/* FAQ */
.faq-section {
    background-color: var(--color-navy);
}

.faq-section .section-title {
    color: var(--color-white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: rgba(255,255,255,0.1);
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 5px;
}

.faq-question {
    color: var(--color-white);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.faq-answer {
    color: #ccc;
}

/* Footer */
.main-footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-heading {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--color-red);
}

.footer-text {
    margin-bottom: 10px;
    color: #bbb;
}

.footer-links {
    list-style: none;
}

.footer-link {
    color: #bbb;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--color-white);
}

.footer-btn-link {
    background: none;
    border: none;
    color: #bbb;
    text-decoration: underline;
    cursor: pointer;
    font-size: 1rem;
    padding: 0;
    margin-bottom: 10px;
    display: block;
    font-family: inherit;
}

.footer-btn-link:hover {
    color: var(--color-white);
}

.footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-bottom: 20px;
}

.disclaimer-text {
    font-size: 0.8rem;
    color: #777;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    color: #666;
}

/* Modals */
.modal-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 5000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
    animation: fadeIn 0.4s;
}

.modal-content {
    background-color: var(--color-white);
    margin: 10% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
}

.modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.modal-close:hover {
    color: var(--color-black);
}

.modal-title {
    color: var(--color-navy);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--color-red);
    padding-bottom: 10px;
    display: inline-block;
}

.modal-body {
    max-height: 60vh;
    overflow-y: auto;
    font-size: 0.9rem;
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: var(--color-white);
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    padding: 20px;
    border-radius: 10px;
    z-index: 9990;
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
    border-left: 5px solid var(--color-red);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-text {
    flex: 1;
    min-width: 200px;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-cookie-accept {
    background-color: var(--color-navy);
    color: var(--color-white);
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
}

.btn-cookie-reject {
    background-color: #ddd;
    color: var(--color-black);
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .hero-heading {
        font-size: 2.5rem;
    }

    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-top: 40px;
    }
    
    .hero-image-wrapper {
        width: 100%;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cookie-popup {
        flex-direction: column;
    }
}