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

header {
    z-index: 999;
}

/* header-section */
.navbar-header {
    background-color: #ffffff;
    box-shadow: 0px 8px 24px rgba(149, 157, 165, 0.1);
    /* padding: 0.9rem 0.8rem; */
    font-weight: 600;
}

.nav-item span {
    cursor: pointer;
    transition: color 0.3s;
}

.nav-item span:hover {
    color: #06b6d4;
    /* cyan-600 */
}

.btn-primary-custom {
    background-color: #06b6d4;
    color: #fff;
    min-height: 52px;
    width: 215px;
    padding: 12px;
    border-radius: 0.75rem;
    transition: background-color 0.3s;
}

.btn-primary-custom:hover {
    background-color: #0e7490;
    color: #fff;
}

.btn-outline-custom {
    background-color: #fff;
    color: #06b6d4;
    border: 1px solid #06b6d4;
    min-height: 52px;
    width: 130px;
    border-radius: 0.75rem;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
}

.btn-outline-custom:hover {
    background-color: #e0f2f1;
    /* cyan-50 */
}

.dropdown-arrow {
    width: 17px;
    aspect-ratio: 1.42;
}

.logo-img {
    width: 209px;
    aspect-ratio: 3.27;
}

/* Extra responsiveness for small devices */
@media (max-width: 1024px) {
    .btn-primary-custom {
        width: 180px;
        font-size: 0.9rem;
        padding: 10px;
    }

    .btn-outline-custom {
        width: 110px;
        font-size: 0.85rem;
        padding: 10px;
    }

    .logo-img {
        width: 180px;
    }
}

@media (max-width: 768px) {
    .navbar-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo-img {
        width: 160px;
    }

    .nav-item {
        margin-bottom: 0.75rem;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        max-width: 300px;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        width: 140px;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        min-height: 44px;
        font-size: 0.8rem;
        padding: 8px;
    }

    .dropdown-arrow {
        width: 14px;
    }
}


/* hero-section  */
#hero-section {
    background: linear-gradient(135deg, rgba(45, 150, 188, 0.1), rgba(123, 58, 237, 0.1)),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") center/cover no-repeat;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.badge-custom {
    background-color: #fff;
    border: 1px solid #7dd3fc;
    border-radius: 50px;
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.badge-custom span {
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    .badge-custom {
        padding: 0.625rem 1rem;
    }

    .badge-custom span {
        font-size: 0.875rem;
    }
}

.highlight-text {
    color: rgba(45, 150, 188, 1);
    position: relative;
}

.hero-title {
    font-size: 1.75rem;
    line-height: 1.2;
    font-weight: 600;
}

@media (min-width: 576px) {
    .hero-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.75rem;
    }
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 3.25rem;
    }
}

.card-shadow {
    box-shadow: 0px 4px 34px rgba(173, 173, 173, 0.1);
}

.btn-trial {
    background-color: #d9f99d;
    color: #27272a;
    border-radius: 0.75rem;
    min-height: 50px;
    font-weight: 600;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-trial:hover {
    background-color: #bef264;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(217, 249, 157, 0.4);
}

@media (min-width: 768px) {
    .btn-trial {
        min-height: 60px;
        width: 214px;
        font-size: 1rem;
    }
}

.chrome-card {
    background-color: #27272a;
    color: #fff;
    border-radius: 1rem;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 50px;
    transition: transform 0.3s ease;
}

.chrome-card:hover {
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .chrome-card {
        padding: 1rem;
        gap: 2rem;
        min-height: 60px;
    }
}

.chrome-card p {
    margin: 0;
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    .chrome-card p:first-child {
        font-size: 0.875rem;
    }

    .chrome-card p:last-child {
        font-size: 0.9rem;
    }
}

.line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    max-width: 180px;
    width: 100%;
}

@media (min-width: 768px) {
    .line {
        bottom: -20px;
        max-width: 240px;
    }
}

.hero-para {
    line-height: 1.4;
    font-size: 0.9rem;
    color: #6b7280;
}

