/* Core Setup & Resets using classes only */
.html-document {
    scroll-behavior: smooth;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.body-container {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Color Palette Classes */
.header-navy-bg { background-color: #0B203E; }
.text-navy { color: #0B203E; }
.bg-warm-orange { background-color: #E57332; }
.text-warm-orange { color: #E57332; }
.bg-soft-blue { background-color: #DDEBF7; }
.text-soft-blue { color: #8BA9C6; }
.bg-burgundy { background-color: #800020; }
.text-burgundy { color: #800020; }
.bg-dark-grey { background-color: #333333; }
.text-dark-grey { color: #333333; }
.bg-white { background-color: #FFFFFF; }
.text-white { color: #FFFFFF; }

/* Animated Background */
.animated-background {
    background: linear-gradient(135deg, #F9F9F9, #DDEBF7, #EAEAEA);
    background-size: 300% 300%;
    animation: gradientMove 12s ease infinite;
}
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Page Loader */
.loader-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #0B203E;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}
.loader-spinner {
    width: 70px;
    height: 70px;
    border: 6px solid #DDEBF7;
    border-top: 6px solid #E57332;
    border-radius: 50%;
    animation: spinLoader 1s linear infinite;
}
.loader-text {
    margin-top: 25px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFFFFF;
}
@keyframes spinLoader {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Ad Banner */
.ad-banner {
    background-color: #E0E0E0;
    text-align: center;
    padding: 10px 15px;
}
.ad-banner-text {
    font-size: 0.85rem;
    color: #555555;
    font-weight: 500;
}

/* Header & Nav */
.main-header {
    padding: 15px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-brand-name {
    color: #FFFFFF;
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 1px;
    display: inline-block;
}
.animated-logo-text {
    animation: textGlow 2.5s infinite alternate;
}
@keyframes textGlow {
    0% { text-shadow: 0 0 5px rgba(229, 115, 50, 0.4); }
    100% { text-shadow: 0 0 20px rgba(229, 115, 50, 0.9); }
}

/* Desktop Menu */
.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s;
}
.nav-link:hover { color: #E57332; }
.btn-cta-nav {
    color: #FFFFFF;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.3s, background-color 0.3s;
}
.btn-cta-nav:hover {
    background-color: #CC652B;
    transform: scale(1.05);
}

/* Mobile Hamburger Buttons */
.btn-hamburger, .btn-close {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.icon-hamburger, .icon-close {
    color: #FFFFFF;
    font-size: 2.5rem;
}

/* Hero Section (Image Left, Text Right) */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 5%;
    min-height: 70vh;
}
.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    padding-right: 40px;
}
.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.img-float-animation {
    animation: floatLeft 4s ease-in-out infinite;
}
@keyframes floatLeft {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}
.hero-text-wrapper {
    flex: 1;
}
.hero-headline {
    font-size: 4rem;
    margin: 0 0 20px 0;
    line-height: 1.15;
}
.hero-subheadline {
    font-size: 1.5rem;
    margin: 0 0 40px 0;
    line-height: 1.6;
}
.btn-cta-main {
    color: #FFFFFF;
    padding: 18px 40px;
    text-decoration: none;
    font-size: 1.3rem;
    border-radius: 8px;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}
.btn-cta-main:hover {
    background-color: #660019;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(128, 0, 32, 0.4);
}

/* Generic Sections */
.content-section {
    padding: 80px 5%;
    text-align: center;
}
.section-headline {
    font-size: 2.8rem;
    margin: 0 0 30px 0;
}
.section-description {
    font-size: 1.3rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Card Grids */
.card-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}
.feature-card, .testimonial-card {
    padding: 40px 30px;
    border-radius: 10px;
    width: 320px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}
.feature-card:hover, .testimonial-card:hover {
    transform: translateY(-10px);
}
.feature-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}
.card-headline {
    margin: 0 0 15px 0;
    font-size: 1.5rem;
}
.card-text, .testimonial-quote {
    margin: 0;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Testimonials Details */
.avatar-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 20px auto;
}
.testimonial-author {
    display: block;
    margin-top: 20px;
    font-weight: bold;
    font-size: 1.1rem;
}

/* FAQs Setup */
.faq-wrapper {
    max-width: 900px;
    margin: 40px auto 0 auto;
    text-align: left;
}
.faq-item {
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 6px solid #E57332;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.faq-title {
    margin: 0 0 15px 0;
    font-size: 1.3rem;
}
.faq-content {
    margin: 0;
    line-height: 1.6;
}

/* Footer Section */
.main-footer {
    padding: 60px 5% 30px 5%;
}
.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-column {
    flex: 1;
    min-width: 250px;
}
.footer-title {
    margin: 0 0 25px 0;
    font-size: 1.4rem;
}
.footer-paragraph {
    margin: 0 0 12px 0;
    font-size: 1rem;
}
.footer-link-mail, .footer-nav-link {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-link-mail:hover, .footer-nav-link:hover { color: #E57332; }
.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-nav-item { margin-bottom: 12px; }
.btn-footer-legal {
    background: none;
    border: none;
    color: #FFFFFF;
    text-decoration: underline;
    cursor: pointer;
    font-size: 1rem;
    padding: 0;
    margin-bottom: 15px;
    transition: color 0.3s;
}
.btn-footer-legal:hover { color: #E57332; }
.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #555555;
}
.footer-disclaimer {
    font-size: 0.85rem;
    margin: 0 0 15px 0;
    font-weight: bold;
}
.footer-copyright {
    margin: 0;
}

/* Modals System */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(11, 32, 62, 0.85);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}
.modal-box {
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.btn-modal-close {
    position: absolute;
    top: 15px; right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #333333;
}
.modal-headline { margin: 0 0 25px 0; font-size: 2rem; }
.modal-text { margin: 0 0 15px 0; line-height: 1.6; }

/* Cookie Banner Setup */
.cookie-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    padding: 25px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1500;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
}
.cookie-text { margin: 0; flex: 1; padding-right: 30px; font-weight: 500; }
.cookie-btn-group { display: flex; gap: 15px; }
.btn-cookie-primary {
    color: #FFFFFF;
    border: none;
    padding: 12px 25px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}
.btn-cookie-primary:hover { background-color: #CC652B; }
.btn-cookie-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    padding: 12px 25px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
}
.btn-cookie-secondary:hover {
    background-color: #FFFFFF;
    color: #0B203E;
}

/* Mobile Responsiveness (Includes 75% Hamburger logic) */
@media (max-width: 950px) {
    .btn-hamburger { display: block; }
    .btn-close { display: block; align-self: flex-end; margin: 25px 25px 0 0; }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%; /* EXACTLY 75% width per instructions */
        height: 100vh;
        flex-direction: column;
        transition: right 0.4s ease-in-out;
        z-index: 1100;
        box-shadow: -10px 0 30px rgba(0,0,0,0.4);
    }
    .nav-menu.is-active { right: 0; }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
        width: 100%;
        box-sizing: border-box;
    }
    .nav-list-item { margin-bottom: 25px; width: 100%; }
    
    /* Hero Adjustments for Mobile */
    .hero-section {
        flex-direction: column-reverse; /* Puts image below text on mobile for better UX, or keep it */
        text-align: center;
        padding-top: 40px;
    }
    .hero-image-wrapper { padding-right: 0; margin-top: 40px; justify-content: center; }
    .hero-text-wrapper { padding-right: 0; }
    .hero-headline { font-size: 3rem; }
    
    .cookie-bar {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .cookie-text { padding-right: 0; }
}


/* --- ADD THESE NEW LINES --- */
.btn-warm-orange {
    background-color: #E57332;
    color: #FFFFFF;
    border: none;
}

.btn-burgundy {
    background-color: #800020;
    color: #FFFFFF;
    border: none;
}
/* --------------------------- */