/* ============================================
   APPROVED RESTORATIONS - COMPLETE STYLESHEET
   Combines all styles for entire website
   ============================================ */

/* ========== CSS VARIABLES ========== */
:root {
    --primary: #0066FF;
    --primary-dark: #0052CC;
    --primary-light: #3385FF;
    --secondary: #00D4FF;
    --accent: #FF6B35;
    --accent-dark: #E55A2B;
    --dark: #0A1128;
    --gray: #1E293B;
    --medium-gray: #475569;
    --light-gray: #E2E8F0;
    --white: #FFFFFF;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    
    --gradient: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    --gradient-dark: linear-gradient(135deg, #0A1128 0%, #1E293B 100%);
    --gradient-accent: linear-gradient(135deg, #FF6B35 0%, #FF8A5C 100%);
    --gradient-radial: radial-gradient(circle at 50% 50%, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
    
    --shadow-sm: 0 2px 8px 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);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

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

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

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ========== EMERGENCY BANNER ========== */
.emergency-banner {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 14px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    position: relative;
    z-index: 1001;
    animation: urgentPulse 2s infinite;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.emergency-banner a {
    color: var(--white);
    text-decoration: underline;
    margin-left: 12px;
    font-weight: 800;
}

@keyframes urgentPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.95; }
}

/* ========== NAVIGATION ========== */
nav {
    background: rgba(10, 17, 40, 0.97);
    backdrop-filter: blur(15px);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-logo {
    width: 80px;
    height: 80px;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient);
    transition: width 0.3s ease;
    border-radius: var(--radius-full);
}

.nav-links a:hover {
    color: var(--secondary);
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--gradient);
    color: var(--white);
    padding: 14px 70px;
    border-radius: var(--radius-full);
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-button .phone-icon {
    font-size: 16px;
}

.nav-links .cta-button::after {
    display: none !important;
}

.nav-links .cta-button:hover::after {
    display: none !important;
    width: 0 !important;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.45);
}

.mobile-menu-btn {
    display: none;
    color: var(--white);
    font-size: 28px;
    padding: 5px;
}

/* Mobile Menu - HIDDEN by default */
.mobile-menu {
    display: none !important;
}

.mobile-menu.active {
    display: flex !important;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: rgba(10, 17, 40, 0.98);
    backdrop-filter: blur(15px);
    padding: 30px 5%;
    flex-direction: column;
    gap: 20px;
    z-index: 998;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.mobile-menu a {
    color: var(--white);
    padding: 15px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
}

.mobile-menu a:hover {
    background: var(--gradient);
}

/* ========== HERO SECTION ========== */
.hero {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 120px 5% 140px;
    position: relative;
    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"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)" /></svg>');
    animation: gridMove 25s linear infinite;
}

@keyframes gridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(100px); }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.hero-text {
    display: flex;
    flex-direction: column;
}

.hero-text h1 {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-text .highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 22px;
    margin-bottom: 35px;
    color: var(--light-gray);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.primary-btn, .secondary-btn {
    padding: 18px 40px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 17px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.primary-btn {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
    border: 2px solid transparent;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255, 107, 53, 0.5);
}

.secondary-btn {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.trust-badges {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 15px;
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/* Hero Card */
.hero-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    padding: 45px;
    box-shadow: var(--shadow-xl);
}

.response-time {
    text-align: center;
    margin-bottom: 35px;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
}

.response-time .time {
    font-size: 80px;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.response-time .label {
    font-size: 14px;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 10px;
}

.quick-contact {
    display: grid;
    gap: 15px;
}

.contact-option {
    background: rgba(255, 255, 255, 0.07);
    padding: 22px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 18px;
    cursor: pointer;
    transition: var(--transition);
}

.contact-option:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(8px);
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.contact-info h3 {
    font-size: 17px;
    margin-bottom: 5px;
}

.contact-info p {
    font-size: 15px;
    color: var(--light-gray);
    margin: 0;
}

/* ========== DAMAGE ASSESSMENT ========== */
.damage-assessment {
    padding: 100px 5%;
    background: #F8FAFC;
    border-top: 1px solid #E2E8F0;
}

.assessment-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-tag {
    display: inline-block;
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.section-header h2 {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 24px;
    color: var(--dark);
    letter-spacing: -1px;
}

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

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

.damage-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 45px 35px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid var(--light-gray);
}

.damage-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.damage-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.damage-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--dark);
}

.damage-card p {
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.select-btn {
    color: var(--primary);
    font-weight: 700;
}

/* ========== SERVICES ========== */
.services {
    padding: 120px 5%;
    background: var(--white);
    border-top: 1px solid #E2E8F0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 35px;
    max-width: 1600px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 50px 40px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.service-icon {
    width: 85px;
    height: 85px;
    background: var(--gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin-bottom: 28px;
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3);
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: var(--dark);
}

.service-card p {
    color: var(--medium-gray);
    margin-bottom: 25px;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 10px 0;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
    font-size: 20px;
}

.learn-more {
    color: var(--primary);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.learn-more:hover {
    gap: 14px;
}

/* ========== STATS SECTION ========== */
.stats-section {
    padding: 80px 5%;
    background: var(--gradient-dark);
    position: relative;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 1;
}

.stat {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: 72px;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 15px;
}

.stat-label {
    font-size: 18px;
    color: var(--light-gray);
    font-weight: 600;
}

/* ========== WHY CHOOSE US ========== */
.why-choose {
    padding: 100px 5%;
    background: var(--white);
    color: var(--dark);
    border-top: 1px solid #E2E8F0;
}

.why-choose .section-header h2,
.why-choose .section-header p {
    color: var(--dark);
}

.why-choose .section-tag {
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.why-card {
    text-align: center;
    padding: 40px 30px;
    background: #F8FAFC;
    border-radius: var(--radius-lg);
    border: 2px solid var(--light-gray);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 24px;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
}

.why-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark);
}

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

/* ========== TESTIMONIALS ========== */
.testimonials {
    padding: 100px 5%;
    background: #F8FAFC;
    border-top: 1px solid #E2E8F0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stars {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 20px;
}

.author-info h4 {
    font-size: 16px;
    color: var(--dark);
}

.author-info p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 100px 5%;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
}

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

.cta-btn {
    padding: 18px 40px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 18px;
    transition: var(--transition);
}

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

.cta-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.3);
}

.cta-btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

/* ========== FOOTER ========== */
footer {
    background: var(--dark);
    color: var(--light-gray);
    padding: 60px 5% 30px;
}

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

.footer-section h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 20px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: var(--light-gray);
    transition: color 0.3s;
}

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

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