@media (min-width: 768px) {
    .hero-para {
        font-size: 1rem;
    }
}

.gradient-bg {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 25%, #f093fb 50%, #667eea 75%, #764ba2 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    top: 0;
    left: 0;
    z-index: 0;
    border-radius: 10px;
    width: 50%;
    height: 100%;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.crm-animation-wrapper {
    overflow: hidden;
    margin: 1rem 0;
}

.crm-list {
    position: relative;
    padding: 1rem;
}

.crm-logo-container {
    display: flex;
    align-items: center;
    margin: 0.5rem;
}

.crm-logo-container img {
    height: 35px;
    width: auto;
    object-fit: contain;
    background-color: white;
    padding: 4px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.crm-text {
    font-size: 1rem;
    margin: 0.5rem;
    color: white;
}

.rating-container {
    flex-direction: row;
    gap: 1rem;
}


.rating-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.rating-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.star-rating img {
    width: 12px;
    height: 12px;
}

.cta-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (max-width: 575px) {
    .rating-container {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-title br {
        display: none;
    }

    .gradient-bg {
        width: 100%;
    }

    .crm-text {
        font-size: 12px;
        margin: 0.75rem;
    }
}

@media (max-width:768px) {
    .gradient-bg {
        width: 60%;
    }
}

@media (min-width: 768px) {
    .crm-text {
        font-size: 1.25rem;
        margin: 0.75rem;
    }

    .rating-icon {
        width: 40px;
        height: 40px;
    }

    .star-rating img {
        width: 15px;
        height: 15px;
    }

    .cta-buttons {
        flex-direction: row;
        gap: 1.5rem;
    }

    .crm-logo-container img {
        height: 45px;
    }

    .crm-logo-container {
        margin: 0.75rem;
    }
}



/* features-section */
.feature-slider-section {
    padding: 20px 0;
}

.feature-slide {
    text-align: center;
}

.feature-slide h2 {
    font-size: 18px;
    line-height: 1.5;
}

.feature-slide img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.with-without-leadcrm {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /* margin: 40px 0; */
}

.comparison-box {
    flex: 1;
    min-width: 300px;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.comparison-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feature-item img {
    width: 24px;
    margin-right: 15px;
}

.feature-content h3 {
    font-size: 18px;
    margin: 0 0 5px 0;
}

.feature-content p {
    margin: 0;
    color: #4d4d4d;
    font-size: 14px;
}

.divider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    /* space around divider */
}

.divider-separator {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #ddd;
    /* divider color */
    border-radius: 2px;
    /* smooth edges */
}

/* Main Heading */

.red-badge,
.green-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    margin-left: 8px;
}

.red-badge {
    background-color: #FFEBEE;
    color: #C62828;
}

.green-badge {
    background-color: #E8F5E9;
    color: #2E7D32;
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 20px;
}

.vs-divider h3 {
    background: #f5f5f5;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.divider-line {
    flex: 1;
    width: 2px;
    background: #eee;
}

.cta-button {
    margin-top: 4rem;
    padding: 1rem 2rem;
    font-weight: 600;
    background-color: #B3FC6A;
    color: #18181b;
    border-radius: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}

.cta-button:hover {
    background-color: #B3FC6A;
    color: #000000;
    box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.14);
}

/* Extra small screens (phones) */
@media (max-width: 576px) {
    .cta-button {
        padding: 0.75rem 1.25rem;
        /* reduce padding */
        font-size: 0.7rem;
        /* smaller text */
        border-radius: 0.75rem;
        /* slightly smaller radius */
        margin-top: 2rem;
        /* reduce top margin */
    }

    .savings-banner {
        width: 46% !important;
    }
}

/* Medium screens (tablets) */
@media (min-width: 577px) and (max-width: 991px) {
    .cta-button {
        padding: 0.9rem 1.75rem;
        font-size: 1rem;
        margin-top: 3rem;
    }

}

.cta-div {
    display: flex;
    align-items: center;
    justify-content: right;
    width: 89%;
}

.savings-banner {
    width: 30%;
}

/* Swiper custom styles */
.swiper {
    width: 100%;
    padding: 20px 0;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-button-next,
.swiper-button-prev {
    color: #090F4E;
}

.swiper-pagination-bullet {
    background: #090F4E;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

@media (max-width: 768px) {
    .vs-divider {
        display: none;
    }

    .comparison-box {
        min-width: 100%;
    }
}

/* steps-section */
.steps-section {
    background: url("https://img.leadcrm.io/wp-content/uploads/2025/07/08130620/bg-steps-768x425.webp") no-repeat center center/cover;
    padding: 80px 0;
    position: relative;
    color: #222;
}

.steps-section h2 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #090F4E;
}

.steps-section p.lead {
    font-size: 16px;
    font-weight: 400;
    color: #4C4C4C;
    font-family: "Poppins", Sans-serif;
}

/* Step Cards */
.step-box {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.step-box:hover {
    transform: translateY(-5px);
    border-color: #009AD5;
}

.step-number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: #2D96BC;
    font-family: "Sriracha", Sans-serif;
    font-weight: bold;
    margin: 0 auto 36px;
    font-size: 113px;
}

/* Responsive overrides for step-number */
@media (max-width: 1200px) {
    .step-number {
        font-size: 90px;
        width: 70px;
        height: 70px;
        line-height: 70px;
    }
}

@media (max-width: 992px) {
    .step-number {
        font-size: 70px;
        width: 60px;
        height: 60px;
        line-height: 60px;
    }
}

@media (max-width: 768px) {
    .step-number {
        font-size: 50px;
        width: 50px;
        height: 50px;
        line-height: 50px;
    }
}

@media (max-width: 480px) {
    .step-number {
        font-size: 70px;
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
}



.step-box h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-box p {
    font-size: 0.95rem;
}

.step-box img {
    max-width: 100%;
    border-radius: 10px;
    margin-top: 20px;
}

.cta-btn {
    margin-top: 40px;
}

/* Optional decorative ball */
.ball-decor {
    position: relative;
    right: -19px;
    top: 50px;
    width: 80px;
    display: block;
    float: right;
}

@media (max-width: 768px) {
    .ball-decor {
        display: none;
    }
}

/* testimonials-section */
.testimonials-section {
    margin-top: 7rem;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background-color: #F0EFFF;
    border-radius: 1.5rem;
    border: 1px solid #e0e7ff;
    /* border-indigo-50 */
    padding: 2rem;
    position: relative;
    margin-bottom: 2rem;

    /* Ensure same height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.testimonials-section h2 {
    color: #090F4E;
}

.testimonial-card blockquote {
    font-size: 1rem;
    line-height: 1.75;
    color: #27272a;
    /* text-zinc-800 */
    flex-grow: 1;
    /* makes text area expand evenly */
}

.testimonial-card .author {
    border-top: 1px solid rgba(107, 114, 128, 0.3);
    /* border-neutral-500 opacity-30 */
    margin-top: 2rem;
    padding-top: 1.25rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    /* indigo-950 */
}

.testimonial-rating {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.testimonial-rating img {
    width: 110px;
    height: auto;
}

.testimonial-avatar {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #78716c;
    /* text-stone-500 */
}

.testimonial-avatar img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

/* Nav Buttons */
.testimonial-nav button {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #1e293b;
    /* border-indigo-950 */
    background-color: #fff;
}

.testimonial-nav .next-btn {
    background-color: #1e293b;
    /* bg-indigo-950 */
    border: none;
}

.testimonial-nav img {
    width: 8px;
    height: auto;
}

@media (max-width: 768px) {
    .testimonials-section {
        margin-top: 2.5rem;
    }
}

/* solutions-section */
.top-left-icon {
    position: relative;
    top: 90px;
    left: -20px;
    width: 112px;
    height: 146px;
    z-index: 100;
}

.section-title {
    font-family: "Exo 2", Sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #090F4E;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-family: "Exo 2", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    color: #4D4D4D;
    margin-bottom: 2rem;
}

.tab-container {
    position: relative;
    width: 100%;
}

.tab-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    border-bottom: 2px solid #E5E7EB;
    margin-bottom: -30px;
}

.tab-item {
    text-align: center;
    padding: 12px 0;
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-item img {
    width: 28px;
    height: 28px;
}

.tab-item h3 {
    font-family: "Exo 2", Sans-serif;
    font-weight: 600;
    line-height: 19px;
    color: #4D4D4D;
    font-size: 18px;
    margin: 0;
}

.tab-item.active h3 {
    color: #0B125D;
    /* dark blue text */
}

.tab-underline {
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 3px;
    background: #0B125D;
    /* active underline */
    width: 0;
    transition: all 0.3s ease;
}

.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #0B125D;
    border-radius: 10px;
}

/* Tab content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content .tab-h {
    font-family: "Exo 2", Sans-serif;
    font-weight: 400;
    line-height: 19px;
    color: #4D4D4D;
    font-size: 18px;
}

.content-box {
    background: #F0F4FD;
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(197, 197, 197, 0.5);
}

.content-box.yellow {
    background: #FFFFCE;
}

.content-box.purple {
    background: #ECEAFF;
}

.content-box.pink {
    background: #FFE9FE;
}

.content-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #262626;
    margin-bottom: 15px;
}

.content-image {
    border-radius: 12px;
    max-width: 100%;
    height: auto;
    margin-top: 15px;
}

.btn-outline-primary {
    color: #097737;
    border-color: #097737;
    font-weight: 600;
}

.btn-outline-primary:hover {
    background-color: #097737;
    color: white;
}

.red-badge {
    display: inline-block;
    background-color: #FFDCD4;
    color: #FF4C51;
    font-size: 13px;
    font-weight: 500;
    padding: 6px;
    border-radius: 12px;
    margin-left: 4px;

}

@media (max-width:576px) {
    .tab-nav {
        gap: 0.5rem;
        justify-content: center;
    }

    .tab-underline {
        height: 2px;
    }

    .red-badge {
        margin-top: 10px;
    }

    .content-title {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .tab-nav {
        flex-wrap: wrap;
    }

    .tab-item {
        min-width: 50%;
        padding: 8px 0;
    }

    .top-left-icon {
        display: none;
    }

    .tab-container {
        margin-top: 60px;
    }

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

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

/* crm-section  */
.crm-section {
    position: relative;
    padding: 80px 0;
    /* overflow: hidden; */
}

.comment-icon {
    position: absolute;
    top: -20px;
    right: 310px;
}

.collaboration-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 115px;
    height: 150px;
    z-index: 10;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #090F4E;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 20;
}

.section-description {
    font-size: 1.1rem;
    color: #4D4D4D;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 20;
}

.supported-platforms {
    max-width: 100%;
    height: auto;
    margin: 0;
    display: block;
    position: relative;
    z-index: 20;
}

.mobile-image {
    display: none;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
}

.btn-primary {
    background-color: #097737;
    border-color: #097737;
    font-weight: 600;
    padding: 10px 25px;
    position: relative;
    z-index: 20;
}

.btn-primary:hover {
    background-color: #075e2a;
    border-color: #075e2a;
}

.btn-icon {
    margin-left: 8px;
}

@media (max-width: 991px) {
    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }
}

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

    .comment-icon,
    .collaboration-icon {
        display: none;
    }

    .supported-platforms {
        display: none;
    }

    .mobile-image {
        display: block;
    }

    .section-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .section-description {
        text-align: center;
    }
}

