:root {
    --primary-color: #4e73df;
    --secondary-color: #36b9cc;
    --tertiary-color: #1cc88a;
    --dark-color: #5a5c69;
    --light-color: #f8f9fc;
    --border-radius: 15px;
    --box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Global Styles */
body {
    font-family: 'Nunito', sans-serif;
    color: #444;
    overflow-x: hidden;
    background-color: var(--light-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
}

.section-title {
    font-size: 2.8rem;
    position: relative;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
}

.section-title:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 80px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    box-shadow: 0 4px 15px rgba(78, 115, 223, 0.3);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(78, 115, 223, 0.4);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.btn-outline-primary:hover {
    color: white;
    border-color: var(--primary-color);
}

.btn-outline-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary-color);
    transition: 0.5s;
    z-index: -1;
}

.btn-outline-primary:hover:before {
    width: 100%;
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-outline-light:hover {
    color: var(--primary-color);
}

.btn-outline-light:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: white;
    transition: 0.5s;
    z-index: -1;
}

.btn-outline-light:hover:before {
    width: 100%;
}

section {
    padding: 100px 0;
    position: relative;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar-scrolled {
    background: rgba(78, 115, 223, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: white !important;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    padding: 0.5rem 1rem;
    margin: 0 0.2rem;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: white;
    transform: translateY(-2px);
}

.login-btn {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 8px 20px !important;
    backdrop-filter: blur(5px);
    margin-left: 10px;
    font-weight: 600;
}

.login-btn:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.8;
}

.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-visual:before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: patternMove 30s linear infinite;
}

@keyframes patternMove {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-animation {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 600px;
    z-index: 1;
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-characters {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    z-index: 2;
}

.character {
    position: absolute;
    bottom: 0;
    width: 120px;
    height: 180px;
    background-size: contain;
    background-position: bottom center;
    background-repeat: no-repeat;
}

.character-1 {
    left: 5%;
    animation: characterBounce 8s ease-in-out infinite;
    animation-delay: 0s;
}

.character-2 {
    left: 15%;
    animation: characterBounce 7s ease-in-out infinite;
    animation-delay: 1s;
}

.character-3 {
    left: 75%;
    animation: characterBounce 9s ease-in-out infinite;
    animation-delay: 2s;
}

.character-4 {
    left: 85%;
    animation: characterBounce 8s ease-in-out infinite;
    animation-delay: 3s;
}

@keyframes characterBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.hero-wave .shape-fill {
    fill: var(--light-color);
}

/* Floating Bubble Animation */
.bubble-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    top: 0;
    left: 0;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: bubbleFloat linear infinite;
}

@keyframes bubbleFloat {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    20% { opacity: 0.5; }
    100% { transform: translateY(-100vh) scale(1); opacity: 0; }
}

/* Stats Section */
.stats {
    margin-top: -50px;
    position: relative;
    z-index: 4;
}

.stat-item {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: height 0.3s ease;
}

.stat-item:hover:before {
    height: 10px;
}

.stat-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 30px;
    color: white;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 5px 15px rgba(78, 115, 223, 0.3);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(10deg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-text {
    font-size: 1.1rem;
    color: var(--dark-color);
    font-weight: 600;
}

/* Features Section */
.features {
    position: relative;
    background-color: white;
    overflow: hidden;
}

.features:before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(78, 115, 223, 0.05), rgba(54, 185, 204, 0.05));
    top: -150px;
    left: -150px;
    z-index: 0;
}

.features:after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(78, 115, 223, 0.05), rgba(54, 185, 204, 0.05));
    bottom: -150px;
    right: -150px;
    z-index: 0;
}

.feature-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom, rgba(78, 115, 223, 0.02), transparent);
    transition: all 0.3s ease;
    z-index: -1;
}

.feature-card:hover:before {
    height: 100%;
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 10px 20px rgba(78, 115, 223, 0.2);
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 35px;
    color: white;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--dark-color);
    margin-bottom: 0;
    line-height: 1.7;
}

/* Demo Section */
.demo {
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.demo-visual {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.demo-visual iframe, .demo-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: all 0.5s ease;
}

.demo-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.demo-play-button i {
    font-size: 30px;
    color: var(--primary-color);
    margin-left: 5px;
}

.demo-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.demo-feature-tabs .nav-tabs {
    border-bottom: none;
    margin-bottom: 30px;
}

.demo-feature-tabs .nav-link {
    color: var(--dark-color);
    border: none;
    border-radius: 50px;
    padding: 12px 25px;
    margin-right: 10px;
    font-weight: 600;
    background-color: #f0f0f0;
    transition: all 0.3s ease;
}

.demo-feature-tabs .nav-link.active {
    color: white;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 5px 15px rgba(78, 115, 223, 0.2);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #f5f5f5;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    margin-right: 15px;
    margin-top: 5px;
    color: var(--primary-color);
}

/* Module Showcase Section */
.module-showcase {
    background-color: white;
    position: relative;
    overflow: hidden;
}

.module-showcase:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234e73df' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.module-container {
    max-width: 1000px;
    margin: 0 auto;
}

