* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
    color: #333;
    padding-top: 0;
}


/* ============================================
   NAVBAR - FINAL FIXED VERSION
   ============================================ */

.navbar {
    background: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10000;
}


.navbar .container-fluid {
    overflow: visible !important; 
}
.custom-nav-container {
    padding-left: 20px;
    padding-right: 20px;
}

@media (min-width: 992px) {
    .custom-nav-container {
        padding-left: 80px !important; /* Left Margin Badhaya */
        padding-right: 80px !important; /* Right Margin Badhaya */
    }
}

/* Brand Styles */
.navbar-brand {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1.2;
    max-width: 70%;
}

.brand-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}

.brand-ab {
    font-size: 1.55rem;
    font-weight: 700;
    color: #d63384;
    font-family: "Poppins", sans-serif;
}

.navbar-brand small {
    font-size: 0.7rem;
    color: #666666;
    font-weight: 400;
    margin-top: 2px;
}

/* Navbar Toggler */
.navbar-toggler {
    border: 1px solid rgba(0,0,0,.1);
    padding: 8px 10px;
    margin-left: auto;
}

.navbar-toggler:focus {
    box-shadow: none;
    border-color: #d63384;
}

/* ============================================
   DESKTOP VIEW (Min-width: 992px)
   ============================================ */
@media (min-width: 992px) {
    .navbar-nav {
        align-items: center;
        gap: 5px;
    }

    .nav-link {
        color: #1a1a1a !important;
        font-size: 0.95rem;
        font-weight: 500;
        padding: 8px 15px !important;
        position: relative;
        font-family: "Poppins", sans-serif;
        transition: color 0.3s;
    }

    .nav-link:hover {
        color: #d63384 !important;
    }

    /* Underline Effect */
    .nav-link::after {
        content: "";
        position: absolute;
        bottom: 5px;
        left: 15px;
        width: 0;
        height: 2px;
        background: #d63384;
        transition: width 0.3s ease;
    }

    .nav-link:hover::after {
        width: calc(100% - 30px);
    }

    /* --- DROPDOWN LOGIC --- */
    .nav-item.dropdown {
        position: relative;
    }

    /* Dropdown Menu Styling */
    .dropdown-menu {
        display: none; /* Default Hidden */
        position: absolute;
        top: 100%; /* Just below the nav item */
        left: 0;
        background: #ffffff;
        min-width: 240px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        border: none;
        border-radius: 8px;
        padding: 10px 0;
        margin-top: 0; 
        z-index: 99999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
.dropdown-menu.dropdown-menu-end {
        left: auto !important;
        right: 0 !important;
    }
    
    /* Pure CSS Hover: Class .show is handled by JS for backup, but this handles hover */
    .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        animation: dropdownSlideIn 0.3s ease forwards;
    }
    .dropdown-menu.show {
        display: block; opacity: 1; visibility: visible;
        animation: dropdownSlideIn 0.3s ease forwards;
    }
    /* Animation */
    @keyframes dropdownSlideIn {
        from { opacity: 0; transform: translateY(15px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .dropdown-item {
        padding: 10px 20px;
        font-size: 0.95rem;
        color: #1a1a1a;
        transition: all 0.2s;
    }

    .dropdown-item:hover {
        background: #f8f9fa;
        color: #d63384;
        padding-left: 25px;
    }

    /* Hide Mobile Elements */
    .mobile-toggle-btn { display: none !important; }
    .dropdown-toggle::after { display: none; }
    .mobile-menu-header { display: none !important; }
}

/* ============================================
   MOBILE VIEW (Max-width: 991px)
   ============================================ */
@media (max-width: 991px) {
    /* Slide Menu Container */
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -320px;
        width: 320px;
        height: 100vh;
        background: #ffffff;
        z-index: 9999;
        transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        padding: 20px;
        box-shadow: 4px 0 25px rgba(0,0,0,0.15);
        overflow-y: auto;
        display: block !important; /* Force block to allow transition */
    }

    /* Open State */
    .navbar-collapse.show {
        left: 0 !important;
    }

.brand-ab {
    font-size: 1.25rem;
    
}
    /* Header inside Menu */
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        border-bottom: 2px solid #f0f0f0;
        padding-bottom: 20px;
        margin-bottom: 15px;
    }

    .mobile-brand .brand-ab {
        font-size: 1.2rem;
        color: #d63384;
        font-weight: 700;
        display: block;
    }

    /* Close Button Styling */
    .btn-close-mobile {
        background: none;
        border: none;
        font-size: 1.5rem;
        color: #333;
        padding: 0 5px;
        cursor: pointer;
        line-height: 1;
    }
    
    .btn-close-mobile:hover {
        color: #d63384;
    }

    /* Navigation Items */
    .navbar-nav { width: 100%; padding-left: 0; }
    .nav-item { width: 100%; border-bottom: 1px solid #f0f0f0; }

    /* Link & Arrow Container */
    .link-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding-right: 0;
    }

    .nav-link {
        flex-grow: 1;
        padding: 15px 10px !important;
        font-size: 1rem;
        color: #333 !important;
        font-weight: 500;
    }

    /* Arrow Button */
    .mobile-toggle-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background: #f8f9fa;
        cursor: pointer;
        border-left: 1px solid #eee;
    }

    .mobile-toggle-btn i {
        font-size: 14px;
        color: #555;
        transition: transform 0.3s ease;
    }

    /* Dropdown Menu Mobile */
    .dropdown-menu {
        display: none;
        position: static !important;
        float: none;
        width: 100%;
        background: #fcfcfc;
        box-shadow: none;
        border: none;
        padding: 0;
        margin: 0;
        border-top: 1px solid #eee;
    }

    .dropdown-menu.show {
        display: block !important;
        animation: fadeInMobile 0.3s ease;
    }

    @keyframes fadeInMobile {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .dropdown-item {
        padding: 14px 20px 14px 40px;
        border-bottom: 1px solid #f1f1f1;
        color: #666;
        font-size: 0.95rem;
    }
}

/* Backdrop */
.navbar-collapse-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.navbar-collapse.show ~ .navbar-collapse-backdrop {
    opacity: 1 !important;
    visibility: visible !important;
}


/* ============ HERO SECTION ============ */
.hero-video-section {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0px; /* Fixed navbar space */
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    padding: 60px 0;
    width: 100%;
}

.hero-left {
    color: white;
}

.hero-left h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-left p {
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* ============ CONTACT FORM ============ */
.contact-form-hero {
    background: none !important;
    border-radius: 15px;
    padding: 30px;
}

.contact-form-hero h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 25px;
}

.contact-form-hero .form-control,
.contact-form-hero .form-select {
    border: 1px solid #ddd;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.contact-form-hero textarea.form-control {
    min-height: 100px;
}

.btn-submit-form {
    background: #ff9800;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    width: 100%;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-submit-form:hover {
    background: #f57c00;
    transform: translateY(-2px);
}
/* Mobile Responsive for Hero */
@media (max-width: 768px) {
    .hero-video-section {
        margin-top: 20px;
        min-height: auto;
        padding: 40px 0;
    }

    .hero-left h1 {
        font-size: 2rem;
    }
}

/* ============ TESTIMONIAL SECTION ============ */
.testimonial-badge-section {
    background: white;
    padding: 80px 0;
}

.testimonial-left h4 {
    color: #ff9800;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.testimonial-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
}

.testimonial-left h2 .highlight-number {
    color: #ff9800;
}

.testimonial-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ============ INFO SECTIONS ============ */
.dark-info-video-section {
    position: relative;
    padding: 80px 0;
    color: white;
    overflow: hidden;
}

.info-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.info-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.info-content {
    position: relative;
    z-index: 2;
}

.info-box-border {
    border: 3px solid #ff9800;
    padding: 40px;
    border-radius: 10px;
    height: 100%;
}

.info-box-border h3 {
    color: #ff9800;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.info-box-border p {
    font-size: 1rem;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 15px;
}

/* ============ SERVICES SECTION ============ */
.services-section-wrapper {
    background: #f8f8f8;
    padding: 80px 0 60px;
    position: relative;
}

.orange-circle-decoration {
    position: absolute;
    left: 50px;
    top: 150px;
    width: 250px;
    height: 250px;
    border: 40px solid rgba(255, 152, 0, 0.2);
    border-radius: 50%;
    z-index: 0;
}

.services-header-text {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.services-header-text h4 {
    color: #ff9800;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.services-header-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.services-header-text p {
    color: #000;
    font-size: 1rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.services-header-text p .highlight-red {
    color: #d63384;
    font-weight: 600;
}

/* Service Cards Container */
.service-card-wrapper {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    display: flex;
}

/* Black Card - Home Loan */
.service-card-black {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 40px 30px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    color: white;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-card-black:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* White Cards - Others */
.service-card-white {
    background: white;
    border: 2px solid #ff9800;
    border-radius: 15px;
    padding: 40px 30px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    color: #333;
    transition: all 0.3s;
}

.service-card-white:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 152, 0, 0.2);
}

/* Icon Wrapper - Orange Icons Already */
.service-icon-wrapper {
    margin-bottom: 20px;
    text-align: center;
}

.service-icon-wrapper img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* Headings */
.service-card-black h3,
.service-card-white h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.service-card-black h3 {
    color: white;
}

.service-card-white h3 {
    color: #333;
}

/* Paragraphs */
.service-card-black p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 10px;
    text-align: center;
}

.service-card-white p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #000;
    margin-bottom: 10px;
    text-align: center;
}

