/*
 * ZYNDORA Index Page - Specific Styles
 * Extracted from inline <style> in index.html for better caching & performance
 */

/* =========================================
   Reviews Scroll Carousel
   ========================================= */
.reviews-scroll-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    margin-top: 20px;
    padding: 10px 0;
    touch-action: pan-y;
    cursor: grab;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.reviews-scroll-container::-webkit-scrollbar {
    display: none;
}

.reviews-scroll-container.dragging {
    cursor: grabbing;
}

.reviews-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollLoop 40s linear infinite;
}

.reviews-track.pausing {
    animation-play-state: paused;
}

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

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

.review-item {
    flex: 0 0 380px;
    height: 100%;
}

@media (max-width: 767px) {
    .review-item {
        flex: 0 0 300px;
    }
}

/* =========================================
   HyperOS Style Sidebar Trigger
   ========================================= */
.hyperos-trigger {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 14px;
    height: 70px;
    background: linear-gradient(135deg, rgba(9, 121, 105, 0.7), rgba(0, 212, 255, 0.7));
    background-size: 200% 200%;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    cursor: pointer;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 999;
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: triggerPulse 4s infinite alternate ease-in-out;
}

.hyperos-trigger i {
    font-size: 11px;
    color: #fff;
    margin-left: 2px;
    animation: bounceLeft 2s infinite;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

@keyframes triggerPulse {
    0% {
        background-position: 0% 50%;
        box-shadow: -2px 0 10px rgba(9, 121, 105, 0.3);
        transform: translateY(-50%) translateX(0);
    }

    50% {
        background-position: 100% 50%;
        box-shadow: -4px 0 20px rgba(0, 212, 255, 0.5);
        transform: translateY(-50%) translateX(-2px);
    }

    100% {
        background-position: 0% 50%;
        box-shadow: -2px 0 10px rgba(9, 121, 105, 0.3);
        transform: translateY(-50%) translateX(0);
    }
}

@keyframes bounceLeft {

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

    50% {
        transform: translateX(-3px);
    }
}

.hyperos-trigger:hover {
    width: 22px;
    background: linear-gradient(135deg, rgba(9, 121, 105, 0.9), rgba(0, 212, 255, 0.9));
    box-shadow: -5px 0 25px rgba(9, 121, 105, 0.6);
}

/* =========================================
   HyperOS Sidebar Container
   ========================================= */
.hyperos-bar {
    position: fixed;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    width: 100px;
    height: auto;
    background: transparent;
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) 0.5s;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding-right: 20px;
}

.hyperos-bar.active {
    right: 0;
    transition-delay: 0s;
}

/* =========================================
   HyperOS Circle Buttons
   ========================================= */
