:root {
    --chillpig-pink: #FF6B9D;
    --chillpig-purple: #8B5FBF;
    --chillpig-blue: #4A90E2;
    --chillpig-green: #7ED321;
    --chillpig-orange: #F5A623;
    --chillpig-dark: #2C3E50;
    --chillpig-light: #F8F9FA;
    --chillpig-gradient: linear-gradient(135deg, var(--chillpig-pink) 0%, var(--chillpig-purple) 100%);
}

.chillpig-logo {
    font-size: 2.5rem;
    font-weight: bold;
    text-decoration: none;
    color: var(--chillpig-pink);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.navbar .chillpig-logo {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.navbar .pig-emoji {
    font-size: 1.8rem;
    animation: wiggle 2s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.btn-primary {
    background: var(--chillpig-gradient);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 157, 0.3);
}

.btn-outline-primary {
    color: var(--chillpig-pink);
    border-color: var(--chillpig-pink);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--chillpig-pink);
    border-color: var(--chillpig-pink);
    transform: translateY(-2px);
}

.footer {
    background: var(--chillpig-dark);
    color: white;
    padding: 50px 0 30px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--chillpig-pink);
}

.footer h5 {
    color: white;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer .list-unstyled {
    margin-bottom: 0;
}

.footer .list-unstyled li {
    margin-bottom: 0.5rem;
}

.footer p {
    color: #ccc;
}

.footer .text-muted {
    color: #999 !important;
}

/* Marketing Page Styles */
.hero-section {
    background: var(--chillpig-gradient);
    color: white;
    padding: 80px 0 50px 0;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    display: flex;
    align-items: center;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(0,0,0,0.1) 0%, transparent 100%);
    pointer-events: none;
}

.cta-section-bottom {
    min-height: auto;
    margin-top: 0;
}

.cta-section-bottom::after {
    display: none;
}

/* Reduce margin when user is logged in (app header) */
.main-content + .hero-section {
    margin-top: 20px;
}

/* Particle Canvas */
.particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Hero entrance animations */
.hero-title {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-subtitle {
    animation: fadeInUp 0.8s ease-out 0.1s forwards;
    opacity: 0;
}

.hero-buttons {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-stats {
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
    opacity: 0;
}

.hero-video-cta {
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.hero-mockup {
    animation: fadeInRight 1s ease-out 0.3s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .hero-title,
    .hero-subtitle,
    .hero-buttons,
    .hero-stats,
    .hero-video-cta,
    .hero-mockup {
        animation: none;
        opacity: 1;
    }
    
    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

.hero-mockup {
    position: relative;
    z-index: 2;
}

.hero-mockup i {
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.4);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.pig-emoji {
    font-size: 3rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Hero Buttons Container */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: center;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-stats .stat-item {
    text-align: center;
    min-width: 80px;
}

.hero-stats .stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.25rem;
}

.hero-stats .stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Hero Video CTA */
.hero-video-cta {
    text-align: center;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
        max-width: none;
        align-items: center;
        margin-left: 0;
        margin-right: 0;
        justify-content: flex-start;
    }
    
    .hero-btn {
        width: auto;
    }
    
    .hero-stats {
        justify-content: flex-start;
        gap: 3rem;
    }
    
    .hero-stats .stat-number {
        font-size: 2.5rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.85rem;
    }
    
    .hero-video-cta {
        text-align: left;
    }
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: nowrap;
    margin-bottom: 2rem;
    justify-content: center;
    align-items: center;
}

/* Enhanced CTA button animations */
.hero-buttons .btn-chillpig,
.cta-buttons .btn-chillpig {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(0,0,0,0.2), 0 2px 8px rgba(255, 107, 157, 0.3);
    }
    50% {
        box-shadow: 0 6px 20px rgba(0,0,0,0.2), 0 2px 8px rgba(255, 107, 157, 0.5), 0 0 20px rgba(255, 107, 157, 0.3);
    }
}

.hero-buttons .btn-outline-chillpig,
.cta-buttons .btn-outline-chillpig {
    animation: subtle-glow 3s ease-in-out infinite;
}

@keyframes subtle-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 0 15px rgba(255, 255, 255, 0.1);
    }
}