.rounded-xl-custom {
    border-radius: 1rem !important;
}

.rounded-3xl-custom {
    border-radius: 1.5rem !important;
}

.dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

/* leadcrm-section */
.leadcrm-section {
    background-color: #eef2ff;
    /* bg-indigo-50 */
    font-weight: 600;
    margin-top: -2.25rem;
    /* -mt-9 */
    padding: 3rem 2.5rem 1.75rem;
    /* pt-12 px-10 pb-7 */
}

.leadcrm-heading {
    font-size: 2.25rem;
    /* text-4xl */
    font-weight: 600;
    color: #1e1b4b;
    /* text-indigo-950 */
}

.leadcrm-image {
    border-radius: 0.75rem;
    /* rounded-xl */
    aspect-ratio: 3.33/1;
    object-fit: contain;
}

.cta-button i {
    font-size: 20px;
}

@media (max-width: 576px) {
    .leadcrm-heading {
        font-size: 1.8rem;
        text-align: center;
    }
}

/* footer-section */
.footer-section {
    padding: 3rem 1rem 2rem;
    margin-top: 8rem;
    background: linear-gradient(135deg, #01B2D812, #01B2D838);
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0d3b66;
    /* dark indigo/navy */
}

.footer-section p,
.footer-section a {
    font-size: 0.9rem;
    color: #111827;
    text-decoration: none;
}

.footer-section a:hover {
    color: #01b2d8;
    text-decoration: underline;
}

.social-icons img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    padding: 6px;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.1);
    background: #01b2d8;
}

