/* Main CSS for Fire Claims Lawyer Website */

:root {
    --primary-color: #1e3a5f;
    --secondary-color: #142a47;
    --accent-color: #9a7b3c;
    --accent-light: #c9a961;
    --dark-color: #1e3a5f;
    --light-color: #f8f9fa;
    --text-color: #2c3e50;
    --text-secondary: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-radius: 8px;
    --max-width: 1200px;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    box-shadow: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar.scrolled .navbar-logo,
.navbar.scrolled .nav-link {
    color: white;
}

.navbar-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

/* Logo */
.navbar-logo {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.navbar-logo:hover {
    color: var(--accent-color);
}

/* Main Navigation */
.navbar-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
    border-radius: 4px;
}

.nav-link:hover {
    color: var(--accent-color);
    background: rgba(255,255,255,0.05);
}

.nav-link.active {
    color: var(--accent-color);
    font-weight: 600;
}

/* Dropdown Arrow */
.dropdown-arrow {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    border-top: 3px solid var(--accent-color);
    padding: 0;
    list-style: none;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown li:last-child {
    border-bottom: none;
}

.dropdown a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.dropdown a:hover {
    background: var(--bg-light);
    color: var(--accent-color);
    padding-left: 1.5rem;
}

.dropdown-header {
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
    margin-top: 0.5rem;
}

.dropdown-header:first-child {
    margin-top: 0;
}

/* CTA Section */
.navbar-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-link:hover {
    color: var(--accent-light);
    transform: translateY(-2px);
}

.btn-nav {
    background: var(--accent-color);
    color: white;
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    display: inline-block;
}

.btn-nav:hover {
    background: #b8982f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.mobile-menu-btn.active .hamburger {
    background: transparent;
}

.mobile-menu-btn.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-btn.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Main Content */
main {
    margin-top: 0;
}

/* Main Content Wrapper - Scrolls over hero */
.main-content {
    position: relative;
    z-index: 10;
    background: white;
}

/* Alert Banner */
.alert-banner {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: white;
    padding: 18px 20px;
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-bottom: 3px solid var(--accent-color);
}

/* Hero Section - Full Screen with Slider */
.hero {
    position: sticky;
    top: 0;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    color: white;
    z-index: 1;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(30, 58, 95, 0.6) 100%);
    z-index: 2;
}

.hero-content-wrapper {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    z-index: 3;
    text-align: center;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Glassmorphism Card */
.hero-glass-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 25px;
    padding: 3.5rem 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.hero-glass-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--accent-light);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    font-weight: 600;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
    background: var(--accent-light);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(154, 123, 60, 0.3);
}

.btn-primary:hover {
    background: #b8982f;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(154, 123, 60, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Transparent glassmorphism buttons for hero */
.btn-transparent {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-transparent:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: white;
}

/* Fire Updates Section */
.fire-updates {
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(248, 248, 248, 0.95) 0%, rgba(235, 235, 235, 0.95) 100%);
    position: relative;
}

.fire-updates::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/smoke-city.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.08;
    z-index: 0;
}

.fire-updates .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

.fire-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.fire-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.fire-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.fire-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.fire-card.active {
    border-top-color: var(--accent-color);
    position: relative;
}

.fire-card.active::before {
    content: 'ACTIVE';
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Intake Form Section - Enhanced with Background */
.intake-form-section {
    padding: 100px 20px;
    background: url('/images/burning-woods.jpg') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
}

.intake-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(255, 255, 255, 0.92) 100%);
    z-index: 1;
}

.intake-form-section .container {
    position: relative;
    z-index: 2;
}

.form-container {
    max-width: 850px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 60px rgba(0,0,0,0.15);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.form-header p {
    font-size: 1.2rem;
    color: #666;
}

.progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e5e7eb;
    z-index: 1;
}

.progress-step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: var(--primary-color);
    color: white;
}

.progress-step.completed .step-number {
    background: var(--accent-color);
    color: white;
}

.step-label {
    font-size: 0.9rem;
    color: #666;
}

.intake-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.form-label .required {
    color: var(--primary-color);
}

.form-input,
.form-select,
.form-textarea {
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 41, 59, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.form-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.submit-button {
    background: var(--primary-color);
    color: white;
    padding: 1.25rem 3rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 41, 59, 0.3);
}