.btn-chillpig {
    background: white;
    color: var(--chillpig-pink);
    border: 2px solid transparent;
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2), 0 2px 8px rgba(255, 107, 157, 0.3);
    text-shadow: none;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-sizing: border-box;
    min-height: 54px;
}

.btn-chillpig::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.btn-chillpig:hover::before {
    left: 100%;
}

.btn-chillpig:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25), 0 4px 15px rgba(255, 107, 157, 0.4);
    color: #d91a72;
    background: white;
}

.btn-chillpig:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2), 0 2px 8px rgba(255, 107, 157, 0.3);
}

.btn-outline-chillpig {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-align: center;
    box-sizing: border-box;
    min-height: 54px;
}

.btn-outline-chillpig::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-outline-chillpig:hover::before {
    left: 100%;
}

.btn-outline-chillpig:hover {
    background: white;
    color: #d91a72;
    transform: translateY(-3px);
    text-shadow: none;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3), 0 4px 15px rgba(0, 0, 0, 0.1);
    border-color: white;
}

.btn-outline-chillpig:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2), 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* CTA section button on gradient background */
.hero-section .btn-outline-chillpig {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-section .btn-outline-chillpig:hover {
    background: white;
    color: #d91a72;
    text-shadow: none;
    border-color: white;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4), 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.hero-section .btn-chillpig {
    background: white;
    color: var(--chillpig-pink);
    border: 2px solid transparent;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25), 0 2px 8px rgba(255, 107, 157, 0.4);
}

/* Ensure all hero buttons have consistent sizing */
.hero-buttons .btn-chillpig,
.hero-buttons .btn-outline-chillpig {
    padding: 13px 28px;
    min-height: 54px;
    box-sizing: border-box;
    border-width: 2px;
    font-size: 1rem;
}

/* Video CTA link - more subtle styling */
.hero-video-cta .video-cta-link {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-video-cta .video-cta-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-section .btn-chillpig:hover {
    background: white;
    color: #d91a72;
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 4px 15px rgba(255, 107, 157, 0.5);
    transform: translateY(-3px);
}

/* Modern Video CTA Link */
.video-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 13px 30px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    box-sizing: border-box;
    min-height: 54px;
}

.video-cta-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.video-cta-link:hover::before {
    left: 100%;
}

.video-cta-link:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), 0 4px 15px rgba(255, 255, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.video-cta-link:active {
    transform: translateY(0);
}

.video-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.video-cta-icon i {
    font-size: 1.2rem;
    margin-left: 3px; /* Slight offset for play icon centering */
    transition: transform 0.3s ease;
}

.video-cta-link:hover .video-cta-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.video-cta-link:hover .video-cta-icon i {
    transform: scale(1.2);
}

.video-cta-text {
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.video-cta-link:hover .video-cta-text {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.video-cta-arrow {
    display: flex;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.8;
}

.video-cta-link:hover .video-cta-arrow {
    transform: translateX(5px);
    opacity: 1;
}

.video-cta-arrow i {
    font-size: 0.9rem;
}

/* Pulse animation for the play icon */
@keyframes pulse-play {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3), 0 0 0 8px rgba(255, 255, 255, 0.1);
    }
}

.video-cta-icon {
    animation: pulse-play 2s ease-in-out infinite;
}

.video-cta-link:hover .video-cta-icon {
    animation: none;
}

@media (max-width: 767px) {
    .video-cta-link {
        padding: 10px 20px;
        font-size: 0.9rem;
        gap: 0.5rem;
        min-height: 44px;
    }

    .video-cta-icon {
        width: 26px;
        height: 26px;
        background: rgba(255, 255, 255, 0.25);
        animation: none;
    }

    .video-cta-icon i {
        font-size: 0.7rem;
        margin-left: 2px;
    }

    .video-cta-arrow {
        display: none;
    }
    
    /* Mobile hero buttons - uniform sizing */
    .hero-buttons .hero-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
        min-height: 48px;
        box-sizing: border-box;
        border-width: 2px;
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .hero-buttons .btn-chillpig,
    .hero-buttons .btn-outline-chillpig {
        padding: 12px 20px;
        font-size: 0.95rem;
        min-height: 48px;
    }
    
    /* Disable animations on mobile */
    .hero-buttons .btn-chillpig,
    .hero-buttons .btn-outline-chillpig,
    .hero-buttons .video-cta-link {
        animation: none;
    }
}

.features-section {
    padding: 60px 0;
    background: var(--chillpig-light);
    scroll-margin-top: 100px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--chillpig-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.15);
    border-color: rgba(255, 107, 157, 0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--chillpig-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--chillpig-dark);
}

