:root {
    --primary-color: #c2410c;
    --primary-dark: #9a3412;
    --primary-light: #fed7aa;
    --secondary-color: #1e3a8a;
    --secondary-dark: #172554;
    --dark-bg: #0f172a;
    --light-bg: #f1f5f9;
    --white: #ffffff;
    --text-color: #334155;
    --text-light: #64748b;
    --border-color: #e2e8f0;
    --max-width: 1200px;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Lato', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    color: var(--dark-bg);
}

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

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
}

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

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

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

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

.btn-emergency {
    background: #dc2626;
    color: var(--white);
    animation: pulse-emergency 2s infinite;
}

.btn-emergency:hover {
    background: #b91c1c;
}

@keyframes pulse-emergency {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
    }
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-sm {
    padding: 6px 16px;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-emergency-sm {
    padding: 6px 16px;
    font-size: 0.8rem;
    background: #dc2626;
    color: var(--white);
}

.btn-emergency-sm:hover {
    background: #b91c1c;
}

/* ================================================
   HEADER TOP BAR
   ================================================ */
.header-top {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}

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

.top-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-info i {
    color: var(--primary-color);
    margin-right: 5px;
}

.top-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
    background-color: var(--white);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-container {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

.logo i {
    color: var(--primary-color);
}

.logo-accent {
    color: var(--primary-color);
}

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

.nav-menu li {
    margin-left: 25px;
}

.nav-link {
    color: var(--dark-bg);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.cta-link {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 4px;
}

.cta-link:hover {
    background-color: var(--primary-dark);
    color: var(--white) !important;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    padding: 5px;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-bg);
    margin: 5px 0;
    transition: 0.3s;
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 0;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-ctas {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-badges span {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
}

.hero-form {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-form h3 {
    margin-bottom: 20px;
    text-align: center;
    color: var(--secondary-color);
    font-size: 1.4rem;
}

.hero-form input,
.hero-form textarea {
    width: 100%;
    padding: 13px 15px;
    margin-bottom: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

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

/* ================================================
   TRUST BAR
   ================================================ */
.trust-bar {
    background-color: var(--secondary-color);
    padding: 35px 0;
    color: var(--white);
}

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

.trust-item i {
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: 10px;
}

.trust-item h4 {
    color: var(--white);
    font-size: 1rem;
    text-transform: none;
}

/* ================================================
   SECTION COMMON
   ================================================ */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.separator {
    height: 3px;
    width: 50px;
    background: var(--primary-color);
    margin: 15px auto;
}

/* ================================================
   SERVICE AREA
   ================================================ */
.service-area {
    padding: 80px 0;
    background: var(--white);
}

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

.map-placeholder {
    background: var(--light-bg);
    border: 2px dashed var(--border-color);
    border-radius: var(--radius);
    padding: 80px 40px;
    text-align: center;
    color: var(--text-light);
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.map-placeholder p {
    font-size: 1.1rem;
    font-weight: 700;
}

.area-cities h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.area-cities h3 i {
    color: var(--primary-color);
    margin-right: 8px;
}

.city-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.city-list ul {
    list-style: none;
}

.city-list li {
    padding: 8px 0;
    font-size: 1rem;
    font-weight: 600;
}

.city-list li i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 0.85rem;
}

.area-note {
    background: var(--light-bg);
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.area-note i {
    color: var(--secondary-color);
    margin-right: 5px;
}

/* ================================================
   SERVICES
   ================================================ */
.services {
    padding: 80px 0;
    background: var(--light-bg);
}

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

.service-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.service-card.featured {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.service-card.featured h3,
.service-card.featured a {
    color: var(--white);
}

.service-card.featured .icon-circle {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.service-card.featured .service-price {
    color: var(--primary-light);
}

.service-badge {
    position: absolute;
    top: 0;
    right: 0;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0 var(--radius) 0 var(--radius);
    letter-spacing: 0.5px;
}

.emergency-badge {
    background: #dc2626;
    color: var(--white);
}

.popular-badge {
    background: var(--primary-color);
    color: var(--white);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: var(--light-bg);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-price {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.service-price strong {
    font-size: 1.3rem;
}

.service-card a {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* ================================================
   SPECIAL OFFERS
   ================================================ */
.offers {
    padding: 80px 0;
    background: var(--white);
}

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

.offer-card {
    background: var(--light-bg);
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.offer-card.highlight {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #fff7ed, #fffbeb);
    position: relative;
}

.offer-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.offer-amount {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.offer-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    text-transform: none;
}

.offer-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* ================================================
   STORM DAMAGE
   ================================================ */
.storm {
    padding: 80px 0;
    background: var(--light-bg);
}

.storm-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.storm-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

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

.check-list li {
    margin-bottom: 15px;
    font-size: 1.05rem;
    font-weight: 700;
}

.check-list i {
    color: var(--primary-color);
    margin-right: 10px;
}

.storm-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

/* ================================================
   GALLERY
   ================================================ */
.gallery {
    padding: 80px 0;
}

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

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

/* ================================================
   WHY CHOOSE US
   ================================================ */
.why-us {
    padding: 80px 0;
    background: var(--dark-bg);
    color: var(--white);
}

.why-us .section-header h2 {
    color: var(--white);
}

.why-us .separator {
    background: var(--primary-color);
}

.why-us-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.metric-item {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.03);
}

.metric-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
}

.why-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.why-card-content {
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
}

.why-card-content h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 5px;
    text-transform: none;
}

.why-card-content p {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ================================================
   FINANCING
   ================================================ */
.financing {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--white);
}

.financing-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.financing-text h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.financing-highlight {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.financing-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 25px;
    line-height: 1.7;
}

.financing-logos {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.finance-partner {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 25px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
}

.finance-partner i {
    font-size: 2rem;
    color: var(--primary-light);
}

.finance-partner span {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials {
    padding: 80px 0;
    background: var(--light-bg);
}

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

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-top: 3px solid var(--secondary-color);
}

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

.stars {
    color: #f59e0b;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.stars i {
    margin-right: 2px;
}

.testimonial-card p {
    font-style: italic;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 20px;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.customer {
    font-weight: 700;
    color: var(--dark-bg);
}

.verified-badge {
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.verified-badge i {
    color: #4285f4;
}

.reviews-cta {
    text-align: center;
}

/* ================================================
   FAQ
   ================================================ */
.faq {
    padding: 80px 0;
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: var(--secondary-color);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: var(--light-bg);
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #e8edf3;
}

.faq-question i {
    transition: transform 0.3s;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.faq-item.active .faq-question {
    background: var(--secondary-color);
    color: var(--white);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 20px 25px;
}

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

/* ================================================
   CTA SECTION
   ================================================ */
.cta-section {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 60px 20px;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 10px;
}

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

.urgency-badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.urgency-badge i {
    margin-right: 5px;
}

/* ================================================
   CONTACT SECTION
   ================================================ */
.contact-section {
    padding: 80px 20px;
    background: var(--dark-bg);
}

.contact-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius);
    text-align: center;
}

.contact-box h2 {
    margin-bottom: 5px;
}

.response-time {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.response-time i {
    margin-right: 5px;
}

.main-form {
    text-align: left;
}

.input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.main-form input,
.main-form select,
.main-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

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

.main-form select {
    margin-bottom: 15px;
}

.main-form textarea {
    margin-bottom: 15px;
    resize: vertical;
}

.form-checkboxes {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.checkbox-label i {
    color: var(--primary-color);
    font-size: 0.85rem;
}

.call-alternative {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.call-alternative p {
    color: var(--text-light);
    font-size: 1rem;
}

.call-alternative a {
    color: var(--primary-color);
    font-weight: 700;
}

.call-alternative a:hover {
    color: var(--primary-dark);
}

/* ================================================
   FOOTER
   ================================================ */
footer {
    background: #000;
    color: #94a3b8;
    padding-top: 60px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.f-col h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.f-col a {
    color: #94a3b8;
}

.f-col a:hover {
    color: var(--primary-color);
}

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

.f-col ul li {
    margin-bottom: 10px;
}

.footer-trust-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.footer-trust-badges span {
    font-size: 0.85rem;
    color: var(--primary-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-trust-badges i {
    color: var(--primary-color);
}

.emergency-footer {
    margin-top: 15px;
    padding: 12px;
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fca5a5;
}

.emergency-footer i {
    color: #f87171;
    margin-right: 3px;
}

.emergency-footer a {
    color: #fca5a5;
    text-decoration: underline;
}

.bottom-bar {
    border-top: 1px solid #1e293b;
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
}

/* ================================================
   STICKY PHONE BUTTON
   ================================================ */
.sticky-phone {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: #dc2626;
    color: var(--white);
    padding: 14px 22px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
    z-index: 998;
    display: none;
    align-items: center;
    gap: 8px;
    animation: pulse-emergency 2s infinite;
    transition: transform 0.3s;
}

.sticky-phone:hover {
    transform: scale(1.05);
    color: var(--white);
}

.sticky-phone i {
    font-size: 1.1rem;
}

/* ================================================
   CHAT WIDGET
   ================================================ */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.chat-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.4);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-btn:hover {
    background: var(--secondary-dark);
    transform: scale(1.1);
}

.chat-popup {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 320px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: none;
    overflow: hidden;
}

.chat-popup.active {
    display: block;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-header {
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h4 {
    color: var(--white);
    font-size: 1rem;
    text-transform: none;
}

.chat-close {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 1.1rem;
    opacity: 0.8;
}

.chat-close:hover {
    opacity: 1;
}

.chat-body {
    padding: 20px;
}

.chat-body p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.chat-body input {
    width: 100%;
    padding: 10px 14px;
    margin-bottom: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.9rem;
}

.chat-body input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

/* ================================================
   RESPONSIVE — TABLET (max-width: 992px)
   ================================================ */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .area-grid {
        grid-template-columns: 1fr;
    }

    .services-row {
        grid-template-columns: 1fr;
    }

    .service-card.featured {
        transform: none;
    }

    .service-card.featured:hover {
        transform: translateY(-5px);
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .storm-container {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .financing-content {
        grid-template-columns: 1fr;
    }

    .financing-logos {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* ================================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ================================================ */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: 0;
        top: 80px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 12px 30px;
    }

    .top-container {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .top-info {
        flex-direction: column;
        gap: 4px;
    }

    .top-info span {
        margin-right: 0;
    }

    .top-actions {
        flex-wrap: wrap;
        justify-content: center;
    }

    .top-hours {
        display: none;
    }

    .hero {
        padding: 50px 0;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn {
        text-align: center;
    }

    .hero-form {
        padding: 25px;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .city-list {
        grid-template-columns: 1fr;
    }

    .why-us-metrics {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .metric-number {
        font-size: 2.2rem;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .financing-highlight {
        font-size: 1.2rem;
    }

    .financing-logos {
        flex-direction: column;
    }

    .input-group {
        grid-template-columns: 1fr;
    }

    .contact-box {
        padding: 30px 20px;
    }

    .form-checkboxes {
        flex-direction: column;
        gap: 12px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

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

    .cta-section h2 {
        font-size: 1.6rem;
    }

    /* Show sticky phone on mobile */
    .sticky-phone {
        display: flex;
    }
}

/* ================================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ================================================ */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-badges {
        flex-direction: column;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

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

    .why-us-metrics {
        grid-template-columns: 1fr;
    }

    .chat-popup {
        width: 280px;
        right: -10px;
    }
}

/* Service Areas Dropdown */
.nav-dropdown {
    position: relative;
}
.nav-dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}
.nav-dropdown .dropdown-toggle .fa-chevron-down {
    font-size: 0.65rem;
    transition: transform 0.3s;
}
.nav-dropdown:hover .dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a2e;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    padding: 0.5rem 0;
    z-index: 1000;
    list-style: none;
}
.nav-dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu li a {
    display: block;
    padding: 0.6rem 1.2rem;
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
    white-space: nowrap;
}
.dropdown-menu li a:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    padding-left: 1.5rem;
}

@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        transform: none;
        background: rgba(0,0,0,0.2);
        box-shadow: none;
        min-width: 100%;
        border-radius: 0;
        padding: 0;
    }
    .dropdown-menu li a {
        padding: 0.5rem 2rem;
        font-size: 0.85rem;
    }
    .dropdown-menu li a:hover {
        padding-left: 2.5rem;
    }
    .nav-dropdown .dropdown-menu {
        display: none;
    }
    .nav-dropdown.active .dropdown-menu {
        display: block;
    }
}

/* --- FIX: Top Bar CTA Button Visibility --- */
.top-actions .btn-outline {
    background-color: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    color: var(--white, #ffffff) !important;
}

.top-actions .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.15) !important;
    border-color: var(--white, #ffffff) !important;
    color: var(--white, #ffffff) !important;
}

.top-actions .btn:not(.btn-outline):not(.btn-emergency-sm) {
    background-color: var(--accent-color, #e67e22) !important;
    color: var(--white, #ffffff) !important;
    border: none !important;
}

.top-actions .btn:not(.btn-outline):hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
}
/* ------------------------------------------ */
