:root {
    --wood-red: #C41E1E;
    --deep-red: #A01818;
    --gold: #D4A53F;
    --dark-gold: #B38A2E;
    --light-bg: #F9F5EB;
    --white: #FFFFFF;
    --text-dark: #2B221E;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
    background: linear-gradient(to bottom, #ffffff 0%, #e5e5e5 35%, #c8c8c8 70%, #a8a8a8 100%);
    background-attachment: fixed;
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
header {
    background-color: var(--white);
    border-bottom: 3px solid var(--gold);
    padding: 0.3rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    gap: 1rem;
    flex-wrap: wrap;
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.site-logo {
    max-width: 420px;
    width: 100%;
    height: auto;
    display: block;
}
.contact-fast {
    text-align: center;
}
.contact-fast a {
    color: var(--wood-red);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
}
.contact-fast .text-link {
    font-size: 1rem;
    display: inline-block;
    margin-top: 0.15rem;
}
.contact-fast .text-disclaimer {
    display: block;
    font-size: 0.72rem;
    color: #666;
    font-weight: normal;
    margin-top: 0.1rem;
    margin-bottom: 0.25rem;
}
@keyframes sharedShimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}
.lang-badge {
    background-color: var(--gold);
    background-image: linear-gradient(
        110deg,
        var(--gold) 20%,
        #f5e6a8 45%,
        #fff8d6 50%,
        #f5e6a8 55%,
        var(--gold) 80%
    );
    background-size: 200% 100%;
    color: var(--white);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.35rem;
    animation: sharedShimmer 2.8s ease-in-out infinite;
    text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}
/* Navigation */
nav {
    width: 100%;
    background-color: #8B1515;
    border-bottom: 3px solid var(--gold);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    gap: 0.15rem;
}
nav li {
    position: relative;
}
nav a {
    display: block;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    padding: 0.95rem 1.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.25s ease, background 0.25s ease;
    position: relative;
}
nav a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0.45rem;
    width: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
    transition: width 0.28s ease, left 0.28s ease;
}
nav a:hover {
    color: var(--white);
    background-color: rgba(0, 0, 0, 0.12);
}
nav a:hover::after {
    width: 55%;
    left: 22.5%;
}
nav a.active {
    color: var(--gold);
    background-color: rgba(0, 0, 0, 0.18);
}
nav a.active::after {
    width: 55%;
    left: 22.5%;
    background: var(--gold);
}

/* Get a Quote – shimmer (uses sharedShimmer) */
nav a[href="quote.html"] {
    background-image: linear-gradient(
        110deg,
        transparent 25%,
        rgba(212, 165, 63, 0.45) 45%,
        rgba(255, 240, 180, 0.7) 50%,
        rgba(212, 165, 63, 0.45) 55%,
        transparent 75%
    );
    background-size: 200% 100%;
    background-repeat: no-repeat;
    animation: sharedShimmer 2.8s ease-in-out infinite;
}
nav a[href="quote.html"]:hover,
nav a[href="quote.html"].active {
    background-image: linear-gradient(
        110deg,
        transparent 25%,
        rgba(212, 165, 63, 0.55) 45%,
        rgba(255, 245, 200, 0.85) 50%,
        rgba(212, 165, 63, 0.55) 55%,
        transparent 75%
    );
    background-size: 200% 100%;
    animation: sharedShimmer 2.8s ease-in-out infinite;
}
.hero {
    background: url('Red background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 5rem 5% 4rem;
    text-align: center;
    position: relative;
    border-bottom: 5px solid var(--gold);
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}
.hero > * {
    position: relative;
    z-index: 2;
}
.hero h2 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    text-shadow:
        0 4px 12px rgba(0,0,0,0.95),
        0 2px 6px rgba(0,0,0,0.8);
}
.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    text-shadow:
        0 4px 12px rgba(0,0,0,0.95),
        0 2px 6px rgba(0,0,0,0.8);
}
.coverage-container {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.coverage-states {
    background: rgba(0, 0, 0, 0.65);
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    border: 1px solid var(--gold);
    font-weight: 600;
    box-shadow:
        0 6px 20px rgba(0,0,0,0.7),
        0 3px 8px rgba(0,0,0,0.5);
    text-shadow: 0 2px 6px rgba(0,0,0,0.8);
    margin-bottom: 1.5rem;
}
.coverage-map {
    width: 100%;
    max-width: 410px;
    height: auto;
    border: 3px solid var(--gold);
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.6);
    display: block;
    margin: 0 auto;
}
.main-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    flex: 1;
}
.main-container.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

