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

body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    background-color: #f7f7f8; /* Coozi light background */
    color: #1a1a1a;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-poppins {
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #f0f0f0;
}
::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* Smooth fade in animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation Blur & Styling */
.nav-blur {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background-color: rgba(255, 255, 255, 0.7);
}

/* Buttons - Coozi Style */
.coozi-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px 10px 24px;
    border-radius: 100px;
    background-color: #121212;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    gap: 16px;
    border: 1px solid #121212;
}

.coozi-btn .btn-icon-wrap {
    width: 36px;
    height: 36px;
    background-color: #ffffff;
    color: #121212;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.coozi-btn:hover {
    background-color: #ffffff;
    color: #121212;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
}
.coozi-btn:hover .btn-icon-wrap {
    background-color: #121212;
    color: #ffffff;
    transform: rotate(45deg);
}

.coozi-btn-white {
    background-color: #ffffff;
    color: #121212;
    border: 1px solid #e5e7eb;
}
.coozi-btn-white .btn-icon-wrap {
    background-color: #121212;
    color: #ffffff;
}
.coozi-btn-white:hover {
    background-color: #121212;
    color: #ffffff;
    border-color: #121212;
}
.coozi-btn-white:hover .btn-icon-wrap {
    background-color: #ffffff;
    color: #121212;
}

/* Abstract Hero Shapes */
.hero-shape-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230,230,230,1) 0%, rgba(247,247,248,0) 70%);
    border-radius: 50%;
    z-index: -1;
    top: -100px;
    right: -100px;
}

/* Image Hover Effects - Coozi specific */
.coozi-card {
    border-radius: 24px;
    background-color: #ffffff;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #f0f0f0;
}
.coozi-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.05);
}
.coozi-card-img-wrap {
    overflow: hidden;
    border-radius: 24px;
}
.coozi-card-img-wrap img {
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.coozi-card:hover .coozi-card-img-wrap img {
    transform: scale(1.08);
}

/* Counters */
.counter-box {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
}
.counter-box:hover {
    transform: translateY(-5px);
}
.counter-num {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: #121212;
    line-height: 1;
    margin-bottom: 8px;
}
.counter-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* FAQ Accordion */
.coozi-faq-item {
    border-bottom: 1px solid #e5e7eb;
}
.coozi-faq-btn {
    padding: 24px 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #121212;
    cursor: pointer;
    background: transparent;
    border: none;
    text-align: left;
}
.coozi-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    color: #666;
    line-height: 1.6;
}
.coozi-faq-content.open {
    max-height: 300px;
    opacity: 1;
    padding-bottom: 24px;
}
.faq-icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.coozi-faq-item.active .faq-icon-wrap {
    background: #121212;
    color: #ffffff;
    transform: rotate(45deg);
}

/* Tags */
.coozi-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: #121212;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.coozi-tag i {
    font-size: 16px;
}
