/* =====================================================
   MOVEON RELOCATION - Main Stylesheet
   Theme: Red (#DC2626) and Black (#0a0a0a)
===================================================== */

/* =====================================================
   CSS VARIABLES
===================================================== */
:root {
    --primary-color: #DC2626;
    --primary-dark: #B91C1C;
    --primary-light: #FEE2E2;
    --secondary-color: #0a0a0a;
    --text-dark: #1a1a1a;
    --text-light: #6b7280;
    --white: #ffffff;
    --bg-light: #f8f9fa;
    --border-radius: 8px;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* =====================================================
   BASE STYLES
===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* =====================================================
   HEADER & TOP BAR
===================================================== */
#top-header {
    padding: 10px 0;
}

.header-row {
    display: flex;
    align-items: center;
}

.header-top-left {
    display: flex;
    gap: 25px;
}

.header-link {
    color: var(--white);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.header-link:hover {
    color: var(--primary-color);
}

.header-link i {
    color: var(--primary-color);
}

.social-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.social-links li b {
    color: var(--white);
    font-size: 14px;
}

.social-links a {
    color: var(--white);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* =====================================================
   NAVBAR
===================================================== */
.navbar {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: var(--shadow);
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
}

.navbar-nav {
    gap: 5px;
}

.nav-link {
    color: var(--secondary-color) !important;
    font-weight: 500;
    padding: 10px 15px !important;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    padding: 10px 0;
}

.dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: var(--primary-light);
    color: var(--primary-color);
}

.dropdown-item i {
    color: var(--primary-color);
}

/* Quote Button */
.quote-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white) !important;
    padding: 12px 25px !important;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.4);
}

