/* 
   A&C Protect for Life - Landing Page Styles
   Theme: Premium, Serene, Trustworthy
*/

:root {
    --primary-color: #1a2a3a;
    /* Dark Blue/Black for trust/premium */
    --secondary-color: #c5a059;
    /* Gold for premium/legacy */
    --accent-color: #f4f4f4;
    --text-color: #333333;
    --light-text: #666666;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    font-weight: 700;
}

p {
    margin-bottom: 1rem;
}

.text-gold {
    color: var(--secondary-color);
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: #f9f9f9;
}

.bg-dark {
    background-color: var(--primary-color);
    color: var(--white);
}

.text-center {
    text-align: center;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-6,
.col-md-4,
.col-lg-8 {
    padding: 0 15px;
}

.col-md-6 {
    width: 50%;
}

.col-md-4 {
    width: 33.333%;
}

.col-lg-8 {
    width: 66.666%;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.flex-row-reverse {
    flex-direction: row-reverse;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #b08d4b;
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--white);
    color: var(--white);
    margin-left: 15px;
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 60px;
    /* Adjust based on actual logo ratio */
}

.main-nav a {
    margin-left: 25px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--primary-color);
}

.main-nav a:hover {
    color: var(--secondary-color);
}

.main-nav .btn-nav {
    padding: 8px 20px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 4px;
}

.main-nav .btn-nav:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.mobile-toggle {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: url('/assets/img/hero-bg.png') no-repeat center center/cover;
    background-color: #2c3e50;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
    padding: 120px 0 60px;
}

/* Overlay for better text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #c5a059 0%, #f0ebdb 50%, #c5a059 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Video Container Styles */
.video-container {
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    position: relative;
    z-index: 5;
}

.video-responsive {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.6s ease;
}

.video-responsive:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.video-responsive video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Premium Glow for Video */
.video-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
}

/* Features / Problem */
.stats-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.stats-list i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.feature-img {
    max-height: 400px;
    object-fit: cover;
}

/* Solution / Chapters */
.chapters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.chapter-card {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 3px solid var(--secondary-color);
    transition: var(--transition);
}

.chapter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.chapter-num {
    display: block;
    font-size: 3rem;
    color: #f0f0f0;
    font-weight: 900;
    line-height: 1;
    margin-bottom: -10px;
    font-family: var(--font-heading);
}

.chapter-card h3 {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.book-cover {
    max-height: 500px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.hover-float {
    transition: transform 0.3s ease;
}

.hover-float:hover {
    transform: translateY(-10px);
}

/* Trust / Senior Life */
.agency-name {
    font-family: var(--font-body);
    /* Changed to body font (Inter) for cleaner & symbol */
    font-size: 1.6rem;
    font-weight: 600;
    /* Increased weight for logo-like appearance */
    letter-spacing: -0.5px;
    opacity: 1;
    margin-bottom: 0.5rem;
}

.agency-name .divider {
    color: var(--secondary-color);
    margin: 0 10px;
}

.trust-item {
    text-align: center;
    padding: 30px 20px;
}

.trust-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.trust-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.trust-item p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #eee;
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Contact Form */
.bg-gold-gradient {
    background: linear-gradient(135deg, #f9f9f9 0%, #f0ebdb 100%);
}

.contact-box {
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.secure-note {
    font-size: 0.85rem;
    color: var(--light-text);
}

.secure-note i {
    color: green;
    margin-right: 5px;
}

/* Footer */
.site-footer {
    background-color: #111;
    color: #888;
    padding: 50px 0 20px;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #222;
    padding-bottom: 30px;
}

.footer-logo {
    color: var(--white);
}

.footer-links a {
    color: #888;
    margin-left: 20px;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

/* Responsive */
@media (max-width: 768px) {
    .site-header {
        padding: 10px 0;
        height: auto;
        min-height: 56px;
    }

    .site-header .container {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .logo {
        height: 32px;
        /* Small logo for mobile */
    }

    .mobile-toggle {
        display: block;
        /* Show hamburger */
        font-size: 1.5rem;
        background: none;
        border: none;
        color: var(--primary-color);
        cursor: pointer;
        padding: 5px;
    }

    .main-nav {
        display: none;
        /* Hidden by default */
        width: 100%;
        flex-direction: column;
        align-items: center;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid #eee;
        gap: 15px;
        background-color: var(--white);
    }

    .main-nav.active {
        display: flex;
        /* Show when active */
    }

    .main-nav a {
        margin-left: 0;
        font-size: 1.1rem;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    .hero {
        padding-top: 80px;
        /* Adjust for fixed header overlap if needed, though header is small now */
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .col-md-6,

    .col-md-6,
    .col-md-4,
    .col-lg-8 {
        width: 100%;
        margin-bottom: 30px;
    }

    .flex-row-reverse {
        flex-direction: column-reverse;
    }

    .contact-box {
        padding: 30px 20px;
    }
}

/* Updated: 2026-01-13 17:33 - IMG_FIX_1 */