/* Highlighted Text - Black Card (Dark Blue #336) */
.service-card-black .highlight-text {
    color: #336;
    font-weight: 600;
}

/* Highlighted Text - White Cards (Pink) */
.service-card-white .highlight-text {
    color: #d63384;
    font-weight: 600;
}

/* Explore Button Container */
.service-card-black .btn-explore-container,
.service-card-white .btn-explore-container {
    margin-top: auto;
    text-align: center;
}

/* Explore Button - Black Card */
.service-card-black .btn-explore-service {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
    transition: all 0.3s;
}

.service-card-black:hover .btn-explore-service {
    color: #ff9800;
}

.service-card-black .btn-explore-service i {
    margin-left: 8px;
    transition: all 0.3s;
}

.service-card-black:hover .btn-explore-service i {
    margin-left: 12px;
}

/* Explore Button - White Cards */
.service-card-white .btn-explore-service {
    color: #ff9800;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
    transition: all 0.3s;
}

.service-card-white:hover .btn-explore-service {
    color: #333;
}

.service-card-white .btn-explore-service i {
    margin-left: 8px;
    transition: all 0.3s;
}

.service-card-white:hover .btn-explore-service i {
    margin-left: 12px;
}

/* ============ CTA SECTION ============ */
.cta-stats-video-section {
    position: relative;
    padding: 100px 0;
    color: white;
    overflow: hidden;
}

.cta-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.cta-content-wrapper {
    position: relative;
    z-index: 2;
}

.cta-left-content {
    text-align: left;
}

.cta-left-content h4 {
    color: #ff9800;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.cta-left-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-left-content p {
    font-size: 1rem;
    margin-bottom: 8px;
}

.cta-left-content p strong {
    color: #ff9800;
    font-size: 1.1rem;
}

.cta-left-content .tagline {
    color: #aaa;
    font-size: 0.95rem;
}

.btn-cta-getstarted {
    background: #ff9800;
    color: white;
    border: none;
    padding: 15px 50px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 30px;
    transition: all 0.3s;
}

.btn-cta-getstarted:hover {
    background: #f57c00;
    transform: translateY(-3px);
}

.cta-stats-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-box-right {
    text-align: left;
}

.stat-box-right h2 {
    font-size: 4.5rem;
    font-weight: 700;
    color: #ff9800;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-box-right p {
    font-size: 1.1rem;
    color: #ccc;
    margin: 0;
}

/* ============ PARTNERS SECTION ============ */
.partners-section {
    background: white;
    padding: 60px 0;
    text-align: center;
}

