/* Cal Coast Water Damage - Main Stylesheet */
/* Brand Colors: Navy Blue #1B4965, Cyan Blue #62B6CB */

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1B4965;
    --secondary-blue: #62B6CB;
    --emergency-red: #DC2626;
    --warning-orange: #EA580C;
    --success-green: #059669;
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --border-gray: #E5E7EB;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

/* ===== EMERGENCY BANNER ===== */
.emergency-banner {
    background: var(--emergency-red);
    color: white;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.emergency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.emergency-icon {
    font-size: 24px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.emergency-text {
    font-weight: 600;
    font-size: 16px;
}

.emergency-call {
    background: white;
    color: var(--emergency-red);
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
}

.emergency-call:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ===== HEADER ===== */
.header {
    background: white;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 56px;
    z-index: 999;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo img {
    width: 200px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-hours {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.hours-label {
    font-size: 12px;
    color: var(--text-gray);
    text-transform: uppercase;
    font-weight: 600;
}

.hours-time {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
}

.hours-emergency {
    font-size: 13px;
    color: var(--emergency-red);
    font-weight: 600;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
}

.btn-primary:hover {
    background: #143850;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 73, 101, 0.3);
}

.btn-secondary {
    background: var(--secondary-blue);
    color: white;
}

.btn-secondary:hover {
    background: #4A9DB3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(98, 182, 203, 0.3);
}

.btn-emergency {
    background: var(--emergency-red);
    color: white;
    font-size: 18px;
}

.btn-emergency:hover {
    background: #B91C1C;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-xl {
    padding: 20px 40px;
    font-size: 20px;
    border-radius: 12px;
}

.btn-icon {
    font-size: 20px;
}

.btn-icon-large {
    font-size: 32px;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.btn-label {
    font-size: 13px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-number {
    font-size: 24px;
    font-weight: 800;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0D2F47 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(98, 182, 203, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(98, 182, 203, 0.1) 0%, transparent 50%);
}

/* SERVICE HERO (for service pages) */
.service-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0D2F47 100%);
    color: white;
    padding: 60px 0;
    position: relative;
}

.service-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.service-hero-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.service-hero-subtitle {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.6;
}

.service-hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.service-hero-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cert-badge-large {
    background: rgba(255,255,255,0.15);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.nav-link.active {
    color: var(--primary-blue);
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-highlight {
    color: var(--secondary-blue);
    display: block;
    font-size: 58px;
    line-height: 1.1;
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 24px;
    color: var(--secondary-blue);
}

/* ===== URGENCY SECTION ===== */
.urgency-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.urgency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.urgency-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border-left: 6px solid;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.urgency-item.urgent {
    border-color: var(--warning-orange);
}

.urgency-item.warning {
    border-color: var(--emergency-red);
}

.urgency-item.critical {
    border-color: #991B1B;
}

.urgency-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
    display: block;
    margin-bottom: 5px;
}

.urgency-text h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
    line-height: 1.3;
}

.urgency-text p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 15px;
}

.urgency-cta {
    text-align: center;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.urgency-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.urgency-cta p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid var(--border-gray);
    transition: all 0.3s;
}

.service-card.featured {
    background: white;
    border: 3px solid var(--primary-blue);
    box-shadow: 0 4px 16px rgba(27, 73, 101, 0.1);
    position: relative;
}

.service-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--emergency-red);
    color: white;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.service-lead {
    font-size: 16px;
    color: var(--emergency-red);
    font-weight: 600;
    margin-bottom: 15px;
}

.service-list {
    list-style: none;
    margin: 20px 0;
}

.service-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-gray);
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: 700;
    font-size: 18px;
}

.service-cert {
    background: var(--secondary-blue);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin: 20px 0;
}

.service-card .btn {
    width: 100%;
    margin-top: 20px;
}

/* ===== INSURANCE SECTION ===== */
.insurance-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0D2F47 100%);
    color: white;
}

.insurance-content {
    max-width: 900px;
    margin: 0 auto;
}