/* ========== CHAT WIDGET ========== */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gradient);
    color: var(--white);
    padding: 18px 24px;
    border-radius: var(--radius-full);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-widget:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.5);
}

.chat-icon {
    font-size: 24px;
}

/* ========== PAGE-SPECIFIC STYLES ========== */

/* Page Header */
.page-header {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 80px 5% 60px;
    text-align: center;
    position: relative;
}

.page-header h1 {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 20px;
}

.breadcrumb {
    font-size: 14px;
    color: var(--light-gray);
}

.breadcrumb a {
    color: var(--secondary);
}

/* Service Detail Pages */
.service-detail {
    padding: 100px 5%;
    background: var(--white);
}

.service-detail.alt-bg {
    background: #F8FAFC;
}

.service-detail-container {
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

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

.check-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 20px;
}

/* Contact Form */
.contact-section {
    padding: 100px 5%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-size: 16px;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

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

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

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.full-width {
    width: 100%;
}

/* ========== GALLERY PREVIEW ========== */
.gallery-preview {
    padding: 100px 5%;
    background: var(--white);
    border-top: 1px solid #E2E8F0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-side {
    position: relative;
    overflow: hidden;
}

.placeholder-img {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    position: relative;
}

.placeholder-img.before {
    background: linear-gradient(135deg, #6B7280 0%, #4B5563 100%);
}

.placeholder-img.after {
    background: var(--gradient);
}

.placeholder-img span {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.gallery-caption {
    text-align: center;
}

.gallery-caption h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--dark);
}

.gallery-caption p {
    color: var(--medium-gray);
    font-size: 15px;
}

.gallery-cta {
    text-align: center;
    margin-top: 60px;
}

/* ========== SERVICE AREAS ========== */
.service-areas {
    padding: 100px 5%;
    background: #F8FAFC;
    border-top: 1px solid #E2E8F0;
}

.areas-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.map-placeholder {
    background: var(--light-gray);
    border-radius: var(--radius-xl);
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-content {
    text-align: center;
    padding: 40px;
}

.map-content h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark);
}

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

.areas-list {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.areas-list h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--dark);
}