.partners-section h4 {
    color: #ff9800;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.partners-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

.partners-section h2 .highlight-orange {
    color: #ff9800;
}

/* ============ HELP SECTION ============ */
.help-video-section {
    position: relative;
    padding: 100px 0;
    color: white;
    overflow: hidden;
}

.help-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.help-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.help-content {
    position: relative;
    z-index: 2;
}

.help-left-content {
    text-align: left;
}

.help-left-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.help-left-content p {
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 0;
}

.help-right-button {
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}

.btn-get-in-touch {
    background: #ff9800;
    color: white;
    border: none;
    padding: 15px 50px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-get-in-touch:hover {
    background: #f57c00;
    transform: translateY(-3px);
}

/* ============ BLOG SECTION ============ */
.blog-section {
    background: white;
    padding: 80px 0;
}

.blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.blog-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 20px 20px 10px;
    color: #d63384;
}

.blog-card .blog-meta {
    padding: 0 20px 10px;
    color: #999;
    font-size: 0.85rem;
}

.blog-card .blog-link {
    color: #d63384;
    text-decoration: none;
    font-weight: 600;
    padding: 0 20px 20px;
    display: block;
}

/* ============ FOOTER ============ */
.footer {
    background: white;
    color: #333;
    padding: 60px 0 20px;
    border-top: 1px solid #eee;
}

.footer-logo-section {
    margin-bottom: 30px;
}

.footer-logo {
    width: 300px;
    margin-bottom: 20px;
}

.footer-logo-section h3 {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #333;
}

.footer-logo-section p {
    color: #000;
    line-height: 1.8;
    font-size: 0.9rem;
}

.footer-map {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.footer-contact-section h3 {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #333;
}

.footer-contact-info {
    margin-bottom: 20px;
}

.footer-contact-info p {
    color: #000;
    margin-bottom: 15px;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
}

.footer-contact-info i {
    color: #333;
    margin-right: 12px;
    margin-top: 3px;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    background: #3b5998;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    font-size: 1.2rem;
    text-decoration: none;
}

.social-icons a.instagram {
    background: #030303;
}

.social-icons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    border-top: 1px solid #eee;
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #999;
    font-size: 0.85rem;
}

.footer-bottom p {
    margin: 5px 0;
}

.footer-bottom a {
    color: #ff9800;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ============ CHAT WIDGET ============ */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.chat-bubble {
    background: #1a73e8;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: all 0.3s;
}

.chat-bubble:hover {
    background: #155db5;
    transform: translateY(-3px);
}

.chat-icon {
    width: 30px;
    height: 30px;
    background: white;
    color: #1a73e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* ============ MOBILE RESPONSIVE ============ */
@media (max-width: 768px) {
    .hero-left h1 {
        font-size: 2rem;
    }

    .cta-left-content h2 {
        font-size: 2rem;
    }

    .stat-box-right h2 {
        font-size: 3rem;
    }

    .help-left-content h2 {
        font-size: 2rem;
    }

    .help-right-button {
        text-align: left;
        justify-content: flex-start;
        margin-top: 30px;
    }

    .service-card-wrapper {
        margin-bottom: 20px;
    }

    .orange-circle-decoration {
        display: none;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }

    .cta-stats-right {
        margin-top: 40px;
    }

    .service-card-black,
    .service-card-white {
        min-height: auto;
    }
}

/* ============ CONTACT US PAGE ============ */
.contact-us-section {
    /* background: white; */
    background: #fbf9f7;
    padding: 120px 0 80px;
    margin-top: 80px;
}

.contact-info-wrapper {
    padding-right: 30px;
}

.contact-header {
    margin-bottom: 40px;
}

.contact-subtitle {
    color: #ff9800;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-description {
    color: #000;
    font-size: 1rem;
    line-height: 1.8;
}

/* Contact Details List */
.contact-details-list {
    margin-top: 40px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon-box {
    width: 60px;
    height: 60px;
    background: #1a1a1a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-icon-box i {
    color: #ff9800;
    font-size: 1.5rem;
}

.contact-detail-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.contact-detail-text p {
    color: #000;
    margin: 0;
    font-size: 0.95rem;
}

.contact-detail-text a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-detail-text a:hover {
    color: #ff9800;
}

/* Contact Form Card */
.contact-form-card {
    background: #2a2a2a;
    border-radius: 15px;
    padding: 40px;
    color: white;
}

.contact-form-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-form-card > p {
    color: #ccc;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.contact-form-card .form-group {
    margin-bottom: 20px;
}

.contact-form-card .form-control {
    background: white;
    border: none;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    width: 100%;
}

.contact-form-card .form-control:focus {
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.2);
    outline: none;
}

.contact-form-card textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.contact-form-card .form-check {
    margin-bottom: 20px;
}

.contact-form-card .form-check-input {
    margin-top: 3px;
}

.contact-form-card .form-check-label {
    color: #ccc;
    font-size: 0.9rem;
}

.btn-send-message {
    background: #ff9800;
    color: white;
    border: none;
    padding: 15px 50px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s;
}

.btn-send-message:hover {
    background: #f57c00;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-us-section {
        padding: 80px 0 40px;
        margin-top: 60px;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-info-wrapper {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .contact-form-card {
        padding: 30px 20px;
    }

    .company-logo-wrapper {
        padding-right: 0;
    }
}

/* ============ ABOUT US PAGE ============ */

/* About Hero Section */
.about-hero-section {
    background: white;
    padding: 150px 0 80px;
    margin-top: 80px;
}

.about-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-hero-content h1 {
    color: #ff9800;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-hero-content p {
    color: #000;
    font-size: 1rem;
    line-height: 1.8;
    text-align: justify;
}

.about-hero-content .highlight-pink {
    color: #c36;
    font-weight: 600;
    text-decoration: none;
}

/* Vision Section */
.vision-section {
    background: white;
    padding: 80px 0;
}

.vision-image-wrapper {
    position: relative;
}

.vision-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vision-content {
    padding-left: 30px;
}

.section-subtitle {
    color: #ff9800;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.vision-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.vision-content p {
    color: #000;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.customers-count {
    margin-top: 30px;
}

.customers-count h3 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ff9800;
    margin-bottom: 5px;
    line-height: 1;
}

.customers-count p {
    color: #000;
    font-size: 1.1rem;
    margin: 0;
}

/* Why Choose Section */
.why-choose-section {
    background: #f8f8f8;
    padding: 80px 0;
}

.why-choose-header {
    /* text-align: center; */
    margin-bottom: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.why-choose-header h2 {
    font-size: 48px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.why-choose-header p {
    color: #000;
    font-size: 1rem;
    line-height: 1.8;
}

/* Why Choose Content */
.why-choose-content {
    max-width: 1100px;
    margin: 0 auto;
}

.why-choose-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.why-choose-list li {
    font-size: 1.1rem;
    /* color: #333; */
    color: #ff9800;
    font-weight: 400;

    margin-bottom: 20px;
    display: flex;
    /* align-items: center; */
}

.why-choose-list li i {
    color: #000;

    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Button Center */
.why-choose-button {
    text-align: center;
    margin-top: 40px;
}

.btn-get-started {
    background: #ff9800;
    color: white;
    border: none;
    padding: 15px 60px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-get-started:hover {
    background: #f57c00;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .why-choose-list li {
        font-size: 1rem;
    }

    .btn-get-started {
        padding: 12px 40px;
        font-size: 1rem;
    }
    .why-choose-header {
        text-align: center;
    }
    .why-choose-header h2 {
        font-size: 36px;
        font-weight: 600;
        color: #000;
        margin-bottom: 20px;
    }
}

/* Partners Section */
.partners-section {
    background: white;
    padding: 60px 0;
    text-align: center;
}

.partners-section h4 {
    color: #ff9800;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.partners-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

/* Retirement Video Section */
.retirement-video-section {
    position: relative;
    padding: 100px 0;
    color: white;
    overflow: hidden;
    background: #1a1a1a;
}

.retirement-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.retirement-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.retirement-content {
    position: relative;
    z-index: 2;
}

.retirement-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.retirement-content p {
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 0;
}

.btn-get-in-touch-orange {
    background: #ff9800;
    color: white;
    border: none;
    padding: 15px 50px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-get-in-touch-orange:hover {
    background: #f57c00;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .retirement-video-section {
        padding: 60px 0;
    }

    .retirement-content h2 {
        font-size: 36px;
        text-align: center;
        margin-bottom: 15px;
    }

    .retirement-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    /* Button Center in Mobile */
    .retirement-content .text-end {
        text-align: center !important;
        margin-top: 20px;
    }

    .btn-get-in-touch-orange {
        padding: 12px 40px;
        font-size: 1rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-hero-section {
        padding: 100px 0 40px;
        margin-top: 60px;
    }

    .about-hero-content h1 {
        font-size: 36px;
    }
    .customers-count {
        text-align: center;
    }

    .vision-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .vision-content h2 {
        font-size: 2rem;
    }

    .partners-section {
        display: none;
    }
}

/* ============================================
   FINANCE SERVICES PAGE - EXACT DESIGN
   ============================================ */

/* Hero Section */
.finance-hero-section {
    background: #fbf9f7;
    padding: 150px 0 80px;
    margin-top: 80px;
}

.finance-hero-content {
    max-width: 1320px;
    /* max-width: 900px; */
    margin: 0 auto;
    text-align: center;
}

.finance-hero-tag {
    color: #ff9800;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    display: inline-block;
}

.finance-hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.3;
    font-family: "Poppins", sans-serif;
}

.finance-hero-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #000;
    font-family: "Open Sans", sans-serif;
    text-align: start;
}

.finance-hero-text a {
    /* color: #ff9800; */
    color: #d63384;
    text-decoration: none;
}

/* Service Sections */
.finance-service-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.finance-service-white {
    background: #ffffff;
}

.finance-service-gray {
    background: #f8f9fa;
}

.finance-service-row {
    position: relative;
}

.finance-service-content-col {
    padding: 20px;
}

.finance-service-image-col {
    padding: 20px;
}

.finance-service-content {
    max-width: 540px;
}

.finance-service-tag {
    color: #ff9800;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 15px;
    display: inline-block;
}

.finance-service-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: "Poppins", sans-serif;
}

.finance-service-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #000;
    margin-bottom: 30px;
    font-family: "Open Sans", sans-serif;
}

/* Fixed Image Size */
.finance-service-image-wrapper {
    width: 100%;
    height: 560px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

.finance-service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Button */
.finance-btn-orange {
    background: #ff9800;
    color: #ffffff;
    padding: 12px 35px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
}

.finance-btn-orange:hover {
    background: #f57c00;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.3);
}

/* Decorative Elements */
.finance-circle-decoration {
    position: absolute;
    width: 241px;
    height: 137px;
    background-image: url("/assets/images/circleElements.png");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 1;
}

.finance-circle-left {
    left: 0;
    bottom: 50px;
}

.finance-dots-decoration {
    position: absolute;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, #ff9800 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.15;
    z-index: 1;
}

.finance-dots-right {
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
}

/* Middle Heading Section */
.finance-middle-heading-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.finance-middle-heading-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.finance-middle-tag {
    color: #ff9800;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    display: inline-block;
}

.finance-middle-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.3;
    font-family: "Poppins", sans-serif;
}

.finance-middle-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #000;
    font-family: "Open Sans", sans-serif;
}

/* Partners Section */
.finance-partners-section {
    background: #ffffff;
    padding: 70px 0;
    text-align: center;
}

.finance-partners-tag {
    color: #ff9800;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    display: inline-block;
}

.finance-partners-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: "Poppins", sans-serif;
}

.finance-highlight-orange {
    color: #ff9800;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .finance-hero-section {
        padding: 100px 0 50px;
        margin-top: 60px;
    }

    .finance-hero-title {
        font-size: 2rem;
    }

    .finance-service-section {
        padding: 60px 0;
    }

    .finance-service-title {
        font-size: 1.8rem;
    }

    .finance-service-image-wrapper {
        height: 400px;
        margin-bottom: 30px;
    }

    .finance-service-reverse .finance-service-image-col {
        order: 1 !important;
    }

    .finance-service-reverse .finance-service-content-col {
        order: 2 !important;
    }

    .finance-middle-heading-section {
        padding: 60px 0;
    }

    .finance-middle-title {
        font-size: 2rem;
    }

    .finance-circle-decoration,
    .finance-dots-decoration {
        display: none;
    }
    .finance-partners-section {
        display: none;
    }
}