.feature-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.how-it-works {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    scroll-margin-top: 100px;
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.2);
    border-color: rgba(255, 107, 157, 0.3);
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--chillpig-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

.step-card h3 {
    color: var(--chillpig-dark);
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.testimonials {
    padding: 60px 0;
    background: var(--chillpig-light);
    scroll-margin-top: 100px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: rgba(255, 107, 157, 0.15);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 157, 0.12);
}

.testimonial-text {
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #555;
    flex-grow: 1;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: bold;
    color: var(--chillpig-pink);
    margin-top: auto;
    font-size: 0.9rem;
    font-style: normal;
}

.stats-section {
    background: var(--chillpig-gradient);
    color: white;
    padding: 50px 0;
}

.stat-item {
    text-align: center;
}

.stats-section .stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.stats-section .stat-label {
    font-size: 1.1rem;
    opacity: 1;
    color: white !important;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}


@media (max-width: 992px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-buttons .btn-chillpig,
    .cta-buttons .btn-outline-chillpig {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 50px 0 40px 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons {
        align-items: center;
        max-width: 260px;
        margin: 0 auto 1.5rem auto;
        gap: 0.75rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.65rem;
    }
    
    .hero-video-cta {
        margin-top: 0.5rem;
    }
    
    .hero-video-cta .video-cta-link {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-height: 44px;
    }
    
    .hero-video-cta .video-cta-icon {
        width: 26px;
        height: 26px;
    }
    
    .hero-video-cta .video-cta-icon i {
        font-size: 0.7rem;
    }

    /* Disable animations on mobile for better performance */
    .cta-buttons .btn-chillpig,
    .cta-buttons .btn-outline-chillpig,
    .hero-buttons .btn-chillpig,
    .hero-buttons .btn-outline-chillpig {
        animation: none;
    }
}

/* Auth Page Styles */
.auth-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    overflow: hidden;
    min-height: 600px;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.auth-container .row.h-100 {
    min-height: 600px;
}

.auth-container .col-lg-6 {
    display: flex;
    flex-direction: column;
}

.auth-sidebar {
    background: var(--chillpig-gradient);
    color: white;
    padding: 4rem 3rem;
    height: 100%;
    min-height: 100%;
    display: -webkit-box; /* Safari, iOS, Android */
    display: -moz-box; /* Firefox */
    display: -ms-flexbox; /* IE 10 */
    display: -webkit-flex; /* Chrome, Safari 6.1+ */
    display: flex; /* Modern browsers */
    -webkit-box-orient: vertical; /* Safari, iOS, Android */
    -webkit-box-direction: normal; /* Safari, iOS, Android */
    -moz-box-orient: vertical; /* Firefox */
    -moz-box-direction: normal; /* Firefox */
    -ms-flex-direction: column; /* IE 10 */
    -webkit-flex-direction: column; /* Chrome, Safari 6.1+ */
    flex-direction: column; /* Modern browsers */
    -webkit-box-pack: start; /* Safari, iOS, Android */
    -moz-box-pack: start; /* Firefox */
    -ms-flex-pack: start; /* IE 10 */
    -webkit-justify-content: flex-start; /* Chrome, Safari 6.1+ */
    justify-content: flex-start; /* Modern browsers */
    -webkit-box-align: center; /* Safari, iOS, Android */
    -moz-box-align: center; /* Firefox */
    -ms-flex-align: center; /* IE 10 */
    -webkit-align-items: center; /* Chrome, Safari 6.1+ */
    align-items: center; /* Modern browsers */
    text-align: center;
}

.logo-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.logo-container .chillpig-logo {
    color: white !important;
}

.logo-container h2 {
    margin-bottom: 1rem !important;
}

.auth-content {
    padding: 4rem 3.5rem;
    height: 100%;
    min-height: 100%;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    -webkit-appearance: none; /* Remove default styling on iOS */
    -moz-appearance: none; /* Remove default styling on Firefox */
    appearance: none; /* Remove default styling on modern browsers */
}

.form-control:focus {
    border-color: var(--chillpig-pink);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 157, 0.25);
}

