/* 
 * Consolidated styles for BizTycoonWeb
 * This file combines styles from:
 * - landing-page.html
 * - reservation.html
 * - thank-you.html
 * - test.html
 */

/* Root Variables */
:root {
    --charcoal: #202020;
    --light-charcoal: #444444;
    --cyan: #007385;
    --cyan-light: #0096ad;
    --cyan-pale: #c4f7ff;
    --orange: #ff9800;
    --orange-light: #ffc947;
    --orange-pale: #ffe098;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #888888;
    --success-green: #4CAF50;
    --card-radius: 20px;
    --button-radius: 10px;
    --accent-color: #ff9800;
}

/* Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light-gray);
    color: var(--charcoal);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header/Navigation */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}
a {
    color: var(--cyan);
}
.cyan {
    color: var(--cyan);
}
.bold {
    font-weight: 700;
}
.c {
    text-align: center;
}
.fs12 {
    font-size: 1.2rem;
}
.flex-c {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;  
}
.align-start {
    align-items: flex-start;
}
.ml20 {
    margin-left: 20px;
}
.gap20 {
    gap: 20px;
}
.gap30 {
    gap: 30px;
}
.w100 {
    width: 100%;
}
.maxw800 {
    max-width: 800px;
    margin: auto;
}
.theres-more {
    display: flex;
    gap: 30px;
    font-weight: bold;
    justify-content: center;
    margin: auto;
    width: fit-content;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--charcoal);
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--charcoal);
}

.header-icon {
    height: 64px;
    width: auto;
    margin-right: 10px;
}

.logo span {
    color: var(--cyan);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--cyan);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-cyan) 100%);
    padding: 130px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* .hero::before {
    content: "";
    position: absolute;
    width: 800px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(ellipse, var(--cyan-light) 0%, rgba(255, 255, 2555, 0) 70%);
    opacity: 0.4;
    top: 350px;
    right: 0px;
    z-index: 0;
} */

/* .hero::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--orange-light) 0%, rgba(255, 152, 0, 0) 70%);
    opacity: 0.4;
    bottom: -50px;
    left: 10%;
    z-index: 0;
} */

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* New split hero layout */
.hero-split {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1500px;
    height: 550px;
}
.hero-image::before {
    content: "";
    position: absolute;
    width: 800px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(ellipse, var(--cyan-light) 0%, rgba(255, 255, 2555, 0) 70%);
    opacity: 0.4;
    top: 250px;
    right: -150px;
    z-index: 0;
}

.gameplay-preview {
    max-width: 80%;
    height: auto;
    border-radius: var(--card-radius);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transform: rotateX(50deg) rotateZ(20deg);
    transition: transform 0.5s ease;
    background-color: black;
}
#hero-slideshow-image{
    max-width: 100%;
    border-radius: var(--card-radius);
}

.gameplay-preview:hover {
    transform: rotateX(30deg) rotateZ(5deg);
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--charcoal);
    line-height: 1.2;
}

.hero h1 span {
    color: var(--cyan);
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--light-charcoal);
}

/* Waitlist Section */
.waitlist {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-light) 100%);
    padding: 60px 0;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 184, 212, 0.3);
}

.waitlist::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    top: -200px;
    right: 10%;
}

.waitlist h2 {
    font-size: 2rem;
    line-height: 2.5rem;
    line-height: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.waitlist p {
    font-size: 18px;
    margin-bottom: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.waitlist-form {
    max-width: 500px;
}

.email-form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
}

.email-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: var(--button-radius);
    font-size: 16px;
}

.email-form button {
    background-color: var(--orange);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--button-radius);
    cursor: pointer;
    transition: background-color 0.3s;
}

.email-form button:hover {
    background-color: var(--orange-light);
}

.form-row {
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2rem;
    line-height: 2.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--cyan);
}

.section-header p {
    color: var(--light-charcoal);
    max-width: 800px;
    margin: 0 auto;
}