@media (max-width: 575px) {
    .finance-hero-title {
        font-size: 1.75rem;
    }

    .finance-service-title {
        font-size: 1.5rem;
    }

    .finance-service-image-wrapper {
        height: 300px;
    }

    .finance-partners-section {
        display: none;
    }
}
/* ============================================
   CTA SECTION
   ============================================ */

.finance-cta-image-section {
    position: relative;
    padding: 200px 0;
    overflow: hidden;
    min-height: 400px;
    /* Background properties */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed;  */
}

.finance-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65); /* Dark overlay */
    z-index: 1;
}

.finance-cta-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.finance-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.3;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
}

.finance-cta-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-family: "Open Sans", sans-serif;
}

.finance-cta-btn {
    background: #ff9800;
    color: #ffffff;
    padding: 15px 45px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
}

.finance-cta-btn:hover {
    background: #f57c00;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.4);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .finance-cta-image-section {
        padding: 80px 0;
        background-attachment: scroll; /* Mobile pe fixed background issues avoid */
    }

    .finance-cta-title {
        font-size: 2rem;
    }

    .finance-cta-content .text-end {
        text-align: center !important;
        margin-top: 30px;
    }

    .finance-cta-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 575px) {
    .finance-cta-image-section {
        padding: 60px 0;
    }

    .finance-cta-title {
        font-size: 1.75rem;
    }
}

/* ============================================
   HOME LOAN PAGE - HERO SECTION
   ============================================ */

.home-loan-hero-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero-content-wrapper {
    padding-right: 20px;
}

.hero-badge {
    display: inline-block;
    background: #ff9800;
    color: #ffffff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
}

.hero-heading-main {
    font-size: 2.2rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-family: "Poppins", sans-serif;
    line-height: 1.3;
}

.hero-heading-animated {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff9800;
    margin-bottom: 15px;
    font-family: "Poppins", sans-serif;
    line-height: 1.2;
    transition: opacity 0.5s ease;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-family: "Poppins", sans-serif;
    line-height: 1.3;
}

.hero-description-content {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 30px;
}

.hero-description-content a {
    color: #ff9800;
    text-decoration: none;
    font-weight: 600;
}

.hero-description-content a:hover {
    text-decoration: underline;
}

.hero-features-list {
    list-style: none;
    padding-left: 0;
    margin: 25px 0;
}

.hero-features-list li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.7;
}

.hero-features-list li strong {
    color: #1a1a1a;
    font-weight: 600;
}

.process-section-with-image {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-top: 35px;
    position: relative;
}

.process-left-content {
    flex: 1;
}

.process-right-image {
    flex-shrink: 0;
    width: 200px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0px;
}

.loan-approved-badge-side {
    max-width: 100%;
    height: auto;
    display: block;
}

.process-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 25px 0;
    font-family: "Poppins", sans-serif;
    line-height: 1.3;
}

.process-checklist-clean {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.process-item-clean {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.process-item-clean i {
    color: #1a1a1a;
    font-size: 1.2rem;
    min-width: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.process-item-clean span {
    font-size: 1rem;
    color: #ff9800;
    line-height: 1.6;
    font-weight: 500;
}

.hero-image-wrapper-clean {
    position: relative;
    text-align: center;
    padding-left: 20px;
}

.hero-main-img-clean {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

/* Home Loan Mobile Responsive */
@media (max-width: 991px) {
    .home-loan-hero-section {
        padding: 60px 0;
    }

    .hero-heading-main {
        font-size: 1.8rem;
    }

    .hero-heading-animated {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-content-wrapper {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-image-wrapper-clean {
        padding-left: 0;
        margin-top: 30px;
    }

    .process-heading {
        font-size: 1.3rem;
        text-align: center;
    }

    .process-section-with-image {
        flex-direction: column;
        gap: 20px;
    }

    .process-right-image {
        width: 180px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .hero-heading-main {
        font-size: 1.5rem;
    }

    .hero-heading-animated {
        font-size: 1.7rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .process-item-clean span {
        font-size: 0.95rem;
    }

    .process-right-image {
        width: 150px;
    }

    .process-heading {
        font-size: 1.2rem;
    }
}

@media (max-width: 575px) {
    .loan-approved-badge-side {
        max-width: 120px;
    }

    .process-right-image {
        width: 120px;
    }

    .process-item-clean i {
        font-size: 1rem;
    }
}

/* ============================================
   ASSET FINANCE PAGE - HERO SECTION
   ============================================ */

.asset-hero-section {
    padding: 100px 0 80px;
    background: #ffffff;
    position: relative;
}

.asset-hero-content {
    padding-right: 30px;
}

.asset-label {
    display: inline-block;
    background: transparent;
    color: #ff9800;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
}

.asset-main-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.2;
    font-family: "Poppins", sans-serif;
}

.asset-vehicle-text {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ff9800;
    margin-bottom: 15px;
    font-family: "Poppins", sans-serif;
}

.asset-subtitle {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-family: "Poppins", sans-serif;
}

.asset-form-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ff9800;
    margin-bottom: 25px;
    font-family: "Poppins", sans-serif;
}

.asset-contact-form {
    margin-bottom: 30px;
}

.asset-input,
.asset-textarea {
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    width: 100%;
    transition: all 0.3s ease;
}

.asset-input:focus,
.asset-textarea:focus {
    outline: none;
    border-color: #ff9800;
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.1);
}

.asset-textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-asset-send {
    background: #ff9800;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 15px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
}

.btn-asset-send:hover {
    background: #f57c00;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.3);
}

.asset-info-box {
    background: #fff8f0;
    border: 2px solid #ff9800;
    border-radius: 10px;
    padding: 25px;
    margin-top: 30px;
}

.asset-info-box p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555555;
}

.asset-hero-image-wrapper {
    position: relative;
    text-align: center;
    padding-left: 30px;
}

.asset-icon-badge {
    position: absolute;
    top: -20px;
    right: 40%;
    background: #1a1a1a;
    color: #ff9800;
    width: 80px;
    height: 80px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.asset-dots-pattern {
    position: absolute;
    top: 20%;
    right: 15%;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, #ff9800 2px, transparent 2px);
    background-size: 12px 12px;
    opacity: 0.3;
    z-index: 1;
}

.asset-hero-img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    border-radius: 15px;
}

.asset-content-section {
    padding: 80px 0;
    background: #ffffff;
}

.asset-content-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #555555;
}

.asset-content-text p {
    margin-bottom: 20px;
}

.asset-link {
    color: #d63384;
    text-decoration: none;
    font-weight: 600;
}

.asset-link:hover {
    text-decoration: underline;
}

.asset-benefits-list,
.asset-solutions-list {
    list-style: none;
    padding-left: 0;
    margin: 25px 0;
}

.asset-benefits-list li,
.asset-solutions-list li {
    padding: 10px 0;
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
    padding-left: 25px;
}

.asset-benefits-list li::before,
.asset-solutions-list li::before {
    content: "•";
    color: #ff9800;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 5px;
}

.asset-benefits-list li strong,
.asset-solutions-list li strong {
    color: #1a1a1a;
    font-weight: 600;
}

.asset-content-image-wrapper {
    text-align: center;
    padding-left: 30px;
}

.asset-content-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

.asset-process-section {
    padding: 60px 0;
    background: #ffffff;
}

.asset-process-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-family: "Poppins", sans-serif;
}

.asset-process-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
}

.asset-process-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
}