.city-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.city-list li {
    padding: 12px 0;
    color: var(--gray);
    font-size: 16px;
    border-bottom: 1px solid var(--light-gray);
}

.city-list li::before {
    content: '✓ ';
    color: var(--primary);
    font-weight: bold;
    margin-right: 8px;
}

.service-note {
    margin-top: 30px;
    padding: 20px;
    background: rgba(0, 102, 255, 0.05);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-md);
    color: var(--gray);
}

.service-note a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

/* ========== PROCESS SECTION ========== */
.process {
    padding: 100px 5%;
    background: var(--white);
    border-top: 1px solid #E2E8F0;
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient);
    transform: translateX(-50%);
}

.process-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
}

.step-content {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.step-content:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.step-label {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.step-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--dark);
}

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

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
}

.number-circle {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
    position: relative;
    z-index: 2;
}

/* ========== ADDITIONAL UTILITY CLASSES ========== */
.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.text-link {
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition-fast);
}

.text-link:hover {
    color: var(--primary-dark);
}

.info-box {
    padding: 25px;
    border-radius: var(--radius-md);
    margin: 30px 0;
}

.info-box.warning {
    background: rgba(255, 107, 53, 0.1);
    border-left: 4px solid var(--accent);
}

.info-box.info {
    background: rgba(0, 102, 255, 0.1);
    border-left: 4px solid var(--primary);
}

.info-box h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark);
}

.info-box p {
    color: var(--gray);
    line-height: 1.7;
}

.sidebar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    margin-bottom: 25px;
}

.sidebar-card h3 {
    font-size: 20px;
    margin-bottom: 18px;
    color: var(--dark);
}

.cta-card {
    background: var(--gradient);
    color: var(--white);
}

.cta-card h3,
.cta-card p {
    color: var(--white);
}

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

@media (max-width: 968px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-text h1 {
        font-size: 42px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-content {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .process-step {
        grid-template-columns: 1fr;
        padding-left: 80px;
    }
    
    .step-number {
        position: absolute;
        left: 0;
        justify-content: flex-start;
    }
    
    .city-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .damage-types {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .trust-badges {
        flex-direction: column;
    }
    
    .before-after {
        grid-template-columns: 1fr;
    }
    
    .placeholder-img {
        height: 200px;
    }
}
/* ============================================
   ADDITIONAL PAGE STYLES (About, Gallery, FAQ, Services, Contact)
   Uses ORIGINAL color variables - NO color changes
   ============================================ */

/* ========== PAGE HEADER (All Internal Pages) ========== */
.page-header {
    background: var(--gradient-dark);
    padding: 120px 5% 80px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::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"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)" /></svg>');
}

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

.page-header h1 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-header p {
    font-size: 22px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.breadcrumb {
    font-size: 16px;
    opacity: 0.8;
    margin-top: 20px;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--secondary);
}

/* ========== ABOUT PAGE ========== */
.about-story {
    padding: 100px 5%;
    background: var(--white);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-content .lead {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--gray);
    font-weight: 500;
}

.story-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--medium-gray);
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-box {
    background: var(--gradient);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.stat-box .stat-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.stat-box .stat-num {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 8px;
}

.stat-box .stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.our-values {
    padding: 100px 5%;
    background: var(--light-gray);
}

.values-container {
    max-width: 1400px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.value-card {
    background: var(--white);
    padding: 40px 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark);
}

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

.certifications {
    padding: 100px 5%;
    background: var(--white);
}

.cert-container {
    max-width: 1400px;
    margin: 0 auto;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.cert-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--light-gray);
    transition: var(--transition);
}

.cert-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.cert-logo {
    text-align: center;
    margin-bottom: 30px;
}

.cert-logo-placeholder {
    font-size: 72px;
    text-align: center;
    margin-bottom: 30px;
}

.cert-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--dark);
}

.cert-card p {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.cert-list {
    list-style: none;
    margin-top: 20px;
}

.cert-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--gray);
}

.cert-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 18px;
}

.why-choose-detailed {
    padding: 100px 5%;
    background: var(--light-gray);
}

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

.advantages-list {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.advantage-item {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    display: flex;
    gap: 30px;
    align-items: flex-start;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.advantage-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.advantage-icon {
    font-size: 56px;
    flex-shrink: 0;
}

.advantage-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--dark);
}

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

.service-area-brief {
    padding: 80px 5%;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
}

