/* style.css - Custom Bootstrap 5 overrides for Offer18-style landing page */

:root {
    --primary: #6467f2;
    --primary-hover: #4b4ecb;
    --secondary: #6c757d;
    --success: #3ecf8e;
    --info: #3db9fc;
    --warning: #ffb547;
    --danger: #ff5c77;
    --light: #f8f9fa;
    --dark: #23244a;
    --gray-light: #f8f9fa;
    --gray-dark: #343a40;
    --gradient-main: linear-gradient(120deg, #6467f2 60%, #a1a3f7 100%);
    --gradient-accent: linear-gradient(90deg, #3db9fc 0%, #6467f2 100%);
    --font-main: 'Inter', 'Segoe UI', Arial, sans-serif;
}

body {
    font-family: var(--font-main);
    background: #fff;
    color: var(--gray-dark);
    scroll-behavior: smooth;
}

.navbar {
    background: #fff;
    box-shadow: 0 2px 8px rgba(100, 103, 242, 0.05);
}

.navbar .navbar-brand img {
    height: 40px;
}

.navbar .nav-link {
    color: var(--gray-dark);
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.2s;
}

.navbar .nav-link:hover {
    color: var(--primary);
}

.btn-primary {
    background: var(--primary);
    border: none;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: var(--primary-hover);
}

.hero-section {
    min-height: 80vh;
    background: linear-gradient(120deg, #6467f2 60%, #a1a3f7 100%);
    color: #fff;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    z-index: 2;
}

.hero-section .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.18;
    z-index: 1;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.marquee {
    overflow: hidden;
    background: var(--gray-light);
    padding: 1.5rem 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 18s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.brand-logo {
    filter: grayscale(1) brightness(0.8);
    opacity: 0.7;
    margin: 0 2.5rem;
    height: 40px;
    transition: filter 0.3s, opacity 0.3s;
}

.brand-logo:hover {
    filter: none;
    opacity: 1;
}

.trophies-section {
    background: #fff;
    padding: 3rem 0 2rem 0;
}

.trophy-card {
    background: var(--gray-light);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(100, 103, 242, 0.04);
    margin-bottom: 2rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.trophy-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 24px rgba(100, 103, 242, 0.10);
}

.trophy-card img,
.trophy-card svg {
    height: 48px;
    margin-bottom: 1rem;
}

.features-section {
    background: var(--gray-light);
    padding: 3rem 0;
}

.feature-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(100, 103, 242, 0.04);
    margin-bottom: 2rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 24px rgba(100, 103, 242, 0.10);
}

.feature-card .fa {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.testimonials-section {
    background: #fff;
    padding: 3rem 0;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background: var(--gray-light);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    margin: 0 1rem;
    min-width: 320px;
    max-width: 350px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(100, 103, 242, 0.04);
}

.testimonial-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--primary);
}

.testimonial-company {
    height: 28px;
    margin-bottom: 0.5rem;
}

.pricing-section {
    background: var(--gray-light);
    padding: 3rem 0;
}

.pricing-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(100, 103, 242, 0.04);
    padding: 2.5rem 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
    border: 2px solid transparent;
    transition: border 0.2s, box-shadow 0.2s, transform 0.2s;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 8px 24px rgba(100, 103, 242, 0.10);
    transform: scale(1.04);
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.footer {
    background: #23244a;
    color: #fff;
    padding: 2.5rem 0 1rem 0;
}

.footer a {
    color: #bfc2f7;
    text-decoration: none;
    margin-right: 1.5rem;
    transition: color 0.2s;
}

.footer a:hover {
    color: #fff;
}

.footer .social-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #bfc2f7;
    transition: color 0.2s;
}

.footer .social-icon:hover {
    color: #fff;
}

::-webkit-scrollbar {
    width: 8px;
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #6467f2;
    border-radius: 4px;
}


/* Cookie Consent Popup Improvements */

#cookieConsent {
    z-index: 1080;
    background: none !important;
    pointer-events: none;
}

#cookieConsent .cookie-box {
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 8px 32px rgba(100, 103, 242, 0.18), 0 1.5px 6px rgba(44, 62, 80, 0.08);
    border: 1.5px solid #e6e8fa;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    pointer-events: all;
    position: relative;
}

#cookieConsent .cookie-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

#cookieConsent .cookie-text {
    color: var(--dark);
    font-size: 1.08rem;
    text-align: center;
}

#cookieConsent .cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

#cookieConsent .btn {
    min-width: 120px;
    font-weight: 600;
    border-radius: 2rem;
    box-shadow: 0 2px 8px rgba(100, 103, 242, 0.06);
}

#cookieConsent .btn-decline {
    background: var(--gray-light);
    color: var(--primary);
    border: 1.5px solid var(--primary);
    transition: background 0.2s, color 0.2s;
}

#cookieConsent .btn-decline:hover {
    background: var(--primary);
    color: #fff;
}

#cookieConsent .btn-settings {
    background: var(--info);
    color: #fff;
    border: none;
}

#cookieConsent .btn-settings:hover {
    background: var(--primary);
}

#cookieConsent .cookie-close {
    position: absolute;
    top: 0.7rem;
    right: 1.1rem;
    background: none;
    border: none;
    color: var(--gray-dark);
    font-size: 1.3rem;
    opacity: 0.7;
    cursor: pointer;
    transition: opacity 0.2s;
}

#cookieConsent .cookie-close:hover {
    opacity: 1;
}

@media (max-width: 991.98px) {
    .navbar .nav-link {
        margin: 0 0.5rem;
    }
    .hero-section h1 {
        font-size: 2rem;
    }
    .feature-card,
    .trophy-card,
    .pricing-card {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: 60vh;
        padding: 3rem 0 2rem 0;
    }
    .marquee-track {
        animation-duration: 28s;
    }
    .testimonial-card {
        min-width: 90vw;
        max-width: 95vw;
    }
    #cookieConsent .cookie-box {
        padding: 1.1rem 0.7rem;
    }
}