/* --- GLOBAL STYLES --- */
:root {
    --primary: #0056b3; /* Authority Blue */
    --dark-blue: #003d80;
    --accent: #ffc107; /* Conversion Yellow */
    --dark: #212529;
    --grey: #555;
    --light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; margin: 0; padding: 0; color: var(--dark); line-height: 1.6; background-color: var(--white); }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; padding: 0; }

/* --- HEADER (THE NAVBAR) --- */
.navbar {
    background: var(--white);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo { font-size: 1.5rem; font-weight: 900; color: var(--primary); text-transform: uppercase; letter-spacing: -1px; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-weight: 600; font-size: 0.95rem; color: var(--dark); }
.nav-links a:hover { color: var(--primary); }
.nav-cta { background: var(--accent); color: var(--dark); padding: 10px 25px; border-radius: 5px; font-weight: 800; }
.nav-cta:hover { background: #e0a800; }

/* --- HERO SECTION --- */
.hero {
    /* Background Image is defined INLINE on the HTML page for flexibility */
    background-color: #333; /* Fallback color */
    background-size: cover;
    background-position: center;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 20px;
}
.hero-content { max-width: 900px; }
.hero h1 { font-size: 3.5rem; font-weight: 900; margin-bottom: 10px; line-height: 1.1; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.hero p { font-size: 1.4rem; margin-bottom: 30px; font-weight: 500; opacity: 0.9; }

/* --- CONVERSION BOX (Zip Input) --- */
.zip-box {
    background: var(--white);
    padding: 10px;
    border-radius: 8px;
    display: inline-flex;
    gap: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.zip-input { padding: 15px 20px; font-size: 1.1rem; border: 2px solid #eee; border-radius: 5px; width: 220px; outline: none; }
.zip-input:focus { border-color: var(--primary); }
.zip-btn { background: var(--primary); color: white; border: none; padding: 15px 30px; font-weight: 800; font-size: 1.1rem; border-radius: 5px; cursor: pointer; text-transform: uppercase; }
.zip-btn:hover { background: var(--dark-blue); }

/* --- TRUST BAR --- */
.trust-bar { background: #f4f4f4; padding: 20px 0; border-bottom: 1px solid #ddd; }
.trust-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: center; gap: 50px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--grey); text-transform: uppercase; font-size: 0.9rem; }
.check { color: green; font-size: 1.2rem; }

/* --- SECTIONS COMMON --- */
.section { padding: 100px 20px; max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 60px; max-width: 700px; margin-left: auto; margin-right: auto; }
.section-header h2 { font-size: 2.5rem; font-weight: 900; margin-bottom: 15px; color: var(--dark); }
.section-header h1 { font-size: 3rem; font-weight: 900; margin-bottom: 15px; color: #222; }
.section-header p { font-size: 1.1rem; color: var(--grey); }

/* --- HOW IT WORKS --- */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; text-align: center; }
.process-card { padding: 20px; }
.process-icon { font-size: 3rem; margin-bottom: 20px; display: block; color: var(--primary); }
.process-card h3 { font-size: 1.3rem; margin-bottom: 10px; }

/* --- SERVICE GRID --- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { 
    background: var(--white); border-radius: 12px; overflow: hidden; 
    box-shadow: var(--shadow); transition: transform 0.3s; border: 1px solid #eee;
    display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-5px); border-color: var(--primary); }
.service-img { height: 200px; background-color: #ddd; background-size: cover; background-position: center; }
.service-info { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between;}
.service-info h3 { margin-top: 0; color: var(--primary); font-size: 1.4rem; }
.service-link { font-weight: 700; color: var(--accent); text-transform: uppercase; font-size: 0.9rem; margin-top: 15px; display: block; }

/* --- SEO CONTENT BLOCK --- */
.seo-content { background: var(--light); padding: 80px 20px; }
.content-container { max-width: 900px; margin: 0 auto; }
.content-container h2 { font-size: 2rem; margin-bottom: 20px; }
.content-container h3 { font-size: 1.5rem; margin-top: 30px; margin-bottom: 15px; color: var(--dark-blue); }
.content-container p { margin-bottom: 20px; font-size: 1.05rem; color: #444; }
.content-container ul { list-style: disc; padding-left: 20px; margin-bottom: 20px; }
.content-container li { margin-bottom: 10px; }

/* --- TESTIMONIALS --- */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.review-card { background: var(--white); padding: 30px; border-radius: 12px; box-shadow: var(--shadow); border: 1px solid #eee; }
.stars { color: #ffc107; margin-bottom: 15px; font-size: 1.2rem; }
.review-text { font-style: italic; color: #555; margin-bottom: 20px; }
.review-author { font-weight: 800; font-size: 0.9rem; }
.review-loc { color: #888; font-size: 0.8rem; }

/* --- FAQ ACCORDION --- */
.faq-item { border-bottom: 1px solid #ddd; margin-bottom: 10px; }
.faq-question { 
    padding: 20px; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; 
    font-size: 1.1rem; background: var(--white); 
}
.faq-question:hover { color: var(--primary); }
.faq-answer { display: none; padding: 0 20px 20px 20px; color: #555; line-height: 1.6; }
.faq-active .faq-answer { display: block; }
.plus { font-weight: 400; font-size: 1.5rem; }

/* --- WHAT WE TAKE PAGE SPECIFIC --- */
.hero-subtext { font-size: 1.2rem; max-width: 800px; margin: 0 auto; color: #555; line-height: 1.6; }
.detailed-list-section { margin-top: 80px; background: white; padding: 50px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.detailed-list-section h2 { margin-bottom: 40px; color: #2c3e50; font-size: 2.2rem; text-align: center; }
.list-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.list-group h3 { color: var(--primary); border-bottom: 2px solid #f0f0f0; padding-bottom: 15px; margin-bottom: 20px; font-size: 1.4rem; }
.list-group ul { list-style: none; padding: 0; }
.list-group li { margin-bottom: 15px; line-height: 1.6; font-size: 1rem; color: #444; }

.exceptions-section { margin-top: 50px; background: #fff8e1; padding: 40px; border-radius: 8px; border-left: 6px solid #ffc107; }
.exceptions-section h3 { color: #856404; margin-top: 0; font-size: 1.5rem; }
.exceptions-list { display: flex; flex-wrap: wrap; gap: 20px; list-style: none; padding: 0; margin: 20px 0; font-weight: 600; color: #333; }
.exception-note { font-size: 1rem; margin-top: 15px; }

/* --- FOOTER --- */
footer { background: #1a1a1a; color: white; padding: 80px 20px 40px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; max-width: 1200px; margin: 0 auto; }
.footer-col h4 { color: var(--accent); margin-top: 0; margin-bottom: 20px; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #aaa; font-size: 0.9rem; }
.footer-col ul li a:hover { color: white; }
.footer-bottom { text-align: center; border-top: 1px solid #333; margin-top: 60px; padding-top: 30px; color: #666; font-size: 0.8rem; }

/* --- MOBILE --- */
.mobile-sticky { display: none; position: fixed; bottom: 0; left: 0; width: 100%; background: var(--accent); text-align: center; padding: 15px; font-weight: 800; font-size: 1.2rem; z-index: 9999; box-shadow: 0 -5px 15px rgba(0,0,0,0.1); color: var(--dark); }

@media (max-width: 768px) {
    .navbar { padding: 0 20px; }
    .nav-links { display: none; }
    h1 { font-size: 2.5rem; }
    .zip-box { flex-direction: column; width: 100%; }
    .zip-input { width: 100%; }
    .zip-btn { width: 100%; }
    .trust-container { flex-direction: column; gap: 15px; align-items: center; }
    .mobile-sticky { display: block; }
    body { padding-bottom: 60px; }
    
    .list-columns { grid-template-columns: 1fr; gap: 30px; }
    .detailed-list-section { padding: 25px; }
}