.insurance-text h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.insurance-lead {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.insurance-benefits {
    display: grid;
    gap: 25px;
    margin-bottom: 50px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.benefit-icon {
    font-size: 32px;
    color: var(--secondary-blue);
    min-width: 40px;
}

.benefit-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.benefit-text p {
    opacity: 0.9;
    line-height: 1.6;
}

.insurance-process {
    background: rgba(255,255,255,0.15);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.insurance-process h3 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: center;
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
}

.step-number {
    background: var(--secondary-blue);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text {
    font-size: 18px;
    line-height: 1.5;
}

.insurance-note {
    font-size: 16px;
    opacity: 0.95;
    line-height: 1.7;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.gallery-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.gallery-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.gallery-before,
.gallery-after {
    position: relative;
    overflow: hidden;
}

.gallery-before img,
.gallery-after img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-label {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.before-label {
    background: var(--emergency-red);
    color: white;
}

.after-label {
    background: var(--success-green);
    color: white;
}

.gallery-caption {
    padding: 20px;
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
}

.gallery-cta {
    text-align: center;
    background: white;
    padding: 50px;
    border-radius: 12px;
}

.gallery-tagline {
    font-size: 24px;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 30px;
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose-section {
    padding: 80px 0;
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.why-item {
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--secondary-blue);
    transition: all 0.3s;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-left-color: var(--primary-blue);
}

.why-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.why-item h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.why-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== SERVICE AREAS SECTION ===== */
.service-areas-section {
    padding: 80px 0;
    background: var(--bg-light);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 80px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    border-left: 5px solid var(--secondary-blue);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.testimonial-card.featured {
    border-left-color: var(--primary-blue);
    background: white;
}

.testimonial-stars {
    font-size: 24px;
    margin-bottom: 15px;
}

.testimonial-rating {
    display: inline-block;
    background: var(--emergency-red);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 15px;
}

.testimonial-title {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.testimonial-text {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 16px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-top: 20px;
    border-top: 2px solid var(--border-gray);
    margin-bottom: 15px;
}

.testimonial-author strong {
    color: var(--primary-blue);
    font-size: 18px;
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 14px;
}

.testimonial-date {
    font-weight: 600;
    color: var(--secondary-blue) !important;
}

.testimonial-source {
    display: inline-block;
    background: var(--secondary-blue);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.testimonials-cta {
    text-align: center;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 12px;
}

.testimonials-cta p {
    font-size: 20px;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 25px;
}

.areas-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.areas-list h3 {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.cities-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.cities-grid li {
    padding: 12px;
    background: white;
    border-radius: 6px;
    border-left: 3px solid var(--secondary-blue);
    font-weight: 500;
}

.areas-note {
    margin-top: 20px;
    font-style: italic;
    color: var(--text-gray);
}

.areas-cta-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    text-align: center;
    height: fit-content;
}

.areas-cta-box h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.areas-cta-box p {
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--emergency-red) 0%, #B91C1C 100%);
    color: white;
}

.final-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.final-cta-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.final-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.final-cta-hours {
    font-size: 16px;
    opacity: 0.9;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-blue);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 20px;
}

.footer-tagline {
    opacity: 0.9;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--secondary-blue);
}

.footer-col p {
    margin-bottom: 15px;
    opacity: 0.9;
    line-height: 1.6;
}

.footer-col a {
    color: white;
    transition: color 0.3s;
}

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

.footer-links {
    list-style: none;
}

.footer-links li {
    padding: 8px 0;
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 30px;
    text-align: center;
}

.footer-certifications {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.cert-badge {
    background: var(--secondary-blue);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}

.footer-copyright {
    opacity: 0.7;
    font-size: 14px;
}

/* ===== MOBILE CALL BUTTON ===== */
.mobile-call-button {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--emergency-red);
    color: white;
    padding: 16px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.4);
    z-index: 1000;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.mobile-call-icon {
    font-size: 24px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .areas-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .nav-contact {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-hours {
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-highlight {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .urgency-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-comparison {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        margin: 0 auto 20px;
    }
    
    .mobile-call-button {
        display: flex;
    }
}

@media (max-width: 480px) {
    .emergency-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .hero {
        padding: 50px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-highlight {
        font-size: 32px;
    }
    
    .btn-xl {
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .btn-number {
        font-size: 20px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .emergency-banner,
    .mobile-call-button,
    .hero-cta,
    .final-cta-section {
        display: none;
    }
}

/* ===== MOLD PAGE SPECIFIC STYLES ===== */

/* Danger Section */
.danger-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.danger-header {
    text-align: center;
    margin-bottom: 50px;
}

.danger-header h2 {
    font-size: 42px;
    color: var(--emergency-red);
    margin-bottom: 15px;
}

.danger-subtitle {
    font-size: 20px;
    color: var(--text-gray);
}

.danger-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.danger-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    border-top: 5px solid;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.danger-card.urgent {
    border-color: var(--warning-orange);
}

.danger-card.warning {
    border-color: var(--emergency-red);
}

.danger-card.critical {
    border-color: #991B1B;
}

.danger-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.danger-card h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.danger-list {
    list-style: none;
    margin: 20px 0;
}

.danger-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-gray);
    line-height: 1.6;
}

.danger-list li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    font-size: 16px;
}

.danger-note {
    margin-top: 20px;
    padding: 15px;
    background: var(--bg-light);
    border-left: 4px solid var(--emergency-red);
    font-size: 14px;
    font-style: italic;
}

.danger-cta {
    background: white;
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.danger-cta-content h3 {
    font-size: 32px;
    color: var(--emergency-red);
    margin-bottom: 15px;
}

.danger-cta-content p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

/* Exposure Section */
.exposure-section {
    padding: 80px 0;
    background: white;
}

.exposure-header {
    text-align: center;
    margin-bottom: 60px;
}

.exposure-header h2 {
    font-size: 42px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.exposure-header p {
    font-size: 18px;
    color: var(--text-gray);
}

.exposure-timeline {
    max-width: 900px;
    margin: 0 auto 60px;
    position: relative;
}

.exposure-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--warning-orange), var(--emergency-red));
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.timeline-marker {
    flex-shrink: 0;
    width: 100px;
}

.timeline-number {
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    padding: 10px;
    line-height: 1.2;
    box-shadow: 0 4px 12px rgba(27, 73, 101, 0.3);
}

.timeline-content {
    flex: 1;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-blue);
}

.timeline-content h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.timeline-content p {
    color: var(--text-gray);
    line-height: 1.7;
}

.exposure-warning-box {
    background: linear-gradient(135deg, var(--emergency-red) 0%, #B91C1C 100%);
    color: white;
    padding: 50px;
    border-radius: 12px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.warning-icon {
    font-size: 80px;
    flex-shrink: 0;
}

.warning-content h3 {
    font-size: 28px;
    margin-bottom: 25px;
}

.warning-signs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.warning-sign {
    background: rgba(255,255,255,0.15);
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.warning-action {
    font-size: 18px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 8px;
}

/* Research Section */
.research-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.research-header {
    text-align: center;
    margin-bottom: 50px;
}

.research-header h2 {
    font-size: 42px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.research-header p {
    font-size: 18px;
    color: var(--text-gray);
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.research-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    border-left: 5px solid var(--secondary-blue);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.research-card h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.research-finding {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 15px;
}

.research-note {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

.research-emphasis {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.research-emphasis h3 {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.research-emphasis p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: white;
}

.process-steps {
    display: grid;
    gap: 40px;
}

.process-step-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    display: flex;
    gap: 30px;
    border-left: 5px solid var(--secondary-blue);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.process-step-card:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.step-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
}

.step-content h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.step-content > p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.step-includes {
    list-style: none;
    margin: 20px 0;
}

.step-includes li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-gray);
}

.step-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: 700;
    font-size: 18px;
}

.step-result {
    margin-top: 20px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid var(--success-green);
}

/* Insurance Logos Section */
.insurance-logos-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.insurance-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.insurance-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.insurance-logo-placeholder {
    background: white;
    padding: 25px 15px;
    border-radius: 8px;
    width: 100%;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 2px solid var(--border-gray);
    transition: all 0.3s;
}

.insurance-logo-placeholder:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.insurance-logo-placeholder span {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 16px;
}

.insurance-note {
    text-align: center;
    max-width: 800px;
    margin: 30px auto;
}

.insurance-note p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 10px;
}

.insurance-guarantee {
    background: white;
    padding: 40px;
    border-radius: 12px;
    margin-top: 40px;
}

.insurance-guarantee h3 {
    text-align: center;
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 30px;
}

.guarantee-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.guarantee-point {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 8px;
}

.guarantee-icon {
    font-size: 24px;
    color: var(--success-green);
    font-weight: 700;
}

.guarantee-result {
    text-align: center;
    font-size: 18px;
    padding: 20px;
    background: var(--secondary-blue);
    color: white;
    border-radius: 8px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.faq-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-blue);
}

.faq-item h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

.faq-cta {
    background: var(--primary-blue);
    color: white;
    padding: 50px;
    border-radius: 12px;
    text-align: center;
}

.faq-cta h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.faq-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Mobile Responsiveness for Mold Page */
@media (max-width: 768px) {
    .service-hero-title {
        font-size: 32px;
    }
    
    .danger-grid,
    .research-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .exposure-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        gap: 20px;
    }
    
    .timeline-marker {
        width: 60px;
    }
    
    .timeline-number {
        width: 60px;
        height: 60px;
        font-size: 12px;
    }
    
    .exposure-warning-box {
        flex-direction: column;
        padding: 30px;
    }
    
    .warning-icon {
        font-size: 60px;
    }
    
    .warning-signs {
        grid-template-columns: 1fr;
    }
    
    .process-step-card {
        flex-direction: column;
        padding: 30px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .insurance-logos {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
    }
}


/* Mobile responsiveness for testimonials */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 25px;
    }
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Hero */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0D2F47 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.contact-hero-subtitle {
    font-size: 20px;
    opacity: 0.95;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info-box,
.contact-form-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.contact-info-box h2,
.contact-form-box h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 30px;
}

/* Contact Methods */
.contact-method {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 2px solid var(--bg-light);
}

.contact-method:last-of-type {
    border-bottom: none;
}

.contact-method-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.contact-method-content h3 {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.contact-method-main {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-method-main a {
    color: var(--primary-blue);
    transition: color 0.3s;
}

.contact-method-main a:hover {
    color: var(--secondary-blue);
}

.contact-method-note {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
}

.contact-certifications {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--bg-light);
}

/* Contact Form */
.form-intro {
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.btn-full {
    width: 100%;
}

.form-note {
    font-size: 13px;
    color: var(--text-gray);
    text-align: center;
    margin-top: -10px;
}

.form-note a {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Quick Contact CTA */
.quick-contact-cta {
    background: white;
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.quick-contact-cta h3 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.quick-contact-cta p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

/* Service Areas List */
.service-areas-list {
    padding: 60px 0;
    background: var(--bg-light);
    text-align: center;
}

.service-areas-list h2 {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 40px;
}

.cities-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 30px;
}

.cities-column ul {
    list-style: none;
    text-align: left;
}

.cities-column li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-dark);
    font-weight: 500;
}

.cities-column li::before {
    content: '📍';
    position: absolute;
    left: 0;
}

.faq-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Responsiveness for Contact Page */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-hero-content h1 {
        font-size: 36px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cities-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .contact-hero-content h1 {
        font-size: 28px;
    }
    
    .contact-info-box,
    .contact-form-box {
        padding: 25px;
    }
    
    .quick-contact-cta {
        padding: 30px 20px;
    }
    
    .cities-columns {
        grid-template-columns: 1fr;
    }
}

/* ===== INSURANCE LOGOS BANNER (HOMEPAGE TOP) ===== */
.insurance-logos-banner {
    background: white;
    padding: 50px 0;
    border-top: 1px solid var(--border-gray);
    border-bottom: 1px solid var(--border-gray);
}

.insurance-banner-header {
    text-align: center;
    margin-bottom: 40px;
}

.insurance-banner-header h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.insurance-banner-header p {
    font-size: 18px;
    color: var(--text-gray);
    font-weight: 600;
}

.insurance-logos-scroll {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px 0;
}

.insurance-logo-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: all 0.3s;
    min-height: 80px;
}

.insurance-logo-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background: white;
}

.insurance-logo-banner img {
    max-width: 140px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.3s;
}

.insurance-logo-banner:hover img {
    filter: grayscale(0%);
}

.insurance-banner-footer {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid var(--bg-light);
}

.insurance-banner-footer p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.insurance-banner-footer strong {
    color: var(--primary-blue);
}

/* Mobile responsiveness for insurance banner */
@media (max-width: 768px) {
    .insurance-logos-scroll {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .insurance-banner-header h2 {
        font-size: 24px;
    }
    
    .insurance-logo-banner {
        min-height: 70px;
    }
}

/* Insurance logo images styling */
.insurance-logo-img {
    max-width: 140px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.insurance-logo-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 2px solid var(--border-gray);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.insurance-logo-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: var(--secondary-blue);
}

/* ===== RAPID RESPONSE SECTION WITH TRUCK BACKGROUND ===== */
.rapid-response-section {
    position: relative;
    padding: 100px 0;
    background: #f8f9fa;
    overflow: hidden;
    color: var(--text-dark);
}

.truck-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/images/truck-Home.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: 1;
}

.truck-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.75) 0%, 
        rgba(248, 249, 250, 0.8) 100%);
}

/* Clean White Truck (for homepage rapid response section) */
.truck-background-clean {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/images/truck-clean-white.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: 1;
}

.truck-background-clean::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.75) 0%, 
        rgba(248, 249, 250, 0.8) 100%);
}

/* Coronado Truck (for homepage hero with Coronado Bridge) */
.truck-background-coronado {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/images/hero-van-coronado.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: 1;
}

.truck-background-coronado::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(27, 73, 101, 0.6) 0%, 
        rgba(13, 47, 71, 0.7) 100%);
}