.asset-process-item i {
    color: #ff9800;
    font-size: 1.2rem;
    min-width: 20px;
    flex-shrink: 0;
}

.asset-process-item span {
    font-size: 1rem;
    color: #ff9800;
    font-weight: 500;
    line-height: 1.5;
}

/* Asset Finance Mobile Responsive */
@media (max-width: 991px) {
    .asset-process-list {
        max-width: 100%;
    }

    .asset-hero-section {
        padding: 80px 0 60px;
    }

    .asset-main-heading {
        font-size: 2rem;
    }

    .asset-vehicle-text {
        font-size: 2.2rem;
    }

    .asset-hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .asset-hero-image-wrapper,
    .asset-content-image-wrapper {
        padding-left: 0;
        margin-top: 30px;
    }

    .asset-icon-badge {
        right: 35%;
    }

    .btn-asset-send {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .asset-main-heading {
        font-size: 1.7rem;
    }

    .asset-vehicle-text {
        font-size: 1.9rem;
    }

    .asset-subtitle {
        font-size: 1.3rem;
    }

    .asset-process-list {
        flex-direction: column;
    }

    .asset-process-heading {
        font-size: 1.7rem;
    }

    .asset-process-item span {
        font-size: 0.95rem;
    }
}

/* ============================================
   SMSF LOAN PAGE - HERO SECTION
   ============================================ */

.smsf-hero-section {
    padding: 100px 0 80px;
    background: #fafafa;
    position: relative;
    overflow: hidden;
}

.smsf-hero-content {
    padding-right: 30px;
}

.smsf-label {
    display: inline-block;
    background: transparent;
    color: #ff9800;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
}

.smsf-main-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: "Poppins", sans-serif;
}

.smsf-highlight {
    color: #ff9800;
}

.smsf-subtitle {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-family: "Poppins", sans-serif;
}

.smsf-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555555;
}

.smsf-description p {
    margin-bottom: 20px;
}

.smsf-link {
    color: #ff9800;
    text-decoration: none;
    font-weight: 600;
}

.smsf-link:hover {
    text-decoration: underline;
}

.smsf-hero-image-wrapper {
    position: relative;
    text-align: center;
    padding-left: 30px;
    transition: transform 0.3s ease-out;
}

.smsf-dots-pattern {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, #999999 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.3;
    z-index: 1;
}

.smsf-hero-img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    border-radius: 15px;
}

/* Process Section */
.smsf-process-section {
    padding: 80px 0;
    background: #ffffff;
}

.smsf-process-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-family: "Poppins", sans-serif;
    line-height: 1.3;
}

.smsf-process-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.smsf-process-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
}

.smsf-process-item i {
    color: #1a1a1a;
    font-size: 1.2rem;
    min-width: 20px;
    flex-shrink: 0;
}

.smsf-process-item span {
    font-size: 1rem;
    color: #ff9800;
    font-weight: 500;
    line-height: 1.5;
}

.smsf-process-image-wrapper {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 30px;
}

.smsf-process-img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* SMSF Mobile Responsive */
@media (max-width: 991px) {
    .smsf-hero-section {
        padding: 80px 0 60px;
    }

    .smsf-main-heading {
        font-size: 2rem;
    }

    .smsf-subtitle {
        font-size: 1.4rem;
    }

    .smsf-hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .smsf-hero-image-wrapper {
        padding-left: 0;
        margin-top: 30px;
    }
    .smsf-process-heading {
        font-size: 1.7rem;
    }

    .smsf-process-image-wrapper {
        padding-left: 0;
        margin-top: 30px;
    }

    .smsf-process-list {
        padding-right: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .smsf-main-heading {
        font-size: 1.7rem;
    }

    .smsf-subtitle {
        font-size: 1.2rem;
    }

    .smsf-process-heading {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .smsf-process-item span {
        font-size: 0.95rem;
    }
}

/* ============================================
   COMMERCIAL LOAN PAGE - HERO SECTION
   ============================================ */

.commercial-hero-section {
    padding: 100px 0 80px;
    background: #fafafa;
    position: relative;
}

.commercial-hero-content {
    padding-right: 30px;
}

.commercial-label {
    display: inline-block;
    background: transparent;
    color: #ff9800;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
}

.commercial-main-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: "Poppins", sans-serif;
}

.commercial-highlight {
    color: #ff9800;
}

.commercial-subtitle {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-family: "Poppins", sans-serif;
}

.commercial-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555555;
}

.commercial-description p {
    margin-bottom: 20px;
}

.commercial-link {
    color: #d63384;
    text-decoration: none;
    font-weight: 600;
}

.commercial-link:hover {
    text-decoration: underline;
}

.commercial-benefits-list {
    list-style: none;
    padding-left: 0;
    margin: 25px 0;
}

.commercial-benefits-list li {
    padding: 12px 0;
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
    padding-left: 25px;
}

.commercial-benefits-list li::before {
    content: "•";
    color: #ff9800;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 8px;
}

.commercial-benefits-list li strong {
    color: #1a1a1a;
    font-weight: 600;
}

.commercial-support-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 20px;
    font-family: "Poppins", sans-serif;
}

.commercial-support-content {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555555;
}

.commercial-support-content p {
    margin-bottom: 20px;
}

.commercial-support-list {
    list-style: none;
    padding-left: 0;
    margin: 25px 0;
}

.commercial-support-list li {
    padding: 12px 0;
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
    padding-left: 25px;
}

.commercial-support-list li::before {
    content: "•";
    color: #ff9800;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 8px;
}

.commercial-support-list li strong {
    color: #1a1a1a;
    font-weight: 600;
}

.commercial-images-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-left: 30px;
}

.commercial-hero-image-wrapper {
    position: relative;
    text-align: center;
}

