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

* {
    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;
    }
}

/* Hero Section */
.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: 1px solid #e0e0e0;
    white-space: nowrap;
}

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

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-right: -100px;
    right: -200px;
    /* Bleed to right */
}

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

.review-badge {
    position: absolute;
    top: 62%;
    left: -80px;
    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;
}

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

@media (max-width: 991px) {
    .hero-section {
        padding: 50px 0 120px;
    }

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

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

    .hero-image-wrapper {
        text-align: center;
        margin-top: 40px;
    }

    .hero-main-img {
        border-radius: 0 0 0 100px;
        max-width: 100%;
    }
   
    .review-badge {
        position: static;
        transform: none;
        margin-top: 20px;
        display: inline-block;
        left: 0;
    }
    .hero-mobile-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .hero-mobile-title {
        color: white;
        font-size: 34px;
        font-weight: 400;
        line-height: 1.3;
        margin-bottom: 16px;
        text-align: center;
    }

    .hero-mobile-subtitle {
        color: white;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.6;
        margin-bottom: 30px;
        text-align: center;
    }
}

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

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

    .hero-subtitle {
        text-align: center;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        text-align: center;
    }

    .app-badge {
        width: 48%;
    }

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

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

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

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

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

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

    .app-badges {
        justify-content: center;
        margin-bottom: 50px;
    }

    .hero-image-wrapper {
        justify-content: center;
        margin-right: 0;
    }

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

    .review-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -30px;
        width: 90%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 32px;
        text-align: center;
    }

    .hero-subtitle {
        text-align: center;
    }

    .hero-section {
        padding-top: 20px;
        text-align: center;
    }
    .app-badges {
        gap: 8px;
        justify-content: center;
        margin-top: 20px;
    }

    .app-badge {
        flex: 0 0 auto;
    }

    .app-badge img {
        width: 100px;
        height: 30px;
        max-width: 100px;
    }
}


/* 
/* Why Love App Section */
.why-love-app-section {
    background: #f9f9f9;
    padding: 0; /* remove any top/bottom padding */
    margin-top: 0; /* remove any margin */
}

.object-fit-cover {
    object-fit: cover;
    height: 100%;
}

.app-love-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.app-love-subtitle {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
}

.check-icon {
    font-size: 20px;
    color: var(--primary-orange);
}

.app-love-list li {
    font-size: 18px;
    color: var(--text-dark);
    transition: transform 0.3s;
}

.why-love-card {
    border-radius: 90px;
    top: -190px;
}

.why-love-card .col-lg-6 img {
    width: 100%;
    height: 60% !important; /* reduce height to 80% of the column */
    object-fit: cover; /* keeps image proportion */
    margin-top: auto; /* optional: center image vertically */
    margin-bottom: auto;
}



.app-love-list li:hover {
    transform: translateX(5px);
}

/* .overlap-section {
    margin-top: -120px;  
    position: relative;
    z-index: 2;
} */

/* Why Choose Section */
.why-choose-section {
    background: var(--light-orange);
    padding: 80px 0;
}

.section-title {
    font-size: 38px;
    font-weight: 400;
    color: var(--text-dark);
    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;
}

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

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

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

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

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

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

.feature-list-item {
    position: relative;
    padding-left: 20px;
    cursor: pointer;
}

