/**
 * OLIVE Frontend Home Page Styles
 * Extracted from inline styles for better structure
 */

/* ========================================
   HERO SECTION
   ======================================== */
.olive-hero-section {
    min-height: 85vh;
    height: 85vh;
    background-image: url('/assets/img/front-pages/landing-page/hero1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 8vh;
}

.olive-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #3D4A1F 0%, transparent 100%);
    z-index: 1;
}

.olive-hero-section .container {
    z-index: 2;
}

.olive-hero-section .row {
    align-items: center;
    width: 100%;
}

.olive-hero-section .col-lg-10 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.olive-hero-heading {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.olive-hero-subheading {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 3rem;
    font-weight: 400;
    opacity: 0.95;
}

/* Hero CTA Buttons */
.olive-hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.olive-btn-hero-light {
    background: #a3ab38;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Mulish', sans-serif;
    border: 2px solid #a3ab38;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.olive-btn-hero-light:hover,
.olive-btn-hero-light:active,
.olive-btn-hero-light:focus {
    background: #8a9430 !important;
    color: #ffffff !important;
    border-color: #8a9430 !important;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(163, 171, 56, 0.3), 0 0 20px rgba(163, 171, 56, 0.2);
}

.olive-btn-hero-dark {
    background: #a3ab38;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Mulish', sans-serif;
    border: 2px solid #a3ab38;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(163, 171, 56, 0.2);
    position: relative;
    overflow: hidden;
}

.olive-btn-hero-dark::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.olive-btn-hero-dark:hover::after {
    left: 100%;
}

.olive-btn-hero-dark:hover,
.olive-btn-hero-dark:active,
.olive-btn-hero-dark:focus {
    background: #8a9430 !important;
    color: #ffffff !important;
    border-color: #8a9430 !important;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 4px 15px rgba(163, 171, 56, 0.2);
}

/* Responsive Hero Section */
@media (max-width: 992px) {
    .olive-hero-section {
        min-height: 70vh;
        height: 70vh;
        padding-bottom: 7vh;
    }
    
    .olive-hero-heading {
        font-size: 2.8rem;
    }
    
    .olive-hero-subheading {
        font-size: 1.15rem;
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 768px) {
    .olive-hero-section {
        min-height: 65vh;
        height: 65vh;
        padding-bottom: 6vh;
    }
    
    .olive-hero-heading {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }
    
    .olive-hero-subheading {
        font-size: 14px;
        margin-bottom: 2rem;
    }
    
    .olive-hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .olive-btn-hero-light,
    .olive-btn-hero-dark {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 14px 30px;
    }
}

@media (max-width: 576px) {
    .olive-hero-section {
        min-height: 60vh;
        height: 60vh;
        padding-bottom: 5vh;
    }
    
    .olive-hero-heading {
        font-size: 18px;
    }
    
    .olive-btn-hero-light,
    .olive-btn-hero-dark {
        font-size: 0.95rem;
    }
}

/* ========================================
   STATS SECTION
   ======================================== */
.olive-stats-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.olive-stat-card {
    padding: 30px 20px;
    transition: transform 0.3s ease;
}

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

.olive-stat-icon {
    margin-bottom: 20px;
}

.olive-stat-img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.olive-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3A421E;
    margin-bottom: 10px;
    line-height: 1;
}

.olive-stat-label {
    font-size: 1.1rem;
    color: #000000;
    margin: 0;
    font-weight: 500;
}

/* Responsive Stats Section */
@media (max-width: 992px) {
    .olive-stats-section {
        padding: 50px 0;
    }
    
    .olive-stat-number {
        font-size: 2.5rem;
    }
    
    .olive-stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .olive-stats-section {
        padding: 40px 0;
    }
    
    .olive-stat-card {
        padding: 25px 15px;
    }
    
    .olive-stat-img {
        width: 56px;
        height: 56px;
    }
    
    .olive-stat-number {
        font-size: 2rem;
    }
    
    .olive-stat-label {
        font-size: 0.95rem;
    }
}

/* ========================================
   DEMO SECTION
   ======================================== */
.olive-demo-section {
    padding: 0 0 40px 0;
    background-color: #ffffff;
}

.olive-demo-video-wrapper {
    position: relative;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.olive-demo-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px 0 0 20px;
}

.olive-demo-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.olive-demo-video-wrapper:hover .olive-demo-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.olive-demo-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #6C7C3D;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.olive-demo-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.olive-demo-play-btn i {
    margin-left: 4px;
}

.olive-demo-watch-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(163, 171, 56, 0.9);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: 'Mulish', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.olive-demo-watch-btn:hover {
    background: rgba(163, 171, 56, 1);
    transform: translateY(-2px);
}

.olive-demo-content {
    background-color: #F6F6F6;
    padding: 40px 80px 40px 100px;
    border-radius: 0 20px 20px 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.olive-demo-subtitle {
    color: #6C7C3D;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.olive-demo-title {
    color: #000000;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.olive-demo-text {
    color: #000000;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Responsive Demo Section */
@media (max-width: 992px) {
    .olive-demo-section {
        padding: 60px 0;
    }
    
    .olive-demo-content {
        margin-top: 30px;
        padding-left: 0;
    }
    
    .olive-demo-title {
        font-size: 2rem;
    }
    
    .olive-demo-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .olive-demo-section {
        padding: 50px 0;
    }
    
    .olive-demo-video-wrapper {
        border-radius: 20px;
    }
    
    .olive-demo-thumbnail {
        border-radius: 20px;
    }
    
    .olive-demo-content {
        border-radius: 20px;
        padding: 30px 25px;
        margin-top: 20px;
    }
    
    .olive-demo-play-btn {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .olive-demo-watch-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .olive-demo-title {
        font-size: 1.75rem;
    }
    
    .olive-demo-text {
        font-size: 1rem;
    }
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.olive-features-section {
    padding: 0 0 80px 0;
    background-color: #ffffff;
}

.olive-feature-card {
    background-color: #F6F6F6;
    padding: 40px 30px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.olive-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 24px rgb(0 0 0 / 12%);
}

.olive-feature-icon {
    width: 70px;
    height: 70px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.olive-feature-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.olive-feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.4;
}

.olive-feature-text {
    font-size: 1rem;
    color: #000000;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Features Section */
@media (max-width: 992px) {
    .olive-features-section {
        padding: 60px 0;
    }
    
    .olive-feature-card {
        padding: 35px 25px;
    }
    
    .olive-feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .olive-feature-icon img {
        width: 35px;
        height: 35px;
    }
    
    .olive-feature-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .olive-features-section {
        padding: 50px 0;
    }
    
    .olive-feature-card {
        padding: 30px 20px;
    }
    
    .olive-feature-icon {
        width: 55px;
        height: 55px;
    }
    
    .olive-feature-icon img {
        width: 30px;
        height: 30px;
    }
    
    .olive-feature-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .olive-feature-text {
        font-size: 0.95rem;
    }
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.olive-services-section {
    padding: 0 0 80px 0;
    background-color: #ffffff;
}

.olive-services-heading {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
}

.olive-services-heading-green {
    color: #6C7C3D;
}

.olive-services-heading-black {
    color: #000000;
}

.olive-services-subtitle {
    font-size: 1.1rem;
    color: #000000;
    line-height: 1.6;
    margin: 0;
}

/* Tab Navigation */
.olive-services-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 30px;
}

.olive-service-tab {
    background: transparent;
    border: none;
    padding: 18px 25px;
    text-align: left;
    font-size: 1rem;
    font-family: 'Mulish', sans-serif;
    color: #000000;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.6s ease;
    font-weight: 500;
}

.olive-service-tab:hover {
    background-color: #f0f0f0;
}

.olive-service-tab.active {
    background: linear-gradient(to right, #455727, transparent);
    color: #ffffff;
    font-weight: 600;
}

.olive-tab-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    object-fit: contain;
    vertical-align: middle;
}

.olive-tab-icon-white {
    display: none;
}

.olive-service-tab.active .olive-tab-icon-default {
    display: none;
}

.olive-service-tab.active .olive-tab-icon-white {
    display: inline-block;
}

.olive-service-tab i {
    font-size: 1.1rem;
}

/* Tab Content */
.olive-service-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.olive-service-content.active {
    display: block;
    opacity: 1;
}

.olive-service-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
}

.olive-service-text-box {
    background-color: #F6F6F6;
    padding: 60px 50px;
    height: 400px;
    display: flex;
    align-items: center;
    border-radius: 0 20px 20px 0;
}

.olive-service-content-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    line-height: 1.6;
    margin: 0;
}

/* CTA Button */
.olive-services-cta-btn {
    background-color: #a3ab38;
    color: #ffffff;
    padding: 16px 60px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Mulish', sans-serif;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.olive-services-cta-btn:hover {
    background-color: #8a9430;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(163, 171, 56, 0.3);
}

/* Disclaimer */
.olive-services-disclaimer {
    font-size: 0.95rem;
    color: #000000;
    margin: 0;
}

/* Responsive Services Section */
@media (max-width: 992px) {
    .olive-services-section {
        padding: 60px 0;
    }
    
    .olive-services-heading {
        font-size: 2rem;
    }
    
    .olive-services-nav {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .olive-service-image,
    .olive-service-text-box {
        border-radius: 20px;
        height: auto;
    }
    
    .olive-service-text-box {
        padding: 40px 30px;
        margin-top: 0;
    }
    
    .olive-service-content-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .olive-services-heading {
        font-size: 1.8rem;
    }
    
    .olive-services-subtitle {
        font-size: 1rem;
    }
    
    .olive-service-tab {
        padding: 15px 20px;
        font-size: 0.95rem;
    }
    
    .olive-service-text-box {
        padding: 30px 25px;
    }
    
    .olive-services-cta-btn {
        padding: 14px 40px;
        font-size: 1rem;
    }
}

/* ========================================
   HEALTH JOURNEY SECTION
   ======================================== */
.olive-health-journey-section {
    padding: 0 0 80px 0;
    background-color: #ffffff;
}

.olive-journey-wrapper {
    background-color: #F6F6F6;
    border-radius: 30px;
    padding: 60px 40px;
}

.olive-journey-heading {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
}

.olive-journey-heading-green {
    color: #6C7C3D;
}

.olive-journey-heading-black {
    color: #000000;
}

.olive-journey-subtitle {
    font-size: 1.1rem;
    color: #000000;
    line-height: 1.6;
    margin: 0;
}

/* Timeline */
.olive-journey-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 60px 0 40px;
    position: relative;
}

.olive-journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 0 auto;
    width: 215px;
    position: relative;
    opacity: 0;
    transition: opacity 1.5s ease;
    z-index: 999;
}

.olive-journey-step.animate-in {
    opacity: 1;
}

.olive-journey-step:nth-child(1) { transition-delay: 0.0s; }
.olive-journey-step:nth-child(3) { transition-delay: 0.1s; }
.olive-journey-step:nth-child(5) { transition-delay: 0.3s; }
.olive-journey-step:nth-child(7) { transition-delay: 0.5s; }
.olive-journey-step:nth-child(9) { transition-delay: 0.7s; }
.olive-journey-step:nth-child(11) { transition-delay: 0.9s; }

.olive-journey-icon {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.olive-journey-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.olive-journey-badge {
    width: 50px;
    height: 50px;
    background-color: #3B431F;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
}

.olive-journey-step-title {
    font-size: 1rem;
    font-weight: 500;
    color: #000000;
    line-height: 1.4;
    margin: 0;
    padding: 0 5px;
}

.olive-journey-line {
    width: 80%;
    height: 4px;
    background: linear-gradient(45deg, #3B431F, transparent);
    flex-shrink: 0;
    position: absolute;
    top: 103px;
    left: 10%;
    right: -50%;
    z-index: 99;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 2s ease, background 1s ease 2s;
}

.olive-journey-line.animate-in {
    transform: scaleX(1);
    background: #3B431F;
}

.olive-journey-line:nth-child(2) { transition-delay: 0s; }
.olive-journey-line:nth-child(4) { transition-delay: 0.2s; }
.olive-journey-line:nth-child(6) { transition-delay: 0.4s; }
.olive-journey-line:nth-child(8) { transition-delay: 0.6s; }
.olive-journey-line:nth-child(10) { transition-delay: 0.8s; }

.olive-journey-note {
    font-size: 1rem;
    color: #000000;
    margin: 0;
}

/* Responsive Health Journey Section */
@media (max-width: 1200px) {
    .olive-journey-step {
        width: 130px;
    }
    
    .olive-journey-line {
        width: 50px;
    }
}

@media (max-width: 992px) {
    .olive-health-journey-section {
        padding: 60px 0;
    }
    
    .olive-journey-wrapper {
        padding: 50px 30px;
        border-radius: 25px;
    }
    
    .olive-journey-heading {
        font-size: 2rem;
    }
    
    .olive-journey-timeline {
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .olive-journey-step {
        width: 45%;
    }
    
    .olive-journey-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .olive-journey-wrapper {
        padding: 40px 20px;
        border-radius: 20px;
    }
    
    .olive-journey-heading {
        font-size: 1.8rem;
    }
    
    .olive-journey-subtitle {
        font-size: 1rem;
    }
    
    .olive-journey-timeline {
        flex-direction: column;
        gap: 30px;
    }
    
    .olive-journey-step {
        width: 100%;
        max-width: 300px;
    }
    
    .olive-journey-badge {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .olive-journey-icon img {
        width: 50px;
        height: 50px;
    }
}

/* ========================================
   PARTNERS SECTION
   ======================================== */
.olive-partners-section {
    padding: 0 0 80px 0;
    background-color: #ffffff;
}

.olive-partners-heading {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
}

.olive-partners-heading-green {
    color: #6C7C3D;
}

.olive-partners-heading-black {
    color: #000000;
}

.olive-partners-slider {
    margin: 0 auto;
}

.olive-partner-box {
    background-color: #F6F6F6;
    border-radius: 15px;
    padding: 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.olive-partner-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

#swiper-partners .swiper-slide {
    width: auto;
    padding: 0 15px;
}

/* Responsive Partners Section */
@media (max-width: 992px) {
    .olive-partners-section {
        padding: 60px 0;
    }
    
    .olive-partners-heading {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .olive-partners-heading {
        font-size: 1.8rem;
    }
    
    .olive-partner-box {
        height: 120px;
        padding: 30px 20px;
    }
}

/* ========================================
   APP DOWNLOAD SECTION
   ======================================== */
.olive-app-download-section {
    padding: 0 0 80px 0;
    background-color: #ffffff;
}

.olive-app-download-wrapper {
    background-color: #96B85D;
    border-radius: 30px;
    padding: 40px 60px;
}

.olive-app-download-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
}

.olive-app-download-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    align-items: center;
}

.olive-app-store-btn,
.olive-google-play-btn {
    display: inline-block;
    transition: transform 0.3s ease;
}

.olive-app-store-btn:hover,
.olive-google-play-btn:hover {
    transform: translateY(-3px);
}

.olive-app-store-btn img,
.olive-google-play-btn img {
    height: 50px;
    width: auto;
}

/* Responsive App Download Section */
@media (max-width: 992px) {
    .olive-app-download-section {
        padding: 0 0 60px 0;
    }
    
    .olive-app-download-wrapper {
        padding: 50px 40px;
        border-radius: 25px;
    }
    
    .olive-app-download-heading {
        font-size: 2rem;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .olive-app-download-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .olive-app-download-wrapper {
        padding: 40px 30px;
        border-radius: 20px;
    }
    
    .olive-app-download-heading {
        font-size: 1.8rem;
    }
    
    .olive-app-download-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .olive-app-store-btn img,
    .olive-google-play-btn img {
        height: 45px;
    }
}

/* ========================================
   SECTION UTILITIES
   ======================================== */
.section-p8 {
    padding-top: 80px;
}

.section-pb-10 {
    padding-bottom: 100px;
}

/* ========================================
   PAGE BACKGROUND
   ======================================== */
body {
    background-color: #fffff5;
}

/* ========================================
   BRAND COLORS
   ======================================== */
.btn-primary {
    --bs-btn-bg: #839e6b;
}

/* ========================================
   GLASSMORPHISM SEARCH FIELD
   ======================================== */
.glassy-field {
    background: rgb(255, 255, 255) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid rgb(255, 255, 255) !important;
    box-shadow: 0 2px 8px rgba(31, 38, 135, 0.08) !important;
    color: #000000;
    transition: background 0.2s, box-shadow 0.2s;
}

/* ========================================
   SEARCH AUTOCOMPLETE SUGGESTIONS
   ======================================== */
.search-suggestions {
    max-height: 300px;
    overflow-y: auto;
}

.suggestion-item {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.2s;
}

.suggestion-item:hover {
    background-color: #f8f9fa;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-avatar {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
}

.suggestion-content h6 {
    margin: 0;
    font-size: 0.9rem;
}

.suggestion-content small {
    color: #6c757d;
    font-size: 0.8rem;
}

/* ========================================
   CTA SECTION - PHONE IMAGE
   ======================================== */
.StipeImage {
    position: absolute;
    bottom: -80px;
    left: 0;
}

/* ========================================
   CTA SECTION - BACKGROUND IMAGE
   ======================================== */
.responsive-bg-image {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.05;
    pointer-events: none;
}

@media (max-width: 768px) {
    .responsive-bg-image {
        background-position: top;
    }
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 768px) {
    .section-p8 {
        padding-top: 60px;
    }
}