.service-area-container {
    max-width: 900px;
    margin: 0 auto;
}

.service-area-container h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.service-area-highlights {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.area-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
}

.area-icon {
    font-size: 32px;
}

/* ========== GALLERY PAGE ========== */
.gallery-filters {
    padding: 40px 5%;
    background: var(--white);
    border-bottom: 2px solid var(--light-gray);
}

.filter-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    border: 2px solid var(--primary);
    background: var(--white);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
}

.gallery-section {
    padding: 80px 5%;
    background: var(--light-gray);
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.gallery-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

.gallery-side {
    position: relative;
}

.gallery-placeholder {
    height: 300px;
    background: linear-gradient(135deg, #e0e0e0 0%, #c0c0c0 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.gallery-placeholder.before {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: var(--white);
}

.gallery-placeholder.success {
    background: linear-gradient(135deg, #51cf66 0%, #37b24d 100%);
    color: var(--white);
}

.placeholder-text {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 15px;
}

.gallery-placeholder p {
    font-size: 16px;
    font-weight: 600;
}

.gallery-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0,0,0,0.8);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 14px;
}

.gallery-info {
    padding: 30px;
}

.gallery-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark);
}

.gallery-info p {
    color: var(--medium-gray);
    margin-bottom: 8px;
}

.gallery-testimonial {
    padding: 80px 5%;
    background: var(--gradient);
    color: var(--white);
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-container .stars {
    color: #FFD700;
    font-size: 32px;
    margin-bottom: 30px;
}

.testimonial-container blockquote {
    font-size: 24px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-container .author {
    font-size: 18px;
    font-weight: 600;
    opacity: 0.9;
}

/* ========== FAQ PAGE ========== */
.faq-section {
    padding: 80px 5%;
    background: var(--white);
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 60px;
}

.faq-category h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--dark);
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary);
}

.faq-item {
    margin-bottom: 15px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: var(--white);
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-icon {
    font-size: 28px;
    color: var(--primary);
    font-weight: 700;
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--light-gray);
}

.faq-answer p {
    padding: 25px 30px;
    color: var(--gray);
    line-height: 1.8;
    margin: 0;
}

.faq-answer a {
    color: var(--primary);
    text-decoration: underline;
}

.faq-answer strong {
    color: var(--dark);
}

.faq-cta {
    padding: 80px 5%;
    background: var(--gradient);
    color: var(--white);
}

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

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

.faq-cta-content p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

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

/* ========== SERVICES PAGE ========== */
.service-detail {
    padding: 80px 5%;
    background: var(--white);
}

.service-detail:nth-child(even) {
    background: var(--light-gray);
}

.service-detail-container {
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.service-detail-text {
    padding-right: 40px;
}

.service-tag {
    display: inline-block;
    background: var(--gradient-accent);
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-detail-text h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--dark);
}

.service-detail-text h3 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--dark);
}

.service-detail-text .lead {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(0, 102, 255, 0.05);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-md);
}

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

.process-steps .step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 2px solid var(--light-gray);
    transition: var(--transition);
}

.service-detail:nth-child(even) .process-steps .step {
    background: var(--light-gray);
}

.process-steps .step:hover {
    border-color: var(--primary);
    transform: translateX(10px);
}

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

.process-steps .step h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--dark);
}

.process-steps .step p {
    color: var(--medium-gray);
    line-height: 1.6;
}

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

.check-list li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    color: var(--gray);
    line-height: 1.6;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 20px;
}

.service-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-cta {
    background: var(--gradient);
    color: var(--white);
    padding: 40px 35px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-bottom: 30px;
}

.sidebar-cta h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.sidebar-cta p {
    margin-bottom: 25px;
    opacity: 0.95;
}

.sidebar-cta .cta-phone {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 15px;
    transition: var(--transition);
}

.sidebar-cta .cta-phone:hover {
    transform: scale(1.05);
}

.sidebar-info {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--light-gray);
}

.sidebar-info h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark);
}

.sidebar-info ul {
    list-style: none;
}

.sidebar-info li {
    padding: 10px 0;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-info li::before {
    content: '→';
    color: var(--primary);
    font-weight: bold;
}

/* ========== CONTACT PAGE ========== */
.contact-section {
    padding: 80px 5%;
    background: var(--light-gray);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.contact-form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--dark);
}

.form-intro {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 35px;
}

.form-intro strong {
    color: var(--primary);
}

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

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

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

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

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

