@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cooper+Hewitt:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=DM+Sans:wght@300;400;500&display=swap');


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}



body {
    /* color: #fff; */
    background: #FFFFFF;
}

h1,
h2,
h3,
.display-font {
    font-family: 'Cooper Hewitt', 'Inter', sans-serif;
    font-weight: 700;
}

/* Mailchimp-inspired color palette */
:root {
    --mc-red: #be1e2d;
    --mc-btn: #e90606;
    --mc-dark: #4B4B4B;
    --mc-gray: #6F6F6F;
    --mc-bg-gray: #eeeeeeff;
    --mc-light-gray: #FFFFFF;
    --mc-border: #323232;
}

/* Smooth animations */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button hover effects */
.btn-primary {
    background: var(--mc-btn);
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 2px solid var(--mc-dark);
    color: var(--mc-dark);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--mc-red);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline:hover {
    background: #FFFFFF;
    border: 2px solid var(--mc-btn);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    border: 2px solid var(--mc-dark);
    background: #FFFFFF;
    color: var(--mc-dark);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--mc-dark);
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Stats cards */
.stat-card {
    background: #FFFFFF;
    border: 1px solid var(--mc-border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Package card */
.package-card {
    background: #FFFFFF;
    border: 2px solid #6F6F6F;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.package-card:hover {
    border-color: var(--mc-btn);
    box-shadow: 0 20px 40px rgba(229, 61, 58, 0.2);
    transform: translateY(-5px);
}

/* FAQ accordion */
.faq-item {
    border-bottom: 1px solid var(--mc-border);
}

.faq-question {
    cursor: pointer;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--mc-dark);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--mc-gray);
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Feature list styling */
.feature-item {
    display: flex;
    gap: 1rem;
    padding: 0.75rem 0;
}

.feature-check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--mc-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* Modal styling */
.modal-backdrop {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

/* Hide scrollbar but keep functionality */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

@media screen and (min-width:980px) {
    .bizlq-perspective {
        perspective: 1200px;
    }

    .bizlq-slant {
        transform: rotateY(24deg) rotateX(10deg) rotateZ(-2deg);
        transform-style: preserve-3d;
    }
}

/* TEFConnect-inspired section label */
.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mc-red);
    border-top: 2px solid var(--mc-red);
    padding-top: 6px;
    margin-bottom: 1.25rem;
}

/* TEFConnect-inspired stat strip */
.stat-strip {
    border-top: 1px solid rgba(75, 75, 75, 0.15);
    border-bottom: 1px solid rgba(75, 75, 75, 0.15);
}

/* TEFConnect split-panel image */
.split-image-panel {
    position: relative;
    overflow: hidden;
    min-height: 420px;
}

.split-image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TEFConnect card hover lift */
.tef-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tef-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
}

/* Divider dot */
.dot-divider::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mc-red);
    margin-right: 10px;
    vertical-align: middle;
}


/* Service card styling */
.service-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #E5E7EB;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 214, 0, 0.2);
    border-color: var(--mc-yellow);
}

/* Infinite scroll animations */
@keyframes scrollDown {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes scrollUp {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}

.animate-scroll-down {
    animation: scrollDown 20s linear infinite;
}

.animate-scroll-up {
    animation: scrollUp 20s linear infinite;
}

.animate-scroll-down-slow {
    animation: scrollDown 25s linear infinite;
}

/* Pause animation on hover */
.animate-scroll-down:hover,
.animate-scroll-up:hover,
.animate-scroll-down-slow:hover {
    animation-play-state: paused;
}