.contact-icon {
    width: 22px;
    height: 22px;
}

.chrome-cta {
    background: #1A3E62;
    color: #fff;
    border-radius: 1rem;
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    max-width: fit-content;
    cursor: pointer;
    transition: background 0.3s ease;
}

.chrome-cta:hover {
    background: #01b2d8;
}

.chrome-cta img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.footer-disclaimer {
    font-size: 0.8rem;
    color: #4b5563;
    margin-top: 2rem;
    line-height: 1.5;
}

/* Already existing mobile (max-width: 768px) — keeping it as is */

/* Tablet landscape & medium desktops */
@media (max-width: 992px) {
    .footer-section {
        padding: 2.5rem 1rem 1.5rem;
        margin-top: 5rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.85rem;
    }

    .social-icons img {
        width: 34px;
        height: 34px;
    }
}

/* Small tablets & large phones */
@media (max-width: 600px) {
    .footer-section {
        padding: 2rem 1rem 1rem;
    }

    .footer-section h3 {
        font-size: 1rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.8rem;
    }

    .chrome-cta {
        width: 100%;
        justify-content: center;
    }

    .chrome-cta img {
        width: 26px;
        height: 26px;
    }
}

/* Extra-small phones */
@media (max-width: 400px) {
    .footer-section {
        padding: 1.5rem 0.5rem 0.8rem;
    }

    .footer-section h3 {
        font-size: 0.95rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.75rem;
    }

    .social-icons img {
        width: 30px;
        height: 30px;
    }

    .footer-disclaimer {
        font-size: 0.7rem;
    }
}