.checkbox-group label {
    margin: 0;
    font-weight: normal;
    cursor: pointer;
}

.submit-btn {
    background: var(--gradient);
    color: var(--white);
    padding: 16px 40px;
    border: none;
    border-radius: var(--radius-full);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
}

.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.info-card.emergency {
    background: var(--gradient-accent);
    color: var(--white);
}

.info-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--dark);
}

.info-card.emergency h3 {
    color: var(--white);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.info-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark);
}

.info-card.emergency .info-content h4 {
    color: var(--white);
}

.info-content p,
.info-content a {
    color: var(--medium-gray);
    text-decoration: none;
    transition: var(--transition);
}

.info-card.emergency .info-content p,
.info-card.emergency .info-content a {
    color: var(--white);
    opacity: 0.95;
}

.info-content a:hover {
    color: var(--primary);
}

.info-card.emergency .info-content a:hover {
    opacity: 1;
    text-decoration: underline;
}

.emergency-phone {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
    text-align: center;
    margin: 20px 0;
    text-decoration: none;
}

.emergency-phone:hover {
    transform: scale(1.05);
}

.hours-list {
    list-style: none;
    margin-top: 15px;
}

.hours-list li {
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--light-gray);
}

.hours-list li:last-child {
    border-bottom: none;
}

.map-container {
    margin-top: 30px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 300px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: var(--medium-gray);
}

/* ========== RESPONSIVE FOR NEW PAGES ========== */
@media (max-width: 968px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cert-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-list {
        gap: 20px;
    }
    
    .advantage-item {
        flex-direction: column;
        text-align: center;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .gallery-before-after {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 42px;
    }
    
    .service-detail-content {
        grid-template-columns: 1fr;
    }
    
    .service-detail-text {
        padding-right: 0;
    }
    
    .service-sidebar {
        position: static;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 35px 25px;
    }
}

@media (max-width: 640px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-container {
        flex-direction: column;
    }
    
    .filter-btn {
        width: 100%;
    }
    
    .service-area-highlights {
        flex-direction: column;
        gap: 20px;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 20px;
    }
    
    .faq-answer p {
        padding: 20px;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .page-header p {
        font-size: 18px;
    }
    
    .service-detail-text h2 {
        font-size: 32px;
    }
    
    .process-steps .step {
        flex-direction: column;
    }
    
    .step-num {
        align-self: flex-start;
    }
    
    .contact-form-wrapper h2 {
        font-size: 26px;
    }
}

/* ========== SERVICE AREAS PAGE ========== */
.service-area-overview {
    padding: 80px 5%;
    background: var(--white);
}

.overview-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.overview-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--dark);
}

.coverage-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.coverage-stat {
    padding: 30px;
    background: var(--gradient);
    color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* Interactive Service Area Map */
.service-map-section {
    padding: 80px 5%;
    background: #ffffff;
}

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

.map-container h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 15px;
    text-align: center;
    color: var(--dark);
}

.map-intro {
    text-align: center;
    font-size: 18px;
    color: var(--light-gray);
    margin-bottom: 40px;
}

.interactive-map {
    position: relative;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.interactive-map iframe {
    display: block;
    width: 100%;
    min-height: 600px;
}

.custom-map-overlay {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
    padding: 40px;
    border-radius: 12px;
    margin-top: 30px;
}

.map-legend {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.map-legend h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--light-gray);
}

.legend-color {
    width: 30px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid #e2e8f0;
}

.legend-color.core {
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
}

.legend-color.extended {
    background: linear-gradient(135deg, #00D4FF 0%, #7DD3FC 100%);
}

.cities-list-overlay {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.map-city-group {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.map-city-group:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.map-city-group strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.map-city-group span {
    font-size: 15px;
    color: var(--light-gray);
    line-height: 1.6;
}

.map-note {
    text-align: center;
    padding: 25px;
    background: rgba(0, 102, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.map-note p {
    font-size: 15px;
    color: var(--light-gray);
    margin: 0;
}

.map-note a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.map-note a:hover {
    text-decoration: underline;
}

.cities-section {
    padding: 80px 5%;
    background: var(--light-gray);
}

.cities-container {
    max-width: 1400px;
    margin: 0 auto;
}

.cities-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark);
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.city-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.city-icon {
    font-size: 42px;
    margin-bottom: 15px;
}

.city-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--dark);
}

.city-region {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.city-card p {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.city-response {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--light-gray);
}

.response-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
}

.unlisted-cities {
    padding: 80px 5%;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
}

.unlisted-container {
    max-width: 900px;
    margin: 0 auto;
}

.unlisted-container h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.unlisted-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.local-advantage {
    padding: 100px 5%;
    background: var(--white);
}

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

.local-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark);
}