.commercial-image-top {
    margin-bottom: 0;
}

.commercial-image-bottom {
    margin-top: 0;
}

.commercial-dots-pattern {
    position: absolute;
    top: 30px;
    right: 390px;
    width: 200px;
    height: 108px;
    background-image: radial-gradient(circle, #fa7f08 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.3;
    z-index: 1;
}

.commercial-hero-img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    border-radius: 15px;
    display: block;
}

/* Commercial Mobile Responsive */
@media (max-width: 991px) {
    .commercial-hero-section {
        padding: 80px 0 60px;
    }

    .commercial-main-heading {
        font-size: 2rem;
    }

    .commercial-subtitle {
        font-size: 1.4rem;
    }

    .commercial-hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .commercial-images-container {
        padding-left: 0;
        margin-top: 30px;
        gap: 25px;
    }
}

@media (max-width: 767px) {
    .commercial-main-heading {
        font-size: 1.7rem;
    }

    .commercial-subtitle {
        font-size: 1.2rem;
    }

    .commercial-support-heading {
        font-size: 1.6rem;
    }

    .commercial-images-container {
        gap: 20px;
    }
}

@media (max-width: 575px) {
    .commercial-images-container {
        gap: 15px;
    }
}

/* ============================================
   COMMON SERVICE PAGES SECTIONS
   (Get Started, Reviews, Partners, CTA)
   ============================================ */

/* Get Started Form Section */
.service-get-started-section {
    padding: 60px 0;
    background: #2a2a2a;
}

.service-get-started-heading {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    font-family: "Poppins", sans-serif;
}

.highlight-orange {
    color: #ff9800;
}

.service-get-started-form {
    max-width: 900px;
    margin: 0 auto;
}

.service-form-input {
    padding: 15px 20px;
    border: 2px solid #ff9800;
    border-radius: 50px;
    font-size: 0.95rem;
    background: #ffffff;
    width: 100%;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease;
}

.service-form-input:focus {
    outline: none;
    border-color: #ff9800;
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.2);
}

.service-form-input::placeholder {
    color: #999999;
}

.btn-service-submit {
    background: #ff9800;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 15px 60px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
    width: 100%;
}

.btn-service-submit:hover {
    background: #f57c00;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.3);
}

/* Reviews Section */
.service-reviews-section {
    padding: 60px 0;
    background: #ffffff;
}

.service-reviews-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-family: "Poppins", sans-serif;
}

.service-reviews-subtext {
    color: #999999;
    font-size: 0.9rem;
    font-family: "Poppins", sans-serif;
}

/* Partners Section */
.service-partners-section {
    padding: 60px 0;
    background: #ffffff;
}

.service-partners-label {
    color: #ff9800;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
}

.service-partners-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-family: "Poppins", sans-serif;
    line-height: 1.4;
}

.service-partners-count {
    color: #ff9800;
    font-size: 2.5rem;
    font-weight: 800;
}

.service-partners-divider {
    width: 100px;
    height: 3px;
    background: #ff9800;
    margin: 0 auto;
}

/* Final CTA Section - Common Base */
.service-final-cta-section {
    position: relative;
    padding: 120px 0;
    min-height: 550px;
    display: flex;
    align-items: center;
}

.service-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.service-cta-content {
    position: relative;
    z-index: 2;
}

/* CTA with Video Background */
.service-cta-video {
    overflow: hidden;
}

.service-cta-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

/* CTA with Image Background */
.service-cta-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.service-cta-heading {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: "Poppins", sans-serif;
}

.service-cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    font-family: "Poppins", sans-serif;
}

.btn-service-cta {
    background: #ff9800;
    color: #ffffff;
    padding: 18px 50px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.2rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Poppins", sans-serif;
}

.btn-service-cta:hover {
    background: #f57c00;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.5);
}

/* Common Sections Mobile Responsive */
@media (max-width: 991px) {
    .service-get-started-heading {
        font-size: 1.8rem;
    }

    .service-final-cta-section {
        padding: 100px 0;
        min-height: 500px;
    }

    .service-cta-image {
        background-attachment: scroll;
    }

    .service-cta-heading {
        font-size: 2.2rem;
    }

    .service-cta-description {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .btn-service-cta {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .service-get-started-section {
        padding: 50px 0;
    }

    .service-get-started-heading {
        font-size: 1.6rem;
    }

    .btn-service-submit {
        padding: 15px 40px;
        font-size: 1rem;
    }

    .service-reviews-heading {
        font-size: 1.5rem;
    }

    .service-partners-heading {
        font-size: 1.5rem;
    }

    .service-final-cta-section {
        padding: 80px 0;
        min-height: 450px;
    }

    .service-cta-heading {
        font-size: 1.8rem;
    }

    .service-cta-description {
        font-size: 1rem;
    }

    .btn-service-cta {
        width: 100%;
        padding: 15px 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 575px) {
    .service-get-started-heading {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }

    .service-form-input {
        padding: 12px 18px;
        font-size: 0.9rem;
    }

    .btn-service-submit {
        font-size: 0.95rem;
        padding: 12px 30px;
    }

    .service-final-cta-section {
        padding: 60px 0;
        min-height: 400px;
    }

    .service-cta-heading {
        font-size: 1.6rem;
    }

    .service-cta-description {
        font-size: 0.95rem;
    }

    .service-partners-count {
        font-size: 2rem;
    }
}

/* ============================================
   NEED HELP BUTTON - COMMON FOR ALL PAGES
   ============================================ */

.fixed-help-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999;
}

.need-help-btn {
    background: rgb(79, 106, 202);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 100001;
}

.need-help-btn:hover {
    background: #4752c4;
    transform: translateY(-3px);
}

.need-help-btn i {
    font-size: 1.2rem;
}

.help-menu {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: all 0.3s ease;
    pointer-events: none;
}

.help-menu.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    pointer-events: auto;
}

.help-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: slideInRight 0.4s ease;
}

.help-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.help-icon-phone {
    background: #00e676;
    animation-delay: 0.1s;
}

.help-icon-phone:hover {
    background: #00c853;
}

.help-icon-whatsapp {
    background: #25d366;
    animation-delay: 0.2s;
}

.help-icon-whatsapp:hover {
    background: #128c7e;
}

.help-icon-link {
    background: #2196f3;
    animation-delay: 0.3s;
}

.help-icon-link:hover {
    background: #1976d2;
}

.help-close-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #5865f2;
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
    transition: all 0.3s ease;
    animation: slideInRight 0.4s ease;
    animation-delay: 0.4s;
}

.help-close-btn:hover {
    background: #4752c4;
    transform: rotate(90deg) scale(1.1);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.need-help-btn.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@media (max-width: 768px) {
    .fixed-help-widget {
        bottom: 20px;
        right: 20px;
    }

    .need-help-btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .help-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .help-close-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .fixed-help-widget {
        bottom: 15px;
        right: 15px;
    }

    .need-help-btn {
        padding: 10px 18px;
        font-size: 0.8rem;
    }

    .help-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .help-close-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* ============================================
   CONSTRUCTION LOAN PAGE - HERO SECTION
   ============================================ */

.construction-hero-section {
    padding: 100px 0 80px;
    background: #ffffff;
    position: relative;
}

.construction-hero-content {
    padding-right: 30px;
}

.construction-label {
    display: inline-block;
    background: transparent;
    color: #ff9800;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
}

.construction-main-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.3;
    font-family: "Poppins", sans-serif;
}

.construction-highlight {
    color: #ff9800;
}

.construction-subtitle {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-family: "Poppins", sans-serif;
    line-height: 1.3;
}

.construction-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555555;
}

