:root {
    --primary-orange: #FF6B35;
    --light-orange: #fff5f1;
    --dark-bg: #1a1a1a;
    --light-gray: #f5f5f5;
    --text-dark: #333;
    --text-light: #666;
}

html {
    overflow-x: hidden;
}

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

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

/* Header Styles */
.navbar {
    padding: 15px 0;
}

.logo {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-orange);
    letter-spacing: -0.5px;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 0.9rem !important;
    font-size: 15px;
}

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

.phone-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
}

.phone-link:hover {
    color: #e55a2a;
}

.phone-link i {
    font-size: 16px;
}

.get-started-btn {
    background: var(--dark-bg);
    color: white !important;
    padding: 12px 28px;
    border-radius: 25px;
    transition: all 0.3s;
    border: none;
    font-weight: 600;
    font-size: 15px;
}

.get-started-btn:hover {
    background: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
    .navbar {
        padding: 10px 0;
    }

    .logo {
        font-size: 28px;
    }

    .navbar-nav {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .nav-link {
        padding: 0.6rem 0 !important;
    }

    .phone-link {
        margin: 10px 0;
    }

.navbar-toggler {
    border: none !important;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none !important;
    outline: none !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23FF6600' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
}

/* Hero Section */
/* ========================================
   HERO SECTION - RESPONSIVE
   ======================================== */

.hero-section {
    background: var(--light-gray);
    padding: 40px 0 80px;
    position: relative;
    overflow: visible;
}

.hero-section-mobile {
    background: var(--primary-orange);
    padding: 40px 0 80px;
    position: relative;
    overflow: visible;
}

.hero-text {
    padding-right: 30px;
}

.hero-title {
    font-size: 52px;
    font-weight: 300;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 20px;
    color: #4e4e4e;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 26px;
    flex-wrap: inherit;
}

.hero-btn-primary {
    background: var(--dark-bg);
    color: white !important;
    padding: 12px 26px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
    border: none;
    white-space: nowrap;
}

.hero-btn-primary:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-btn-secondary {
    background: white;
    color: var(--text-dark) !important;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    border: 13px solid black;
    white-space: nowrap;
    margin-right: 400px;
    width: 300px;
    border-color: #000;
}

.hero-btn-secondary:hover {
    border-color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.app-badges {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.app-badge {
    display: inline-block;
    transition: all 0.3s;
}

.app-badge:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.app-badge img {
    width: 100%;
    height: auto;
    max-width: 134px;
    min-width: 100px;
    display: block;
    object-fit: contain;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    right: 0;
    max-width: 600px;
}

/* .hero-main-img {
    max-width: none;
    height: auto;
    display: block;
    object-fit: contain;
} */

.review-badge {
    position: absolute;
    top: 19%;
    left: -130px;
    transform: translateY(-50%);
    background: linear-gradient(358deg, #d13800 0%, #ed6428 50%, #FFA070 100%);
    color: white;
    padding: 12px 45px;
    border-radius: 0px 70px 0px 70px;
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.4);
    z-index: 10;
    min-width: 270px;
    min-height: 60px;
}

.review-text {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
    opacity: 0.98;
    letter-spacing: 0.3px;
}

.review-stars {
    font-size: 24px;
    margin-bottom: 5px;
    letter-spacing: 3px;
}

.review-stars i {
    color: #FFD700;
}

.review-rating {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* ========================================
   WHY CHOOSE SECTION
   ======================================== */

.why-choose-section {
    background: var(--light-orange);
    padding: 80px 0;
}

.section-title {
    font-size: 38px;
    font-weight: 400;
    color: var(--dark-bg) !important;
    letter-spacing: -0.5px;
    margin-bottom: 50px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 107, 53, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8555 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 15px;
}

/* ========================================
   ORANGE FEATURE SECTION
   ======================================== */

.orange-section {
    background: #F15A29;
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.orange-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.orange-section h2 {
    font-weight: 200;
    font-size: 42px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.orange-section p {
    opacity: 0.95;
    font-size: 18px;
    margin-bottom: 30px;
}

.orange-section .pricing {
    color: white;
    font-size: 48px;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.app-btn {
    background: rgba(255, 255, 255, 0.15);
    color: white !important;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.app-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: white !important;
}

.feature-item {
    background: rgba(255, 255, 255, 0.12);
    padding: 18px 20px;
    border-radius: 15px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
}

.feature-item-icon {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 22px;
}

.feature-item span {
    font-weight: 500;
    font-size: 16px;
    color: white;
}

.orange-card {
    background: rgba(255, 255, 255, 0.12);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s;
}

.orange-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-5px);
}

.orange-card .icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orange-card .icon-wrapper i {
    font-size: 28px;
}

.orange-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.orange-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 0;
}

.circle-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.circle-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.feature-row {
    transition: transform 0.3s;
}

.feature-row:hover {
    transform: translateX(5px);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials-section {
    background: white;
    padding: 100px 0;
    overflow: hidden;
}

.testimonials-section .section-title {
    margin-bottom: 40px;
    font-size: 38px;
    line-height: 1.2;
    color: var(--text-dark);
}

.testimonial-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.testimonial-slide {
    min-width: 100%;
    padding-right: 20px;
}

.testimonial-slide h3 {
    font-size: 22px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 400;
}

.testimonial-slide {
    display: none;
    animation: fadeSlide 0.6s ease-in-out;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-slide .bi-quote {
    margin-bottom: 25px;
}

.testimonial-nav {
    margin-top: 20px;
}

.rating-stars i {
    color: #FFD700;
    font-size: 1.1rem;
    margin-right: 4px;
}


.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #FF6B35 !important;
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 20px;
}

.nav-btn:hover {
    background: #e55a2a;
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.nav-btn:active {
    transform: scale(0.95);
}

.phone-showcase {
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-bg-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-bg {
    width: 100%;
    max-width: 600px;
    opacity: 0.8;
}

.phone-mockup {
    position: relative;
    z-index: 10;
    max-width: 100%;
    transform: scale(1.1) translateX(20px);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.closing-quote {
    vertical-align: bottom;
}

/* ========================================
   APP SHOWCASE SECTION
   ======================================== */

.app-showcase-section {
    background: var(--light-gray);
    padding: 80px 0;
}

.app-hero-img {
    max-width: 100%;
    height: auto;
}

.app-showcase-section h2 {
    font-size: 42px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 15px;
}

.app-showcase-section h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.app-showcase-section .lead {
    font-size: 20px;
    margin-bottom: 30px;
}

.feature-list li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

@media (max-width: 991px) {
    .app-showcase-section {
        padding: 60px 0;
        text-align: left !important; 
    }

    .app-showcase-section h2,
    .app-showcase-section h3,
    .app-showcase-section .lead,
    .app-showcase-section p {
        text-align: left !important; 
    }

    .app-showcase-section .ps-lg-5 {
        padding-left: 0 !important; 
    }
}

@media (max-width: 767px) {
    .app-showcase-section {
        padding: 50px 0;
        text-align: left !important; 
    }

    .app-showcase-section h2 {
        font-size: 26px;
        text-align: left !important; 
    }

    .app-showcase-section h3 {
        font-size: 24px;
        text-align: left !important; 
    }

    .app-showcase-section .lead {
        font-size: 16px;
        text-align: left !important; 
    }

    .app-showcase-section p {
        text-align: left !important;
    }

    .feature-list {
        text-align: left !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
    }

    .feature-list li {
        font-size: 14px;
        margin-bottom: 12px;
        justify-content: flex-start !important;
        text-align: left !important;
        display: flex !important; 
    }

    .feature-list i {
        flex-shrink: 0;
        margin-right: 8px; 
    }

    .app-showcase-section .d-flex.flex-wrap {
        justify-content: flex-start !important; 
    }
}

/* ========================================
   QUESTIONS SECTION
   ======================================== */

.questions-section {
    background: white;
    padding: 80px 0;
}

.questions-section h2 {
    font-weight: 300;
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.questions-section h3 {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 20px;
}

.questions-section .lead {
    font-size: 18px;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.7;
}

.cta-btn {
    background: var(--primary-orange);
    color: white !important;
    padding: 16px 45px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    background: #e55a2a;
    color: white !important;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.questions-image-wrapper {
    position: relative;
}

.support-widget {
    background: rgba(241, 90, 41, 0.95);
    backdrop-filter: blur(10px);
}

.call-widget {
    top: 20%;
    right: -5%;
}

.email-widget {
    bottom: 15%;
    left: 5%;
}

/* ========================================
   TABLET BREAKPOINT (1024px and below)
   ======================================== */

@media (max-width: 1024px) {
    .hero-image-wrapper {
        right: 0;
        max-width: 600px;
    }

    .hero-btn-secondary {
        margin-right: 200px;
        width: 250px;
    }

    .section-title {
        font-size: 34px;
    }

    .orange-section h2 {
        font-size: 36px;
    }

    .app-showcase-section h2 {
        font-size: 36px;
    }

    .app-showcase-section h3 {
        font-size: 30px;
    }
}

/* ========================================
   TABLET BREAKPOINT (991px and below)
   ======================================== */

/* DESKTOP ONLY */
@media (min-width: 992px) {

    /* Remove container right limit */
    .hero-container {
        max-width: 100%;
        padding-right: 0;
        padding-top: 0;
    }

    /* Stretch row full height */
    .hero-section .row {
        align-items: stretch;
    }

    /* Remove padding from image column */
    .hero-section .col-lg-5 {
        padding-right: 0;
        padding-left: 0;
        margin-top: -40px;
    }

    /* Image wrapper fills column */
    .hero-image-wrapper {
        height: 100%;
        width: 100%;
        max-width: none;
        display: flex;
        align-items: stretch;
        justify-content: flex-end;
    }

    /* Image fills top, bottom, right */
    .hero-main-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .hero-text{
        margin-left: 90px;
    }
}

@media (max-width: 991px) {
    .navbar-nav {
        padding: 20px 0;
    }

    .hero-section {
        padding: 40px 0 60px;
        text-align: center;
    }

    .hero-text {
        padding-right: 0;
    }

    .hero-title {
        font-size: 38px;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .hero-buttons {
        justify-content: center;
        margin-bottom: 30px;
        flex-direction: column;
        gap: 15px;
    }

    .hero-btn-secondary {
        margin-right: 0;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .app-badges {
        justify-content: center;
    }
.app-badge img {
        width: 134px;
        height: 40px;
    }
    .hero-image-wrapper {
        justify-content: center;
        right: 0;
        margin-top: 30px;
        max-width: 600px;
    }

    .hero-main-img {
        max-width: 60%;
        height: auto;
    }

    .review-badge {
        left: 50%;
        white-space: nowrap;
        top: auto;
        bottom: 30px;
        transform: translateX(-50%);
        width: 90%;
        max-width: 300px;
        min-width: auto;
    }

    /* Why Choose Section */
    .why-choose-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
        text-align: center;
    }

    /* Orange Section */
    .orange-section {
        padding: 60px 0;
    }

    .orange-section h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .orange-section h3 {
        font-size: 28px;
    }

    .orange-section .pricing {
        font-size: 40px;
    }

    .orange-section p {
        font-size: 16px;
    }

    .orange-card {
        margin-bottom: 20px;
    }

    /* Testimonials Section */
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-section .section-title {
        text-align: center;
        font-size: 32px;
    }

    .testimonials-section .section-title br {
        display: none;
    }

    .testimonial-slider-container {
        text-align: center;
    }

    .testimonial-nav {
        justify-content: center;
    }

    .testimonial-slide h3 {
        margin-left: auto;
        margin-right: auto;
    }

    .phone-showcase {
        min-height: 400px;
        margin-top: 50px;
    }

    .phone-mockup {
        transform: none;
        max-width: 80%;
    }

    /* App Showcase Section */
    .app-showcase-section {
        padding: 60px 0;
    }

    .app-showcase-section h2 {
        font-size: 32px;
    }

    .app-showcase-section h3 {
        font-size: 28px;
    }

    .app-showcase-section .lead {
        font-size: 18px;
    }

    .app-hero-img {
        margin-bottom: 30px;
    }

    /* Questions Section */
    .questions-section {
        padding: 60px 0;
        text-align: center;
    }

    .questions-section h2 {
        font-size: 32px;
    }

    .questions-section h3 {
        font-size: 28px;
    }

    .questions-section .lead {
        margin-left: auto;
        margin-right: auto;
    }

    .support-widget {
        position: static !important;
        margin: 20px auto;
        max-width: 300px;
        display: inline-flex !important;
    }

    .questions-image-wrapper {
        margin-top: 40px;
    }
}

/* ========================================
   MOBILE BREAKPOINT (767px and below)
   ======================================== */

@media (max-width: 767px) {
    .hero-section {
        padding: 40px 0 100px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 15px;
    }

    .app-badge {
        width: 48%;
    }

    .app-badge img {
        width: 100%;
        height: auto;
    }

    .hero-main-img {
        max-width: 100%;
    }

    .review-badge {
        padding: 10px 30px;
        min-height: 50px;
        white-space: nowrap
    }

    .review-rating {
        font-size: 18px;
    }

    /* Why Choose Section */
    .why-choose-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .feature-card {
        padding: 30px 25px;
        margin-bottom: 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    /* Orange Section */
    .orange-section {
        padding: 50px 0;
    }

    .orange-section h2 {
        font-size: 26px;
    }

    .orange-section h3 {
        font-size: 24px;
    }

    .orange-section p {
        font-size: 15px;
    }

    .orange-section .pricing {
        font-size: 36px;
    }

    .orange-card {
        padding: 25px;
    }

    .orange-card h3 {
        font-size: 20px;
    }

    .orange-card p {
        font-size: 15px;
    }

    .circle-icon {
        width: 50px;
        height: 50px;
    }

    .circle-icon img {
        width: 25px;
        height: 25px;
    }

    .feature-row {
        margin-bottom: 15px !important;
    }

    .feature-row span {
        font-size: 14px !important;
    }

    .feature-item {
        padding: 15px;
        margin-bottom: 10px;
    }

    .feature-item span {
        font-size: 14px;
    }

    .app-btn {
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }

    /* Testimonials Section */
    .testimonials-section {
        padding: 50px 0;
    }

    .testimonials-section .section-title {
        font-size: 26px;
    }

    .testimonial-slide h3 {
        font-size: 18px;
        line-height: 1.5;
    }

    .testimonial-slider-container {
        text-align: center;
    }

    .testimonial-nav {
        justify-content: center;
    }

    .testimonial-slide h3 {
        margin-left: auto;
        margin-right: auto;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .phone-showcase {
        min-height: 300px;
    }

    .phone-mockup {
        max-width: 70%;
    }

    /* App Showcase Section */
    .app-showcase-section {
        padding: 50px 0;
    }

    .app-showcase-section h2 {
        font-size: 26px;
    }

    .app-showcase-section h3 {
        font-size: 24px;
    }

    .app-showcase-section .lead {
        font-size: 16px;
    }

    /* Questions Section */
    .questions-section {
        padding: 50px 0;
    }

    .questions-section h2 {
        font-size: 26px;
    }

    .questions-section h3 {
        font-size: 24px;
    }

    .questions-section .lead {
        font-size: 16px;
        width: 100% !important;
    }

    .cta-btn {
        width: 100%;
        padding: 15px 30px;
    }

    .support-widget {
        flex-direction: column;
        text-align: center;
        padding: 20px !important;
    }

    .widget-label,
    .support-widget .fw-bold {
        font-size: 14px !important;
    }
}

/* ========================================
   SMALL MOBILE BREAKPOINT (576px and below)
   ======================================== */

@media (max-width: 576px) {
    .hero-section {
        padding-top: 20px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .section-title {
        font-size: 24px;
    }

    .orange-section h2 {
        font-size: 22px;
    }

    .orange-section h3 {
        font-size: 20px;
    }

    .orange-section .pricing {
        font-size: 32px;
    }

    .testimonials-section .section-title {
        font-size: 22px;
    }

    .testimonial-slide h3 {
        font-size: 16px;
    }

    .app-showcase-section h2 {
        font-size: 22px;
    }

    .testimonial-slider-container {
        text-align: center;
    }

    .testimonial-nav {
        justify-content: center;
    }

    .testimonial-slide h3 {
        margin-left: auto;
        margin-right: auto;
    }

    .app-showcase-section h3 {
        font-size: 20px;
    }

    .questions-image-wrapper {
        position: relative;
        overflow: hidden;
        text-align: center;
    }

    .support-widget {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 320px;

        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
    }

    /* EMAIL on TOP */
    .email-widget {
        top: 55%;
        bottom: auto;
    }

    /* CALL under EMAIL */
    .call-widget {
        top: 72%;
        right: auto;
    }

    .support-widget .fw-bold {
        font-size: 14px;
    }

    .widget-label {
        font-size: 12px;
    }

    .questions-section h2 {
        font-size: 22px;
    }

    .questions-section h3 {
        font-size: 20px;
    }

    .app-badge img {
        height: 40px;
        width: auto !important;
    }
}

/* ========================================
   EXTRA SMALL MOBILE (480px and below)
   ======================================== */

@media (max-width: 480px) {
    .hero-title {
        font-size: 22px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .section-title {
        font-size: 22px;
    }

    .orange-card {
        padding: 20px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .testimonial-slide h3 {
        font-size: 15px;
    }

    .app-showcase-section h2,
    .questions-section h2 {
        font-size: 20px;
    }

    .testimonial-slider-container {
        text-align: center;
    }

    .testimonial-nav {
        justify-content: center;
    }

    .testimonial-slide h3 {
        margin-left: auto;
        margin-right: auto;
    }

    .app-showcase-section h3,
    .questions-section h3 {
        font-size: 18px;
    }
}

/* ========================================
   IMAGE CARD STYLES (for Why Choose section)
   ======================================== */

.image-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.image-card .card-img-top {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.image-card .card-body {
    padding: 30px 25px;
}

.image-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.image-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .image-card .card-img-top {
        height: 200px;
    }

    .image-card .card-body {
        padding: 25px 20px;
    }

    .image-card h3 {
        font-size: 18px;
    }

    .image-card p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .image-card .card-img-top {
        height: 180px;
    }

    .image-card .card-body {
        padding: 20px 15px;
    }
}

/* Footer */
footer {
    background: #000;
    color: white;
}

footer h3 {
    font-weight: 600;
    font-size: 18px;
}

footer p {
    color: #aaa;
    line-height: 1.8;
}

footer a {
    color: #999;
    transition: color 0.3s;
    padding: 5px 0;
    display: inline-block;
}

footer a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    border-top: 1px solid #333 !important;
}

.footer-bottom p {
    color: #999;
    margin: 0;
}

.social-icon {
    width: 42px;
    height: 42px;
    background: #2a2a2a;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

/* Additional Responsive Utilities */
@media (max-width: 767px) {
    .app-btn {
        font-size: 13px;
        padding: 10px 15px;
    }

    .app-btn small {
        font-size: 10px;
    }

    .app-btn strong {
        font-size: 13px;
    }

    .display-4 {
        font-size: 1.75rem !important;
    }

    .display-6 {
        font-size: 1.35rem !important;
    }

    .lead {
        font-size: 1rem !important;
    }
}

@media (max-width: 575px) {
    .display-4 {
        font-size: 1.5rem !important;
    }

    .tab-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}


/* How It Works Section */
.how-it-works-section {
    background: #ffffff;
    padding: 0 0 80px;
    margin-top: -120px;
    position: relative;
    z-index: 50;
}

.how-it-works-card {
    background: #f7f7f7;
    padding: 55px 60px 65px;
    border-radius: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin: 0 auto;
    position: relative;
}

.how-title {
    font-size: 32px;
    font-weight: 400;
    color: #2d2d2d;
    letter-spacing: -0.3px;
    margin-bottom: 0;
}

.step-item {
    position: relative;
    padding-left: 0;
    margin-bottom: 35px;
}

.step-number {
    font-size: 95px;
    font-weight: 100;
    color: #f0f0f0;
    line-height: 0.9;
    margin-bottom: 8px;
    letter-spacing: -2px;
}

.step-title {
    font-size: 17px;
    font-weight: 600; 
    color: #2d2d2d;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.step-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 4px;
    height: 20px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.step-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    padding-left: 15px;
}


/* Star Shine Animation */
@keyframes starShine {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.review-stars i {
    animation: starShine 2s ease-in-out infinite;
    display: inline-block;
}

.review-stars i:nth-child(1) {
    animation-delay: 0s;
}

.review-stars i:nth-child(2) {
    animation-delay: 0.2s;
}

.review-stars i:nth-child(3) {
    animation-delay: 0.4s;
}

.review-stars i:nth-child(4) {
    animation-delay: 0.6s;
}

.review-stars i:nth-child(5) {
    animation-delay: 0.8s;
}

/* Enhanced review text styling */
.review-text {
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.review-rating {
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* --- NEW DESIGN UPDATES --- */

/* Hero Updates */
.hero-btn-black {
    background: #000;
    color: white !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
    text-decoration: none;
}

.hero-btn-black:hover {
    background: #333;
    color: white !important;
}

.hero-btn-outline {
    background: transparent;
    color: #333 !important;
    border: 1px solid #333;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
    text-decoration: none;
}

.hero-btn-outline:hover {
    background: #333;
    color: white !important;
    border-color: #333;
}

/* Why Choose Zulu - Image Cards */
.image-card {
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease;
    background: var(--light-orange);
    padding-bottom: 20px;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); */
}

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

.card-img-top {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.image-card .card-body {
    padding-top: 25px;
}

.image-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Orange Section Updates */
.orange-card {
    background: #ff7f50;
    /* Fallback */
    padding: 40px;
    color: white;
}

.business-card {
    background: #d15723;
    border-radius: 50px 0px 0px 0px;
}

.individual-card {
    background: #d15723;
    border-radius: 0px 0px 50px 0px;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
}

.orange-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.orange-card p {
    font-size: 15px;
    opacity: 0.95;
    line-height: 1.6;
    margin: 0;
}

.circle-icon {
    width: 65px;
    height: 65px;
    background: white;
    border-radius: 20px !important;
    /* Force rounded square */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #FF6B35;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.text-purple {
    color: #6f42c1 !important;
}

.text-info {
    color: #0dcaf0 !important;
}

.text-success {
    color: #198754 !important;
}

/* Testimonials Updates */
.text-orange {
    color: #FF6B35;
}

.nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: white;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    cursor: pointer;
}

.nav-btn:hover,
.nav-btn.active {
    background: #000;
    color: white;
    border-color: #000;
}

.phone-showcase {
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-mockup {
    max-height: 100%;
    width: auto;
    max-width: 100%;
}

.circle-bg {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: none;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* --- HOW IT WORKS FIXES --- */

/* Section with light gray background */
.how-it-works-section {
    background: #ffffff;
    padding: 40px 0 40px;
    margin-top: -100px;
    position: relative;
    z-index: 50;
}

/* White card with shadow */
.how-it-works-card {
    background: #ffffff;
    padding: 55px 65px 5px;
    border-radius: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin: 0 auto;
    margin-top: -90px;
}

/* Title styling */
.how-title {
    font-size: 36px;
    font-weight: 400;
    color: #333333;
    letter-spacing: -0.5px;
    margin-bottom: 0;
}

/* Step container */
.step-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 45px;
    min-height: 100px;
}

/* Large light gray numbers - positioned to the left */
.step-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 30px;
    font-weight: 500;
    color: #e8e8e8;
    line-height: 1;
    margin: 0;
}

/* Step title with orange line */
.step-title {
    font-size: 17px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
    position: relative;
    padding-left: 14px;
}

/* Orange vertical line - spans title and description */
.step-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: calc(100% + 30px);
    background: #FF6B35;
}

/* Description text */
.step-desc {
    font-size: 14px;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 0;
    padding-left: 14px;
}

/* Delivery Process Section */
.delivery-process-section {
    max-width: 1200px;
    margin-top: 60px;
    margin-bottom: 60px;
    margin-left: 30px;
}

.process-title {
    font-size: 36px;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 50px;
    text-align: left;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.step-text {
    font-size: 18px;
    color: #2c2c2c;
    white-space: nowrap;
}

.step-arrow {
    width: 40px;
    height: 20px;
}

.step-arrow svg {
    width: 100%;
    height: 100%;
    stroke: #2c2c2c;
    stroke-width: 2;
    fill: none;
}

@media (max-width: 768px) {
    .process-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .process-steps {
        gap: 15px;
    }

    .step-text {
        font-size: 16px;
    }

    .step-arrow {
        width: 30px;
    }
}

@media (max-width: 576px) {
    .process-title {
        font-size: 22px;
    }

    .process-steps {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 5px 0;
    }
}

@media (max-width: 991px) {
    .how-it-works-section {
        padding: 80px 0 60px;
        margin-top: -80px;
    }

    .how-it-works-card {
        padding: 45px 40px 5px;
    }

    .how-title {
        font-size: 30px;
    }

    .step-item {
        padding-left: 90px; 
        min-height: 80px;
    }

    .step-number {
        font-size: 30px !important; 
        font-weight: 300; 
        top: -10px; 
    }

    .step-title::before {
        height: calc(100% + 32px);
        content: '';
        position: absolute;
        left: 0;
        top: 5px;
        width: 4px;
        height: 20px;
        background: var(--primary-orange);
        border-radius: 2px;
    }
}

/* MOBILE - 767px and below */
@media (max-width: 767px) {
    .how-it-works-section {
        padding: 60px 0 40px;
        margin-top: -60px;
    }

    .how-it-works-card {
        padding: 35px 25px 5px;
        border-radius: 30px;
    }

    .how-title {
        font-size: 26px;
    }

    .step-item {
        padding-left: 75px; 
        margin-bottom: 40px;
        min-height: 70px;
    }

    .step-number {
        font-size: 30px !important; 
        font-weight: 300;
        top: -8px; 
        left: 0;
    }

    .step-title {
        font-size: 16px;
        padding-left: 12px;
    }

    .step-title::before {
        content: '';
        position: absolute;
        left: 0;
        top: 5px;
        width: 4px;
        height: 20px;
        background: var(--primary-orange);
        border-radius: 2px;
    }

    .step-desc {
        font-size: 13px;
        padding-left: 12px;
    }
}

/* SMALL MOBILE - 576px and below */
@media (max-width: 576px) {
    .how-it-works-card {
        padding: 30px 20px 5px;
    }

    .how-title {
        font-size: 22px;
    }

    .step-item {
        padding-left: 65px; 
        margin-bottom: 35px;
    }

    .step-number {
        font-size: 30px !important; 
        top: -6px;
    }

    .step-title {
        font-size: 15px;
        padding-left: 10px;
    }

    .step-title::before {
        content: '';
        position: absolute;
        left: 0;
        top: 5px;
        width: 4px;
        height: 20px;
        background: var(--primary-orange);
        border-radius: 2px;
    }

    .step-desc {
        font-size: 13px;
        padding-left: 10px;
    }
}

/* Orange Feature Section */


.orange-section h2 {
    font-weight: 700;
    font-size: 42px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.orange-section p {
    opacity: 0.95;
    font-size: 18px;
    margin-bottom: 30px;
}

.orange-section .pricing {
    color: white;
    font-size: 48px;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.app-btn {
    background: rgba(255, 255, 255, 0.15);
    color: white !important;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.app-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: white !important;
}

.feature-item {
    background: rgba(255, 255, 255, 0.12);
    padding: 18px 20px;
    border-radius: 15px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
}

.feature-item-icon {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 22px;
}

.feature-item span {
    font-weight: 500;
    font-size: 16px;
    color: white;
}

@media (max-width: 991px) {
    .orange-section {
        padding: 60px 0;
    }

    .orange-section h2 {
        font-size: 36px;
    }

    .orange-section .pricing {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .orange-section {
        padding: 50px 0;
    }

    .orange-section h2 {
        font-size: 28px;
    }

    .orange-section p {
        font-size: 16px;
    }

    .orange-section .pricing {
        font-size: 36px;
    }

    .feature-item {
        padding: 15px;
        margin-bottom: 10px;
    }

    .feature-item span {
        font-size: 14px;
    }

    .app-btn {
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }
}

.orange-map-section {
    background: linear-gradient(135deg, #ff6b35 0%, #f85a3e 100%);
    padding: 0;
}

.orange-map-section .content-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.orange-map-section .text-content {
    flex: 1 1 40%;
    max-height: 600px;
    overflow: hidden;
    box-sizing: border-box;
}

.orange-map-section .map-content {
    flex: 1 1 50%;
    max-width: 46%;
    height: 600px;
}

.orange-map-section .map-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px 0px 0px 0px;
}


.orange-map-section .text-content {
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.orange-map-section.section-title {
    font-size: 32px;
    font-weight: 100;
    line-height: 1.4;
    margin-bottom: 30px;
    color: white;
}

.cities-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: white;
    opacity: 0.95;
}

.contact-text {
    font-size: 16px;
    margin-bottom: 30px;
    color: white;
}
.app-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.app-badge {
    display: inline-block;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.app-badge:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.app-badge img {
   width: 100%;
    height: auto;
    max-width: 134px;
    min-width: 100px;
    display: block;
    object-fit: contain;
}

.app-badge:hover {
    transform: translateY(-3px);
}

.app-badge img {
    height: 50px;
    width: auto;
}

.app-store-btn,
.play-store-btn {
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 10px;
    text-decoration: none;
    font-size: 14px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.app-store-btn {
    background: #000;
    color: white;
}

.play-store-btn {
    background: #000;
    color: white;
}

.app-store-btn:hover,
.play-store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.store-icon {
    font-size: 28px;
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-text small {
    font-size: 10px;
    opacity: 0.8;
}

.store-text strong {
    font-size: 16px;
    font-weight: 500;
}

/* Fallback map if image doesn't load */
.map-placeholder {
    width: 100%;
    height: 100%;
    background:
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        #e8e8e8;
    background-size: 50px 50px;
    position: relative;
}

.map-marker {
    position: absolute;
    width: 30px;
    height: 40px;
    background: #ff5722;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    top: 50%;
    left: 50%;
    margin-left: -15px;
    margin-top: -40px;
}

.map-marker::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    top: 9px;
    left: 9px;
}

.map-label {
    position: absolute;
    bottom: 20%;
    right: 15%;
    background: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    color: #2c2c2c;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.env-section {
    padding-bottom: 5rem;
    /* keep bottom spacing */
}

/* Only push LEFT content down */
.env-section .col-lg-6:first-child {
    padding-top: 5rem;
}


.about-hero-section {
    position: relative;
    min-height: 260px;
    /* adjust to match Figma */
    background: linear-gradient(90deg, #ff5a1f, #e24a15);
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Skyline / vector background */
.about-hero-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    /* TOUCHES bottom edge */
    left: 0;
    width: 100%;
    height: 50%;
    background-image: url("../images/Group 30276.webp");
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
    /* DISTRIBUTES ENTIRE WIDTH */
    opacity: 0.55;
    /* match design softness */
    pointer-events: none;
    z-index: 1;
}

/* Ensure text stays above the background */
.about-hero-section .container {
    position: relative;
    z-index: 2;
}

.mission-section {
    position: relative;
    padding: 100px 0 140px;
    background: linear-gradient(90deg, #e24a15, #c93e10);
    overflow: hidden;
}


.mission-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/Vector 114.svg");
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    opacity: 0.95;
    pointer-events: none;
    z-index: 1;
}


.mission-section .container {
    position: relative;
    z-index: 2;
}



@media (max-width: 968px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .text-content {
        padding: 40px 30px;
    }

    .section-title {
        font-size: 26px;
    }

    .map-content {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .mission-section {
        padding: 60px 0;
    }

    .mission-section::after {
        background-size: contain;
        opacity: 0.95;
    }
}


@media (max-width: 576px) {
    .text-content {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 22px;
    }

    .cities-text,
    .contact-text {
        font-size: 14px;
    }

    .app-badges-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* FAQ SECTION */
.faq-page-area {
    padding: 80px 0;
    background: #f6f7f9;
}

/* Accordion wrapper */
.faq-accordion .accordion-item {
    border: none;
    border-radius: 14px;
    margin-bottom: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

/* Accordion button */
.faq-accordion .accordion-button {
    position: relative;
    padding: 20px 70px 20px 24px;
    font-size: 18px;
    font-weight: 600;
    background: #ffffff;
    color: #000;
    border-radius: 14px;
    box-shadow: none;
}

/* Active (opened) header */
.faq-accordion .accordion-button:not(.collapsed) {
    background: #fff;
    color: black;
}

/* Remove default Bootstrap focus */
.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

/* Reset default arrow */
.faq-accordion .accordion-button::after {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #ff6a3d; 
    
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
    
    transform: rotate(-90deg);
    transition: transform 0.3s ease;
}




/* Expanded → DOWN */
.faq-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(0deg); /* DOWN */
}
/* SEO Hidden Content - Accessible but not visible */
.seo-hidden-content {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}




/* Accordion body */
.faq-accordion .accordion-body {
    padding: 22px 24px;
    font-size: 16px;
    line-height: 1.7;
    background: #ffffff;
    color: black;
}

/* Smooth animation */
.accordion-collapse {
    transition: all 0.3s ease;
}
