/* ==========================================================================
   Index / Home Page Styles
   ========================================================================== */

/* Hero V2 (Full Bleed) */
.hero-section.full-bleed {
    padding: 0;
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
}

.hero-section.full-bleed .hero-swiper {
    height: 100%;
    width: 100%;
    padding-bottom: 0;
}

.hero-section.full-bleed .swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    opacity: 0 !important;
    transition: opacity 1s ease;
}

.hero-section.full-bleed .swiper-slide-active {
    opacity: 1 !important;
}

.hero-container-v2 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 10;
    text-align: left;
    height: 100%;
    /* Ensure container takes full height */
}

.hero-content-v2 {
    color: white;
    max-width: 800px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 100px;
    padding-top: 130px;
    /* Push content down to clear header */
}

.hero-tagline {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.tag-icon {
    width: 22px;
    height: 8px;
    background: var(--primary-orange);
    border-radius: 10px;
    display: inline-block;
}

.hero-content-v2 h1 {
    font-size: 3.5rem;
    color: white !important;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 35px;
    background: transparent;
    border: 2px solid white;
    color: white;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-learn-more:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: white;
    transform: translateX(8px);
}

/* Pricing Blob */
.pricing-blob {
    margin-top: 60px;
    background: var(--primary-orange);
    padding: 25px 45px;
    border-radius: 60px 60px 60px 0;
    display: inline-block;
    box-shadow: 0 15px 35px rgba(255, 122, 0, 0.4);
    position: relative;
}

.blob-content p {
    color: white;
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.9;
}

.blob-content h3 {
    color: white;
    margin: 5px 0 0;
    font-size: 2.2rem;
    font-weight: 800;
}

.blob-content span {
    font-size: 1rem;
    font-weight: 500;
}

/* Side Social */
.hero-side-social {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 50;
}

.hero-side-social a {
    color: white;
    font-size: 1.2rem;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    backdrop-filter: blur(5px);
}

.hero-side-social a:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: scale(1.1);
}

/* Vertical Pagination */
.hero-pagination-v2 {
    left: auto !important;
    right: 50px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: auto !important;
    display: flex;
    flex-direction: column;
    gap: 25px;
    z-index: 50;
}

.hero-pagination-v2 .swiper-pagination-bullet {
    width: 50px;
    height: 50px;
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.4);
    opacity: 1 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
}

.hero-pagination-v2 .swiper-pagination-bullet-active {
    background: var(--primary-orange) !important;
    border-color: var(--primary-orange) !important;
    transform: scale(1.1);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 45px;
    max-width: 550px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-outline {
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-purple);
    color: white !important;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--glass-border);
    padding-top: 30px;
}

.stat-item h3 {
    font-size: 2.2rem;
    color: var(--primary-orange);
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .hero-content-v2 {
        padding-left: 50px;
        max-width: 90%;
    }

    .hero-content-v2 h1 {
        font-size: 2.8rem;
    }

    .hero-pagination-v2 {
        right: 30px !important;
    }
}

