/* Renters Insurance Landing Page Styles */

:root {
    --allstate-blue: #0033A0;
    --accent-red: #e63946;
    --gold: #FFB81C;
    --dark-bg: #1a1a1a;
    --darker-bg: #0f0f0f;
    --text-light: #f0f0f0;
    --text-gray: #b0b0b0;
}

/* Reset and Base */
.renters-landing-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--darker-bg);
}

.renters-landing-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    padding: 60px 20px;
    border-bottom: 3px solid var(--gold);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content .subheading {
    font-size: 1.3rem;
    color: var(--accent-red);
    font-weight: 500;
    margin-bottom: 30px;
}

.benefit-list {
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.check-icon {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
    stroke-width: 3;
    margin-right: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Quote Form */
.quote-form-container {
    position: sticky;
    top: 20px;
}

.form-card {
    background: var(--dark-bg);
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--text-light);
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #333;
    border-radius: 6px;
    background: var(--darker-bg);
    color: var(--text-light);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--allstate-blue);
}

.checkbox-group {
    margin-top: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: var(--text-light);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--allstate-blue);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.submit-btn:hover:not(:disabled) {
    background: #002580;
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 6px;
    display: none;
    text-align: center;
}

.form-message.success {
    background: #10b981;
    color: white;
}

.form-message.error {
    background: var(--accent-red);
    color: white;
}

.trust-badges {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.phone-cta {
    text-align: center;
    margin-top: 15px;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.phone-link {
    color: var(--allstate-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
}

/* Truth Section */
.truth-section {
    padding: 80px 20px;
    background: var(--dark-bg);
}

.truth-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-light);
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.coverage-card {
    background: var(--darker-bg);
    border: 2px solid #333;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.coverage-card.danger-card {
    border-color: var(--accent-red);
}

.coverage-card.success-card {
    border-color: var(--gold);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.coverage-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.coverage-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.coverage-card ul li {
    padding: 8px 0;
    color: var(--text-gray);
    border-bottom: 1px solid #222;
}

.coverage-card ul li:last-child {
    border-bottom: none;
}

.quote-callout {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: var(--darker-bg);
    border-left: 4px solid var(--gold);
    border-radius: 8px;
}

.quote-callout blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-light);
    margin: 0 0 15px 0;
    line-height: 1.7;
}

.quote-callout cite {
    color: var(--gold);
    font-style: normal;
    font-weight: 600;
}

/* Risks Section */
.risks-section {
    padding: 80px 20px;
    background: var(--darker-bg);
}

.risks-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-light);
}

.risk-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.risk-card {
    background: var(--dark-bg);
    border: 2px solid #333;
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.3s, border-color 0.3s;
}

.risk-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.risk-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.risk-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.risk-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Bundle Section */
.bundle-section {
    padding: 80px 20px;
    background: var(--dark-bg);
}

.bundle-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-light);
}

.calculator-card {
    max-width: 600px;
    margin: 0 auto 40px;
    background: var(--darker-bg);
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 30px;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    font-size: 1.1rem;
}

.calc-label {
    color: var(--text-gray);
}

.calc-value {
    font-weight: 600;
    color: var(--text-light);
}

.calc-value.add {
    color: var(--accent-red);
}

.calc-value.subtract {
    color: #10b981;
}

.calc-divider {
    border-top: 2px solid var(--gold);
    margin: 15px 0;
}

.calc-row.total {
    font-size: 1.3rem;
    font-weight: 700;
}

.calc-row.total .calc-value {
    color: var(--gold);
}

.calc-savings {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: var(--allstate-blue);
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.testimonial-card {
    max-width: 700px;
    margin: 40px auto;
    padding: 30px;
    background: var(--darker-bg);
    border-left: 4px solid var(--gold);
    border-radius: 8px;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-card cite {
    color: var(--text-gray);
    font-style: normal;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

.cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-red);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-btn:hover {
    background: #d32f3e;
}

/* Credibility Section */
.credibility-section {
    padding: 80px 20px;
    background: var(--darker-bg);
}

.credibility-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-light);
}

.credibility-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.credibility-content .intro-text {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.credibility-content p {
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

.location-info {
    margin-top: 30px;
    padding: 20px;
    background: var(--dark-bg);
    border-left: 4px solid var(--gold);
    border-radius: 8px;
}

.location-info p {
    margin: 10px 0;
}

.location-info a {
    color: var(--allstate-blue);
    text-decoration: none;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-box {
    background: var(--dark-bg);
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Coverage Details Section */
.coverage-details-section {
    padding: 80px 20px;
    background: var(--dark-bg);
}

.coverage-details-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-light);
}

.coverage-checklist {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.check-item {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    background: var(--darker-bg);
    border-radius: 8px;
}

.check-mark {
    color: var(--gold);
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.check-item span:last-child {
    color: var(--text-gray);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: var(--darker-bg);
}

.faq-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-light);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    background: var(--dark-bg);
    border: 2px solid #333;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.active {
    border-color: var(--gold);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 20px;
    background: var(--dark-bg);
    border-top: 3px solid var(--gold);
}

.final-cta-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-light);
}

.final-cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.cta-option {
    text-align: center;
}

.cta-option h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.cta-btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--allstate-blue);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-btn-secondary:hover {
    background: #002580;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .quote-form-container {
        position: static;
    }

    .coverage-grid {
        grid-template-columns: 1fr;
    }

    .risk-grid {
        grid-template-columns: 1fr;
    }

    .credibility-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .coverage-checklist {
        grid-template-columns: 1fr;
    }

    .final-cta-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .subheading {
        font-size: 1.1rem;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    section h2 {
        font-size: 1.8rem !important;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}
```

---

## **4. EMAILJS TEMPLATE SETUP**

Create a new template in EmailJS with ID: `template_renters`

**Subject:** New Renters Insurance Quote - {{from_name}} - {{zip}}

**Body:**
```
NEW RENTERS INSURANCE LEAD

Name: {{from_name}}
Phone: {{phone}}
ZIP Code: {{zip}}
Has Auto Insurance: {{auto_insurance}}
Bundle Interest: {{bundle_interest}}

Campaign Source: {{campaign_source}}
Timestamp: {{timestamp}}
Page URL: {{page_url}}
Referrer: {{referrer}}

ACTION REQUIRED: Call within 5 minutes!