/* style.css */
/* For lifecoverfast.info */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* --- Root Variables --- */
:root {
    --primary-color: #005A9C; /* Professional Blue */
    --secondary-color: #3D85C6; /* Lighter Blue */
    --accent-color: #4CAF50; /* Action Green */
    --cta-color: #FF9800; /* Bright Orange CTA */
    --text-color: #333;
    --light-gray-bg: #f4f7f6;
    --white-color: #ffffff;
    --footer-bg: #2d3748;
    --footer-text: #a0aec0;
    --border-radius: 8px;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* --- General Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white-color);
}

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

h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

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

/* --- Header & Navigation --- */
.site-header {
    background: var(--white-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    max-height: 50px;
}

.main-nav {
    display: flex;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

.main-nav li {
    margin-left: 2rem;
}

.main-nav a {
    font-weight: 600;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    font-size: 2rem;
    color: var(--primary-color);
}

/* --- Footer --- */
.site-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 3rem 1.5rem;
    font-size: 0.9rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h4 {
    color: var(--white-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-col p, .footer-col a {
    color: var(--footer-text);
    margin-bottom: 0.5rem;
}

.footer-col a:hover {
    color: var(--white-color);
}

.footer-col ul {
    list-style: none;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #4a5568;
    font-size: 0.8rem;
}

.disclaimer {
    font-style: italic;
    font-size: 0.85rem;
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(to right, rgba(0, 90, 156, 0.8), rgba(61, 133, 198, 0.8)), url('https://placehold.co/1920x1080/DEE2E6/DEE2E6') no-repeat center center/cover;
    color: var(--white-color);
    padding: 6rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    color: var(--white-color);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius);
    background-color: var(--cta-color);
    color: var(--white-color);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: var(--box-shadow);
}

.btn:hover {
    background-color: #e68900;
    transform: translateY(-3px);
    color: var(--white-color);
}

/* --- Services Section --- */
.services-section {
    padding: 4rem 0;
    text-align: center;
    background-color: var(--light-gray-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    text-align: left;
}

.service-card {
    background: var(--white-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card .icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

/* --- Generic Page Content --- */
.page-content {
    padding: 4rem 0;
    min-height: 60vh;
}

.page-content h1 {
    text-align: center;
    margin-bottom: 3rem;
}

.page-content h2 {
    margin-top: 2rem;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.5rem;
}

.page-content p, .page-content ul, .page-content li {
    font-size: 1rem;
    color: #555;
}

.page-content ul {
    list-style-position: inside;
    padding-left: 1rem;
}

/* --- Contact Page Specific --- */
.contact-info {
    text-align: center;
    font-size: 1.2rem;
}
.contact-info i {
    color: var(--accent-color);
    margin-right: 10px;
}

/* --- Affiliate Landing Page --- */
.affiliate-hero {
    position: relative;
    padding: 8rem 0;
    color: var(--white-color);
    text-align: center;
    background-size: cover;
    background-position: center;
}

.affiliate-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
}

.affiliate-hero .container {
    position: relative;
    z-index: 2;
}

.affiliate-hero h1 {
    font-size: 3.5rem;
    color: var(--white-color);
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.affiliate-hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.affiliate-hero .btn-cta {
    background-color: var(--accent-color);
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    transform: scale(1.05);
}

.affiliate-hero .btn-cta:hover {
    background-color: #45a049;
    transform: scale(1.1) translateY(-3px);
}

.reviews-section {
    padding: 4rem 0;
    background-color: var(--light-gray-bg);
}

.reviews-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.review-card {
    background: var(--white-color);
    padding: 2rem;
    border-left: 5px solid var(--secondary-color);
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
}

.review-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
}

.review-author {
    display: flex;
    align-items: center;
}

.review-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.review-author-name {
    font-weight: 600;
    color: var(--primary-color);
}

.review-stars {
    color: #ffc107; /* Gold */
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%; /* Start off-screen */
        width: 70%;
        height: 100vh;
        background: var(--white-color);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        transition: right 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        padding-top: 6rem;
    }

    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        width: 100%;
    }

    .main-nav li {
        margin: 1.5rem 0;
        width: 100%;
        text-align: center;
    }
    
    .main-nav a {
        font-size: 1.2rem;
    }

    .hamburger-menu {
        display: block;
        z-index: 1001; /* Keep it above the nav */
    }
    
    .hero h1, .affiliate-hero h1 {
        font-size: 2.5rem;
    }

    .hero p, .affiliate-hero .subtitle {
        font-size: 1rem;
    }

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

    .footer-col {
        margin-bottom: 1.5rem;
    }
}