/* --- Variables & Reset --- */
:root {
    --primary-blue: #000080; /* Navy Blue */
    --accent-red: #D32F2F;   /* Red */
    --text-black: #1a1a1a;   /* Black */
    --bg-white: #ffffff;
    --bg-light-gray: #f4f4f4;
    --text-white: #ffffff;
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --transition: all 0.3s ease;
}

/* Avoid * selector, target generic elements */
html {
    scroll-behavior: smooth;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    color: var(--text-black);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-shop, .btn-primary {
    background-color: var(--accent-red);
    color: var(--text-white);
}

.btn-shop:hover, .btn-primary:hover {
    background-color: #b71c1c;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #555;
    color: var(--text-white);
}

.btn-secondary:hover {
    background-color: #333;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-blue);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-red);
    margin: 15px auto 0;
}

.hidden {
    display: none !important;
}

/* --- Loader --- */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-content {
    text-align: center;
    color: var(--text-white);
}

.circle-animation {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255,255,255,0.3);
    border-top: 5px solid var(--accent-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* --- Top Advertisement --- */
.top-disclosure {
    background-color: #eee;
    color: #555;
    font-size: 0.8rem;
    text-align: center;
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}

.top-disclosure p {
    margin: 0;
}

/* --- Header --- */
.main-header {
    background-color: var(--primary-blue);
    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-text {
    color: var(--text-white);
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 1px;
}

.desktop-nav .nav-list {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.desktop-nav .nav-item {
    margin: 0 15px;
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-red);
}

.header-actions {
    display: flex;
    align-items: center;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    margin-left: 15px;
    flex-direction: column;
    justify-content: space-between;
    height: 20px;
    width: 25px;
}

.bar {
    height: 3px;
    width: 100%;
    background-color: var(--text-white);
    border-radius: 2px;
}

/* --- Mobile Nav --- */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%; /* Start off-screen */
    width: 75%; /* 75% width as requested */
    height: 100vh;
    background-color: var(--bg-white);
    z-index: 2000;
    transition: right 0.3s ease-in-out;
    box-shadow: -2px 0 10px rgba(0,0,0,0.2);
}

.mobile-nav-overlay.active {
    right: 0;
}

.mobile-nav-content {
    padding: 30px;
    position: relative;
}

.close-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-black);
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin-top: 50px;
}

.mobile-nav-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.mobile-link {
    text-decoration: none;
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
}

/* --- Hero Section --- */
.hero-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.hero-heading {
    font-size: 3.5rem;
    color: var(--primary-blue);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subheading {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.btn-cta {
    background-color: var(--text-black);
    color: var(--text-white);
    padding: 15px 35px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta:hover {
    background-color: var(--accent-red);
    transform: scale(1.05);
}

.hero-image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: flex-end;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.hero-img:hover {
    transform: translateY(-5px);
}

/* --- About & Why Us --- */
.about-section {
    background-color: var(--bg-white);
}

.about-text-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-light-gray);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    background: #e8e8e8;
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

/* --- Testimonials --- */
.testimonials-section {
    background-color: #f0f4f8; /* Light blue tint */
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.client-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.client-review {
    font-style: italic;
    color: #555;
}

/* --- FAQs --- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid #ddd;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 5px;
}

.faq-question {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* --- Footer --- */
.main-footer {
    background-color: #111;
    color: #ddd;
    padding: 60px 0 20px;
    font-size: 0.9rem;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-heading {
    color: var(--text-white);
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a, .footer-btn {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
    background: none;
    border: none;
    padding: 0;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
}

.footer-links a:hover, .footer-btn:hover {
    color: var(--accent-red);
}

.footer-text a {
    color: #ddd;
}

.footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-bottom: 20px;
    color: #777;
    font-size: 0.8rem;
    text-align: center;
}

.footer-copyright {
    text-align: center;
    color: #555;
}

/* --- Modals --- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3000;
}

.modal-content {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: var(--bg-white);
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    padding: 20px;
    border-radius: 8px;
    z-index: 2500;
    max-width: 400px;
    border-left: 5px solid var(--primary-blue);
}

.cookie-buttons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

/* --- Responsive Media Queries --- */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .hero-heading {
        font-size: 2.5rem;
    }

    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-text {
        padding-right: 0;
        margin-top: 30px;
    }

    .hero-image-wrapper {
        justify-content: center;
    }
}