/* Features/What Is It Section */
.what-is-it {
    padding: 100px 0;
    background-color: var(--white);
}

.what-is-it p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--orange-pale);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

/* Add animation for features */
.feature-card {
    background-color: var(--white);
    border-radius: var(--card-radius);
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Delay each card animation */
.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(0, 184, 212, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 6px 16px rgba(0, 184, 212, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-icon i {
    font-size: 32px;
    color: var(--cyan);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 184, 212, 0.35);
    background-color: var(--cyan);
}

.feature-card:hover .feature-icon i {
    color: var(--white);
    transform: scale(1.2);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--charcoal);
}

.feature-card p {
    color: var(--light-charcoal);
}

/* Creator Section */
.creator-section {
    padding: 100px 0;
    background-color: var(--white);
    text-align: center;
}

.creator-content {
    max-width: 800px;
    margin: 0 auto;
}

.creator-content h2 {
    font-size: 2rem;
    line-height: 2.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 30px;
}

.creator-content em {
    font-style: italic;
    color: var(--light-charcoal);
    font-size: 20px;
    display: block;
    margin-bottom: 50px;
}

.creator-perks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.perk-card {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: var(--card-radius);
    text-align: center;
}

.perk-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--charcoal);
}

.perk-card p {
    color: var(--light-charcoal);
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background-color: var(--cyan-pale);
}
.how-it-works .gap {
    gap: 20px;
}
.how-it-works ul {
    max-width: 350px;
}
    

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 60px;
    gap: 30px;
}

.step {
    flex-basis: calc(25% - 30px);
    min-width: 250px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--charcoal);
}

.step p {
    color: var(--light-charcoal);
}

/* Concerns Section */
.concerns {
    padding: 100px 0;
    background-color: var(--white);
}

.concerns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.concern-card {
    background-color: var(--light-gray);
    border-radius: var(--card-radius);
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.concern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.concern-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--charcoal);
}

.concern-card p {
    color: var(--light-charcoal);
}

/* Can It Be Fun Section */
.can-it-be-fun {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-light) 100%);
    color: var(--white);
    text-align: center;
}

.can-it-be-fun h2 {
    font-size: 2rem;
    line-height: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.can-it-be-fun p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.fun-fact {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: var(--card-radius);
    max-width: 800px;
    margin: 0 auto;
}

/* Final Call to Action */
.final-cta {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

.final-cta h2 {
    font-size: 2rem;
    line-height: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: var(--white);
    color: var(--orange);
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: var(--button-radius);
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: var(--charcoal);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-column {
    flex-basis: 250px;
    margin-bottom: 30px;
}

.footer-column h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--cyan-light);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--cyan);
}

/* Social media links styling */
.footer-column ul li a i.fab {
    width: 20px;
    margin-right: 8px;
    text-align: center;
}

.footer-column ul li a:hover i.fa-facebook-f {
    color: #4267B2; /* Facebook blue */
}

.footer-column ul li a:hover i.fa-youtube {
    color: #FF0000; /* YouTube red */
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* VIP Section */
.vip-section {
    padding: 60px 0;
    background-color: var(--white);
}

.vip-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.vip-content {
    flex: 1;
    min-width: 300px;
}

.vip-content h2 {
    font-size: 2rem;
    line-height: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.vip-benefits {
    margin: 30px 0;
}

.benefit {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.benefit i {
    color: var(--success-green);
    margin-right: 15px;
    font-size: 20px;
}

.benefit-text h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.benefit-text p {
    color: var(--light-charcoal);
}

.vip-payment {
    flex: 1;
    min-width: 300px;
    background-color: var(--orange-pale);
    padding: 30px;
    border-radius: var(--card-radius);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.vip-payment:hover {
    transform: translateY(-5px);
}

.vip-payment h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--charcoal);
}

.price {
    font-size: 42px;
    font-weight: 700;
    color: var(--orange);
    text-align: center;
    margin-bottom: 30px;
}

.price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--charcoal);
}

