/* User Header Section */
.user-header-section {
    height: 920px;
    background-image: url('../Images/user_header_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

/* Subtract Image - Left Side Overlay */
.user-header-subtract-img {
    position: absolute;
    left: 70px;
    top: 0;
    height: auto;
    max-height: 870px;
    margin-left: 0;
}

/* Right Side Video Container */
.right-user-image {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
}

.right-user-image .you-got-options-video {
    width: 912px;
    height: 428px;
    border: 4px solid #C41E3A;
    border-radius: 15px;
}

/* Header Content */
.user-header-content {
    position: absolute;
    left: 180px;
    top: 38%;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 804px;
}

.user-header-title {
    font-size: 80px;
    font-weight: bold;
    color: #C32B34;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.user-header-description {
    font-size: 25px;
    font-weight: 400;
    color: #000000;
    margin: 0 0 30px 0;
    line-height: 1.4;
}

.user-header-btn {
    display: inline-block;
    width: 381.7px;
    padding: 15px 0;
    background-color: #FAAA26;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

.user-header-btn:hover {
    background-color: #e09920;
}

/* ==================== USER HERO SECTION ==================== */
.user-hero-section {
    width: 100%;
    min-height: 400px;
    max-height: 998px;
    height: auto;
    background-image: url('../Images/hero_section_user_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-hero-content {
    width: 100%;
    max-width: 1400px;
    padding: 60px 40px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hero Cards Container */
.hero-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
}

.hero-cards-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-cards-row-center {
    justify-content: center;
}

/* Hero Card Styling */
.hero-card {
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    padding: 25px 20px;
    width: calc(33.333% - 20px);
    min-width: 280px;
    max-width: 350px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 1 auto;
}

.hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Card Icon */
.hero-card-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card-icon img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

/* Card Title */
.hero-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

/* Card Description */
.hero-card-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    margin: 0;
    line-height: 1.4;
}

/* Download Section */
.hero-download-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    gap: 20px;
}

/* Download Button */
.hero-download-btn {
    display: inline-block;
    min-width: 343.7px;
    padding: 15px 50px;
    background-color: #FAAA26;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.hero-download-btn:hover {
    background-color: #e09920;
    transform: scale(1.02);
    color: #ffffff;
    text-decoration: none;
}

/* App Store Badges */
.hero-app-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.app-badge-link img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.app-badge-link:hover img {
    transform: scale(1.05);
}

/* ==================== RESPONSIVE STYLES ==================== */

/* Hero Cards 1200px Layout (2-2-1) */
@media (max-width: 1200px) {
    .hero-cards-container {
        max-width: 700px;
    }

    .hero-card {
        width: calc(50% - 15px);
        min-width: 340px;
        max-width: 320px;
    }
}



@media (max-width: 1800px) {
    .user-header-subtract-img {
        position: absolute;
        left: 70px;
        top: 0;
        height: auto;
        max-height: 736px;
        margin-left: 0;
    }

    .user-header-content {
        max-width: 642px;
        left: 112px;
        top: 36%;
    }

    .user-header-section {
        height: 755px;
    }

    .right-user-image .you-got-options-video {
        width: 683px;
        height: 428px;
        border: 4px solid #C41E3A;
        border-radius: 15px;
    }

    .user-header-title {
        font-size: 74px;
    }
}

/* Extra Large Desktop (1500px to 1800px) */
/* @media (min-width: 1401px) and (max-width: 1800px) {
    .user-header-subtract-img {
        position: absolute;
        left: 70px;
        top: 0;
        height: auto;
        max-height: 736px;
        margin-left: 0;
    }

    .right-user-image .you-got-options-video {
        width: 788px;
        height: 371px;
        border: 4px solid #C41E3A;
        border-radius: 15px;
    }

    .user-header-content {
        max-width: 659px;
    }

    .user-header-section {
        height: 755px;
    }
} */

/* Large Desktop (1400px and below) */
@media (max-width: 1400px) {
    .user-header-section {
        height: 620px;
    }

    .user-header-subtract-img {
        max-height: 575px;
    }

    .user-header-content {
        left: 120px;
        max-width: 550px;
        top: 35%;
    }

    .user-header-title {
        font-size: 58px;
    }

    .user-header-description {
        font-size: 22px;
    }

    .right-user-image .you-got-options-video {
        width: 591px;
        height: 350px;
    }

    .user-header-btn {
        width: 340px;
    }
}

/* Desktop (1200px and below) */
@media (max-width: 1200px) {
    .user-header-section {
        height: 500px;
    }

    .user-header-subtract-img {
        left: 25px;
        max-height: 470px;
    }

    .user-header-content {
        left: 40px;
        max-width: 480px;
        top: 35%;
    }

    .user-header-title {
        font-size: 50px;
    }

    .user-header-description {
        font-size: 18px;
    }

    .right-user-image .you-got-options-video {
        width: 458px;
        height: 250px;
    }

    .user-header-btn {
        width: 248px;
        font-size: 16px;
    }
}

/* Tablet (992px and below) */
@media (max-width: 992px) {
    .user-header-section {
        height: auto;
        min-height: 650px;
        padding: 50px 0;
    }

    .user-header-subtract-img {
        display: none;
    }

    .user-header-content {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        max-width: 90%;
        margin: 0 auto;
        padding: 30px 20px;
        text-align: center;
    }

    .user-header-title {
        font-size: 42px;
    }

    .user-header-description {
        font-size: 18px;
        color: #ffffff;
    }

    .right-user-image {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        display: flex;
        justify-content: center;
        margin-top: 30px;
        padding: 0 20px;
    }

    .right-user-image .you-got-options-video {
        width: 100%;
        max-width: 600px;
        height: 300px;
    }

    .user-header-btn {
        width: 280px;
    }
}

/* Small Tablet (768px and below) */
@media (max-width: 768px) {
    .user-header-section {
        min-height: 550px;
        padding: 40px 0;
    }

    .user-header-content {
        padding: 25px 15px;
    }

    .user-header-title {
        font-size: 34px;
    }

    .user-header-description {
        font-size: 16px;
    }

    .right-user-image .you-got-options-video {
        max-width: 500px;
        height: 250px;
    }

    .user-header-btn {
        width: 240px;
        font-size: 15px;
        padding: 12px 0;
    }
}

/* Mobile (576px and below) */
@media (max-width: 576px) {
    .user-header-section {
        min-height: 480px;
        padding: 30px 0;
    }

    .user-header-content {
        padding: 20px 15px;
    }

    .user-header-title {
        font-size: 28px;
    }

    .user-header-description {
        font-size: 14px;
    }

    .right-user-image {
        padding: 0 15px;
        margin-top: 20px;
    }

    .right-user-image .you-got-options-video {
        max-width: 100%;
        height: 200px;
        border-width: 3px;
        border-radius: 10px;
    }

    .user-header-btn {
        width: 100%;
        max-width: 260px;
    }
}

/* Extra Small Mobile (480px and below) */
@media (max-width: 480px) {
    .user-header-title {
        font-size: 24px;
    }

    .user-header-description {
        font-size: 13px;
    }

    .right-user-image .you-got-options-video {
        height: 180px;
    }

    .user-header-btn {
        font-size: 14px;
        padding: 10px 0;
    }
}



/* Hero Section Responsive Styles */
@media (max-width: 992px) {
    .user-hero-section {
        min-height: auto;
        max-height: none;
    }

    .user-hero-content {
        padding: 50px 30px;
    }

    .hero-card {
        min-width: 220px;
        max-width: 220px;
        padding: 20px 15px;
    }

    .hero-card-title {
        font-size: 18px;
    }

    .hero-card-description {
        font-size: 15px;
    }

    .hero-download-btn {
        font-size: 28px;
        min-width: 320px;
        padding: 15px 40px;
    }
}

@media (max-width: 768px) {
    .user-hero-section {
        min-height: auto;
        max-height: none;
    }

    .user-hero-content {
        padding: 40px 20px;
    }

    .hero-cards-row {
        gap: 15px;
    }

    .hero-card {
        min-width: 180px;
        max-width: 200px;
        padding: 18px 12px;
    }

    .hero-card-icon {
        width: 48px;
        height: 48px;
    }

    .hero-card-icon img {
        width: 48px;
        height: 48px;
    }

    .hero-card-title {
        font-size: 16px;
    }

    .hero-card-description {
        font-size: 14px;
    }

    .hero-download-btn {
        font-size: 24px;
        min-width: 280px;
        padding: 14px 35px;
    }

    .hero-app-badges {
        gap: 10px;
    }

    .app-badge-link img {
        height: 38px;
    }
}

@media (max-width: 576px) {
    .user-hero-section {
        min-height: auto;
        max-height: none;
    }

    .user-hero-content {
        padding: 30px 15px;
    }

    .hero-cards-container {
        gap: 15px;
    }

    .hero-cards-row {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-card {
        width: 280px;
        min-width: 280px;
        max-width: 280px;
        padding: 20px 15px;
    }

    .hero-card-icon {
        width: 50px;
        height: 50px;
    }

    .hero-card-icon img {
        width: 50px;
        height: 50px;
    }

    .hero-card-title {
        font-size: 18px;
    }

    .hero-card-description {
        font-size: 15px;
    }

    .hero-download-section {
        margin-top: 30px;
    }

    .hero-download-btn {
        font-size: 20px;
        min-width: auto;
        width: 100%;
        max-width: 300px;
        padding: 14px 30px;
    }

    .hero-app-badges {
        flex-wrap: wrap;
    }

    .app-badge-link img {
        height: 35px;
    }
}

/* ==================== WHY USE UGO SECTION ==================== */
.why-use-ugo-section {
    width: 100%;
    min-height: 543px;
    height: auto;
    background-image: url('../Images/whyUseUgo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-use-ugo-content {
    width: 100%;
    max-width: 1400px;
    padding: 60px 40px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Why Use Ugo Title */
.why-use-ugo-title {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin: 0 0 40px 0;
}

/* Why Use Ugo Cards Container */
.why-use-ugo-cards-container {
    display: flex;
    flex-direction: column;
    max-width: 941px;
    gap: 20px;
    margin-bottom: 40px;
}

.why-use-ugo-cards-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Why Use Ugo Card */
.why-use-ugo-card {
    background-color: #D9CECE;
    border-radius: 15px;
    width: 269px;
    min-height: 97px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-use-ugo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Why Use Ugo Card Text */
.why-use-ugo-card-text {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}

/* Why Use Ugo Responsive Styles */
@media (max-width: 992px) {
    .why-use-ugo-section {
        min-height: 450px;
    }

    .why-use-ugo-content {
        padding: 50px 30px;
    }

    .why-use-ugo-title {
        font-size: 34px;
    }

    .why-use-ugo-card {
        min-width: 220px;
        min-height: 80px;
        padding: 15px 25px;
    }

    .why-use-ugo-card-text {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .why-use-ugo-section {
        min-height: 400px;
    }

    .why-use-ugo-content {
        padding: 40px 20px;
    }

    .why-use-ugo-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .why-use-ugo-cards-row {
        gap: 15px;
    }

    .why-use-ugo-card {
        min-width: 180px;
        min-height: 70px;
        padding: 12px 20px;
    }

    .why-use-ugo-card-text {
        font-size: 16px;
    }
}

/* ==================== CAN YOU HIRE SECTION ==================== */
.can-you-hire-section {
    width: 100%;
    min-height: 520px;
    height: auto;
    background-image: url('../Images/whatCanHire.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.can-you-hire-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1600px;
    width: 100%;
    padding: 0 20px;
}

/* Section Title */
.can-you-hire-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: #C32C35;
    text-align: center;
    margin: 0 0 30px 0;
    font-style: italic;
}

/* Cards Wrapper */
.can-you-hire-cards-wrapper {
    display: flex;
    gap: 30px;
    width: 100%;
    max-width: 1583px;
    margin-bottom: 30px;
}

/* Individual Card */
.can-you-hire-card {
    flex: 1;
    background: #FFFFFF;
    border-radius: 23px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-height: 180px;
}

.can-you-hire-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.can-you-hire-card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 25px;
    color: #C32C35;
    margin: 0 0 15px 0;
    line-height: 1.2;
    text-align: center;
}

.can-you-hire-card-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #333333;
    line-height: 1.4;
    margin: 0 0 15px 0;
    flex-grow: 1;
}

.can-you-hire-learn-more {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #C32C35;
    text-decoration: none;
    transition: color 0.3s ease;
    align-self: flex-start;
    margin-top: auto;
}

.can-you-hire-learn-more:hover {
    color: #5D1519;
    text-decoration: underline;
}

/* CTA Button */
.can-you-hire-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFC107 0%, #FFB300 100%);
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 34px;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
    transition: all 0.3s ease;
    width: 300px;
    height: 55px;
    max-width: 100%;
}

.can-you-hire-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.5);
    background: linear-gradient(135deg, #FFB300 0%, #FFA000 100%);
    color: #FFFFFF;
    text-decoration: none;
}

/* App Badges */
.can-you-hire-app-badges {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.can-you-hire-store-badge img {
    height: 44px;
    width: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.can-you-hire-store-badge:hover img {
    opacity: 0.8;
    transform: scale(1.05);
}

/* ==================== CAN YOU HIRE RESPONSIVE STYLES ==================== */

@media (max-width: 1280px) {
    .can-you-hire-cards-wrapper {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .can-you-hire-card {
        width: 100%;
        max-width: 500px;
        min-height: auto;
    }
}

@media (max-width: 992px) {
    .can-you-hire-section {
        min-height: auto;
        padding: 40px 15px;
    }

    .can-you-hire-title {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .can-you-hire-card {
        padding: 25px;
    }

    .can-you-hire-card-title {
        font-size: 22px;
    }

    .can-you-hire-card-description {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .can-you-hire-section {
        padding: 35px 15px;
    }

    .can-you-hire-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .can-you-hire-card {
        padding: 20px;
    }

    .can-you-hire-card-title {
        font-size: 20px;
    }

    .can-you-hire-card-description {
        font-size: 14px;
    }

    .can-you-hire-learn-more {
        font-size: 16px;
    }

    .can-you-hire-cta {
        width: 100%;
        max-width: 280px;
        height: 50px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .can-you-hire-section {
        padding: 30px 10px;
    }

    .can-you-hire-title {
        font-size: 24px;
    }

    .can-you-hire-card {
        padding: 18px;
    }

    .can-you-hire-card-title {
        font-size: 18px;
    }

    .can-you-hire-card-description {
        font-size: 13px;
    }

    .can-you-hire-learn-more {
        font-size: 14px;
    }

    .can-you-hire-store-badge img {
        height: 38px;
    }
}

@media (max-width: 576px) {
    .why-use-ugo-section {
        min-height: auto;
        padding: 40px 0;
    }

    .why-use-ugo-content {
        padding: 30px 15px;
    }

    .why-use-ugo-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .why-use-ugo-cards-container {
        gap: 12px;
        margin-bottom: 30px;
    }

    .why-use-ugo-cards-row {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .why-use-ugo-card {
        min-width: 260px;
        max-width: 300px;
        width: 100%;
        min-height: 60px;
        padding: 15px 20px;
    }

    .why-use-ugo-card-text {
        font-size: 15px;
    }
}

/* ==================== HIRE WITH CONFIDENCE SECTION ==================== */
.hire-with-confidence-section {
    width: 100%;
    min-height: 585px;
    height: auto;
    background-image: url('../Images/subFooterBg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hire-with-confidence-content {
    width: 100%;
    max-width: 1400px;
    padding: 57px 40px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hire With Confidence Title */
.hire-with-confidence-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 40px;
    color: #C32C35;
    text-align: center;
    margin: 0 0 30px 0;
}

/* Hire With Confidence Image */
.hire-with-confidence-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hire-with-confidence-image {
    width: 100%;
    max-width: 1450px;
    height: auto;
    max-height: 397px;
    object-fit: contain;
    border-radius: 20px;
}

/* Hire With Confidence Responsive Styles */
@media (max-width: 992px) {
    .hire-with-confidence-section {
        min-height: 480px;
    }

    .hire-with-confidence-content {
        padding: 45px 30px;
    }

    .hire-with-confidence-title {
        font-size: 34px;
    }

    .hire-with-confidence-image {
        max-height: 320px;
    }
}

@media (max-width: 768px) {
    .hire-with-confidence-section {
        min-height: 400px;
    }

    .hire-with-confidence-content {
        padding: 40px 20px;
    }

    .hire-with-confidence-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .hire-with-confidence-image {
        max-height: 260px;
        border-radius: 15px;
    }
}

@media (max-width: 576px) {
    .hire-with-confidence-section {
        min-height: 320px;
    }

    .hire-with-confidence-content {
        padding: 30px 15px;
    }

    .hire-with-confidence-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .hire-with-confidence-image {
        max-height: 200px;
        border-radius: 12px;
    }
}

/* ==================== USER FOOTER SECTION ==================== */
.user-footer-section {
    width: 100%;
    min-height: 537px;
    height: auto;
    background-image: url('../Images/User_footer.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-footer-content {
    width: 100%;
    max-width: 1400px;
    padding: 60px 40px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* User Footer Title - 46px white inter extra bold */
.user-footer-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 46px;
    color: #FFFFFF;
    text-align: center;
    margin: 0 0 10px 0;
    font-style: italic;
}

/* User Footer Subtitle - 40px white inter extra bold */
.user-footer-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 40px;
    color: #FFFFFF;
    text-align: center;
    margin: 0 0 5px 0;
}

/* User Footer Tagline - 40px white inter extra bold */
.user-footer-tagline {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 40px;
    color: #FFFFFF;
    text-align: center;
    margin: 0 0 15px 0;
}

/* User Footer Description - 32px regular */
.user-footer-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 32px;
    color: #FFFFFF;
    text-align: center;
    margin: 0 0 30px 0;
    line-height: 1.4;
}

/* User Footer CTA Button - 570px min-width */
.user-footer-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFC107 0%, #FFB300 100%);
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    text-decoration: none;
    border-radius: 34px;
    margin-bottom: 25px;
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
    transition: all 0.3s ease;
    min-width: 570px;
    width: auto;
    max-width: 100%;
    height: 65px;
    padding: 0 40px;
}

.user-footer-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.5);
    background: linear-gradient(135deg, #FFB300 0%, #FFA000 100%);
    color: #FFFFFF;
    text-decoration: none;
}

/* User Footer App Badges */
.user-footer-app-badges {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.user-footer-store-badge img {
    height: 44px;
    width: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.user-footer-store-badge:hover img {
    opacity: 0.8;
    transform: scale(1.05);
}

/* User Footer Responsive Styles */
@media (max-width: 992px) {
    .user-footer-section {
        min-height: 450px;
    }

    .user-footer-content {
        padding: 50px 30px;
    }

    .user-footer-title {
        font-size: 38px;
    }

    .user-footer-subtitle,
    .user-footer-tagline {
        font-size: 32px;
    }

    .user-footer-description {
        font-size: 26px;
    }

    .user-footer-cta {
        min-width: 450px;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .user-footer-section {
        min-height: 400px;
    }

    .user-footer-content {
        padding: 40px 20px;
    }

    .user-footer-title {
        font-size: 30px;
    }

    .user-footer-subtitle,
    .user-footer-tagline {
        font-size: 26px;
    }

    .user-footer-description {
        font-size: 20px;
    }

    .user-footer-cta {
        min-width: 350px;
        height: 55px;
        font-size: 1rem;
    }

    .user-footer-store-badge img {
        height: 40px;
    }
}

@media (max-width: 576px) {
    .user-footer-section {
        min-height: 380px;
    }

    .user-footer-content {
        padding: 30px 15px;
    }

    .user-footer-title {
        font-size: 24px;
    }

    .user-footer-subtitle,
    .user-footer-tagline {
        font-size: 20px;
    }

    .user-footer-description {
        font-size: 16px;
    }

    .user-footer-cta {
        min-width: 100%;
        width: 100%;
        max-width: 320px;
        height: 50px;
        font-size: 0.95rem;
        padding: 0 25px;
    }

    .user-footer-store-badge img {
        height: 36px;
    }
}