/* Navbar Toggler */
.navbar-toggler {
    border: none;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.icon-bar {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* =====================================================
   MOBILE MENU
===================================================== */
.offcanvas {
    background: var(--secondary-color);
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-close {
    filter: invert(1);
}

.mobile-nav-item,
.mobile-dropdown-toggle {
    display: block;
    color: var(--white);
    padding: 15px 20px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.mobile-nav-item:hover,
.mobile-dropdown-toggle:hover {
    color: var(--primary-color);
    padding-left: 25px;
}

.mobile-dropdown-menu {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    padding-left: 20px;
}

.mobile-dropdown-menu.show {
    display: block;
}

.mobile-dropdown-item {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 20px;
    font-size: 14px;
    transition: var(--transition);
}

.mobile-dropdown-item:hover {
    color: var(--primary-color);
}

/* =====================================================
   HERO SECTION
===================================================== */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-img {
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.7) 100%);
    z-index: 1;
}

.hero-section .container {
    z-index: 2;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* Hero Form */
.form-body {
    padding: 25px;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.title_home {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.form_box label {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
    display: block;
    font-size: 14px;
}

.form_box .form-control {
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    padding: 10px 15px;
    transition: var(--transition);
}

.form_box .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.btn-group-custom {
    display: flex;
    gap: 10px;
}

/* =====================================================
   BUTTONS
===================================================== */
.theme-btn,
.btn-theme {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.theme-btn:hover,
.btn-theme:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.4);
    color: var(--white);
}

.btn-outline-theme {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-theme:hover {
    background: var(--primary-color);
    color: var(--white);
}

.clear-btn {
    background: var(--secondary-color);
    color: var(--white);
}

.submit-btn {
    margin-top: 10px;
}

/* =====================================================
   SECTION HEADINGS
===================================================== */
.heading-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
}

.heading-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.text-center .heading-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.heading-description {
    color: var(--text-light);
    font-size: 1rem;
    max-width: 800px;
}

/* =====================================================
   ABOUT SECTION
===================================================== */
.about-section {
    padding: 60px 0;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Feature Box */
.feature-box {
    padding: 20px;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: var(--transition);
}

.icon-circle i {
    font-size: 28px;
    color: var(--white);
}

.feature-box:hover .icon-circle {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.4);
}

.feature-title {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.feature-desc {
    color: var(--text-light);
    font-size: 14px;
}

.choose-image {
    max-width: 250px;
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid #DC2626;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.3), 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* =====================================================
   SERVICES SECTION
===================================================== */
.services-section {
    padding: 60px 0;
    background: transparent;
}

.services-section .heading-title {
    color: var(--secondary-color);
    margin-bottom: 40px;
}

.services-section .heading-title::after {
    background: var(--primary-color);
}

.service-card {
    display: block;
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius);
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.service-card:hover {
    background: var(--white);
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-icon i {
    font-size: 32px;
    color: var(--white);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

/* =====================================================
   PROCESS STEPS
===================================================== */
.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 40px 20px;
    flex-wrap: wrap;
}

.process-steps .connector {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 150px;
    padding: 10px;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.3);
}

.step-icon i {
    font-size: 28px;
    color: var(--white);
}

.step-title {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1rem;
}

.step-content {
    color: var(--text-light);
    font-size: 13px;
}

/* =====================================================
   QUOTE MODAL
===================================================== */
.custom-modal .modal-dialog {
    max-width: 600px;
}

.quote-modal-content {
    border: none;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.contact-form-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 20px;
    color: var(--white);
}

.modal-title {
    font-size: 1.3rem;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    transform: rotate(90deg);
}

.quote-modal-content form {
    padding: 25px;
}

.form-group {
    margin-bottom: 15px;
}

.form-icon {
    position: relative;
}

.form-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}

.form-icon input,
.form-icon textarea {
    padding-left: 45px;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    width: 100%;
    padding: 12px 15px 12px 45px;
    transition: var(--transition);
}

.form-icon input:focus,
.form-icon textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* =====================================================
   TESTIMONIALS SECTION
===================================================== */
.testimonial-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    margin: 15px;
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--primary-color);
}

.testimonial-card p {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-card h4 {
    color: var(--secondary-color);
    font-weight: 600;
}

.testimonial-card .rating {
    color: #fbbf24;
}

/* =====================================================
   CITY SECTION
===================================================== */
.city-section {
    padding: 60px 0;
}

.city-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-bottom: 20px;
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.city-card img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.city-card h3 {
    padding: 15px;
    font-size: 1.1rem;
    color: var(--secondary-color);
    text-align: center;
    margin: 0;
}

/* =====================================================
   FAQ SECTION
===================================================== */
.faq-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: var(--border-radius) !important;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.accordion-button {
    font-weight: 600;
    color: var(--secondary-color);
    background: var(--white);
    padding: 20px;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-light);
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23DC2626'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    color: var(--text-light);
    padding: 20px;
}

/* =====================================================
   FOOTER
===================================================== */
footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-widget h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 12px;
}

.footer-widget ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-widget ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-contact li i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* =====================================================
   FLOATING BUTTONS
===================================================== */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.floating-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn {
    background: #25d366;
}

.call-btn {
    background: var(--primary-color);
}

.scroll-top-btn {
    background: var(--secondary-color);
}

/* =====================================================
   BREADCRUMB
===================================================== */
.breadcrumb-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
    padding: 60px 0;
    text-align: center;
}

.breadcrumb-section h1 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.breadcrumb-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.breadcrumb-menu li {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-menu li a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-menu li a:hover {
    color: var(--primary-color);
}

.breadcrumb-menu li.active {
    color: var(--primary-color);
}

/* =====================================================
   CONTACT PAGE
===================================================== */
.contact-section {
    padding: 60px 0;
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-info-card i {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    margin: 0 auto 20px;
}

.contact-info-card h4 {
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-info-card p,
.contact-info-card a {
    color: var(--text-light);
}

/* =====================================================
   UTILITIES
===================================================== */
.section-space-lg {
    padding: 60px 0;
}

.text-theme {
    color: var(--primary-color) !important;
}

.bg-theme {
    background: var(--primary-color) !important;
}

/* =====================================================
   ANIMATIONS
===================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* =====================================================
   RESPONSIVE STYLES
===================================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2rem;
    }

    .heading-title {
        font-size: 1.6rem;
    }

    .process-steps .connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 40px 0;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .heading-title {
        font-size: 1.4rem;
    }

    .service-card {
        padding: 20px 15px;
    }

    .step {
        flex: 0 0 50%;
        margin-bottom: 20px;
    }

    .footer-widget {
        margin-bottom: 30px;
    }

    /* Why Choose Us Section - Same as Desktop */
    .why-choose-row {
        display: flex !important;
        flex-wrap: nowrap !important;
        flex-direction: row !important;
        align-items: center !important;
    }

    .why-choose-row>.col-sm-4 {
        flex: 0 0 33.33% !important;
        max-width: 33.33% !important;
        width: 33.33% !important;
        padding: 0 5px !important;
    }

    .why-choose-row .feature-box {
        padding: 8px 5px;
        margin-bottom: 12px !important;
    }

    .why-choose-row .icon-circle {
        width: 45px;
        height: 45px;
        margin: 0 auto 8px;
    }

    .why-choose-row .icon-circle i {
        font-size: 18px;
    }

    .why-choose-row .feature-title {
        font-size: 0.7rem;
        margin-bottom: 5px;
        display: block;
    }

    .why-choose-row .feature-desc {
        font-size: 0.55rem;
        line-height: 1.3;
        margin: 0;
    }

    .choose-image {
        width: 100px !important;
        height: 100px !important;
        max-width: 100px !important;
        border-width: 4px !important;
    }
}

@media (max-width: 576px) {
    .header-top-left {
        flex-direction: column;
        gap: 10px;
    }

    .social-links {
        justify-content: center;
    }

    /* Moving Process Steps - Fit all 6 steps without scroll */
    .process-steps {
        overflow-x: visible;
        flex-wrap: nowrap;
        padding: 20px 5px 15px;
        gap: 2px;
        position: relative;
    }

    .process-steps .connector {
        display: block;
        top: 72px;
        left: 8%;
        right: 8%;
        height: 2px;
        z-index: 0;
    }

    .step {
        min-width: auto;
        flex: 1;
        padding: 5px 3px;
        position: relative;
        z-index: 1;
        background: transparent;
    }

    .step-title {
        font-size: 0.55rem;
        margin-bottom: 8px;
        line-height: 1.2;
        font-weight: 600;
        background: #f8f9fa;
        padding: 2px;
    }

    .step-icon {
        width: 32px;
        height: 32px;
        margin: 0 auto 8px;
        position: relative;
        z-index: 2;
    }

    .step-icon i {
        font-size: 13px;
    }

    .step-content {
        font-size: 0.48rem;
        line-height: 1.3;
        background: #f8f9fa;
        padding: 2px;
    }

    /* About Us Image - Mobile */
    .about-image img {
        max-width: 180px !important;
        max-height: 220px !important;
    }

    /* Why Choose Us Section - Same as Desktop */
    .why-choose-row {
        display: flex !important;
        flex-wrap: nowrap !important;
        flex-direction: row !important;
        align-items: center !important;
    }

    .why-choose-row>.col-sm-4 {
        flex: 0 0 33.33% !important;
        max-width: 33.33% !important;
        width: 33.33% !important;
        padding: 0 3px !important;
    }

    .why-choose-row .feature-box {
        padding: 5px 2px;
        margin-bottom: 10px !important;
    }

    .why-choose-row .icon-circle {
        width: 35px;
        height: 35px;
        margin: 0 auto 5px;
    }

    .why-choose-row .icon-circle i {
        font-size: 14px;
    }

    .why-choose-row .feature-title {
        font-size: 0.55rem;
        margin-bottom: 3px;
        display: block;
    }

    .why-choose-row .feature-desc {
        font-size: 0.45rem;
        line-height: 1.2;
        margin: 0;
    }

    .choose-image {
        width: 80px !important;
        height: 80px !important;
        max-width: 80px !important;
        border-width: 3px !important;
    }

    .floating-buttons {
        bottom: 15px;
        right: 15px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* =====================================================
   MODERN FOOTER STYLES (NEW)
   ===================================================== */

.site-footer-modern {
    background-color: #0f0f0f;
    color: #e5e7eb;
    font-size: 15px;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

/* CTA Banner */
.footer-cta-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, #991b1b 100%);
    padding: 40px 0;
    color: #fff;
    position: relative;
    margin-bottom: 60px;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.cta-subtitle {
    margin: 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-cta-outline {
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    background: transparent;
}

.btn-cta-outline:hover {
    background: #fff;
    color: var(--primary-color);
    border-color: #fff;
}

.btn-cta-filled {
    background: #fff;
    color: var(--primary-color);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta-filled:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: var(--primary-dark);
}

/* Main Footer */
.footer-main {
    padding-bottom: 60px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-desc {
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 350px;
}

/* Social Icons */
.footer-social-new {
    display: flex;
    gap: 12px;
}

.footer-social-new a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social-new a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Links Columns */
.footer-heading {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list li a {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links-list li a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-links-list li a::before {
    content: '\f105';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 8px;
    font-size: 12px;
    color: var(--primary-color);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links-list li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Contact List */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-list .icon {
    width: 35px;
    height: 35px;
    min-width: 35px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 14px;
}

.footer-contact-list .text {
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact-list a {
    color: #d1d5db;
    transition: 0.3s;
}

.footer-contact-list a:hover {
    color: var(--primary-color);
}

/* Cities Grid Modern */
.cities-heading {
    color: #fff;
    opacity: 0.8;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cities-grid-modern {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.cities-grid-modern a {
    color: #9ca3af;
    font-size: 13px;
    padding: 6px 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cities-grid-modern a:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Bottom Footer */
.footer-bottom-modern {
    background: #050505;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    color: #6b7280;
}

.footer-legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-legal-links li a {
    color: #6b7280;
    transition: 0.3s;
}

.footer-legal-links li a:hover {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 991px) {
    .cta-title {
        font-size: 1.8rem;
    }

    .footer-main .row>div {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .footer-cta-banner {
        text-align: center;
        padding: 30px 0;
    }

    .cta-buttons {
        justify-content: center;
        margin-top: 20px;
        display: flex;
    }

    .footer-legal-links {
        justify-content: center;
        margin-top: 10px;
    }

    .cities-grid-modern {
        gap: 8px;
    }

    .cities-grid-modern a {
        font-size: 12px;
        padding: 5px 10px;
    }
}

/* SEO City Links */
.footer-city-link {
    display: block;
    color: #9ca3af;
    font-size: 13px;
    margin-bottom: 8px;
    text-decoration: none;
    transition: 0.3s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer-city-link:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Highlighted City Name */
.footer-city-link .city-name {
    color: #ffffff;
    font-weight: 500;
}

/* Cities Heading */
.cities-heading {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}