.btn-chillpig {
    background: var(--chillpig-gradient);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-chillpig:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
    color: white;
}

.btn-outline-chillpig {
    background: transparent;
    color: var(--chillpig-pink);
    border: 2px solid var(--chillpig-pink);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.btn-outline-chillpig:hover {
    background: var(--chillpig-pink);
    color: white;
    transform: translateY(-2px);
}

.alert {
    border-radius: 10px;
    border: none;
}

.alert-danger {
    background: #fee;
    color: #c33;
}

.form-check-input:checked {
    background-color: var(--chillpig-pink);
    border-color: var(--chillpig-pink);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 157, 0.25);
}

.social-login {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.btn-social {
    padding: 12px 24px;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    background: white;
    color: #666;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    min-width: 120px;
}

.btn-social:hover {
    border-color: var(--chillpig-pink);
    color: var(--chillpig-pink);
    transform: translateY(-2px);
}

.btn-social-primary {
    background: var(--chillpig-gradient);
    color: white;
    border: 2px solid var(--chillpig-pink);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    min-width: 200px;
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-social-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.btn-social-primary:hover::before {
    left: 100%;
}

.btn-social-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
    color: white;
    border-color: var(--chillpig-pink);
}

.btn-social-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

/* Navigation Styles */
.navbar-brand.chillpig-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--chillpig-pink) !important;
    text-decoration: none;
}

.navbar-brand.chillpig-logo:hover {
    color: var(--chillpig-purple) !important;
}

.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--chillpig-pink) !important;
}

/* Active navigation states */
.navbar-nav .nav-link.active {
    color: var(--chillpig-pink) !important;
    font-weight: 600;
    position: relative;
}

/* Ensure active state is visible */
.navbar .navbar-nav .nav-link.active {
    color: var(--chillpig-pink) !important;
    font-weight: 600;
    position: relative;
}

.navbar-nav .nav-link.active::after,
.navbar .navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: var(--chillpig-gradient);
    border-radius: 2px;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        width: 0;
        opacity: 0;
        left: 50%;
    }
    to {
        width: 100%;
        opacity: 1;
        left: 0;
    }
}

/* Alternative active state with background highlight */
.navbar-nav .nav-link.active.background-highlight {
    background: rgba(255, 107, 157, 0.1);
    border-radius: 20px;
    padding: 8px 16px;
    margin: 0 4px;
}

.navbar-nav .nav-link.active.background-highlight::after {
    display: none;
}

/* Mobile navigation active states */
@media (max-width: 991px) {
    .navbar-nav .nav-link.active::after,
    .navbar .navbar-nav .nav-link.active::after {
        display: none;
    }
    
    .navbar-nav .nav-link.active,
    .navbar .navbar-nav .nav-link.active {
        background: rgba(255, 107, 157, 0.1);
        border-radius: 8px;
        margin: 2px 0;
    }
}

.navbar-nav .btn-chillpig {
    background: var(--chillpig-gradient);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.navbar-nav .btn-chillpig:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
    color: white;
}

