/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%);
}

.hero-text {
    padding-right: 2rem;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero-image {
    position: relative;
}

.hero-image img {
    max-width: 100%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Products Section */
.section-header {
    margin-bottom: 60px;
}

.category-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.category-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.product-card-wrapper {
    margin-bottom: 30px;
}

.product-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(67, 97, 238, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-wrapper i {
    font-size: 24px;
    color: var(--primary-color);
}

.product-card h4 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.product-card p {
    color: var(--gray-color);
    margin-bottom: 15px;
    flex-grow: 1;
}

/* Waitlist Section */
.waitlist-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Contact Section */
.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.contact-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.contact-item a {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero-text {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 100px 0 50px;
    }
}
