:root {
    --primary-color: #3a1c71;
    --secondary-color: #d76d77;
    --tertiary-color: #ffaf7b;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333333;
    --text-light: #6c757d;
    --border-radius: 12px;
    --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: 'Poppins', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: var(--light-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.section-title {
    font-size: 2.8rem;
    position: relative;
    margin-bottom: 2.5rem;
}

.section-title:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--tertiary-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: 50px;
    padding: 12px 30px;
    font-weight: 500;
    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(58, 28, 113, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(58, 28, 113, 0.4);
}

.btn-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.2), rgba(255,255,255,0));
    transform: skewX(-25deg);
    animation: shine 3s infinite;
    z-index: -1;
}

@keyframes shine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    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%;
}

.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%;
}

section {
    padding: 100px 0;
    position: relative;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar-scrolled {
    background: rgba(58, 28, 113, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin: 0 0.2rem;
    position: relative;
}

.navbar-dark .navbar-nav .nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease-out;
    opacity: 0;
}

.navbar-dark .navbar-nav .nav-link:hover:before {
    left: 1rem;
    right: 1rem;
    opacity: 1;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: white !important;
}

.login-btn {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 8px 20px !important;
    backdrop-filter: blur(5px);
    margin-left: 10px;
}

.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;
}

.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;
}

.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: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    animation: patternMove 30s linear infinite;
}

@keyframes patternMove {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-animation {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    height: 70%;
    z-index: 1;
}

.stage-animation {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1000px;
}

.curtain {
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    transition: all 1.5s ease;
    border-radius: 5px;
}

.left-curtain {
    left: 0;
    transform-origin: left;
    border-radius: 0 5px 5px 0;
    animation: curtainLeft 8s ease-in-out infinite;
}

.right-curtain {
    right: 0;
    transform-origin: right;
    border-radius: 5px 0 0 5px;
    animation: curtainRight 8s ease-in-out infinite;
}

@keyframes curtainLeft {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(60deg); }
}

@keyframes curtainRight {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(-60deg); }
}

.stage-floor {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    transform: rotateX(45deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.spotlight {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    animation: spotlightPulse 4s ease-in-out infinite;
}

@keyframes spotlightPulse {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.8; transform: translateX(-50%) scale(1.2); }
}

.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 Elements Animation */
.floating {
    animation: floating 3s ease-in-out infinite;
}

.floating-slow {
    animation: floating 6s ease-in-out infinite;
}

.floating-fast {
    animation: floating 2s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* 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(58, 28, 113, 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(--text-light);
    font-weight: 500;
}

/* 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(58, 28, 113, 0.05), rgba(215, 109, 119, 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(58, 28, 113, 0.05), rgba(215, 109, 119, 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(58, 28, 113, 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(58, 28, 113, 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(--text-light);
    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-dashboard {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
}

.demo-calendar {
    width: 80%;
    height: 60%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.demo-calendar:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 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='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    border-radius: 10px;
    opacity: 0.3;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.calendar-title {
    font-weight: 600;
    font-size: 1.2rem;
}

.calendar-nav {
    display: flex;
    gap: 10px;
}

.calendar-nav-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day {
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 0.8rem;
}

.calendar-header-day {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.calendar-day.has-event {
    background: rgba(255, 255, 255, 0.2);
    position: relative;
}

.calendar-day.has-event:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: white;
}

.calendar-day.today {
    background: rgba(255, 175, 123, 0.3);
    font-weight: 600;
}

.demo-events {
    width: 80%;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    padding: 15px;
}

.demo-event {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
}

.event-time {
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 3px 8px;
    border-radius: 4px;
    margin-right: 10px;
}

.event-title {
    font-weight: 500;
}

.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(--text-light);
    border: none;
    border-radius: 50px;
    padding: 12px 25px;
    margin-right: 10px;
    font-weight: 500;
    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(58, 28, 113, 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);
}

/* Game Section */
.game-section {
    background-color: white;
    position: relative;
    overflow: hidden;
}

.game-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 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='%233a1c71' 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");
}

.game-container {
    height: 400px;
    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;
}

.game-container:hover {
    transform: translateY(-10px);
}

.game-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: var(--primary-color);
    padding: 20px;
    background: linear-gradient(135deg, rgba(58, 28, 113, 0.02), rgba(215, 109, 119, 0.02));
}