.rapid-response-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.response-badge {
    display: inline-block;
    background: var(--emergency-red);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 30px rgba(220, 38, 38, 0.6);
    }
}

.rapid-response-content h2 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-blue);
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

.response-tagline {
    font-size: 22px;
    margin-bottom: 60px;
    color: var(--text-gray);
}

.response-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.response-feature {
    background: rgba(255, 255, 255, 0.9);
    padding: 35px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 2px solid var(--border-gray);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.response-feature:hover {
    background: white;
    transform: translateY(-5px);
    border-color: var(--secondary-blue);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.response-feature h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.response-feature p {
    color: var(--text-gray);
    line-height: 1.6;
}

.response-cta {
    margin-top: 40px;
}

/* Mobile responsiveness for rapid response section */
@media (max-width: 768px) {
    .rapid-response-section {
        padding: 60px 0;
    }
    
    .rapid-response-content h2 {
        font-size: 36px;
    }
    
    .response-tagline {
        font-size: 18px;
    }
    
    .response-features {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .response-feature {
        padding: 25px;
    }
    
    .truck-background {
        opacity: 0.1;
    }
}

/* Contact page truck background */
.contact-hero {
    position: relative;
    overflow: hidden;
}

.truck-background-contact {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/images/truck-Home.jpg');
    background-size: cover;
    background-position: center right;
    opacity: 0.08;
    z-index: 0;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
}

/* Large screen optimization for hero */
@media (min-width: 1400px) {
    .hero-content {
        max-width: 1400px;
    }
    
    .hero-highlight {
        font-size: 64px;
    }
}

/* Tablet size optimization */
@media (min-width: 769px) and (max-width: 1200px) {
    .hero-highlight {
        font-size: 54px;
    }
}

/* ===== RECONSTRUCTION BANNER ===== */
.reconstruction-banner {
    margin-top: 50px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0D2F47 100%);
    padding: 50px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.reconstruction-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(98, 182, 203, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.reconstruction-icon {
    font-size: 80px;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.reconstruction-content {
    flex: 1;
    color: white;
}

.reconstruction-content h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    color: white;
}

.reconstruction-tagline {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.reconstruction-services {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.recon-service {
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.recon-service:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.reconstruction-cta {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 240px;
}

/* Mobile responsiveness for reconstruction banner */
@media (max-width: 968px) {
    .reconstruction-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    
    .reconstruction-icon {
        font-size: 60px;
    }
    
    .reconstruction-content h3 {
        font-size: 26px;
    }
    
    .reconstruction-tagline {
        font-size: 16px;
    }
    
    .reconstruction-services {
        justify-content: center;
    }
}

/* Outline white button for reconstruction banner */
.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-blue);
    border-color: white;
}

/* Review Badges Section */
.review-badges-section {
    background: white;
    padding: 60px 0;
    border-top: 1px solid var(--border-gray);
    border-bottom: 1px solid var(--border-gray);
}

.review-badges-header {
    text-align: center;
    margin-bottom: 40px;
}

.review-badges-header h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.review-badges-header p {
    font-size: 18px;
    color: var(--text-gray);
}

.review-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.review-badge-card {
    background: white;
    border: 2px solid var(--border-gray);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
}

.review-badge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-color: var(--secondary-blue);
}

.badge-platform {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.badge-stars {
    font-size: 28px;
    margin: 15px 0;
    line-height: 1;
}

.badge-rating-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .review-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .review-badge-card {
        padding: 20px 15px;
    }
    
    .badge-platform {
        font-size: 16px;
    }
    
    .badge-stars {
        font-size: 24px;
    }
}

/* Breadcrumb Navigation */
.breadcrumb {
    padding: 15px 0;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    color: #1B4965;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: #62B6CB;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #666;
}

.breadcrumb-separator {
    color: #999;
    margin: 0 5px;
}

@media (max-width: 768px) {
    .breadcrumb-list {
        font-size: 12px;
    }
}

/* Email Capture Popup */
.email-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    padding: 30px;
    max-width: 400px;
    z-index: 9999;
    animation: slideUp 0.5s ease-out;
    display: none;
}

.email-popup.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.email-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.email-popup-close:hover {
    color: #333;
}

.email-popup-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.email-popup-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.email-popup-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.email-popup-input {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.email-popup-input:focus {
    outline: none;
    border-color: var(--secondary-blue);
}

.email-popup-button {
    padding: 14px 20px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.email-popup-button:hover {
    background: #0D2F47;
    transform: translateY(-2px);
}

.email-popup-privacy {
    font-size: 11px;
    color: #999;
    text-align: center;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .email-popup {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        padding: 20px;
    }
}

/* Desktop Sticky Call Button */
.sticky-call-desktop {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: #DC2626;
    color: white;
    padding: 20px 15px;
    border-radius: 8px 0 0 8px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    box-shadow: -3px 3px 15px rgba(0,0,0,0.3);
    z-index: 9998;
    transition: all 0.3s;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sticky-call-desktop:hover {
    padding-right: 20px;
    background: #B91C1C;
}

@media (max-width: 768px) {
    .sticky-call-desktop {
        display: none;
    }
}

/* ===== SAN DIEGO PHOTO BACKGROUNDS ===== */
.photo-section {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(27, 73, 101, 0.85);
    z-index: 1;
}

.photo-content {
    position: relative;
    z-index: 2;
}

/* North County Beach - Water Damage Page */
.beach-photo-bg {
    background-image: url('assets/images/north-county-beach.jpg');
}

/* Balboa Park - Mold Remediation Page */
.balboa-park-bg {
    background-image: url('assets/images/balboa-park-san-diego.jpg');
}

/* San Diego Harbor 1 - Flood Cleanup Page */
.harbor-photo-1-bg {
    background-image: url('assets/images/san-diego-harbor-1.jpg');
}

/* San Diego Harbor 2 - Flood Cleanup Page */
.harbor-photo-2-bg {
    background-image: url('assets/images/san-diego-harbor-2.jpg');
}

.section-title-white {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.section-subtitle-white {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.stat-boxes-row {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    min-width: 180px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 600;
}

.callout-box-yellow {
    background: #FEF3C7;
    border-left: 4px solid #F59E0B;
    padding: 20px 30px;
    border-radius: 8px;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-top: 40px;
}

.callout-box-yellow strong {
    color: #D97706;
}

@media (max-width: 768px) {
    .section-title-white {
        font-size: 1.8rem;
    }
    
    .stat-boxes-row {
        gap: 15px;
    }
    
    .stat-box {
        min-width: 140px;
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
}

/* ================================
   Before & After Video Section
   ================================ */

.video-showcase {
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
    padding: 80px 0;
}

.video-header {
    text-align: center;
    margin-bottom: 50px;
}

.video-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1E3A8A;
    margin-bottom: 15px;
}

.video-header p {
    font-size: 1.2rem;
    color: #4B5563;
}

.video-container {
    max-width: 1100px;
    margin: 0 auto 50px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    background: #000;
}

.showcase-video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 620px;
}

.video-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.video-cta-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 25px;
}

.video-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .video-showcase {
        padding: 50px 0;
    }
    
    .video-header h2 {
        font-size: 1.8rem;
    }
    
    .video-header p {
        font-size: 1rem;
    }
    
    .video-container {
        margin: 0 -20px 40px;
        border-radius: 0;
    }
    
    .video-cta-text {
        font-size: 1.1rem;
    }
    
    .video-cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }
    
    .video-cta-buttons .btn {
        width: 100%;
    }
}

/* ================================
   Video Split Layout (New Design)
   ================================ */

.video-split-layout {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.video-content-left {
    padding: 40px;
}

.video-content-left h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1E3A8A;
    margin-bottom: 20px;
    line-height: 1.2;
}

.video-content-left p {
    font-size: 1.1rem;
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 30px;
}

.video-features {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.video-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #374151;
}

.feature-check {
    color: #059669;
    font-weight: 700;
    font-size: 1.2rem;
}

.video-container-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase-video-vertical {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 700px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: block;
}

@media (max-width: 968px) {
    .video-split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .video-content-left {
        padding: 20px;
        order: 2;
    }
    
    .video-container-right {
        order: 1;
    }
    
    .showcase-video-vertical {
        max-height: 600px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .video-content-left h3 {
        font-size: 1.5rem;
    }
    
    .video-content-left p {
        font-size: 1rem;
    }
    
    .showcase-video-vertical {
        max-height: 500px;
        border-radius: 8px;
    }
}