@media (max-width: 768px) {
    .hero-section.full-bleed {
        height: auto;
        min-height: 100vh;
    }

    .hero-container-v2 {
        align-items: flex-start;
        padding-top: 100px;
    }

    .hero-content-v2 {
        padding: 80px 20px 60px;
        text-align: center;
        align-items: center;
        max-width: 100%;
        width: 100%;
    }

    .hero-tagline {
        justify-content: center;
    }

    .hero-content-v2 h1 {
        font-size: 2.22rem;
        margin-bottom: 25px;
    }

    .hero-btns {
        justify-content: center;
        width: 100%;
    }

    .hero-pagination-v2 {
        top: auto !important;
        bottom: 30px !important;
        right: 0 !important;
        left: 0 !important;
        transform: none !important;
        flex-direction: row !important;
        justify-content: center !important;
        width: 100% !important;
        gap: 15px !important;
    }

    .hero-pagination-v2 .swiper-pagination-bullet {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }

    .hero-side-social {
        display: none;
        /* Hide on mobile to clear clutter */
    }

    .btn-learn-more {
        padding: 12px 28px;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content-v2 h1 {
        font-size: 1.8rem;
    }

    .pricing-blob {
        padding: 20px 30px;
    }

    .blob-content h3 {
        font-size: 1.8rem;
    }
}

.hero-image {
    position: relative;
}

.hero-image .main-img {
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(106, 13, 173, 0.15);
    border: 2px solid white;
}

.floating-card {
    position: absolute;
    top: 20%;
    left: -30px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    animation: float 5s ease-in-out infinite;
    z-index: 5;
}

.floating-card i {
    color: var(--primary-orange);
    font-size: 1.5rem;
}

@keyframes float {

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

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

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.services-grid .glass-card {
    border-top-left-radius: 80px;
    padding: 40px 30px;
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.link-btn {
    display: inline-block;
    margin-top: 20px;
    color: var(--primary-orange);
    font-weight: 600;
}

/* Why Section */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-images {
    position: relative;
    height: 500px;
}

.why-images img {
    border-radius: 20px;
    object-fit: cover;
}

.img-1 {
    width: 80%;
    height: 350px;
    position: absolute;
    top: 0;
    left: 0;
}

.img-2 {
    width: 60%;
    height: 250px;
    position: absolute;
    bottom: 50px;
    right: 0;
    border: 5px solid var(--bg-dark);
}

.check-list li {
    margin-bottom: 15px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.check-list i {
    color: var(--primary-orange);
}

/* Plans */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.plan-card {
    text-align: center;
    position: relative;
    background: white;
    border-top-left-radius: 80px;
    padding: 50px 30px !important;
}

.plan-card.featured {
    background: var(--primary-purple);
    color: white;
    transform: scale(1.05);
    z-index: 2;
}

.plan-card.featured h3,
.plan-card.featured .price,
.plan-card.featured .plan-tag {
    color: white;
}

.plan-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--primary-orange);
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    font-weight: 700;
}

.plan-card .price {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 25px 0;
    color: var(--primary-purple);
}

.plan-card .price span {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.plan-features {
    margin-bottom: 35px;
    border-top: 1px solid var(--bg-light);
    padding-top: 25px;
}

.plan-features li {
    margin-bottom: 12px;
    color: var(--text-gray);
    font-weight: 500;
}

@media (max-width: 992px) {

    .hero-section .container,
    .services-grid,
    .why-grid,
    .plans-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .why-images {
        height: 350px;
        margin-bottom: 30px;
    }
}

/* Fixes for Featured Plan Card Colors */
.plan-card.featured .price span {
    color: rgba(255, 255, 255, 0.7) !important;
}

.plan-card.featured .plan-features li {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Check Availability Section */
.availability-check .glass-card {
    border: 1px solid rgba(106, 13, 173, 0.1);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.availability-check h3 {
    color: var(--primary-purple);
    font-size: 1.8rem;
}

.availability-check input:focus {
    outline: none;
    border-color: var(--primary-orange) !important;
    box-shadow: 0 0 0 3px rgba(239, 105, 54, 0.1);
}

@media (max-width: 768px) {
    .availability-check form {
        flex-direction: column;
        align-items: center;
    }

    .availability-check input {
        width: 100% !important;
        max-width: 100% !important;
    }

    .availability-check button {
        width: 100%;
    }
}

/* Experience Section (New UI) */
.experience-section {
    position: relative;
    overflow: hidden;
}

.experience-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(239, 105, 54, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    top: -50px;
    right: -50px;
    border-radius: 50%;
    z-index: -1;
}

.experience-section::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(106, 13, 173, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    bottom: -30px;
    left: -30px;
    border-radius: 50%;
    z-index: -1;
}

.experience-wrapper {
    padding: 60px 40px;
    border: 1px solid rgba(106, 13, 173, 0.08);
    position: relative;
    overflow: hidden;
}

.experience-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.experience-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.experience-content .lead-text {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 25px;
    line-height: 1.7;
}

.experience-content p {
    color: var(--text-gray);
    margin-bottom: 40px;
}

.experience-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.exp-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 30px;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 15px;
    width: 160px;
    transition: all 0.3s ease;
}

.exp-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-purple);
}

.exp-badge i {
    font-size: 2rem;
    color: var(--primary-orange);
}

.exp-badge span {
    font-weight: 700;
    color: var(--primary-purple);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .experience-content h2 {
        font-size: 2rem;
    }

    .experience-badges {
        gap: 15px;
    }

    .exp-badge {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        padding: 15px;
    }
}

/* Experience Grid Layout (2 Col) */
.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.experience-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(106, 13, 173, 0.15);
}

.experience-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.experience-image:hover img {
    transform: scale(1.03);
}

.experience-content-side {
    text-align: left;
}

.experience-content-side h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.experience-content-side .lead-text {
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.7;
    font-weight: 500;
}

.experience-content-side p {
    color: var(--text-gray);
    margin-bottom: 35px;
}

.experience-badges-side {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.exp-badge-side {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: white;
    border: 1px solid rgba(106, 13, 173, 0.1);
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.exp-badge-side:hover {
    transform: translateY(-3px);
    border-color: var(--primary-orange);
    box-shadow: 0 8px 20px rgba(239, 105, 54, 0.15);
}

.exp-badge-side i {
    color: var(--primary-orange);
    font-size: 1.2rem;
}

.exp-badge-side span {
    font-weight: 700;
    color: var(--primary-purple);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .experience-image {
        max-width: 600px;
        margin: 0 auto;
    }

    .experience-content-side {
        text-align: center;
    }

    .experience-badges-side {
        justify-content: center;
    }

}

/* Why AirHive - Feature Grid Redesign */
.why-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 25px;
}

.why-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    /* Prepare for hover border */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    /* Subtle shadow */
}

.why-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: rgba(239, 105, 54, 0.2);
}

