:root {
    --primary-color: #0d9488;
    --primary-dark: #0f766e;
    --primary-light: #99f6e4;
    --secondary-color: #0f172a;
    --accent-color: #f97316;
    --accent-dark: #ea580c;
    --light-bg: #f0fdfa;
    --white: #ffffff;
    --text-color: #334155;
    --text-light: #64748b;
    --border-color: #e2e8f0;
    --max-width: 1200px;
    --radius: 8px;
    --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);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    color: var(--secondary-color);
}

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;
    letter-spacing: 0.5px;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

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

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

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

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

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

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

.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 14px;
    font-size: 0.8rem;
}

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

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

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

/* TOP BAR */
.top-bar {
    background: var(--secondary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}

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

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

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

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

/* NAVBAR */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--secondary-color);
}

.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(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

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

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

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

/* HERO */
.hero {
    min-height: 80vh;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(19, 78, 74, 0.85) 100%), url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.3) 0%, transparent 70%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
}

.hero-text {
    max-width: 700px;
}

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

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

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

.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);
}

/* FEATURES / TRUST BAR */
.features {
    padding: 40px 0;
    background: var(--primary-color);
    color: var(--white);
}

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

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

.feature-item h3 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.feature-item p {
    font-size: 0.9rem;
    opacity: 0.85;
}

/* SECTION HEADER */
.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;
}

.divider {
    height: 4px;
    width: 60px;
    background: var(--primary-color);
    margin: 10px auto 20px;
}

/* 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(--primary-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(--primary-color);
}

.area-cities h3 i {
    color: var(--accent-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-weight: 500;
}

.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(--primary-color);
    margin-right: 5px;
}

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

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

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    position: relative;
}

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

.service-badge {
    position: absolute;
    top: 15px;
    right: 0;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px 0 0 4px;
    letter-spacing: 0.5px;
    z-index: 2;
}

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

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

.service-content {
    padding: 25px;
}

.service-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

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

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

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

.service-link {
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.service-link:hover {
    color: var(--accent-dark);
}

/* 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, #f0fdfa, #ecfdf5);
}

.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-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

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

/* ABOUT / WHY CHOOSE US */
.about {
    padding: 80px 0;
    background: var(--secondary-color);
    color: var(--white);
}

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

.about .divider {
    background: var(--primary-light);
}

.metrics-grid {
    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-size: 3rem;
    font-weight: 900;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 8px;
}

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

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

.about-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.about-text h3 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.about-text p {
    opacity: 0.9;
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

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

.about-list li {
    margin-bottom: 12px;
    font-weight: 500;
}

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

/* FINANCING */
.financing {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-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(--accent-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 4px;
    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-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(--primary-color);
}

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

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

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

.testimonial-card p {
    font-style: italic;
    line-height: 1.7;
    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(--primary-color);
}

.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(--primary-color);
}

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

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

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

.faq-item.active .faq-question {
    background: var(--primary-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;
}

/* CTA */
.cta-section {
    background: var(--accent-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 */
.s-contact {
    padding: 80px 0;
    background: var(--secondary-color);
}

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

.contact-info-box {
    color: var(--white);
}

.contact-info-box h2 {
    color: var(--white);
    margin-bottom: 10px;
}

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

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

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

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

.info-item i {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.info-item strong {
    display: block;
    margin-bottom: 3px;
}

.info-item p {
    opacity: 0.8;
}

.info-item a {
    color: var(--primary-light);
}

.info-item a:hover {
    color: var(--white);
}

.contact-form-box {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
}

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

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

.form-row input {
    margin-bottom: 0;
}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 15px;
    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;
}

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

.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: 500;
    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(--accent-color);
    font-size: 0.85rem;
}

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

.call-alternative p {
    color: var(--text-light);
}

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

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

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

.footer-grid {
    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;
}

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

/* STICKY PHONE */
.sticky-phone {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: #dc2626;
    color: var(--white);
    padding: 14px 22px;
    border-radius: 50px;
    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);
}

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

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

.chat-btn:hover {
    background: var(--primary-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(--primary-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;
}

.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;
}

.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(--primary-color);
}

/* RESPONSIVE — TABLET */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

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

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

    .about-image {
        order: -1;
    }

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

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

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

/* RESPONSIVE — MOBILE */
@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-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

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

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

    .top-hours {
        display: none;
    }

    .hero {
        min-height: 60vh;
        padding: 60px 0;
    }

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

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

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

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

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

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

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

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

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

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

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

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

    .contact-form-box {
        padding: 25px;
    }

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

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

    .sticky-phone {
        display: flex;
    }
}

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

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

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

    .metrics-grid {
        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;
}
/* ------------------------------------------ */