.local-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.local-benefit {
    padding: 40px;
    background: var(--light-gray);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.local-benefit:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.local-benefit h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark);
}

.local-benefit p {
    color: var(--medium-gray);
    line-height: 1.7;
}

@media (max-width: 968px) {
    .coverage-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .local-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .coverage-stats {
        grid-template-columns: 1fr;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== TESTIMONIALS PAGE ========== */
.rating-overview {
    padding: 60px 5%;
    background: var(--white);
}

.rating-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
}

.overall-rating {
    text-align: center;
    padding: 40px;
    background: var(--gradient);
    color: var(--white);
    border-radius: var(--radius-lg);
}

.rating-number {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 10px;
}

.rating-stars {
    font-size: 32px;
    color: #FFD700;
    margin-bottom: 15px;
}

.rating-text {
    font-size: 16px;
    opacity: 0.95;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rating-bar {
    display: grid;
    grid-template-columns: 70px 1fr 50px;
    gap: 15px;
    align-items: center;
}

.bar-label {
    font-size: 14px;
    color: var(--gray);
}

.bar {
    height: 10px;
    background: var(--light-gray);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--gradient);
    transition: width 0.5s ease;
}

.bar-percent {
    font-size: 14px;
    color: var(--gray);
    font-weight: 600;
    text-align: right;
}

.testimonials-section {
    padding: 80px 5%;
    background: var(--light-gray);
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-full {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.testimonial-full .stars {
    color: #FFD700;
    font-size: 24px;
}

.service-type {
    padding: 6px 16px;
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
}

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

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    font-size: 16px;
    color: var(--dark);
}

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

.trust-section {
    padding: 80px 5%;
    background: var(--white);
}

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

.trust-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-item {
    text-align: center;
    padding: 30px 20px;
}

.trust-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.trust-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark);
}

.trust-item p {
    color: var(--medium-gray);
    line-height: 1.6;
}

@media (max-width: 968px) {
    .rating-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .rating-bar {
        grid-template-columns: 60px 1fr 45px;
        gap: 10px;
    }
}

/* ========== EMERGENCY TIPS & INSURANCE PAGES ========== */
.emergency-intro,
.insurance-intro {
    padding: 80px 5%;
    background: var(--white);
}

.emergency-intro-container,
.insurance-intro-container {
    max-width: 1200px;
    margin: 0 auto;
}

.emergency-intro h2,
.insurance-intro h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--dark);
}

.safety-alert {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: rgba(255, 107, 53, 0.1);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-md);
    margin-top: 40px;
}

.alert-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.alert-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark);
}

.alert-content ul {
    list-style: none;
    padding-left: 0;
}

.alert-content li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.alert-content li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
}

.tips-section {
    padding: 80px 5%;
    background: var(--light-gray);
}

.tips-section.alt {
    background: var(--white);
}

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

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

.tips-icon {
    font-size: 72px;
    margin-bottom: 20px;
}

.tips-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--dark);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.tip-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
}

.tip-card.priority-high {
    border-top: 4px solid var(--danger);
}

.tip-card.priority-medium {
    border-top: 4px solid var(--warning);
}

.tip-card.priority-low {
    border-top: 4px solid var(--success);
}

.tip-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
}

.tip-card h3 {
    font-size: 20px;
    margin: 15px 0;
    color: var(--dark);
}

.tip-card p {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

.tip-warning {
    padding: 12px;
    background: rgba(239, 68, 68, 0.1);
    border-left: 3px solid var(--danger);
    font-size: 14px;
    color: var(--danger);
    font-weight: 600;
    margin-top: 15px;
}

.tip-benefit {
    padding: 12px;
    background: rgba(16, 185, 129, 0.1);
    border-left: 3px solid var(--success);
    font-size: 14px;
    color: var(--success);
    font-weight: 600;
    margin-top: 15px;
}

.dos-donts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.dos,
.donts {
    padding: 35px;
    border-radius: var(--radius-lg);
}

.dos {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--success);
}

.donts {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid var(--danger);
}