.stripe-btn {
    display: block;
    width: 100%;
    background-color: var(--orange);
    color: var(--white);
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--button-radius);
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 15px;
}

.stripe-btn:hover {
    background-color: var(--orange-light);
}

.security-info {
    text-align: center;
    color: var(--charcoal);
    font-size: 14px;
}

.security-info i {
    margin-right: 5px;
}

/* Thank You Section */
.thank-you {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-light) 100%);
    padding: 40px 0;
    color: var(--white);
    text-align: center;
}

.thank-you h1 {
    font-size: 2rem;
    line-height: 2.5rem;
    margin-bottom: 15px;
}

.thank-you p {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 20px;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    color: var(--orange);
    padding: 0 0 5px 0;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid var(--orange);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.benefit-card {
    background-color: var(--light-gray);
    border-radius: var(--card-radius);
    padding: 30px;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-card h3 {
    font-size: 22px;
    color: var(--charcoal);
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--cyan);
}

.benefit-card p {
    margin-bottom: 20px;
}

/* Share Section */
.share {
    padding: 80px 0;
    background-color: var(--light-gray);
    text-align: center;
}

.share-container {
    max-width: 700px;
    margin: 0 auto;
}

.share-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
    padding: 15px 20px;
    border-radius: var(--button-radius);
    margin: 30px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.share-link input {
    flex: 1;
    border: none;
    padding: 10px;
    font-size: 16px;
    background-color: transparent;
    color: var(--charcoal);
    outline: none;
}

.copy-btn {
    background-color: var(--cyan);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--button-radius);
    cursor: pointer;
    transition: background-color 0.3s;
}

.copy-btn:hover {
    background-color: var(--cyan-light);
}

.social-share {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 15px 0;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: var(--orange);
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s, color 0.3s;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: var(--orange-light);
}

.social-icon:nth-child(3):hover {
    background-color: var(--cyan);
    color: white;
}