/* ========== RESPONSIVE PAGE CONTENT & FORMS ========== */
.page-content {
    width: 100%;
    max-width: 100%;
    margin: 1rem auto 1.5rem;
    padding: 0 0.75rem;
    flex: 1;
}
.page-content .info-panel {
    max-width: 900px;
    margin: 0 auto;
}
.info-panel h3,
.page-content > h3 {
    color: var(--wood-red);
    font-size: 1.6rem;
    margin: 0 0 0.75rem 0;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.4rem;
}
.page-content iframe {
    display: block;
    width: 100% !important;
    max-width: 100%;
    min-height: 950px;
    height: 85vh;
    border: 1px solid rgba(212, 165, 63, 0.35);
    border-radius: 6px;
    background: #fff;
    margin: 0;
}
@media (max-width: 768px) {
    .page-content {
        margin: 0.5rem auto 1rem;
        padding: 0 0.4rem;
    }
    .page-content > h3 {
        font-size: 1.35rem;
        margin-bottom: 0.5rem;
    }
    .page-content iframe {
        min-height: 750px;
        height: 80vh;
        border-radius: 4px;
    }
}
@media (max-width: 480px) {
    .page-content {
        padding: 0 0.25rem;
        margin: 0.35rem auto 0.75rem;
    }
    .page-content > h3 {
        font-size: 1.2rem;
        margin-bottom: 0.4rem;
    }
    .page-content iframe {
        min-height: 650px;
        height: 78vh;
        border-radius: 0;
    }
}
/* ========== END RESPONSIVE FORMS ========== */

.agent-card {
    background: var(--white);
    padding: 1.8rem;
    border-left: 4px solid var(--wood-red);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    display: flex;
    gap: 1.8rem;
    align-items: flex-start;
    margin-bottom: 2.2rem;
    justify-content: center;
}
.agent-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 4px solid var(--gold);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.agent-info {
    flex: 1;
    max-width: 380px;
    text-align: left;
}
.agent-name {
    font-size: 1.45rem;
    color: var(--wood-red);
    font-weight: bold;
    margin-bottom: 0.6rem;
}
.agent-title {
    color: #666;
    font-style: italic;
    margin-bottom: 1.4rem;
}
.contact-info p {
    margin-bottom: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.contact-info strong {
    display: inline-block;
    width: 85px;
    color: var(--wood-red);
    flex-shrink: 0;
}
@media (min-width: 1025px) {
    .agent-info {
        text-align: left;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .agent-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .agent-photo {
        margin-bottom: 1.5rem;
    }
    .agent-info {
        max-width: 100%;
        text-align: center;
    }
    .contact-info p {
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .main-container.two-col {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }
    header {
        flex-direction: column;
        text-align: center;
    }
    .logo-area {
        justify-content: center;
    }
    .contact-fast {
        text-align: center;
        margin-top: 1rem;
    }
    .site-logo {
        max-width: 340px;
    }
    .agent-card {
        flex-direction: column !important;
        align-items: center;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    .agent-photo {
        width: 160px;
        height: 160px;
        margin: 0 auto 1.5rem auto;
    }
    .agent-info {
        max-width: 100%;
        text-align: center;
    }
    .contact-info p {
        flex-direction: column;
        gap: 4px;
        justify-content: center;
    }
    .contact-info strong {
        width: auto;
        text-align: center;
    }
    nav a {
        padding: 0.75rem 1.1rem;
        font-size: 0.8rem;
        letter-spacing: 0.03em;
    }
    nav a::after {
        bottom: 0.3rem;
    }
}
.services-list {
    list-style: none;
    margin-top: 1.5rem;
}
.services-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}
.services-list li::before {
    content: "✓";
    color: var(--gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}
.form-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 165, 63, 0.35);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}
.form-container h3 {
    color: var(--wood-red);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}
.form-group {
    margin-bottom: 1.2rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    font-size: 0.9rem;
}
.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}
.form-control:focus {
    outline: none;
    border-color: var(--wood-red);
}
.btn-primary {
    background-color: var(--wood-red);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-primary:hover {
    background-color: var(--deep-red);
}
footer {
    background-color: #000000;
    color: #ccc;
    text-align: center;
    padding: 2rem;
    border-top: 3px solid var(--gold);
    font-size: 0.9rem;
    margin-top: auto;
}
.blank-placeholder {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
    font-size: 1.2rem;
}