.module-card {
    height: 300px;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--box-shadow);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.module-card:hover {
    transform: translateY(-10px);
}

.module-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 30px;
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(78, 115, 223, 0.02), rgba(54, 185, 204, 0.02));
    transition: all 0.3s ease;
}

.module-content i {
    font-size: 50px;
    margin-bottom: 20px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.module-content:hover i {
    transform: scale(1.2);
}

.module-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.module-content:hover h3 {
    color: var(--secondary-color);
}

.module-content p {
    color: var(--dark-color);
    max-width: 300px;
    margin: 0 auto;
}

/* Activities Section */
.activities {
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.activities:before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(78, 115, 223, 0.03), rgba(54, 185, 204, 0.03));
    border-radius: 50%;
    top: -200px;
    right: -200px;
}

.activity-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.activity-card:hover {
    transform: translateY(-10px);
}

.activity-card:before {
    content: '\f5ca';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    color: rgba(78, 115, 223, 0.05);
    z-index: 0;
}

.activity-content {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    color: var(--dark-color);
    line-height: 1.8;
}

.activity-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.activity-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 30px;
    border-radius: 15px;
    margin-right: 15px;
    box-shadow: 0 5px 15px rgba(78, 115, 223, 0.2);
}

.activity-info h3 {
    margin: 0;
    font-size: 1.4rem;
    color: var(--primary-color);
}

.activity-info p {
    margin: 0;
    color: var(--dark-color);
    font-size: 0.9rem;
}

.activity-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f5f5f5;
    padding-top: 15px;
    margin-top: 15px;
}

.activity-stats {
    display: flex;
    gap: 15px;
}

.activity-stat {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--dark-color);
}

.activity-stat i {
    color: var(--primary-color);
    margin-right: 5px;
}

.activity-actions .btn {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials {
    background-color: white;
    position: relative;
    overflow: hidden;
}

.testimonials:before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(78, 115, 223, 0.03), rgba(54, 185, 204, 0.03));
    border-radius: 50%;
    top: -200px;
    right: -200px;
}

.testimonial-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-card:before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: rgba(78, 115, 223, 0.05);
    z-index: 0;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--dark-color);
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    margin-right: 15px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.testimonial-info h5 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.testimonial-info p {
    margin: 0;
    color: var(--dark-color);
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing {
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.pricing:after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(78, 115, 223, 0.03), rgba(54, 185, 204, 0.03));
    border-radius: 50%;
    bottom: -250px;
    left: -250px;
    z-index: 0;
}

.pricing-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-15px);
}

.pricing-card.popular {
    z-index: 2;
    transform: scale(1.05);
    border: none;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-15px);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 40px;
    font-size: 0.8rem;
    transform: rotate(45deg);
    width: 170px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    font-weight: 500;
    z-index: 3;
}

.pricing-header {
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-card.popular .pricing-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding-bottom: 40px;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.pricing-card.popular .pricing-header:before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -150px;
    left: -150px;
}

.pricing-card.popular .pricing-header h3,
.pricing-card.popular .pricing-header .price,
.pricing-card.popular .pricing-header p {
    color: white;
}

.pricing-card.popular .price .amount {
    background: rgba(255, 255, 255, 0.2);
}

.pricing-card.popular .price .currency,
.pricing-card.popular .price .period {
    color: rgba(255, 255, 255, 0.8);
}

.price {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-right: 5px;
    align-self: flex-start;
    margin-top: 10px;
}

.price .amount {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-color);
    padding: 0 10px;
    background: linear-gradient(135deg, rgba(78, 115, 223, 0.05), rgba(54, 185, 204, 0.05));
    border-radius: 10px;
}

.price .period {
    font-size: 1rem;
    color: var(--dark-color);
    align-self: flex-end;
    margin-left: 5px;
    margin-bottom: 10px;
}

.pricing-features {
    padding: 30px;
    margin-top: -20px;
    background-color: white;
    border-radius: var(--border-radius);
    position: relative;
}

.pricing-card.popular .pricing-features {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    margin-top: -30px;
    padding-top: 50px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    color: var(--dark-color);
    border-bottom: 1px solid #f5f5f5;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.pricing-features li i.fa-check {
    color: #1cc88a;
}

.pricing-features li i.fa-times {
    color: var(--dark-color);
}

.pricing-features li.disabled {
    color: var(--dark-color);
    opacity: 0.6;
}

.pricing-footer {
    padding: 20px 30px 30px;
    text-align: center;
}

/* Contact Section */
.contact {
    background-color: white;
    position: relative;
    overflow: hidden;
}

.contact-info {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    height: 100%;
    position: relative;
    z-index: 1;
}