/* Test Page Specific */
.wrap {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.anim {
    animation: spin 5s ease infinite;
}

@keyframes spin {
    0%, 100% {
        transform: rotate(0deg);
    }
    10% {
        transform: rotate(480deg); 
    }
    30% {
        transform: rotate(480deg); 
    }
    40% {
        transform: rotate(960deg); 
    }
    60% {
        transform: rotate(960deg); 
    }
    70% {
        transform: rotate(1440deg); 
    }
    100% {
        transform: rotate(1440deg); 
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {

    .hero {
        padding: 120px 0 70px;
    }
    .hero h1 {
        font-size: 2.2rem;
        line-height: 2.5rem;
    }
    
    .hero p {
        font-size: 18px;
        margin-bottom: 0px;
    }
    
    .hero-split {
        flex-direction: column;
        gap: 0;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 40px;
        line-height: 1.1;
    }
    
    .hero-text p {
        margin-bottom: 0;
    }
    
    .gameplay-preview {
        max-width: 90%;
        transform: rotateX(50deg) rotateZ(25deg);
    }
    
    .hero::before {
        top: 550px;
        right: -150px;
    }
    
    .thank-you-header {
        padding: 90px 0 50px;
    }
    
    .thank-you-content h1 {
        font-size: 2rem;
        line-height: 2.5rem;
    }
    
    .email-form {
        flex-direction: column;
    }
    
    .email-form input {
        border-radius: var(--button-radius);
        margin-bottom: 10px;
    }
    
    .email-form button {
        border-radius: var(--button-radius);
    }
    
    .nav-links {
        display: none;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .step {
        flex-basis: calc(50% - 30px);
    }
    
    .vip-container {
        flex-direction: column;
    }
    
    .thank-you h1 {
        font-size: 2rem;
        line-height: 2.6rem;
    }
    
    .share-link {
        flex-direction: column;
        gap: 10px;
    }
    
    .share-link input {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .step {
        flex-basis: 100%;
    }
}

@media (max-width: 1100px) {
    .step {
        flex-basis: calc(50% - 30px);
    }
}

/* Thank You Header Section */
.thank-you-header {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.thank-you-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--charcoal);
    line-height: 1.2;
}

.thank-you-content p {
    font-size: 18px;
    margin-bottom: 0;
    color: var(--light-charcoal);
} 

.mt10 { margin-top: 10px !important;}
.mt20 { margin-top: 20px !important;}
.mt30 { margin-top: 30px !important;}
.mt40 { margin-top: 40px !important;}
.mt50 { margin-top: 50px !important;}

.mb20 { margin-bottom: 20px;}
.mb30 { margin-bottom: 30px;}
.mb40 { margin-bottom: 40px;}
.mb50 { margin-bottom: 50px;}

/* Down Arrow */
.down-arrow {
    text-align: center;
    margin: 15px auto 0;
    cursor: pointer;
    transition: transform 0.2s;
}

.down-arrow:hover {
    transform: scale(1.2);
}

.down-arrow i {
    color: var(--white);
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-7px);
    }
}

/* Subscribe message styles */
.subscribe-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
    display: none;
}

.subscribe-message.success {
    background-color: rgba(40, 167, 69, 0.1);
    color: #cdf5bb;
    border: 1px solid rgba(40, 167, 69, 0.2);
    display: block;
}

.subscribe-message.error {
    background-color: rgba(220, 53, 69, 0.1);
    color: #ffacb5;
    border: 1px solid rgba(220, 53, 69, 0.2);
    display: block;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.pricing-note {
    text-align: center;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 40px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.price {
    font-size: 36px;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.period {
    color: var(--text-secondary);
    font-size: 14px;
}

.pricing-features {
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features h4 {
    color: var(--text-primary);
    margin-bottom: 10px;
}

.pricing-features p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.pricing-cta {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.pricing-cta:hover {
    background: var(--cyan-dark);
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

/* Pricing Toggle */
.pricing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    gap: 15px;
}

.pricing-toggle-label {
    font-weight: 500;
    color: var(--text-primary);
}

.discount-badge {
    background-color: var(--accent-color);
    color: white;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 5px;
}

.pricing-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.pricing-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: var(--accent-color);
}

input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

/* Price Container */
.price-container {
    position: relative;
}

.monthly-price, .annual-price {
    display: none;
}

.monthly-price.active, .annual-price.active {
    display: block;
}

.annual-note {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 5px;
    display: none;
}

.annual-note.active {
    display: block;
}

/* Header and Navigation */
header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-light);
    font-size: 1.5rem; /* Adjust as needed */
    font-weight: bold;
}

.header-icon {
    height: 40px; /* Adjust as needed */
    margin-right: 10px;
}

.nav-links {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

.nav-links li {
    margin-left: 25px; /* Spacing between nav items */
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-accent); /* Highlight color for hover/active */
}

/* Mobile Menu Styles */
.mobile-menu-icon {
    display: none; /* Hidden by default, shown in media query */
    font-size: 1.8rem;
    color: var(--text-light);
    cursor: pointer;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95); /* Dark overlay */
    z-index: 1000; /* Ensure it's on top */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-close-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-nav-links li {
    margin: 20px 0;
}

.mobile-nav-links a {
    text-decoration: none;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
    color: var(--primary-accent);
}

/* Responsive adjustments for navigation */
@media (max-width: 768px) { /* Adjust breakpoint as needed */
    .desktop-nav-links {
        display: none; /* Hide desktop links on mobile */
    }
    .mobile-menu-icon {
        display: block; /* Show hamburger icon on mobile */
    }
}

/* Terms page list styling */
section.container ul {
    padding-left: 40px; /* Insets the entire list, including bullets */
}

section.container ul li {
    margin-bottom: 10px; /* Adds some space between list items */
}