/* Footer Link Hover Effects */
.footer-link:hover {
    color: var(--chillpig-pink) !important;
}

/* Improved Form Spacing */
.auth-content .form-group {
    margin-bottom: 2rem;
}

.auth-content .form-group:last-of-type {
    margin-bottom: 2.5rem;
}

.auth-content .alert {
    margin-bottom: 2rem;
}

.auth-content .social-login {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.auth-content .text-center.mt-4 {
    margin-top: 2.5rem !important;
}

.auth-content h2 {
    margin-bottom: 1.5rem;
}

.auth-content h3 {
    margin-bottom: 1.5rem;
}

.auth-content .mb-3:last-of-type {
    margin-bottom: 2.5rem !important;
}

/* Specific form element spacing */
.auth-content .text-center.mb-4 {
    margin-bottom: 2.5rem !important;
}

.auth-content .d-grid.mb-3 {
    margin-bottom: 2.5rem !important;
}

.auth-content .text-center {
    margin-top: 2rem !important;
}

.auth-content .position-relative {
    margin: 2rem 0 !important;
}

/* Enhanced spacing for form elements */
.auth-content .mb-3 {
    margin-bottom: 1.75rem !important;
}

.auth-content .row.mb-3 {
    margin-bottom: 2rem !important;
}

/* Better spacing for features list in sidebar */
.features-list .d-flex {
    margin-bottom: 1rem !important;
}

.features-list .d-flex:last-child {
    margin-bottom: 0 !important;
}

@media (max-width: 768px) {
    .auth-container {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }
    
    .auth-sidebar {
        padding: 3rem 2rem;
        height: auto;
        min-height: auto;
    }
    
    .auth-content {
        padding: 3rem 2rem;
        height: auto;
        min-height: auto;
    }
    
    .chillpig-logo {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .auth-container {
        margin-top: 1.5rem;
        margin-bottom: 2rem;
        border-radius: 15px;
    }
    
    .auth-sidebar {
        padding: 2.5rem 1.5rem;
    }
    
    .auth-content {
        padding: 2.5rem 1.5rem;
    }
}

/* Help Page Styles */
.help-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    background: white;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.help-card .card-body {
    padding: 2rem;
}

.help-card .card-title {
    color: var(--chillpig-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.help-card .card-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.help-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1rem auto;
}

.help-icon.tips { background: var(--chillpig-gradient); }
.help-icon.tutorials { background: linear-gradient(135deg, var(--chillpig-blue) 0%, var(--chillpig-purple) 100%); }
.help-icon.troubleshooting { background: linear-gradient(135deg, var(--chillpig-orange) 0%, #ff6b35 100%); }
.help-icon.features { background: linear-gradient(135deg, var(--chillpig-green) 0%, #00d4aa 100%); }
.help-icon.getting-started { background: linear-gradient(135deg, var(--chillpig-pink) 0%, #ff8fab 100%); }

/* Help Center Section Styles */
.help-cta {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 107, 157, 0.1);
}

.help-cta h4 {
    color: var(--chillpig-dark);
    margin-bottom: 1rem;
}

.help-cta p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Article Cards */
.article-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 107, 157, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.15);
    border-color: rgba(255, 107, 157, 0.2);
}

.article-icon {
    background: linear-gradient(135deg, var(--chillpig-pink) 0%, var(--chillpig-purple) 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.article-content {
    flex: 1;
    min-width: 0;
}

.article-title {
    color: var(--chillpig-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    line-height: 1.3;
}

.article-description {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.article-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.article-category {
    background: rgba(255, 107, 157, 0.1);
    color: var(--chillpig-pink);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.article-read-time {
    color: #6c757d;
    font-size: 0.8rem;
    font-weight: 500;
}

.article-link {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 35px;
    height: 35px;
    background: rgba(255, 107, 157, 0.1);
    color: var(--chillpig-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(10px);
}

.article-card:hover .article-link {
    opacity: 1;
    transform: translateX(0);
}

.article-link:hover {
    background: var(--chillpig-pink);
    color: white;
    transform: scale(1.1);
}

.back-to-help {
    color: var(--chillpig-pink);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.back-to-help:hover {
    color: var(--chillpig-purple);
}

.faq-item {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    background: #f8f9fa;
    padding: 1.25rem;
    margin: 0;
    font-weight: 600;
    color: var(--chillpig-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question[aria-expanded="true"] {
    background: var(--chillpig-pink);
    color: white;
}

.faq-answer {
    padding: 1.25rem;
    background: white;
    color: #666;
    line-height: 1.6;
}

.search-box {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.search-box:focus {
    border-color: var(--chillpig-pink);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 157, 0.25);
}

.contact-card {
    background: var(--chillpig-gradient);
    color: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.contact-card h4 {
    margin-bottom: 1rem;
}

.contact-card p {
    margin-bottom: 1.5rem;
    opacity: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.stats-row {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--chillpig-pink);
    display: block;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Blog Page Styles */
.blog-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-card .card-img-top {
    height: 200px;
    object-fit: cover;
    background: var(--chillpig-gradient);
}

.blog-card .card-body {
    padding: 1.5rem;
}

.blog-card .card-title {
    color: var(--chillpig-dark);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.blog-card .card-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.blog-meta {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.blog-meta i {
    margin-right: 0.25rem;
}

.read-more {
    color: var(--chillpig-pink);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--chillpig-purple);
}

.featured-badge {
    background: var(--chillpig-gradient);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-filter {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 2rem;
}

.category-btn {
    background: white;
    border: 1px solid #dee2e6;
    color: var(--chillpig-dark);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    margin: 0.25rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.category-btn:hover,
.category-btn.active {
    background: var(--chillpig-pink);
    border-color: var(--chillpig-pink);
    color: white;
}

.pagination .page-link {
    color: var(--chillpig-pink);
    border-color: #dee2e6;
}

.pagination .page-link:hover {
    background-color: var(--chillpig-pink);
    border-color: var(--chillpig-pink);
    color: white;
}

.pagination .page-item.active .page-link {
    background-color: var(--chillpig-pink);
    border-color: var(--chillpig-pink);
    color: white;
    font-weight: 600;
}

.pagination .page-link:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 157, 0.25);
    outline: none;
}

.pagination .page-link {
    transition: all 0.3s ease;
}

/* General Marketing Page Styles */
.page-hero {
    background: var(--chillpig-gradient);
    color: white;
    padding: 100px 0 50px;
    position: relative;
    overflow: visible;
    margin-top: 80px;
    min-height: 380px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s infinite linear;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.page-hero .cta-buttons {
    margin-top: 1.5rem;
}

.content-section {
    padding: 80px 0;
}

.content-section:nth-child(even) {
    background: var(--chillpig-light);
}

.content-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.content-card h3 {
    color: var(--chillpig-dark);
    margin-bottom: 1rem;
}

.content-card p {
    color: #666;
    line-height: 1.6;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(139, 95, 191, 0.1));
    border-left: 4px solid var(--chillpig-pink);
    padding: 1.5rem;
    border-radius: 0 10px 10px 0;
    margin: 2rem 0;
}

.highlight-box h4 {
    color: var(--chillpig-pink);
    margin-bottom: 1rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.info-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.info-item i {
    font-size: 2rem;
    color: var(--chillpig-pink);
    margin-bottom: 1rem;
}

.info-item h4 {
    color: var(--chillpig-dark);
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #666;
    font-size: 0.9rem;
}

.cta-section {
    background: var(--chillpig-gradient);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-white {
    background: white;
    color: var(--chillpig-pink);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    color: var(--chillpig-pink);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: white;
    color: var(--chillpig-pink);
    transform: translateY(-2px);
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 2rem;
}

.breadcrumb-item a {
    color: var(--chillpig-pink);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--chillpig-purple);
}

.breadcrumb-item.active {
    color: #666;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #666;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 80px 0 40px;
        min-height: 300px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Pricing Page Styles */
.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 3px solid var(--chillpig-pink);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--chillpig-gradient);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--chillpig-dark);
}

.pricing-price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--chillpig-pink);
    margin-bottom: 0.5rem;
}

.pricing-period {
    color: #666;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: #666;
}

.pricing-features li i {
    color: var(--chillpig-green);
    margin-right: 0.5rem;
}

/* Contact Page Styles */
.contact-form {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-info {
    background: var(--chillpig-gradient);
    color: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.contact-info h4 {
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 1.5rem;
    opacity: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.contact-info i {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-info h5 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Legal Page Styles */
.legal-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.legal-content h2 {
    color: var(--chillpig-dark);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.legal-content h3 {
    color: var(--chillpig-pink);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

/* Privacy Page Styles */
.content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.content-container h1 {
    color: var(--chillpig-pink);
    margin-bottom: 1.5rem;
}

.content-container h2 {
    color: var(--chillpig-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.content-container h3 {
    color: var(--chillpig-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.last-updated {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--chillpig-pink);
}

/* Terms Page Styles */
.content-container h1 {
    color: var(--chillpig-pink);
    margin-bottom: 1.5rem;
}

.content-container h2 {
    color: var(--chillpig-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.content-container h3 {
    color: var(--chillpig-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

/* Cookies Page Styles */
.policy-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.cookie-type {
    background: var(--chillpig-light);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.cookie-type h4 {
    color: var(--chillpig-pink);
    font-weight: bold;
    margin-bottom: 1rem;
}

.cookie-table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cookie-table th {
    background: var(--chillpig-light);
    color: var(--chillpig-dark);
    font-weight: bold;
    padding: 1rem;
}

.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

/* Feedback Page Styles */
.feedback-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.feedback-type-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.feedback-type-card:hover {
    transform: translateY(-5px);
}

.feedback-type-card.selected {
    border-color: var(--chillpig-pink);
    background: var(--chillpig-light);
}

.feedback-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--chillpig-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-stars {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin-bottom: 1rem;
}

.star {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s ease;
}

.star:hover,
.star.active {
    color: var(--chillpig-orange);
}

.feedback-stats {
    background: var(--chillpig-light);
    padding: 60px 0;
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--chillpig-pink);
    margin-bottom: 0.5rem;
}

/* Pre-filled form fields for logged-in users */
.form-control[readonly] {
    background-color: #f8f9fa;
    border-color: #e9ecef;
    color: #6c757d;
}

.form-control[readonly]:focus {
    background-color: #f8f9fa;
    border-color: #e9ecef;
    box-shadow: none;
}

/* Red asterisks for required fields */
.required-asterisk {
    color: #dc3545;
}

/* Custom dropdown caret positioning */
.dropdown-toggle::after {
    display: none;
}

/* Status Page Styles */
.status-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    border-left: 4px solid var(--chillpig-green);
}

.status-card.warning {
    border-left-color: var(--chillpig-orange);
}

.status-card.error {
    border-left-color: #dc3545;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.status-operational {
    background: #d4edda;
    color: #155724;
}

.status-degraded {
    background: #fff3cd;
    color: #856404;
}

.status-outage {
    background: #f8d7da;
    color: #721c24;
}

.service-item {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-name {
    font-weight: bold;
    font-size: 1.1rem;
}

.service-description {
    color: #666;
    font-size: 0.9rem;
}

.uptime-stats {
    background: var(--chillpig-light);
    padding: 60px 0;
}

.incident-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

.incident-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.incident-resolved {
    background: #d4edda;
    color: #155724;
}

.incident-investigating {
    background: #fff3cd;
    color: #856404;
}

.incident-monitoring {
    background: #cce5ff;
    color: #004085;
}


/* Careers Page Styles */
.growth-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.value-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border-left: 6px solid var(--chillpig-pink);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--chillpig-gradient);
    opacity: 0.05;
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.culture-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.culture-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
}

.culture-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.culture-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: var(--chillpig-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-chillpig {
    background: var(--chillpig-gradient);
    border: none;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.btn-chillpig:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
    color: white;
}

.btn-outline-chillpig {
    background: transparent;
    color: var(--chillpig-pink);
    border: 2px solid var(--chillpig-pink);
    padding: 13px 33px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-outline-chillpig:hover {
    background: var(--chillpig-pink);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
}

.growth-section {
    background: var(--chillpig-gradient);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.growth-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="growth" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="white" opacity="0.1"/><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/><circle cx="40" cy="40" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23growth)"/></svg>');
    opacity: 0.3;
}

.quote-section {
    background: white;
    padding: 60px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.quote-text {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--chillpig-dark);
    margin-bottom: 1rem;
}

.quote-author {
    font-weight: bold;
    color: var(--chillpig-pink);
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin: 2rem 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

/* Status Page Dynamic Styles */
.status-degraded {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.status-degraded i {
    color: #f39c12;
}

.incident-ongoing {
    background: #f8d7da;
    color: #721c24;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 600;
}

.incident-investigating {
    background: #fff3cd;
    color: #856404;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 600;
}

.incident-resolved {
    background: #d1edff;
    color: #0c5460;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Video Modal Styles - Enhanced Contrast */
.video-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
}

.video-modal-header {
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    border: none;
    padding: 1.5rem 2rem;
    color: white;
    border-bottom: 3px solid var(--chillpig-pink);
}

.video-modal-header .modal-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    display: flex;
    align-items: center;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.video-modal-header .modal-title i {
    color: var(--chillpig-pink);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.video-modal-header .btn-close {
    background: linear-gradient(135deg, var(--chillpig-pink) 0%, #E85A87 100%);
    border: 2px solid var(--chillpig-pink);
    border-radius: 12px;
    width: 44px;
    height: 44px;
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3), 0 2px 4px rgba(255, 107, 157, 0.2);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.video-modal-header .btn-close::before {
    content: "×";
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.video-modal-header .btn-close::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--chillpig-pink) 0%, #E85A87 100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
}

.video-modal-header .btn-close:hover {
    background: transparent;
    border-color: var(--chillpig-pink);
    color: #ffffff;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.video-modal-header .btn-close:hover::after {
    opacity: 1;
}

.video-modal-header .btn-close:hover::before {
    color: #ffffff;
    transform: rotate(90deg);
}

.video-modal-header .btn-close:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.video-modal-header .btn-close:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 107, 157, 0.3), 0 8px 25px rgba(255, 107, 157, 0.4);
}

.video-modal-body {
    padding: 0;
    background: #000;
    position: relative;
}

.video-modal-body .video-container {
    background: #000;
    margin: 0;
}

.video-modal-body .video-container iframe {
    border-radius: 0;
}

.video-modal-footer {
    background: rgba(0, 0, 0, 0.9);
    border: none;
    padding: 1.5rem 2rem;
    color: white;
    border-top: 1px solid #333;
}

.video-modal-footer p {
    font-size: 0.95rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.video-modal-footer i {
    color: var(--chillpig-pink);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

/* Modal backdrop */
.modal-backdrop {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

/* Modal animation */
.modal.fade .modal-dialog {
    transform: scale(0.8) translateY(-50px);
    transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
    transform: scale(1) translateY(0);
}

/* Mobile responsiveness for video modal */
@media (max-width: 768px) {
    .video-modal-content {
        margin: 1rem;
        border-radius: 15px;
    }

    .video-modal-header {
        padding: 1rem 1.5rem;
    }

    .video-modal-header .modal-title {
        font-size: 1.25rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    }

    .video-modal-footer {
        padding: 1rem 1.5rem;
    }

    .video-modal-footer p {
        font-size: 0.9rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .video-modal-content {
        margin: 0.5rem;
    }

    .video-modal-header {
        padding: 0.75rem 1rem;
    }

    .video-modal-footer {
        padding: 0.75rem 1rem;
    }
}