.construction-description p {
    margin-bottom: 20px;
}

.construction-link {
    color: #d63384;
    text-decoration: none;
    font-weight: 600;
}

.construction-link:hover {
    text-decoration: underline;
}

.construction-benefits-list,
.construction-solutions-list {
    list-style: none;
    padding-left: 0;
    margin: 25px 0;
}

.construction-benefits-list li,
.construction-solutions-list li {
    padding: 10px 0;
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
    padding-left: 25px;
}

.construction-benefits-list li::before,
.construction-solutions-list li::before {
    content: "•";
    color: #ff9800;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 5px;
}

.construction-benefits-list li strong,
.construction-solutions-list li strong {
    color: #1a1a1a;
    font-weight: 600;
}

.construction-hero-image-wrapper {
    position: relative;
    text-align: center;
    padding-left: 30px;
}

.construction-hero-img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    border-radius: 15px;
}

/* Process Section Inside Hero */
.construction-process-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    margin-top: 0;
    font-family: "Poppins", sans-serif;
    line-height: 1.3;
}

.construction-process-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.construction-process-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
}

.construction-process-item i {
    color: #1a1a1a;
    font-size: 1.2rem;
    min-width: 20px;
    flex-shrink: 0;
}

.construction-process-item span {
    font-size: 1rem;
    color: #ff9800;
    font-weight: 500;
    line-height: 1.5;
}

.construction-process-image-wrapper {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 30px;
    height: 100%;
    min-height: 250px;
}

.construction-process-img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Construction Mobile Responsive */
@media (max-width: 991px) {
    .construction-hero-section {
        padding: 80px 0 60px;
    }

    .construction-main-heading {
        font-size: 2rem;
    }

    .construction-subtitle {
        font-size: 1.4rem;
    }

    .construction-hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .construction-hero-image-wrapper {
        padding-left: 0;
        margin-top: 30px;
    }

    .construction-process-heading {
        font-size: 1.7rem;
        margin-bottom: 25px;
    }

    .construction-process-image-wrapper {
        padding-left: 0;
        margin-top: 30px;
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .construction-main-heading {
        font-size: 1.7rem;
    }

    .construction-subtitle {
        font-size: 1.2rem;
    }

    .construction-process-heading {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .construction-process-item span {
        font-size: 0.95rem;
    }
}

/* ==========================================
   REFINANCING PAGE STYLES - UPDATED
========================================== */

/* Hero Section */
.refinancing-hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.refinancing-hero-content {
    padding-right: 20px;
}

/* Label */
.refinancing-label {
    display: inline-block;
    background: #ff9800;
    color: #fff;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border-radius: 30px;
    font-family: "Poppins", sans-serif;
}

/* Main Heading */
.refinancing-main-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: "Poppins", sans-serif;
}

/* Animated Headline */
.refinancing-animated-headline {
    margin-bottom: 20px;
}

.refinancing-headline {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    font-family: "Poppins", sans-serif;
}

.refinancing-headline-static {
    color: #1a1a1a;
    display: inline-block;
}

.refinancing-headline-dynamic-wrapper {
    position: relative;
    display: inline-block;
    vertical-align: top;
    min-width: 300px;
    height: 1.5em;
    overflow: hidden;
}

.refinancing-headline-text {
    color: #ff9800;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(100%);
    animation: slideDown 3s infinite;
}

.refinancing-headline-text:nth-child(1) {
    animation-delay: 0s;
}

.refinancing-headline-text:nth-child(2) {
    animation-delay: 1.5s;
}

.refinancing-text-active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    5% {
        opacity: 1;
        transform: translateY(0);
    }
    45% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 0;
        transform: translateY(100%);
    }
    100% {
        opacity: 0;
        transform: translateY(100%);
    }
}

/* Subtitle */
.refinancing-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-family: "Poppins", sans-serif;
}

/* Tagline */
.refinancing-tagline {
    font-size: 1.1rem;
    color: #ff9800;
    font-weight: 500;
    margin-bottom: 30px;
    font-family: "Poppins", sans-serif;
}

/* Form Styles */
.refinancing-form-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    /* box-shadow: 0 4px 20px rgba(0,0,0,0.08); */
    margin-bottom: 40px;
}

.refinancing-form .form-control {
    border: 2px solid #e0e0e0;
    padding: 12px 15px;
    font-size: 0.95rem;
    border-radius: 8px;
    margin-bottom: 15px;
    font-family: "Open Sans", sans-serif;
    transition: all 0.3s ease;
}

.refinancing-form .form-control:focus {
    border-color: #ff9800;
    box-shadow: 0 0 0 0.2rem rgba(255, 152, 0, 0.15);
    outline: none;
}

.refinancing-submit-btn {
    width: 100%;
    background: #ff9800;
    color: #fff;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
}

.refinancing-submit-btn:hover {
    background: #e68900;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
}

/* Description Section */
.refinancing-description {
    margin-bottom: 0;
}

.refinancing-description p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    font-family: "Open Sans", sans-serif;
}

.refinancing-description a {
    color: #d63384;
    text-decoration: none;
    font-weight: 600;
}

.refinancing-description a:hover {
    text-decoration: underline;
}

/* .refinancing-benefits-highlight {
    background: #ff9800;
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1rem;
    font-family: "Poppins", sans-serif;
} */

.refinancing-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.refinancing-benefits-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    font-family: "Open Sans", sans-serif;
}

.refinancing-benefits-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
    font-size: 1.2rem;
}

.refinancing-benefits-list strong {
    color: #1a1a1a;
}

/* First Image Wrapper */
.refinancing-hero-image-wrapper {
    text-align: center;
    position: relative;
    padding-left: 30px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 400px;
}

.refinancing-hero-img {
    max-width: 100%;
    height: auto;
    display: block;
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Process Section */
.refinancing-process-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-family: "Poppins", sans-serif;
}

.refinancing-process-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.refinancing-process-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    animation: bounceIn 0.8s ease;
}

.refinancing-process-item i {
    color: #1a1a1a;
    font-size: 1rem;
    min-width: 16px;
    flex-shrink: 0;
}