.feature-list-item .orange-bar {
    position: absolute;
    left: 0;
    top: 4px;
    width: 5px;
    height: 45px;
    background: var(--primary-orange);
    border-radius: 3px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

/* Hover effect */
.feature-list-item:hover .orange-bar {
    opacity: 1;
    transform: translateY(0);
}

.feature-list-item.active .orange-bar {
    opacity: 1;
    transform: translateY(0);
}


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

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

.content-wrapper {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 500px;
}

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

.section-title {
    font-size: 32px;
    font-weight: 400;
    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-container {
    display: flex;
    gap: 15px;
    align-items: center;
}

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

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

.map-content {
    position: relative;
    background: #f0f0f0;
    overflow: hidden;
}

.map-content img {
    width: 60px;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

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

@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: 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;
    }
}

/* Testimonials Section */
.map-col {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background-image: url('../images/Rectangle_317.webp');
    background-size: cover;
    background-position: center left;
    background-repeat: no-repeat;
    border-radius: 80px 0 0 0;
    z-index: 1;
}

/* TABLET & MOBILE */
@media (max-width: 991px) {
    .testimonials-map-section {
        min-height: auto;
        padding-bottom: 0 !important;
    }

    .map-col {
        position: relative;
        width: 100%;
        height: 300px;
        margin-top: 40px;
        border-radius: 90px 0 0 0;
    }

    .content-col {
        text-align: left;
    }

     .app-badges-container {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center;
        align-items: center;
        gap: 12px;
        flex-wrap: nowrap !important;
        width: 100%;
    }

    .app-badge {
        display: inline-flex !important;
        white-space: nowrap;
    }

    .app-badge img {
        display: inline-block;
        max-width: 130px;
        height: auto;
    }
}

.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 .bi-quote {
    margin-bottom: 25px;
}

/* Nav Buttons */
.testimonial-nav {
    margin-top: 20px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #FF6B35;
    color: white;
    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));
}

