@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

body { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    overflow-x: hidden;
    width: 100%;
}

.glass-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Testimonial Carousel Styles (Visible Dots) */
.testimonial-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-slide {
    min-width: 100%;
    padding: 2rem 1rem 4rem 1rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #e5e7eb;
    transition: all 0.3s ease;
    margin: 0 4px;
}
.slider-dot.active {
    background-color: #4285F4;
    width: 24px;
    border-radius: 100px;
}

/* Portfolio Carousel Styles (Invisible controls) */
.portfolio-slider {
    display: flex;
    transition: transform 0.6s ease-in-out;
}
.portfolio-slide {
    min-width: 100%;
    padding: 1rem;
}

/* FAQ Accordion Transition */
.faq-answer {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
}
.faq-answer.open {
    max-height: 500px;
    opacity: 1;
}

/* Universal GMB Card Base Styles */
.gmb-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 0;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    flex: 1;
    transition: all 0.2s;
}

.max-w-7xl, .max-w-5xl, .max-w-4xl, .max-w-3xl {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}
@media (min-width: 1024px) {
    .max-w-7xl, .max-w-5xl, .max-w-4xl, .max-w-3xl {
        padding-left: 2.5rem !important;
        padding-right: 2.5rem !important;
    }
}

.gmb-card-universal {
    width: calc(100vw - 3rem) !important;
    max-width: 360px !important;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 640px) {
    .gmb-card-universal {
        width: 100% !important;
    }
}

/* Custom Scrollbar for Modal */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f1f1; 
    border-radius: 10px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #cbd5e1; 
    border-radius: 10px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #94a3b8; 
}