.refinancing-process-item span {
    font-size: 0.95rem;
    color: #ff9800;
    font-weight: 500;
    line-height: 1.5;
    font-family: "Poppins", sans-serif;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

/* Second Image Wrapper (Process) */
.refinancing-process-image-wrapper {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 30px;
    min-height: 300px;
}

.refinancing-process-img {
    max-width: 100%;
    height: auto;
    display: block;
    animation: floatImage 3s ease-in-out infinite;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .refinancing-hero-section {
        padding: 80px 0 60px;
    }

    .refinancing-main-heading {
        font-size: 2rem;
    }

    .refinancing-headline {
        font-size: 2.2rem;
    }

    .refinancing-subtitle {
        font-size: 1.5rem;
    }

    .refinancing-hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .refinancing-hero-image-wrapper,
    .refinancing-process-image-wrapper {
        padding-left: 0;
        margin-top: 30px;
        min-height: auto;
    }

    .refinancing-headline-dynamic-wrapper {
        min-width: 250px;
    }
}

@media (max-width: 767px) {
    .refinancing-main-heading {
        font-size: 1.7rem;
    }

    .refinancing-headline {
        font-size: 1.8rem;
    }

    .refinancing-subtitle {
        font-size: 1.3rem;
    }

    .refinancing-tagline {
        font-size: 1rem;
    }

    .refinancing-process-heading {
        font-size: 1.5rem;
    }

    .refinancing-process-list {
        flex-direction: column;
    }

    .refinancing-process-item {
        width: 100%;
    }

    .refinancing-headline-dynamic-wrapper {
        min-width: 200px;
    }
}

/* Mini WhatsApp Box */
.mini-whatsapp-box {
    position: fixed;
    bottom: 80px; /* leave some space for buttons */
    right: 25px;
    width: 350px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    z-index: 10000;
    display: none;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Show chat box */
.mini-whatsapp-box.show {
    display: block;
}

/* Header */
.wa-header {
    background: #25d366;
    color: #fff;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.wa-header i {
    font-size: 22px;
}

.close-wa {
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
}

/* Body */
.wa-body {
    padding: 15px;
    background: #ece5dd;
    min-height: 80px;
    border-bottom: 1px solid #ccc;
}

.wa-msg {
    background: #fff;
    padding: 10px 15px;
    border-radius: 15px;
    display: inline-block;
    font-size: 14px;
    color: #222;
    margin-bottom: 35px; /* add space below */
}

/* Footer */
.wa-footer {
    display: flex;
    padding: 10px 15px;
    background: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.wa-footer input {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.wa-footer input:focus {
    border-color: #25d366;
}

.wa-footer button {
    background: #25d366;
    border: none;
    color: #fff;
    width: 38px; /* fixed width */
    height: 38px; /* fixed height */
    margin-left: 10px;
    border-radius: 50%; /* makes it a perfect circle */
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    padding: 0; /* remove horizontal padding */
}

.wa-footer button:hover {
    background: #1ebe57;
}

/* Floating Help Widget buttons container */
.fixed-help-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

/* Individual Help Icon Buttons */
.help-icon {
    background: #25d366;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s;
}

.help-icon:hover {
    background: #1ebe57;
}

/* Example for other icons with different colors */
.help-icon-phone {
    background: #007bff;
}

.help-icon-phone:hover {
    background: #0069d9;
}

.help-icon-link {
    background: #007bff;
}

.help-icon-link:hover {
    background: #0069d9;
}

.help-close-btn {
    background: #dc3545;
}

.help-close-btn:hover {
    background: #b02a37;
}

/* ==========================================
   COMMON LOCATION PAGES STYLES
========================================== */

/* Hero Section Common */
.location-hero-section {
    background: linear-gradient(135deg, #fff3e0 0%, #ffffff 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.location-hero-content {
    padding-right: 20px;
}

/* Question Icon */
.location-question-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff9800;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.location-question-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

/* Main Heading */
.location-main-heading {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: "Poppins", sans-serif;
}

.location-highlight {
    color: #ff9800;
}

/* Subtitle */
.location-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.5;
    font-family: "Open Sans", sans-serif;
}

/* Description */
.location-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
    font-family: "Open Sans", sans-serif;
}

/* Contact Form Sidebar */
.location-form-sidebar {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

.location-form-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-family: "Poppins", sans-serif;
}

.location-form-title i {
    color: #ff9800;
    margin-right: 8px;
}

.location-form-sidebar .form-control {
    border: 1px solid #e0e0e0;
    padding: 12px 15px;
    font-size: 0.95rem;
    border-radius: 8px;
    margin-bottom: 15px;
    font-family: "Open Sans", sans-serif;
    transition: all 0.3s ease;
}

.location-form-sidebar .form-control:focus {
    border-color: #ff9800;
    box-shadow: 0 0 0 0.2rem rgba(255, 152, 0, 0.15);
    outline: none;
}

.location-submit-btn {
    width: 100%;
    background: #ff9800;
    color: #fff;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
}

.location-submit-btn:hover {
    background: #e68900;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
}

/* Why Choose Section */
.location-why-choose-section {
    padding: 80px 0;
    background: #fff;
}

.location-why-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 50px;
    font-family: "Poppins", sans-serif;
}

/* Icon Boxes */
.location-icon-box {
    background: #f8f9fa;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.location-icon-box:hover {
    background: #fff;
    border-color: #ff9800;
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.location-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff9800 0%, #ff6f00 100%);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.location-icon-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-family: "Poppins", sans-serif;
}

.location-icon-box p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0;
    font-family: "Open Sans", sans-serif;
}

/* Image with Content Section */
.location-image-content-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.location-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.location-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.location-image-wrapper:hover img {
    transform: scale(1.05);
}

/* Services List */
.location-services-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0 0;
}

.location-services-list li {
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    font-family: "Open Sans", sans-serif;
    border-bottom: 1px solid #e0e0e0;
}

.location-services-list li:last-child {
    border-bottom: none;
}

.location-services-list li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #ff9800;
    font-size: 1.2rem;
}

.location-services-list strong {
    color: #1a1a1a;
}

/* Cards Section */
.location-cards-section {
    padding: 80px 0;
}

.location-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid #f0f0f0;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #ff9800;
}

.location-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    color: #ff9800;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.location-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-family: "Poppins", sans-serif;
}

.location-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0;
    font-family: "Open Sans", sans-serif;
}

/* FAQ Section */
.location-faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.location-faq-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 50px;
    font-family: "Poppins", sans-serif;
}

.location-faq-heading .highlight {
    color: #ff9800;
}

.location-accordion-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: none;
}

.location-accordion-header {
    padding: 0;
}

.location-accordion-button {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    background: #fff;
    border: none;
    padding: 20px 60px 20px 25px;
    width: 100%;
    text-align: left;
    position: relative;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease;
}

.location-accordion-button:hover {
    background: #fff3e0;
    color: #ff9800;
}

.location-accordion-button:not(.collapsed) {
    background: #ff9800;
    color: #fff;
}

.location-accordion-button::after {
    content: "+";
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.location-accordion-button:not(.collapsed)::after {
    content: "−";
    transform: translateY(-50%) rotate(180deg);
}

.location-accordion-body {
    padding: 25px;
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    font-family: "Open Sans", sans-serif;
    background: #fafafa;
}

/* CTA Section */
.location-cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 80px 0;
    text-align: center;
}

.location-cta-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    font-family: "Poppins", sans-serif;
}

.location-cta-highlight {
    color: #ff9800;
}

.location-cta-text {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
}

.location-cta-btn {
    background: #ff9800;
    color: #fff;
    padding: 16px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
}

.location-cta-btn:hover {
    background: #e68900;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4);
    color: #fff;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .location-hero-section {
        padding: 80px 0 60px;
    }

    .location-main-heading {
        font-size: 2.2rem;
    }

    .location-subtitle {
        font-size: 1.3rem;
    }

    .location-hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .location-form-sidebar {
        position: relative;
        top: 0;
        margin-top: 30px;
    }

    .location-why-heading,
    .location-faq-heading {
        font-size: 1.9rem;
    }

    .location-cta-heading {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .location-main-heading {
        font-size: 1.8rem;
    }

    .location-subtitle {
        font-size: 1.1rem;
    }

    .location-why-heading,
    .location-faq-heading {
        font-size: 1.7rem;
    }

    .location-cta-heading {
        font-size: 1.7rem;
    }

    .location-icon-box {
        margin-bottom: 20px;
    }

    .location-card {
        margin-bottom: 20px;
    }
}


/* ============================================
   MOBILE FIX - Horizontal Scroll & Navbar
============================================ */

/* Prevent Horizontal Scroll */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    position: relative;
}

* {
    box-sizing: border-box;
}

/* Container Fix */
.container, .container-fluid {
    overflow-x: hidden !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

/* Row Fix */
.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/*[class*="col-"] {*/
/*    padding-left: 15px !important;*/
/*    padding-right: 15px !important;*/
/*}*/
