/* Custom styles for Pingo Landing Page */

:root {
    --brand-orange: #FF6B35;
    --brand-dark: #1A1A1A;
    --brand-gray: #9ca3af;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-osx-font-smoothing: grayscale;
    color: var(--brand-dark);
    font-family: "Manrope", sans-serif !important;
}

/* Zero Glow Reset */
*:focus, *:active {
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
}

/* Phone Mockup Customization - Scaled Down */
.phone-mockup {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-color: white !important;
    box-shadow: none !important;
}

.phone-mockup:hover {
    transform: translateY(-8px) scale(1.01);
}

/* Carousel Styles */
.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
    transform: scale(1);
    padding: 4px; /* Minimal padding */
    box-sizing: border-box;
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 10;
}

/* Dot Styles Refined to Pill */
.dot {
    width: 5px;
    height: 5px;
    border-radius: 9999px;
    background-color: #e5e7eb;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: none !important;
}

.dot.active {
    width: 20px;
    background-color: var(--brand-orange);
}

/* Navigation Arrow Hover */
button#prevBtn:hover svg, button#nextBtn:hover svg {
    color: var(--brand-dark);
    transform: scale(1.1);
    transition: all 0.2s ease;
}

/* CTA Button - Zero Shadow */
.bg-brand-orange {
    background-color: var(--brand-orange);
    box-shadow: none !important;
}

.bg-brand-orange:hover {
    background-color: #ff4a05;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Mobile Sticky Bottom Section Transition */
@media (max-width: 1023px) {
    .fixed.bottom-0 {
        box-shadow: 0 -10px 30px rgba(0,0,0,0.05); /* Very subtle shadow only for mobile sticky bar */
    }
}