.form-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.form-footer p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/burning-woods.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.05;
    z-index: 0;
}

.services .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    padding: 2.5rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top: 4px solid var(--accent-color);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-card a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.service-card a:hover {
    text-decoration: underline;
}

/* Stats Section - Enhanced with Background */
.stats {
    background: url('/images/smoke-shoot.jpg') center/cover no-repeat;
    background-attachment: fixed;
    color: white;
    padding: 80px 20px;
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.9) 0%, rgba(20, 42, 71, 0.85) 100%);
    z-index: 1;
}

.stats .container {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    text-align: center;
}

.stat-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.stat-item h3 {
    font-size: 3.5rem;
    color: var(--accent-light);
    margin-bottom: 0.75rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-item p {
    font-size: 1.2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Fire Facts Section */
.fire-facts {
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    padding: 60px 20px;
    position: relative;
}

.fire-facts h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.facts-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.facts-list li {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    border: 2px solid rgba(154, 123, 60, 0.3);
    border-left: 5px solid var(--accent-color);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.facts-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-color);
}

/* Questionnaire CTA Section */
.questionnaire-cta {
    background: url('../images/smoke-city.jpg') center/cover no-repeat;
    background-attachment: fixed;
    padding: 80px 20px;
    position: relative;
}

.questionnaire-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.92) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

.questionnaire-cta .container {
    position: relative;
    z-index: 2;
}

