/* ========================================
   AirDuctVet Website Styles
   ======================================== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e3a8a;
    --secondary-color: #dc2626;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
}

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

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ========================================
   Header Styles
   ======================================== */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.top-bar {
    background: var(--primary-color);
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-info {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.contact-info a,
.hours {
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info a:hover {
    color: var(--accent-color);
}

/* Navigation */
.navbar {
    background: white;
    padding: 15px 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    list-style: none;
    min-width: 220px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--secondary-color);
}

.dropdown-menu a::after {
    display: none;
}

.btn-call {
    background: var(--secondary-color);
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 5px;
    font-weight: 600;
}

.btn-call:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.btn-call::after {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    color: white;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><path d="M50 0L0 50l50 50 50-50z" fill="rgba(255,255,255,0.03)"/></svg>');
    opacity: 0.1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

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

.veteran-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-color);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.feature-item i {
    color: var(--success-color);
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

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

.btn-secondary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

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

.btn-primary-white:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.btn-secondary-white {
    background: transparent;
    color: white;
    border-color: white;
}

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

.btn-emergency {
    background: var(--danger-color);
    color: white;
    font-size: 1.1rem;
    padding: 16px 35px;
}

.btn-emergency:hover {
    background: #dc2626;
    transform: scale(1.05);
}

/* ========================================
   Services Overview Section
   ======================================== */

.services-overview {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 800;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

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

.service-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

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

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.service-benefits li {
    padding: 8px 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-benefits i {
    color: var(--success-color);
}

.service-link {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    gap: 12px;
}

/* ========================================
   Why Choose Us Section
   ======================================== */

.why-choose {
    padding: 80px 0;
    background: white;
}

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

.why-item {
    text-align: center;
}

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.why-icon i {
    font-size: 2.2rem;
    color: var(--secondary-color);
}

.why-item:hover .why-icon {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.why-item:hover .why-icon i {
    color: white;
}

.why-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.why-item p {
    color: var(--text-light);
}

/* ========================================
   Warning Section
   ======================================== */

.warning-section {
    padding: 60px 0;
    background: #fef3c7;
    border-top: 4px solid var(--warning-color);
    border-bottom: 4px solid var(--warning-color);
}

.warning-content {
    display: flex;
    gap: 30px;
    align-items: center;
}

.warning-icon {
    font-size: 4rem;
    color: var(--warning-color);
    flex-shrink: 0;
}

.warning-text h2 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 2rem;
}

.warning-text p {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* ========================================
   Service Areas Section
   ======================================== */

.service-areas {
    padding: 80px 0;
    background: white;
}

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

.area-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.area-card:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.area-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.area-card:hover i {
    color: var(--accent-color);
}

.area-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.area-card:hover h3,
.area-card:hover p {
    color: white;
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-col h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.footer-col p {
    color: #d1d5db;
    margin-bottom: 15px;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    padding: 8px 0;
}

.footer-col ul li a {
    color: #d1d5db;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    gap: 10px;
    color: #d1d5db;
}

.contact-list i {
    color: var(--accent-color);
    margin-top: 5px;
}

.veteran-badge-footer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #9ca3af;
}

/* ========================================
   Page Header
   ======================================== */

.page-header {
    background: linear-gradient(135deg, var(--primary-color), #1e40af);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ========================================
   Service Hero
   ======================================== */

.service-hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    color: white;
    padding: 100px 0 70px;
    text-align: center;
}

.service-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.service-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.dryer-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #dc2626 100%);
}

.chimney-hero {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
}

.sanitizing-hero {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

/* ========================================
   Service Overview
   ======================================== */

.service-overview {
    padding: 80px 0;
    background: white;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.overview-content h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.overview-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.overview-benefits {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    position: sticky;
    top: 100px;
}

.overview-benefits h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 12px 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

.benefits-list i {
    color: var(--success-color);
    font-size: 1.2rem;
}

/* ========================================
   Signs/Why Need Cleaning Section
   ======================================== */

.why-need-cleaning {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.sign-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.sign-card.danger {
    border-left: 4px solid var(--danger-color);
}

.sign-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.sign-icon i {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.sign-card.danger .sign-icon {
    background: #fee2e2;
}

.sign-card.danger .sign-icon i {
    color: var(--danger-color);
}

.sign-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.sign-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   Process Section
   ======================================== */

.service-process {
    padding: 80px 0;
    background: white;
}

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

.process-step {
    background: var(--bg-light);
    padding: 35px 30px;
    border-radius: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.process-step:hover .step-number {
    background: var(--accent-color);
}

.process-step h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.process-step:hover h3,
.process-step:hover p {
    color: white;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   Pricing Section
   ======================================== */

.pricing-info {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.pricing-text h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.pricing-text h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.pricing-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.pricing-factors li {
    padding: 12px 0;
    color: var(--text-dark);
    display: flex;
    gap: 12px;
    line-height: 1.7;
}

.pricing-factors i {
    color: var(--secondary-color);
    margin-top: 5px;
}

.pricing-guarantee {
    background: white;
    padding: 20px;
    border-left: 4px solid var(--success-color);
    border-radius: 5px;
    margin-top: 20px;
}

.pricing-cta {
    position: sticky;
    top: 100px;
}

.pricing-box {
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.pricing-box h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.pricing-box p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.pricing-includes {
    list-style: none;
    text-align: left;
    margin: 25px 0;
}

.pricing-includes li {
    padding: 10px 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-includes i {
    color: var(--success-color);
}

.pricing-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 15px;
}

/* ========================================
   Service Areas Detail
   ======================================== */

.service-areas-detail {
    padding: 80px 0;
    background: white;
}

.areas-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.area-detail {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
}

.area-detail h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.area-detail i {
    color: var(--secondary-color);
}

.area-detail p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   FAQ Section
   ======================================== */

.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

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

/* ========================================
   About Page Styles
   ======================================== */

.about-story {
    padding: 80px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.veteran-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.about-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-image {
    background: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 100px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.image-placeholder i {
    font-size: 5rem;
    opacity: 0.8;
}

.image-placeholder p {
    font-size: 1.5rem;
    font-weight: 600;
}

.our-values {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.value-card {
    background: white;
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 2.2rem;
    color: white;
}

.value-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.certifications {
    padding: 80px 0;
    background: white;
}

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

.cert-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 10px;
    text-align: center;
}

.cert-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.cert-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.cert-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.service-area-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.service-area-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.area-info h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.area-info p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.area-list li {
    padding: 12px 0;
    color: var(--text-dark);
    display: flex;
    gap: 12px;
    line-height: 1.7;
}

.area-list i {
    color: var(--success-color);
    margin-top: 5px;
}

.area-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.highlight-box i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.highlight-box h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.highlight-box p {
    color: var(--text-light);
    line-height: 1.7;
}

.why-choose-about {
    padding: 80px 0;
    background: white;
}

.why-content {
    display: grid;
    gap: 30px;
    margin-top: 50px;
}

.why-item-large {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    display: flex;
    gap: 30px;
    align-items: start;
}

.why-number {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    flex-shrink: 0;
}

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

.why-item-large p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ========================================
   Fire Alert & Special Sections
   ======================================== */

.fire-alert {
    padding: 60px 0;
    background: #fee2e2;
    border-top: 4px solid var(--danger-color);
    border-bottom: 4px solid var(--danger-color);
}

.alert-content {
    display: flex;
    gap: 30px;
    align-items: center;
}

.alert-icon {
    font-size: 4rem;
    color: var(--danger-color);
    flex-shrink: 0;
}

.alert-text h2 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 2rem;
}

.alert-text p {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.05rem;
}

.safety-benefits {
    padding: 80px 0;
    background: white;
}

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

.safety-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 10px;
    text-align: center;
}

.safety-card i {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 20px;
}

.safety-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.safety-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   Chimney Inspection Styles
   ======================================== */

.inspection-services {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.inspection-card {
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.inspection-card.featured {
    border: 3px solid var(--secondary-color);
    transform: scale(1.05);
}

.inspection-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.inspection-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.inspection-card ul {
    list-style: none;
}

.inspection-card ul li {
    padding: 8px 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 20px;
}

.inspection-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

/* ========================================
   Sanitizing Specific Styles
   ======================================== */

.decon-section {
    padding: 80px 0;
    background: white;
}

.decon-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.decon-info h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.decon-info p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.decon-info h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 30px 0 20px;
}

.decon-features {
    list-style: none;
}

.decon-features li {
    padding: 15px 0;
    color: var(--text-dark);
    display: flex;
    gap: 15px;
    line-height: 1.7;
}

.decon-features i {
    color: var(--success-color);
    font-size: 1.5rem;
    margin-top: 3px;
}

.sanitizing-benefits {
    padding: 80px 0;
    background: var(--bg-light);
}

.benefits-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.comparison-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.comparison-card.featured {
    border: 3px solid var(--success-color);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transform: scale(1.05);
}

.comparison-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    padding: 12px 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.7;
}

.comparison-list i.fa-check {
    color: var(--success-color);
    font-size: 1.2rem;
}

.comparison-list i.fa-times {
    color: #ef4444;
    font-size: 1.2rem;
}

/* ========================================
   Contact Page Styles
   ======================================== */

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

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.contact-form-container h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.contact-form-container p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.phone-link {
    color: var(--secondary-color);
    font-weight: 600;
}

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

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

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-group textarea {
    resize: vertical;
}

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

.checkbox-group input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.form-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 15px;
    text-align: center;
}

.form-message {
    background: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-message i {
    font-size: 4rem;
    margin-bottom: 20px;
}

.form-message.success i {
    color: var(--success-color);
}

.form-message.error i {
    color: var(--danger-color);
}

.form-message h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 15px;
}

.form-message p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-box {
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.contact-info-box h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.info-text h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-text a {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.info-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 5px;
}

.service-areas-list {
    list-style: none;
}

.service-areas-list li {
    padding: 10px 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-areas-list i {
    color: var(--success-color);
}

.veteran-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.veteran-box h3,
.veteran-box .veteran-badge-large {
    color: white;
}

.why-list {
    list-style: none;
}

.why-list li {
    padding: 10px 0;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-list i {
    color: var(--accent-color);
}

.map-section {
    padding: 80px 0;
    background: white;
}

.map-section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
}

.map-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.emergency-section {
    padding: 60px 0;
    background: var(--danger-color);
}

.emergency-content {
    display: flex;
    gap: 30px;
    align-items: center;
    color: white;
}

.emergency-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.emergency-text h2 {
    color: white;
    margin-bottom: 15px;
    font-size: 2rem;
}

.emergency-text p {
    color: white;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 768px) {
    /* Typography */
    .hero h1,
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-subtitle,
    .service-subtitle {
        font-size: 1.1rem;
    }
    
    /* Navigation */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 120px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 120px);
        background: white;
        flex-direction: column;
        padding: 30px;
        gap: 0;
        transition: left 0.3s ease;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--bg-light);
        margin-top: 10px;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    /* Grid Layouts */
    .services-grid,
    .why-grid,
    .areas-grid,
    .process-steps,
    .signs-grid,
    .faq-grid,
    .values-grid,
    .cert-grid,
    .safety-grid,
    .inspection-grid,
    .areas-content {
        grid-template-columns: 1fr;
    }
    
    .overview-grid,
    .about-grid,
    .service-area-content,
    .decon-content,
    .benefits-comparison,
    .contact-wrapper,
    .pricing-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Sections */
    .hero,
    .service-hero {
        padding: 60px 0 40px;
    }
    
    .warning-content,
    .alert-content,
    .emergency-content {
        flex-direction: column;
        text-align: center;
    }
    
    .why-item-large {
        flex-direction: column;
        text-align: center;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    /* Buttons */
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    /* Top Bar */
    .top-bar-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .service-card,
    .sign-card,
    .process-step {
        padding: 25px 20px;
    }
}
