/* --- SOCIAL & TRUST SECTION BASE --- */
.social-trust-section {
    padding: 60px 20px;
    background: #001019;
    /* Photokrop Deep Background */
    font-family: 'Inter', sans-serif;
}

.section-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* --- COMPACT SOCIAL SCROLLER (Mobile Optimized) --- */
.social-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    /* Enable horizontal swipe on mobile */
    padding: 10px 5px 30px 5px;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
    -ms-overflow-style: none;
    /* Hide scrollbar IE */
}

/* Hide scrollbar for Chrome/Safari */
.social-grid::-webkit-scrollbar {
    display: none;
}

/* Premium Capsule Card */
.social-card {
    flex: 0 0 auto;
    /* Stop shrinking on mobile */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(124, 255, 0, 0.1);
    padding: 10px 18px 10px 10px;
    border-radius: 100px;
    /* Capsule Shape */
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.social-card:hover {
    background: rgba(124, 255, 0, 0.08);
    border-color: var(--brand-green);
    transform: translateY(-5px);
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #001a29;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--brand-green);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.social-card:hover .social-icon {
    background: var(--brand-green);
    color: #000;
}

.social-info h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
    white-space: nowrap;
}

/* Action Buttons (Visible on hover/Mobile optimized) */
.social-actions {
    display: flex;
    gap: 8px;
    margin-left: 5px;
}

.action-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    cursor: pointer;
    transition: 0.2s;
    padding: 5px;
}

.action-btn:hover {
    color: var(--brand-green);
    transform: scale(1.2);
}

/* --- GOOGLE TRUST BOX --- */
.google-trust-box {
    margin-top: 20px;
    background: linear-gradient(145deg, #001a29, #001019);
    border: 1px solid rgba(124, 255, 0, 0.2);
    border-radius: 30px;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Animated Border Glow */
.google-trust-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, transparent, transparent, var(--brand-green));
    animation: rotateGlow 6s linear infinite;
    opacity: 0.1;
    z-index: 0;
}

@keyframes rotateGlow {
    100% {
        transform: rotate(360deg);
    }
}

.google-header {
    position: relative;
    z-index: 1;
}

.google-multi-color {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #4285F4, #EA4335, #FBBC05, #34A853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.google-header span {
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.7rem;
    color: var(--brand-green);
    font-weight: 800;
}

.google-content {
    position: relative;
    z-index: 1;
    margin: 20px 0;
}

.google-content h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 10px;
}

.star-rating {
    color: #FBBC05;
    font-size: 1.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.star-rating span {
    color: #fff;
    font-size: 0.9rem;
    margin-left: 10px;
    opacity: 0.8;
}

.google-btns {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

/* Styled Buttons */
.google-btn {
    padding: 16px;
    border-radius: 15px;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    transition: 0.4s;
}

.review-btn {
    background: var(--brand-green);
    color: #000;
    box-shadow: 0 10px 20px rgba(124, 255, 0, 0.2);
}

.business-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(124, 255, 0, 0.3);
    color: #fff;
}

.google-btn:hover {
    transform: scale(1.03);
    background: #fff;
    color: #000;
}

/* --- RESPONSIVE DESKTOP FIX --- */
@media (min-width: 992px) {
    .social-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        /* 5 in a row */
        overflow: visible;
        padding-bottom: 50px;
    }

    .google-btns {
        flex-direction: row;
        justify-content: center;
    }

    .google-btn {
        min-width: 250px;
    }
}

/*TESTIMONIALS SECTIONS */

/* ===============================
   TESTIMONIAL SECTION
================================ */

.pk-testi-section {
    padding: 50px 16px;
    /* 🔽 GAP KAM KIYA */
    background: #001019;
    font-family: 'Inter', sans-serif;
}

.pk-container {
    max-width: 900px;
    margin: 0 auto;
}

/* HEADER */
.pk-testi-header {
    text-align: center;
    margin-bottom: 30px;
    /* 🔽 tight */
}

.pk-tag {
    color: var(--brand-green);
    font-weight: 800;
    letter-spacing: 3px;
    font-size: 0.7rem;
}

.pk-title {
    color: #fff;
    font-size: 2rem;
    margin-top: 6px;
}

.pk-highlight {
    color: var(--brand-green);
}

/* CARD */
.pk-glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(124, 255, 0, 0.15);
    padding: 45px 32px;
    border-radius: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.pk-rating {
    color: var(--brand-green);
    font-weight: 700;
    margin-bottom: 18px;
}

.pk-text {
    color: #ccc;
    font-size: 1.15rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 28px;
}

/* USER */
.pk-user-box img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid var(--brand-green);
}

.pk-user-info h4 {
    color: #fff;
    font-size: 1rem;
    margin: 8px 0 2px;
}

.pk-user-info span {
    color: #777;
    font-size: 0.85rem;
}

/* CONTROLS */
.pk-controls-hub {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 35px;
    position: relative;
    z-index: 5;
}

.pk-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: 0.3s ease;
    backdrop-filter: blur(6px);
}

.pk-arrow:hover {
    background: var(--brand-green);
    color: #000;
    border-color: var(--brand-green);
    transform: scale(1.08);
}

.pk-play-btn {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: none;
    background: var(--brand-green);
    color: #000;
    font-size: 1.35rem;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(124, 255, 0, 0.35);
    transition: 0.35s ease;
}

.pk-play-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 18px 45px rgba(124, 255, 0, 0.55);
}

/* MOBILE */
@media (max-width: 600px) {
    .pk-testi-section {
        padding: 35px 14px;
        /* 🔽 aur compact */
    }

    .pk-glass-card {
        padding: 28px 20px;
        border-radius: 22px;
    }

    .pk-text {
        font-size: 1rem;
    }

    .pk-arrow {
        width: 42px;
        height: 42px;
    }

    .pk-play-btn {
        width: 54px;
        height: 54px;
        font-size: 1.2rem;
    }
}