.questionnaire-content {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3.5rem 3rem;
    border-radius: 25px;
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.questionnaire-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.questionnaire-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.25rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.questionnaire-content > p {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.questionnaire-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.benefit-item {
    color: white;
    font-size: 1.1rem;
    padding: 0.75rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-questionnaire {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-light);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(154, 123, 60, 0.4);
    margin-bottom: 1rem;
}

.btn-questionnaire:hover {
    background: #b8982f;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(154, 123, 60, 0.5);
}

.questionnaire-note {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Trust Bar Section */
.trust-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 50px 20px;
    color: white;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-light);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.trust-label {
    font-size: 1rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* CTA Section - Enhanced with Background */
.cta-section {
    background: url('/images/wildfire-firefighter-monitoring.png') center/cover no-repeat;
    background-attachment: fixed;
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 3.5rem 3rem;
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto;
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cta-section h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.cta-section p {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Historic Fires Section */
.historic-fires-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 20px;
}

.historic-fires-section h2 {
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.year-section {
    margin-bottom: 3rem;
}

.year-header {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--accent-color);
}

.fires-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.fire-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.75rem;
    border-radius: 15px;
    border: 2px solid rgba(154, 123, 60, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.fire-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-color);
}

.fire-item h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.fire-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fire-item ul li {
    padding: 0.5rem 0;
    color: var(--text-color);
    font-size: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.fire-item ul li:last-child {
    border-bottom: none;
}

/* Regional Coverage Section */
.regional-coverage {
    background: url('../images/smoke-city.jpg') center/cover no-repeat;
    background-attachment: fixed;
    padding: 100px 20px;
    position: relative;
}

.regional-coverage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.92) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

.regional-coverage .container {
    position: relative;
    z-index: 2;
}

.regional-coverage h2 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 3rem;
}

.region-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.region-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.region-box:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.region-box h3 {
    color: var(--accent-light);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.region-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.region-box ul li {
    color: white;
    padding: 0.75rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.region-box ul li:last-child {
    border-bottom: none;
}

.region-box ul li:hover {
    padding-left: 10px;
    color: var(--accent-light);
}

/* Footer CTA Section */
.footer-cta {
    background: url('/images/wildfire-firefighter-monitoring.png') center/cover no-repeat;
    background-attachment: fixed;
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.88) 0%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}

.footer-cta .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.footer-cta h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-weight: 700;
}

.footer-cta p {
    font-size: 1.35rem;
    margin: 1.5rem 0;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.contact-info {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    margin: 2.5rem auto;
    max-width: 700px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.contact-info p {
    font-size: 1.2rem;
    margin: 1rem 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-info a {
    color: var(--accent-light);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: white;
    text-decoration: underline;
}

.cta-button {
    display: inline-block;
    background: var(--accent-light);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(154, 123, 60, 0.4);
    margin-top: 2rem;
}

.cta-button:hover {
    background: #b8982f;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(154, 123, 60, 0.5);
}

/* Footer */
.footer {
    background: #0a0a0a;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info h3 {
    margin-bottom: 1rem;
}

.contact-info p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.contact-info a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: left;
}

.footer-column h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Service Overview Section - Insurance Claims Page */
.service-overview {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 20px;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.overview-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.overview-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1.5rem;
}

.overview-list {
    list-style: none;
    margin-top: 2rem;
}

.overview-list li {
    font-size: 1.05rem;
    color: #1e293b;
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.overview-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.2rem;
}

.overview-image {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 3rem 2.5rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.process-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.overview-image h3 {
    text-align: center;
    margin-bottom: 1rem;
}

.overview-image > p {
    text-align: center;
    margin-bottom: 2rem;
}

/* Policy Upload Form */
.policy-upload-form {
    margin-top: 2rem;
}

.upload-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-align: center;
}

.upload-input-wrapper {
    margin-bottom: 1.5rem;
}

.upload-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.5rem;
}

.upload-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 2px solid rgba(148, 163, 184, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.upload-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.upload-input::placeholder {
    color: #94a3b8;
}

.upload-input[type="file"] {
    padding: 0.75rem;
    cursor: pointer;
}

.upload-submit {
    width: 100%;
    padding: 1.125rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.3);
    margin-top: 1rem;
}

.upload-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(30, 58, 95, 0.4);
}

.upload-submit:active {
    transform: translateY(0);
}

.upload-note {
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 1rem;
    font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .navbar-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        box-shadow: var(--shadow-lg);
    }
    
    .navbar-menu.active {
        transform: translateX(0);
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        padding: 1rem;
        font-size: 1.1rem;
        width: 100%;
        border-bottom: 1px solid #f1f5f9;
    }
    
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8fafc;
        margin-top: 0.5rem;
        display: none;
    }
    
    .nav-item.active .dropdown {
        display: block;
    }
    
    .dropdown-arrow {
        margin-left: auto;
    }
    
    .navbar-cta {
        flex-direction: column;
        width: 100%;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid #e5e7eb;
    }
    
    .phone-link {
        font-size: 1.2rem;
    }
    
    .btn-nav {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        min-height: 600px;
    }

    .hero-content-wrapper {
        bottom: 50px;
    }

    .hero-glass-card {
        padding: 2.5rem 2rem;
        border-radius: 20px;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero .subtitle {
        font-size: 1.1rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 320px;
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .fire-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .fire-card, .service-card, .stat-item {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .cta-content {
        padding: 2.5rem 2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1.1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 2rem 1.5rem;
    }
    
    .progress-bar {
        display: none;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-column {
        text-align: center;
    }

    /* Service Overview Mobile */
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .overview-content h2 {
        font-size: 2rem;
    }

    .overview-image {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        min-height: 550px;
    }

    .hero-content-wrapper {
        bottom: 30px;
    }

    .hero-glass-card {
        padding: 2rem 1.5rem;
        border-radius: 18px;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .btn-primary, .btn-secondary {
        padding: 0.85rem 1.75rem;
        font-size: 0.95rem;
    }

    .fire-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-item {
        padding: 2rem 1.5rem;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .cta-content {
        padding: 2rem 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .facts-list {
        grid-template-columns: 1fr;
    }

    .questionnaire-content {
        padding: 2.5rem 2rem;
    }

    .trust-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-cta h2 {
        font-size: 2rem;
    }

    .footer-cta p {
        font-size: 1.1rem;
    }

    .contact-info {
        padding: 2rem 1.5rem;
    }

    .fires-list {
        grid-template-columns: 1fr;
    }

    .region-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .region-box {
        padding: 2rem 1.5rem;
    }

    /* Service Overview Mobile Small Screens */
    .overview-content h2 {
        font-size: 1.75rem;
    }

    .overview-content p {
        font-size: 1rem;
    }

    .overview-list li {
        font-size: 0.95rem;
    }

    .overview-image {
        padding: 2rem 1.5rem;
    }

    .upload-input {
        font-size: 0.95rem;
        padding: 0.75rem 0.875rem;
    }

    .upload-submit {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }

    /* Disable parallax effect on mobile for better performance */
    .stats,
    .cta-section,
    .intake-form-section,
    .questionnaire-cta,
    .footer-cta,
    .regional-coverage,
    .service-overview {
        background-attachment: scroll !important;
    }
}