/* Responsive */
@media (max-width: 991px) {
    .testimonials-section {
        padding: 60px 0;
    }

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

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

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

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

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

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


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

/* App Showcase Section */
.app-showcase-section {
    background: var(--light-gray);
    padding: 80px 0;
}

.app-screen {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-radius: 25px;
    transition: transform 0.3s;
}

.app-screen:hover {
    transform: translateY(-5px);
}

.app-features {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8555 100%);
    color: white;
    padding: 50px 45px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.app-features h2 {
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.app-features p {
    opacity: 0.95;
    font-size: 16px;
    margin-bottom: 30px;
}

.app-features ul {
    margin-bottom: 35px;
}

.app-features .bi-check-circle-fill {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    margin-right: 10px;
}

.app-features li {
    font-size: 16px;
    line-height: 2.2;
    margin-bottom: 8px;
}

/* Desktop styles */
.app-features-info-section {
    min-height: 650px;
}

@media (max-width: 991px) {
    .app-features-info-section {
        padding: 50px 0 !important;
        min-height: auto;
    }
    
    .section-bg {
        width: 60% !important;
        border-radius: 60px 0 0 60px !important;
        background-position: center right !important;
    }
    
    .app-features-info-section .row {
        flex-direction: column-reverse;
    }
    
    .app-features-info-section .col-lg-6 {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .phone-slider-container {
        height: 350px !important;
        margin-bottom: 40px;
    }
    
    .phone-slide {
        max-width: 280px !important;
        margin-left: 0 !important;
    }
    
    .app-info-card {
        padding-right: 15px !important;
    }
    
    .app-features-info-section h2 {
        font-size: 32px !important;
        margin-bottom: 30px !important;
    }
    
    .feature-list-item {
        margin-bottom: 20px !important;
    }
    
    .feature-list-item h3 {
        font-size: 16px !important;
    }
    
    .feature-list-item p {
        font-size: 14px !important;
    }
}

/* Mobile styles - keeping as is */
@media (max-width: 768px) {
    .app-features-info-section {
        padding: 40px 0 !important;
    }
    
    .section-bg {
        width: 100% !important;
        height: 300px !important;
        border-radius: 40px 40px 0 0 !important;
        background-position: center top !important;
        opacity: 1; /* Subtle background on mobile */
    }
    
    .phone-slider-container {
        height: 300px !important;
    }
    
    .phone-slide {
        max-width: 240px !important;
    }
    
    .app-features-info-section h2 {
        font-size: 28px !important;
    }
    
    .feature-list-item {
        padding-left: 15px !important;
    }
    
    .orange-bar {
        width: 4px !important;
        height: 35px !important;
    }
}

@media (max-width: 576px) {
    .app-features-info-section {
        padding: 30px 0 !important;
    }
    
    .section-bg {
        height: 400px !important;
        opacity: 1; /* Even more subtle on very small screens */
    }
    
    .phone-slider-container {
        height: 250px !important;
    }
    
    .phone-slide {
        max-width: 200px !important;
    }
    
    .app-features-info-section h2 {
        font-size: 24px !important;
    }
    
    .feature-list-item {
        margin-bottom: 15px !important;
    }
}

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

    .app-screen {
        max-width: 200px !important;
        margin-bottom: 30px;
    }

    .app-features {
        padding: 40px 35px;
    }

    .app-features h2 {
        font-size: 28px;
    }
}

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

    .app-screen {
        max-width: 180px !important;
    }

    .app-features {
        padding: 35px 25px;
    }

    .app-features h2 {
        font-size: 24px;
    }

    .app-features li {
        font-size: 15px;
    }
}

/* Questions Section */
.questions-section {
    background: white;
    padding: 80px 0;
}

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

.questions-section h3 {
    color: var(--text-light);
    font-weight: 400;
    font-size: 24px;
    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 {
    position: relative;
}

.questions-image img {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    width: 100%;
    height: auto;
}

.chat-bubble {
    background: white;
    padding: 15px 20px;
    border-radius: 25px;
    max-width: 200px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    color: var(--text-dark);
    animation: float 3s ease-in-out infinite;
}

.chat-bubble:nth-child(2) {
    animation-delay: 0.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

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

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

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

    .chat-bubble {
        position: static !important;
        margin: 15px auto;
        max-width: 100%;
        display: block;
    }
}

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

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

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

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

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

/* 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;
}
.footer-availability h2 {
    font-size: 20px; /* Same as h4 */
    font-weight: 500;
    margin-bottom: 1rem;
}
.footer-brand h3 {
    font-size: 1.5rem; /* Same as h2 */
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-col-title {
    font-size: 1.125rem; /* Same as h5 */
    font-weight: 600;
    margin-bottom: 1rem;
}
.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) {
     footer,
    footer .container,
    footer .row,
    footer .col,
    footer .text-center,
    footer h3,
    footer p,
    footer a,
    .footer-bottom {
        text-align: left !important;
        justify-content: flex-start !important;
    }

    .footer-bottom p {
        text-align: left !important;
    }
    .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;
    }
    .footer-brand {
        text-align: left !important;
        width: 100%;
    }

    .footer-brand h2,
    .footer-brand p {
        text-align: left !important;
    }
     .footer-legal-links,
    .footer-copyright,
    .footer-socials {
        text-align: left !important;
        width: 100%;
        justify-content: flex-start !important;
    }

    .footer-legal-links a {
        margin-right: 12px;
        display: inline-block;
    }

    .footer-socials {
        display: flex;
        gap: 10px;
    }
    

}

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

.why-like-app-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;
    top: -90px;
}

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

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

    .why-like-app-card {
        padding: 45px 40px 50px;
    }

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

    .step-number {
        font-size: 75px;
    }
}

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

    .why-like-app-card {
        padding: 35px 25px 40px;
        border-radius: 25px;
    }

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

    .step-number {
        font-size: 65px;
    }

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

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

    .step-item {
        margin-bottom: 30px;
    }
}


/* 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 */
.why-like-app-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: 1300px;
    padding: 60px 0;
    margin: 0 auto;
    overflow: hidden;
}

.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: nowrap; /* keep horizontal */
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .delivery-process-section {
        padding: 50px 0;
    }

    .process-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .process-steps {
        gap: 15px;
        flex-wrap: nowrap; /* keep horizontal on tablets */
        margin-left: 26px;
    }

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

    .step-arrow {
        width: 30px;
        height: 15px;
        transform: none; /* remove rotation */
        margin: 0;
    }
}