.contact-info:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%234e73df' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
    opacity: 0.8;
    border-radius: var(--border-radius);
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(78, 115, 223, 0.1), rgba(54, 185, 204, 0.1));
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 1.2rem;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: rotate(10deg);
}

.social-links {
    display: flex;
    margin-top: 30px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(78, 115, 223, 0.1), rgba(54, 185, 204, 0.1));
    color: var(--primary-color);
    border-radius: 50%;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateY(-5px);
}

.contact-form-container {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 1;
}

.form-label {
    font-weight: 500;
    color: var(--dark-color);
}

.form-control {
    border-radius: 10px;
    padding: 12px 20px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

textarea.form-control {
    border-radius: 10px;
    height: 120px;
}

.alert {
    border-radius: var(--border-radius);
    padding: 20px;
}

.alert-success {
    background-color: rgba(28, 200, 138, 0.1);
    border-color: rgba(28, 200, 138, 0.2);
    color: #1cc88a;
}

.alert-danger {
    background-color: rgba(231, 74, 59, 0.1);
    border-color: rgba(231, 74, 59, 0.2);
    color: #e74a3b;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.footer-brand {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
}

.footer-text {
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer h5 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--tertiary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
    text-decoration: none;
}

.footer-links a:before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--tertiary-color);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 20px;
}

.footer-links a:hover:before {
    left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-contact li i {
    margin-right: 15px;
    color: var(--tertiary-color);
    width: 20px;
}

.footer-divider {
    margin: 30px 0;
    border-color: rgba(255, 255, 255, 0.1);
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
}

.footer-bottom-links li {
    margin-left: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
}

/* Animations */
.animate-character {
    background-image: linear-gradient(
        -45deg,
        var(--primary-color) 0%,
        var(--secondary-color) 29%,
        var(--tertiary-color) 67%,
        var(--primary-color) 100%
    );
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 4s linear infinite;
    display: inline-block;
}

@keyframes textclip {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* Dashboard Preview */
.dashboard-preview {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.dashboard-preview:hover {
    transform: translateY(-10px);
}

.dashboard-preview img {
    width: 100%;
    transition: all 5s ease;
    transform-origin: top left;
}

.dashboard-preview:hover img {
    transform: scale(1.1);
}

.dashboard-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(78, 115, 223, 0.5), rgba(54, 185, 204, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.dashboard-preview:hover .dashboard-overlay {
    opacity: 0.9;
}

.dashboard-icon {
    background-color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary-color);
    transform: scale(0);
    transition: all 0.3s ease;
}

.dashboard-preview:hover .dashboard-icon {
    transform: scale(1);
}

/* Zoom Effect for Feature Demo */
.zoom-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.zoom-effect {
    transition: transform 10s ease;
    width: 100%;
}

.zoom-container:hover .zoom-effect {
    transform: scale(1.5);
}

/* Activity Calendar */
.activity-calendar {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 1;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.calendar-nav {
    display: flex;
    gap: 10px;
}

.calendar-nav-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(78, 115, 223, 0.1), rgba(54, 185, 204, 0.1));
    color: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-nav-btn:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #f0f0f0;
}

.calendar-day-name {
    color: var(--dark-color);
    font-weight: 600;
    background-color: rgba(78, 115, 223, 0.05);
}

.calendar-day-number {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.calendar-day.has-event {
    background: rgba(54, 185, 204, 0.1);
    border-color: rgba(54, 185, 204, 0.3);
}

.calendar-day.has-event:after {
    content: '';
    position: absolute;
    bottom: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--secondary-color);
}

.calendar-day.today {
    background: rgba(28, 200, 138, 0.1);
    border-color: rgba(28, 200, 138, 0.3);
    position: relative;
}

.calendar-day.today:before {
    content: '';
    position: absolute;
    top: 6px;
    right: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--tertiary-color);
}

.calendar-day:hover:not(.calendar-day-name) {
    background-color: rgba(78, 115, 223, 0.1);
    transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    section {
        padding: 80px 0;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .pricing-card.popular {
        transform: none;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-15px);
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .navbar {
        background: var(--primary-color);
        padding: 10px 0;
    }
    
    .navbar-collapse {
        background: var(--primary-color);
        padding: 20px;
        border-radius: 0 0 var(--border-radius) var(--border-radius);
    }
    
    .hero {
        text-align: center;
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 20px;
    }
    
    .footer-bottom-links li {
        margin: 0 10px;
    }
}

@media (max-width: 575.98px) {
    .section-title {
        font-size: 2rem;
    }
    
    .btn-lg {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .feature-card,
    .testimonial-card,
    .contact-info,
    .contact-form-container {
        padding: 25px;
    }
    
    .stats {
        margin-top: -30px;
    }
    
    .stat-item {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .demo-feature-tabs .nav-link {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .price .amount {
        font-size: 3rem;
    }
}