/* PARAMPITA AGENCY - Custom Stylesheet */

/* Hide default browser scrollbars for horizontal swipe lists */
.scrollbar-none::-webkit-scrollbar {
    display: none;
}
.scrollbar-none {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

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

:root {
    --primary: #16A34A;
    --deep-green: #14532D;
    --bright-green: #22C55E;
    --lime-accent: #84CC16;
    --light-bg: #F7FFF8;
    --soft-surface: #ECFDF3;
    --white-surface: #FFFFFF;
    --main-text: #0F172A;
    --muted-text: #64748B;
    --border-color: #DDE8E0;
}

body {
    font-family: 'Inter', 'Manrope', sans-serif;
    background-color: var(--light-bg);
    color: var(--main-text);
    overflow-x: hidden;
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(221, 232, 224, 0.5);
    box-shadow: 0 8px 32px 0 rgba(22, 163, 74, 0.03);
}

.glass-card-dark {
    background: rgba(20, 83, 45, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

/* Custom Gradients */
.gradient-btn {
    background: linear-gradient(135deg, #16A34A 0%, #15803D 100%);
    transition: all 0.3s ease;
}
.gradient-btn:hover {
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.4);
    transform: translateY(-1px);
}

.gradient-text {
    background: linear-gradient(135deg, #14532D 0%, #16A34A 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glowing Effects */
.green-glow {
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.15);
}

.card-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-lift:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(22, 163, 74, 0.08);
}

/* Background Animated Blobs */
.blob-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.blob {
    position: absolute;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.08) 0%, rgba(247, 255, 248, 0) 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: float 20s infinite alternate ease-in-out;
}

.blob-1 {
    width: 600px;
    height: 600px;
    top: -100px;
    right: -100px;
    animation-duration: 25s;
}

.blob-2 {
    width: 500px;
    height: 500px;
    bottom: 10%;
    left: -100px;
    animation-duration: 18s;
    background: radial-gradient(circle, rgba(132, 204, 22, 0.06) 0%, rgba(247, 255, 248, 0) 70%);
}

.blob-3 {
    width: 400px;
    height: 400px;
    top: 40%;
    right: 15%;
    animation-duration: 22s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(40px, -60px) scale(1.1);
    }
    100% {
        transform: translate(-20px, 30px) scale(0.9);
    }
}

/* Floating Particles (bolts, gears etc.) */
.floating-particle {
    position: absolute;
    opacity: 0.05;
    pointer-events: none;
    animation: particle-spin 30s infinite linear;
}

@keyframes particle-spin {
    from { transform: rotate(0deg) translateY(0); }
    to { transform: rotate(360deg) translateY(0); }
}

/* Branded Loader */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-ring {
    border: 4px solid #ECFDF3;
    border-top: 4px solid #16A34A;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 1.2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mouse Follow Glow - Desktop */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.05) 0%, rgba(34, 197, 94, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9998;
    mix-blend-mode: screen;
    display: none; /* Enabled on desktop via JS */
}

@media (min-width: 1024px) {
    .cursor-glow {
        display: block;
    }
}

/* Accordion Active Styling */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-active .accordion-content {
    max-height: 200px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--light-bg);
}
::-webkit-scrollbar-thumb {
    background: #C2D3C7;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #16A34A;
}

/* Reduced Motion Compatibility */
@media (prefers-reduced-motion: reduce) {
    .blob, .floating-particle, .loader-ring, .card-lift {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
    .card-lift:hover {
        transform: none !important;
    }
}

/* Swiper Green Brand Colors Overrides */
:root {
    --swiper-theme-color: #16A34A;
    --swiper-navigation-size: 20px;
}
.swiper-pagination-bullet-active {
    background: #16A34A !important;
    width: 20px !important;
    border-radius: 4px !important;
    transition: all 0.3s ease;
}