@media (max-width: 576px) {
    .delivery-process-section {
        padding: 40px 0;
    }

    .process-title {
        font-size: 22px;
        margin-left: 19px;
    }

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

    .process-steps {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;          
        gap: 12px;
        overflow-x: auto;             /* enable horizontal scroll */
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
         scrollbar-width: none;       
        -ms-overflow-style: none;
        margin-left: 26px;
    }

    .process-steps > * {
        flex: 0 0 auto;               /* prevent shrinking */
        scroll-snap-align: start;
        margin-left: 26px;
    }

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

    .step-arrow {
        width: 30px;
        transform: none;              /* keep arrows horizontal */
        margin: 0 6px;
    }

    
}

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

    .why-like-app-card {
        padding: 45px 40px;
    }

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

    .step-number {
        font-size: 65px;
    }
}

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

    .why-like-app-card {
        padding: 35px 25px;
        border-radius: 30px;
    }

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

    .step-number {
        font-size: 55px;
    }

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

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

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

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

.slider-indicators {
    position: absolute;
    bottom: 25px;
    display: flex;
    gap: 10px;
    justify-content: center;
    width: 100%;
}

.slider-indicators .indicator {
    width: 25px;
    height: 4px;
    background: rgba(255,255,255,0.5);
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.slider-indicators .indicator.active {
    width: 45px;
    background: #ffffff;
}


@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-container {
    display: flex;
    gap: 15px;
    align-items: center;
}

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

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

@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: 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;
    }
}
/* MOBILE FIX ONLY */
@media (max-width: 768px) {

    /* Stack content naturally */
    .testimonials-section .row {
        flex-direction: column;
    }

    /* Reset image positioning */
    .phone-showcase {
        margin-top: 30px;
        text-align: center;
    }

    .phone-mockup {
        margin-left: 0 !important;     /* remove desktop offset */
        margin-top: 20px !important;
        width: 100%;
        max-width: 320px;              /* keep image clean */
    }
}

/* Ready to Roll Section */
.ready-to-roll-section {
    background-color: var(--primary-orange);
    padding: 60px 0;
    position: relative;
    overflow: visible;
    max-height: 600px;
}

.section-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.text-content {
    max-width: 50%;
    padding-right: 30px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 20px;
    color: white;
    line-height: 1.5;
}

.phone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Move badges to top */
.badges-wrapper {
    margin-top: -160px;      
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-right: -600px;
}


.phone-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.app-phone-img {
    max-width: 115%;    
    margin-top: -190px;  
}

.badge-row {
    display: flex;
    justify-content: center;
}

.app-badge {
    height: 50px;
    transition: transform 0.3s ease;
}

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

@media (min-width: 992px){
    .app-phone-img{
        margin-right: 300px;
    }
}

/* Tablet Styles */
@media (max-width: 991px) {
    .ready-to-roll-section {
        padding: 50px 0;
    }
    
    .section-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .text-content {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 36px;
        text-align: center;
    }
    
    .section-description {
        font-size: 18px;
        text-align: center;
    }
    
    .phone-content {
        max-width: 70%;
    }
    
    .phone-wrapper {
        margin-bottom: 20px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .ready-to-roll-section {
        padding: 40px 0;
        height: 900px;
    }
    
    .section-title {
        font-size: 32px;
        margin-top: 200px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .phone-content {
        max-width: 80%;
    }
    
    .app-badge {
        height: 45px;
        margin-top: -20px;
    }

    .badges-wrapper {
        margin-right: 20px;
        margin-top: 20px;
        display: flex;
        flex-direction: row;
    }

    .app-phone-img {
        margin-top: -750px;
        max-width: 130%;
    }
}

@media (max-width: 576px) {
    .ready-to-roll-section {
        padding: 30px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 15px;
    }
    
    .phone-content {
        max-width: 90%;
    }
    
    .app-badge {
        height: 40px;
    }
    
    .badges-wrapper {
        gap: 12px;
    }
}

        