/* ==========================================================================
   1. GLOBALNE USTAWIENIA STRONY I SCROLLA
   ========================================================================== */
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    overflow-y: auto;
}

.page-bg-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
}

/* Zmienne kolorystyczne */
:root {
    --color-rose-pink: #FF6B8B;
    --color-soft-purple: #8B5CF6;
    --color-warm-coral: #FF5E24;
    --color-navy: #110B55;
}

.text-rose-pink { color: var(--color-rose-pink) !important; }
.text-soft-purple { color: var(--color-soft-purple) !important; }
.text-warm-coral { color: var(--color-warm-coral) !important; }

/* ==========================================================================
   2. KARTA SZKLANA (GLASS-CARD) Z GRADIENTEM
   ========================================================================== */
.glass-card {
    position: relative;
    background: rgba(255, 248, 250, 0.75) !important;
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border-radius: 2rem !important;
    border: 2px solid rgba(255, 182, 193, 0.5) !important;
    box-shadow: 0 8px 32px 0 rgba(255, 105, 180, 0.06);
    transition: all 0.4s ease;
    z-index: 1;
}

.glass-card::before {
    content: "";
    position: absolute;
    inset: -2px; 
    border-radius: inherit !important;
    padding: 2px; 
    background: linear-gradient(135deg, #FF5E7E, #FF9E79, #FFD166, #06D6A0, #118AB2);
    -webkit-mask: 
       linear-gradient(#fff 0 0) content-box, 
       linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;  
            mask-composite: exclude;
    opacity: 0; 
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px 0 rgba(255, 94, 126, 0.2);
    border-color: transparent !important; 
}

.glass-card:hover::before {
    opacity: 1; 
}

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */
.hero-section {
    width: 100%;
    min-height: calc(100vh - 198px);
    display: flex;
    align-items: center; 
    justify-content: center;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    padding-top: 20px !important;   
    padding-bottom: 70px !important;
}

.hero-section > .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-section h1, 
.hero-section h2,
.hero-section h3, 
.hero-section h4,
.hero-center-content h1 {
    font-family: 'Comfortaa', cursive;
    color: #110B55 !important;
}

.hero-center-logo {
    max-width: 380px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(255, 105, 180, 0.15));
    margin-bottom: 0.25rem !important;
}

.hero-center-content {
    margin-top: -25px !important;
}

.hero-center-content p,
.hero-subtitle {
    margin-top: 0 !important;
    margin-bottom: 0.75rem !important;
}

.google-reviews-box {
    padding: 1.25rem !important;
}

.feature-badge {
    border-radius: 1.5rem !important;
    padding: 1rem 1.25rem;
}

/* ==========================================================================
   4. KOLORY IKONEK I EMOTEK Z LOGO
   ========================================================================== */
.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem !important;
    color: #ffffff !important;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-icon-wrapper i {
    color: #ffffff !important;
}

.bg-orange-gradient {
    background: linear-gradient(135deg, #FF7E5F, #FEB47B) !important;
    box-shadow: 0 4px 12px rgba(255, 126, 95, 0.4) !important;
}

.bg-cyan-gradient {
    background: linear-gradient(135deg, #00C6FF, #0072FF) !important;
    box-shadow: 0 4px 12px rgba(0, 198, 255, 0.4) !important;
}

.bg-green-gradient {
    background: linear-gradient(135deg, #11998E, #38EF7D) !important;
    box-shadow: 0 4px 12px rgba(56, 239, 125, 0.4) !important;
}

.bg-purple-gradient {
    background: linear-gradient(135deg, #8B5CF6, #B473E5) !important;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4) !important;
}

.bg-magenta-gradient {
    background: linear-gradient(135deg, #FF5E7E, #FF758C) !important;
    box-shadow: 0 4px 12px rgba(255, 94, 126, 0.4) !important;
}

.bg-yellow-gradient {
    background: linear-gradient(135deg, #FFB703, #FD9E02) !important;
    box-shadow: 0 4px 12px rgba(255, 183, 3, 0.4) !important;
}

/* ==========================================================================
   5. PRZYCISKI CTA
   ========================================================================== */
.btn-cta-rainbow,
.btn-cta-glass,
.btn-cta-main,
.btn-primary {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 240, 245, 0.85)) !important;
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border: 2px solid rgba(255, 94, 126, 0.6) !important;
    color: #110B55 !important;
    border-radius: 50rem !important;
    font-weight: 700;
    letter-spacing: 0.4px;
    box-shadow: 0 8px 20px -4px rgba(255, 94, 126, 0.2), 
                0 4px 12px rgba(17, 11, 85, 0.04);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
    text-decoration: none !important;
}

.btn-cta-rainbow:hover,
.btn-cta-glass:hover,
.btn-cta-main:hover,
.btn-primary:hover {
    transform: translateY(-4px);
    color: #110B55 !important;
    border-color: #FF5E7E !important;
    box-shadow: 0 14px 28px -4px rgba(255, 94, 126, 0.35), 
                0 6px 16px rgba(17, 11, 85, 0.08) !important;
}

.btn-cta-rainbow i,
.btn-cta-glass i,
.btn-cta-main i,
.btn-primary i {
    transition: transform 0.3s ease, color 0.3s ease;
    color: #FF5E7E;
}

.btn-cta-rainbow:hover i,
.btn-cta-glass:hover i,
.btn-cta-main:hover i,
.btn-primary:hover i {
    transform: translateX(4px);
    color: #FF5E7E;
}

.btn-outline-glass {
    position: relative;
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 94, 126, 0.4) !important;
    color: #110B55 !important;
    border-radius: 50rem !important;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(255, 94, 126, 0.08);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}

.btn-outline-glass:hover {
    background: rgba(255, 240, 245, 0.95) !important;
    border-color: #FF5E7E !important;
    color: #FF5E7E !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 94, 126, 0.2) !important;
}

.btn-outline-glass i {
    transition: transform 0.3s ease, color 0.3s ease;
    color: #FF5E7E;
}

.btn-outline-glass:hover i {
    transform: translateX(3px);
    color: #FF5E7E;
}

/* ==========================================================================
   6. ANIMACJE ON-SCROLL
   ========================================================================== */
.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-active {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.25s; }
.delay-3 { transition-delay: 0.4s; }

/* ==========================================================================
   7. SLIDER OPINII GOOGLE
   ========================================================================== */
.google-reviews-box {
    width: 100% !important;
    max-width: 320px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    box-sizing: border-box !important;
}

.reviews-slider-wrapper {
    position: relative !important;
    width: 100% !important;
    min-height: 110px !important;
    margin: 0.5rem 0 !important;
    overflow: hidden !important;
}

.review-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out !important;
}

.review-slide.active {
    position: relative !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.review-text {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    color: #6c757d !important;
    font-style: italic !important;
    margin-bottom: 0.4rem !important;
}

.review-author {
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    color: #110B55 !important;
    display: block !important;
}