.dos h4,
.donts h4 {
    font-size: 24px;
    margin-bottom: 20px;
}

.dos h4 {
    color: var(--success);
}

.donts h4 {
    color: var(--danger);
}

.dos ul,
.donts ul {
    list-style: none;
    padding: 0;
}

.dos li,
.donts li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--gray);
}

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

.donts li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--danger);
    font-weight: bold;
    font-size: 18px;
}

.emergency-cta {
    padding: 100px 5%;
    background: var(--gradient-accent);
    color: var(--white);
    text-align: center;
}

.emergency-cta-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.emergency-cta-box {
    max-width: 700px;
    margin: 40px auto 0;
    padding: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
}

.cta-highlight {
    margin-bottom: 30px;
}

.cta-highlight h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.emergency-phone-big {
    display: block;
    font-size: 42px;
    font-weight: 900;
    color: var(--white);
    text-decoration: none;
    margin: 25px 0;
    transition: var(--transition);
}

.emergency-phone-big:hover {
    transform: scale(1.05);
}

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

/* Insurance Page Specific */
.insurance-promise {
    margin-top: 50px;
    padding: 40px;
    background: var(--light-gray);
    border-radius: var(--radius-lg);
}

.insurance-promise h3 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark);
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

.promise-icon {
    font-size: 42px;
    display: block;
    margin-bottom: 15px;
}

.promise-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--dark);
}

.coverage-section,
.process-section {
    padding: 80px 5%;
    background: var(--white);
}

.coverage-container,
.process-container {
    max-width: 1400px;
    margin: 0 auto;
}

.coverage-container h2,
.process-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark);
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.coverage-card {
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.coverage-card.covered {
    background: rgba(16, 185, 129, 0.05);
    border: 2px solid var(--success);
}

.coverage-card.not-covered {
    background: rgba(239, 68, 68, 0.05);
    border: 2px solid var(--danger);
}

.coverage-card.partial {
    background: rgba(245, 158, 11, 0.05);
    border: 2px solid var(--warning);
}

.coverage-status {
    display: inline-block;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
}

.covered .coverage-status {
    background: var(--success);
    color: var(--white);
}

.not-covered .coverage-status {
    background: var(--danger);
    color: var(--white);
}

.partial .coverage-status {
    background: var(--warning);
    color: var(--white);
}

.coverage-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--dark);
}

.coverage-card ul {
    list-style: none;
    padding: 0;
}

.coverage-card li {
    padding: 8px 0;
    color: var(--gray);
    line-height: 1.6;
}

.claims-timeline {
    max-width: 900px;
    margin: 0 auto;
}

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

.timeline-step::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 50px;
    bottom: -40px;
    width: 2px;
    background: var(--light-gray);
}

.timeline-step:last-child::after {
    display: none;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    flex-shrink: 0;
    z-index: 1;
}

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

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

.insurance-tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.insurance-tip {
    padding: 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary);
}

.insurance-tip h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark);
}

.insurance-tip p {
    color: var(--medium-gray);
    line-height: 1.7;
}

.help-section {
    padding: 80px 5%;
    background: var(--light-gray);
}

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

.help-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark);
}

.help-benefits {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.help-benefit {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 35px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.benefit-number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--dark);
}

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

/* ========== POLICY PAGES (Privacy & Terms) ========== */
.policy-section {
    padding: 80px 5%;
    background: var(--white);
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
}

.policy-updated {
    padding: 15px 25px;
    background: var(--light-gray);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-md);
    margin-bottom: 40px;
}

.policy-content h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: var(--dark);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gray);
}

.policy-content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--dark);
}

.policy-content p {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.policy-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.policy-content li {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 10px;
}

.policy-content a {
    color: var(--primary);
    text-decoration: underline;
}

.contact-info-box {
    padding: 30px;
    background: var(--light-gray);
    border-radius: var(--radius-md);
    margin: 30px 0;
}

.contact-info-box p {
    margin-bottom: 10px;
}

@media (max-width: 968px) {
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dos-donts {
        grid-template-columns: 1fr;
    }
    
    .promise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .coverage-grid {
        grid-template-columns: 1fr;
    }
    
    .insurance-tips-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .promise-grid {
        grid-template-columns: 1fr;
    }
    
    .safety-alert {
        flex-direction: column;
    }
    
    .timeline-step {
        flex-direction: column;
    }
    
    .timeline-step::after {
        left: 25px;
    }
}