.hyperos-circle-btn {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: -4px 4px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    text-decoration: none !important;
    position: relative;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateX(-40px) scale(0.8);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.hyperos-bar.active .hyperos-circle-btn {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
    animation: jumpInHorizontal 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.hyperos-bar.active .hyperos-circle-btn:nth-child(1) {
    animation-delay: 0.1s;
}

.hyperos-bar.active .hyperos-circle-btn:nth-child(2) {
    animation-delay: 0.2s;
}

.hyperos-bar.active .hyperos-circle-btn:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes jumpInHorizontal {
    0% {
        opacity: 0;
        transform: translateX(-100px) scale(0.3);
    }

    70% {
        transform: translateX(15px) scale(1.1);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.hyperos-circle-btn.btn-emerald {
    color: #097969;
    border-color: rgba(9, 121, 105, 0.3);
}

.hyperos-circle-btn.btn-crimson {
    color: #940128;
    border-color: rgba(148, 1, 40, 0.3);
}

.hyperos-circle-btn:hover {
    transform: scale(1.15) rotate(5deg) !important;
}

.hyperos-circle-btn.btn-emerald:hover {
    background: #097969;
    color: #fff;
    box-shadow: -4px 8px 20px rgba(9, 121, 105, 0.4);
}

.hyperos-circle-btn.btn-crimson:hover {
    background: #940128;
    color: #fff;
    box-shadow: -4px 8px 20px rgba(148, 1, 40, 0.4);
}

/* Tooltip text */
.hyperos-circle-btn .tooltip-text {
    position: absolute;
    right: 60px;
    background: rgba(31, 39, 43, 0.95);
    color: #fff;
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hyperos-circle-btn:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* =========================================
   Service / Meeting Section Utilities
   ========================================= */
.center-btn-container {
    text-align: center;
    margin-top: 40px;
}

.custom-down-content {
    border-radius: 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.custom-down-content h4 {
    color: #085D36 !important;
}

.custom-down-content p {
    color: #444 !important;
    font-weight: 500;
}

.meeting-item:hover .custom-down-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: #ffffff !important;
}

.icon-margin {
    margin-bottom: 15px;
}

.service-icon-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.border-green {
    border: 3px solid #097969;
}

.border-pink {
    border: 3px solid #940128;
}

.no-margin-left {
    margin-left: 0;
}

/* =========================================
   Calculator Trigger
   ========================================= */
.calc-trigger-container {
    text-align: right;
    margin-top: -20px;
    margin-bottom: 10px;
    padding-right: 15px;
}

.calc-trigger-btn {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 36px;
    text-align: center;
    border: 2px solid #097969;
    border-radius: 50%;
    color: #097969;
    transition: all 0.3s;
}

/* =========================================
   Footer Social Icons
   ========================================= */
.footer-social-flex {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.social-icon-shadow {
    font-size: 18px;
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff, 2px 4px 6px rgba(0, 0, 0, 0.3);
}

.color-fb {
    color: #1877F2;
}

.color-insta {
    color: #E4405F;
}

.color-x {
    color: #000;
}

.color-in {
    color: #0077B5;
}

.color-yt {
    color: #FF0000;
}

.color-wa {
    color: #25D366;
}

/* =========================================
   Auth Helpers
   ========================================= */
.forgot-link {
    font-size: 13px;
    color: #097969;
    display: block;
    margin-top: 10px;
}

/* =========================================
   Service Icon Utilities
   ========================================= */
.service-main-icon {
    font-size: 32px;
}

.td-none {
    text-decoration: none;
}

.service-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: white;
    transition: all 0.3s ease;
}

.icon-emerald {
    color: #097969;
    border: 2px solid #097969;
}

.icon-crimson {
    color: #940128;
    border: 2px solid #940128;
}

.service-icon-circle i {
    font-size: 24px;
}

.akira-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: white;
    border: 2px solid #940128;
}

.akira-icon {
    font-size: 24px;
    color: #940128;
}

.harvest-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: white;
    border: 2px solid #097969;
}

.harvest-icon {
    font-size: 24px;
    color: #097969;
}

.inherit-link {
    color: inherit;
    text-decoration: none;
}

/* =========================================
   Contact Section
   ========================================= */
.contact-icon {
    font-size: 24px;
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff, 2px 4px 6px rgba(0, 0, 0, 0.3);
    margin-right: 15px;
}

.text-blue {
    color: #007bff;
}

.text-green-wa {
    color: #25d366;
}

.text-red {
    color: #ea4335;
}

.text-blue-map {
    color: #4285f4;
}

.text-green-globe {
    color: #097969;
}

.flex-align-center {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px;
}

.right-info ul li:last-child {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.social-links-container {
    margin-top: 10px;
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.social-icon-lg {
    font-size: 20px;
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff, 2px 4px 6px rgba(0, 0, 0, 0.3);
}

.youtube-nav-item {
    color: #FF0000 !important;
    font-weight: bold;
}

.reset-text {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

.text-white {
    color: #fff;
}

.calc-trigger-icon {
    font-size: 18px;
}

/* =========================================
   Feedback Section
   ========================================= */
.feedback-btn {
    display: inline-block;
    background-color: transparent;
    color: #fff !important;
    border: 2px solid var(--emerald-light);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    transition: all 0.3s;
    text-decoration: none !important;
    cursor: pointer;
}

.feedback-btn:hover {
    background-color: var(--emerald-light);
    border-color: var(--emerald-light);
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(80, 200, 120, 0.4);
}

.feedback-subtext {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 0 !important;
}

.feedback-trigger-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
    .feedback-trigger-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        margin-bottom: 30px;
    }

    section.contact-us #contact {
        margin-bottom: 30px !important;
    }

    section.contact-us {
        padding-bottom: 40px !important;
    }
}

/* =========================================
   Owl Service Carousel Navigation
   ========================================= */
.owl-service-item {
    position: relative;
}

.owl-service-item .owl-nav {
    position: absolute;
    top: -85px;
    right: 0;
    display: flex;
    gap: 10px;
}

.owl-service-item .owl-nav button.owl-prev,
.owl-service-item .owl-nav button.owl-next {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    outline: none !important;
    box-shadow: none !important;
}

.owl-service-item .owl-nav button {
    width: 35px !important;
    height: 35px !important;
    background: var(--grad-pine) !important;
    color: #fff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    transition: all 0.3s !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2) !important;
    line-height: 1 !important;
}

.owl-service-item .owl-nav button:hover {
    background: var(--grad-emerald) !important;
    transform: scale(1.1);
    color: #fff !important;
}

.owl-service-item .owl-nav button i {
    margin: 0 !important;
    padding: 0 !important;
    display: inline-block;
}

.owl-service-item .item {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 10px;
}

.owl-service-item .meeting-item {
    margin-bottom: 0 !important;
    width: 100% !important;
}

@media (max-width: 991px) {
    .owl-service-item .owl-nav {
        top: -65px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
}

/* =========================================
   Top Services Carousel — Uniform Height
   ========================================= */
.top-services-carousel .owl-stage {
    display: flex !important;
}

.top-services-carousel .owl-item {
    display: flex !important;
}

.top-services-carousel .item {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    width: 100% !important;
    min-height: 200px;
    padding: 20px !important;
    justify-content: center;
}

.services .item h4 {
    margin-top: 15px !important;
    margin-bottom: 10px !important;
}

@media (max-width: 767px) {
    .main-banner .caption p {
        max-width: 100% !important;
    }
}

/* =========================================
   Forum Float Link
   ========================================= */
.forum-float-link {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 2000001;
    width: 42px;
    height: 42px;
    background: rgba(8, 93, 54, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1.5px solid rgba(80, 200, 120, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.forum-float-link:hover {
    transform: scale(1.15) rotate(10deg);
    border-color: #50C878;
    box-shadow: 0 6px 20px rgba(80, 200, 120, 0.4);
    background: rgba(8, 93, 54, 0.95);
}

.forum-float-link img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%) hue-rotate(130deg) brightness(95%) contrast(101%);
}

.forum-float-link::after {
    content: 'Resddit Forum';
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(8, 93, 54, 0.9);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    border: 1px solid rgba(80, 200, 120, 0.3);
}

.forum-float-link:hover::after {
    opacity: 1;
    visibility: visible;
    right: 55px;
}

@media (max-width: 1150px) {
    .forum-float-link {
        top: 80px;
    }
}

/* =========================================
   Clay Buttons
   ========================================= */
.clay-btn-container {
    display: flex;
    justify-content: center;
    gap: clamp(8px, 2vw, 20px);
    margin-top: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 100;
}

.clay-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    color: #085D36 !important;
    padding: clamp(8px, 1vw, 12px) clamp(16px, 2vw, 24px);
    font-size: clamp(12px, 1.2vw, 15px);
    border-radius: 18px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 101;
    cursor: pointer !important;
    -webkit-user-select: none;
    user-select: none;
    transform: translateZ(0);
}

.clay-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px) translateZ(0);
    color: #097969 !important;
}

.clay-btn:active {
    transform: translateY(1px) translateZ(0);
}

/* =========================================
   Chatbot iframe
   ========================================= */
#chatbot-iframe {
    position: fixed;
    bottom: 0;
    left: 0;
    width: clamp(200px, 30vw, 350px);
    height: clamp(230px, 30vh, 350px);
    border: none;
    z-index: 2147483647;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    opacity: 1;
}

#chatbot-iframe.expanded {
    top: 50% !important;
    left: 50% !important;
    bottom: auto !important;
    right: auto !important;
    transform: translate(-50%, -50%) !important;
    width: min(600px, 90vw) !important;
    height: min(700px, 85vh) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border-radius: 24px;
    overflow: hidden;
    z-index: 2147483647;
}

@media (max-width: 768px) {
    #chatbot-iframe:not(.expanded) {
        width: 150px !important;
        height: 150px !important;
    }

    #chatbot-iframe.expanded {
        width: 90vw;
        height: 80vh;
    }
}

@media (max-width: 576px) {
    #chatbot-iframe:not(.expanded) {
        width: 120px !important;
        height: 120px !important;
    }
}