/* Floating bar styles */
.floating-bar {
    position: fixed;
    bottom: 20px;
    width: 65%;
    left: 0;
    align-items: center;
    justify-content: center;
    right: 0;
    background: white;
    backdrop-filter: blur(8px);
    z-index: 1050;
    display: none;
    /* Hidden initially */
    border-radius: 10px;
}

#left-part {
    background: rgb(255, 238, 254);
    border-radius: 10px;
}

.float-btn {
    padding: 0.7rem 1rem;
    font-weight: 600;
    background-color: #B3FC6A;
    color: #18181b;
    border-radius: 0.7rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

/* Slide-up animation */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Slide-down animation */
@keyframes slideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

/* Extra responsiveness without changing existing CSS */

/* Large desktops */
@media (min-width: 1440px) {
    .floating-bar {
        width: 50%;
        /* narrower on very large screens */
    }
}

/* Laptops and medium desktops */
@media (max-width: 1200px) {
    .floating-bar {
        width: 70%;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .floating-bar {
        width: 80%;
    }
}

/* Small tablets / large phones */
@media (max-width: 768px) {
    .floating-bar {
        width: 90%;
        bottom: 10px;
    }

    .floating-bar .container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    #left-part {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .floating-bar {
        width: 95%;
        font-size: 14px;
        padding: 0.5rem;
    }

    .float-btn {
        width: 100%;
        justify-content: center;
        font-size: 14px;
    }
}