.game-intro i {
    margin-bottom: 20px;
    color: var(--primary-color);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

.game-intro h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.game-intro p {
    color: var(--text-light);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.testimonials:before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(58, 28, 113, 0.03), rgba(215, 109, 119, 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(58, 28, 113, 0.05);
    z-index: 0;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-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: 50%;
    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(--text-light);
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing {
    background-color: white;
    position: relative;
    overflow: hidden;
}

.pricing:after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(58, 28, 113, 0.03), rgba(215, 109, 119, 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(--text-light);
    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(58, 28, 113, 0.05), rgba(215, 109, 119, 0.05));
    border-radius: 10px;
}

.price .period {
    font-size: 1rem;
    color: var(--text-light);
    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(--text-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: #28a745;
}

.pricing-features li i.fa-times {
    color: var(--text-light);
}

.pricing-features li.disabled {
    color: var(--text-light);
}

.pricing-footer {
    padding: 20px 30px 30px;
    text-align: center;
}

/* Contact Section */
.contact {
    background-color: var(--light-color);
    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: 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='%233a1c71' 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(58, 28, 113, 0.1), rgba(215, 109, 119, 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(58, 28, 113, 0.1), rgba(215, 109, 119, 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(--text-color);
}

.form-control {
    border-radius: 50px;
    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: 20px;
}

.alert {
    border-radius: var(--border-radius);
    padding: 20px;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    border-color: rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    border-color: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

/* 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: 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: 'Playfair Display', 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;
}

.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;
}

.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);
}

.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));
}

/* 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%; }
}

/* 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;
    }
    
    .demo-calendar {
        width: 90%;
    }
    
    .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;
    }
}

        /* Additional Animations for this page */
        .hero-animation-container {
            position: relative;
            width: 100%;
            height: 400px;
            perspective: 1000px;
            overflow: hidden;
        }
        
        .stage {
            position: absolute;
            width: 100%;
            height: 70%;
            bottom: 0;
            transform-style: preserve-3d;
            transform: rotateX(30deg);
            background: linear-gradient(to bottom, rgba(58, 28, 113, 0.7), rgba(58, 28, 113, 0.3));
            border-radius: 10px;
        }
        
        .curtain-left, .curtain-right {
            position: absolute;
            height: 100%;
            width: 50%;
            top: 0;
            background: linear-gradient(to right, #d76d77, #ffaf7b);
            transform-origin: top;
            transition: all 1s ease;
        }
        
        .curtain-left {
            left: 0;
            transform-origin: left;
            border-radius: 0 10px 10px 0;
            animation: curtainOpenLeft 5s ease-in-out infinite;
        }
        
        .curtain-right {
            right: 0;
            transform-origin: right;
            border-radius: 10px 0 0 10px;
            animation: curtainOpenRight 5s ease-in-out infinite;
        }
        
        @keyframes curtainOpenLeft {
            0%, 100% { transform: rotateY(0deg); }
            50% { transform: rotateY(70deg); }
        }
        
        @keyframes curtainOpenRight {
            0%, 100% { transform: rotateY(0deg); }
            50% { transform: rotateY(-70deg); }
        }
        
        .spotlight {
            position: absolute;
            width: 200px;
            height: 200px;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
            border-radius: 50%;
            opacity: 0.8;
            animation: spotlightMove 8s ease-in-out infinite;
            filter: blur(5px);
        }
        
        @keyframes spotlightMove {
            0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.8; }
            25% { transform: translateX(-80%) scale(1.2); opacity: 0.9; }
            50% { transform: translateX(-20%) scale(1.1); opacity: 1; }
            75% { transform: translateX(-60%) scale(0.9); opacity: 0.7; }
        }
        
        .actor {
            position: absolute;
            width: 40px;
            height: 80px;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50% 50% 0 0;
            animation: actorMove 10s ease-in-out infinite;
        }
        
        @keyframes actorMove {
            0%, 100% { transform: translateX(-50%) rotate(0deg); }
            25% { transform: translateX(-100px) rotate(-10deg); }
            50% { transform: translateX(100px) rotate(10deg); }
            75% { transform: translateX(-30px) rotate(5deg); }
        }
        
        .calendar-animation {
            position: relative;
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, #3a1c71, #d76d77);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .calendar-grid {
            position: absolute;
            width: 80%;
            height: 70%;
            top: 15%;
            left: 10%;
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            grid-template-rows: repeat(5, 1fr);
            gap: 5px;
        }
        
        .calendar-cell {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: bold;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .calendar-cell:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }
        
        .calendar-highlight {
            animation: calendarHighlight 5s ease-in-out infinite;
        }
        
        @keyframes calendarHighlight {
            0%, 100% { background: rgba(255, 255, 255, 0.1); transform: scale(1); }
            50% { background: rgba(255, 175, 123, 0.5); transform: scale(1.15); }
        }
        
        .floating-icons {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }
        
        .icon {
            position: absolute;
            width: 30px;
            height: 30px;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 50%;
            animation: floatIcon 8s ease-in-out infinite;
        }
        
        .icon:nth-child(1) {
            top: 30%;
            left: 20%;
            animation-delay: 0s;
        }
        
        .icon:nth-child(2) {
            top: 60%;
            left: 70%;
            animation-delay: 1s;
        }
        
        .icon:nth-child(3) {
            top: 20%;
            left: 80%;
            animation-delay: 2s;
        }
        
        .icon:nth-child(4) {
            top: 70%;
            left: 30%;
            animation-delay: 3s;
        }
        
        @keyframes floatIcon {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.7; }
            25% { transform: translateY(-20px) rotate(10deg); opacity: 1; }
            50% { transform: translateY(0) rotate(0deg); opacity: 0.7; }
            75% { transform: translateY(20px) rotate(-10deg); opacity: 0.5; }
        }