.why-feature-card .icon-box {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(239, 105, 54, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.why-feature-card:hover .icon-box {
    background: var(--primary-orange);
    color: #fff;
}

.why-feature-card i {
    font-size: 1.4rem;
    color: var(--primary-orange);
    transition: all 0.3s ease;
}

.why-feature-card:hover i {
    color: #fff;
}

.why-feature-card .feature-text h3 {
    font-size: 1.1rem;
    color: var(--primary-purple);
    font-weight: 700;
    margin-bottom: 5px;
}

.why-feature-card .feature-text p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 576px) {
    .why-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    .why-feature-card {
        padding: 15px;
    }
}

/* About Company Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.about-content p {
    margin-bottom: 15px;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        max-width: 600px;
        margin: 0 auto;
        order: 1;
        /* Image below content on mobile if desired, or remove to keep on top */
    }

    .about-content {
        order: 2;
    }
}

/* ==========================================================================
   Clients / Partners Logo Slider
   ========================================================================== */
.clients-section {
    overflow: hidden;
    background: linear-gradient(180deg, #f9f7fc 0%, #ffffff 100%);
}

.clients-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.clients-section .section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 12px;
}

.clients-section .section-header p {
    color: var(--text-gray);
    font-size: 1.05rem;
    max-width: 550px;
    margin: 0 auto;
}

.clients-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

/* Gradient fade edges */
.clients-slider-wrapper::before,
.clients-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.clients-slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f9f7fc, transparent);
}

.clients-slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

.clients-slider-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: clientsScroll 30s linear infinite;
}

.clients-slider-track:hover {
    animation-play-state: paused;
}

.client-logo-item {
    flex-shrink: 0;
    width: 160px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(106, 13, 173, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.client-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(106, 13, 173, 0.12);
    border-color: var(--primary-orange);
}

.client-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.4s ease;
}

.client-logo-item:hover img {
    filter: grayscale(0%) opacity(1);
}

@keyframes clientsScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .clients-section .section-header h2 {
        font-size: 2rem;
    }

    .client-logo-item {
        width: 140px;
        height: 70px;
        padding: 12px 20px;
    }

    .clients-slider-track {
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .clients-section .section-header h2 {
        font-size: 1.6rem;
    }

    .clients-slider-wrapper::before,
    .clients-slider-wrapper::after {
        width: 50px;
    }

    .client-logo-item {
        width: 120px;
        height: 60px;
        padding: 10px 15px;
        border-radius: 12px;
    }

    .clients-slider-track {
        gap: 25px;
        animation-duration: 20s;
    }
}

/* ==========================================================================
   Google Reviews / Testimonials Section
   ========================================================================== */
.testimonials-section {
    background: #ffffff;
    position: relative;
}

.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 15px;
}

.testimonials-section .section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 12px;
}

.testimonials-section .section-header p {
    color: var(--text-gray);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Google Rating Badge */
.google-rating-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 45px;
    padding: 20px 35px;
    background: #fafafe;
    border: 1px solid #eee;
    border-radius: 16px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.google-logo {
    height: 28px;
    width: auto;
}

.rating-summary {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-purple);
    line-height: 1;
}

.rating-stars {
    display: flex;
    gap: 2px;
    font-size: 0.95rem;
    color: #fbbc04;
}

.rating-count {
    font-size: 0.78rem;
    color: var(--text-gray);
    font-weight: 500;
    white-space: nowrap;
}

/* Testimonial Slider */
.testimonials-slider {
    padding: 20px 0 60px;
    /* More bottom padding for dots */
    margin-bottom: 30px;
    overflow: hidden;
    /* Hide overflow from active scale effects */
}

.testimonials-slider .swiper-slide {
    height: auto;
    display: flex;
    padding: 10px;
    /* Add little padding for shadows */
}

.testimonial-card {
    background: white;
    border: 1px solid #f0eef5;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 4rem;
    color: rgba(106, 13, 173, 0.05);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(106, 13, 173, 0.1);
    border-color: rgba(239, 105, 54, 0.2);
}

/* Review Header */
.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reviewer-avatar span {
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.reviewer-info {
    flex: 1;
    min-width: 0;
}

.reviewer-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 3px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-stars {
    display: flex;
    gap: 1px;
    font-size: 0.7rem;
    color: #fbbc04;
}

.review-time {
    font-size: 0.72rem;
    color: #999;
    font-weight: 400;
}

.review-google-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover .review-google-icon {
    opacity: 1;
}

/* Review Text */
.review-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
    font-style: italic;
}

/* View All Reviews CTA */
.reviews-cta {
    text-align: center;
}

.btn-reviews {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: white;
    border: 2px solid #e8e8ef;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-reviews:hover {
    border-color: var(--primary-purple);
    color: var(--primary-purple);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(106, 13, 173, 0.12);
}

.btn-reviews i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-reviews:hover i {
    transform: translateX(4px);
}

/* Pagination Styling */
.testimonials-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.testimonials-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.testimonials-pagination .swiper-pagination-bullet-active {
    background: var(--primary-purple);
    width: 25px;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .testimonials-section .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .testimonials-section .section-header h2 {
        font-size: 1.6rem;
    }

    .google-rating-badge {
        flex-direction: column;
        gap: 12px;
        padding: 16px 20px;
    }

    .rating-summary {
        flex-direction: column;
        gap: 6px;
    }

    .testimonial-card {
        padding: 22px;
    }

    .btn-reviews {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
}