/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2A0A44;
    overflow-x: hidden;
    background-color: #FAFAFA;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #2A0A44 !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 235, 59, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Fredoka', 'Poppins', 'Nunito', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFEB3B;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #FFEB3B;
    transition: all 0.3s ease;
}

.logo-link:hover {
    color: #FFEB3B;
    transform: scale(1.05);
}

.nav-logo i {
    font-size: 1.8rem;
    color: #FFEB3B;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #FAFAFA;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #FFEB3B;
}

.nav-links a.active {
    color: #FFEB3B;
}

.nav-cta {
    display: flex;
    align-items: center;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #FAFAFA;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #7B2EFF 0%, #E040FB 100%) !important;
    color: #FAFAFA !important;
    box-shadow: 0 4px 15px rgba(123, 46, 255, 0.3) !important;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 46, 255, 0.4);
}

.btn-secondary {
    background: transparent !important;
    color: #7B2EFF !important;
    border: 2px solid #7B2EFF !important;
}

.btn-secondary:hover {
    background: #7B2EFF !important;
    color: #FAFAFA !important;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #2A0A44 0%, #7B2EFF 50%, #E040FB 100%) !important;
    color: #FAFAFA !important;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23FFEB3B" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: 'Fredoka', 'Poppins', 'Nunito', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #FAFAFA;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, #FFEB3B 0%, #C7FF3D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: rgba(250, 250, 250, 0.9);
    line-height: 1.8;
    max-width: 100%;
    white-space: normal;
}

.hero-line-1,
.hero-line-2 {
    display: block;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Fredoka', 'Poppins', 'Nunito', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFEB3B;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(250, 250, 250, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    margin: 0 auto;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #2A0A44;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(42, 10, 68, 0.3);
    position: relative;
    overflow: hidden;
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(135deg, #7B2EFF 0%, #E040FB 100%);
    border-radius: 30px 30px 0 0;
}

/* Bot Header */
.bot-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(135deg, #7B2EFF 0%, #E040FB 100%);
    border-radius: 30px 30px 0 0;
    display: flex;
    align-items: center;
    padding: 0 15px;
    gap: 12px;
    z-index: 10;
}

.bot-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2A0A44;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

    .bot-info {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

.bot-name {
    font-family: 'Fredoka', 'Poppins', 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #FAFAFA;
    line-height: 1.2;
}

.bot-status {
    font-size: 0.75rem;
    color: rgba(250, 250, 250, 0.8);
    line-height: 1;
}

.bot-chat {
    margin-top: 80px;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: calc(100% - 160px);
    overflow-y: auto;
}

.chat-message {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.chat-message.bot {
    justify-content: flex-start;
}

.chat-message.user {
    justify-content: flex-end;
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFEB3B 0%, #C7FF3D 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #2A0A44;
    flex-shrink: 0;
}

.message-content {
    background: rgba(250, 250, 250, 0.1);
    padding: 12px 16px;
    border-radius: 18px;
    max-width: 200px;
    color: #FAFAFA;
    font-size: 0.9rem;
    line-height: 1.4;
}

.chat-message.user .message-content {
    background: linear-gradient(135deg, #7B2EFF 0%, #E040FB 100%);
}

.inline-button {
    margin-top: 8px;
    text-align: center;
}

.pay-button {
    display: inline-block;
    background: linear-gradient(135deg, #00D4AA 0%, #00B894 100%);
    color: #FAFAFA;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 212, 170, 0.3);
}

.pay-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 212, 170, 0.4);
    color: #FAFAFA;
}

/* Chat Input */
.chat-input {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: #2A0A44;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.input-container {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 8px 15px;
    backdrop-filter: blur(10px);
}

.chat-text-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #FAFAFA;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    padding: 8px 0;
}

.chat-text-input::placeholder {
    color: rgba(250, 250, 250, 0.6);
}

.send-button {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7B2EFF 0%, #E040FB 100%);
    border: none;
    color: #FAFAFA;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    text-decoration: none;
}

.send-button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(123, 46, 255, 0.4);
}

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

.section-header h2 {
    font-family: 'Fredoka', 'Poppins', 'Nunito', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2A0A44;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #FAFAFA;
}

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

.feature-card {
    background: #FAFAFA;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(42, 10, 68, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #7B2EFF;
    box-shadow: 0 20px 40px rgba(123, 46, 255, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFEB3B 0%, #C7FF3D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #2A0A44;
}

.feature-card h3 {
    font-family: 'Fredoka', 'Poppins', 'Nunito', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2A0A44;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, #2A0A44 0%, #7B2EFF 100%);
    color: #FAFAFA;
}

.how-it-works .section-header h2 {
    color: #FAFAFA !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.how-it-works .section-header p {
    color: rgba(250, 250, 250, 0.9) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Override any conflicting styles for How It Works section */
.how-it-works .section-header h2,
.how-it-works .section-header p {
    color: #FAFAFA !important;
}

.how-it-works .section-header p {
    color: rgba(250, 250, 250, 0.9) !important;
}

/* Force override for any conflicting styles */
.how-it-works .section-header h2 {
    color: #FAFAFA !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.how-it-works .section-header p {
    color: rgba(250, 250, 250, 0.9) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

/* Additional specificity to ensure these rules take precedence */
section.how-it-works .section-header h2 {
    color: #FAFAFA !important;
}

section.how-it-works .section-header p {
    color: rgba(250, 250, 250, 0.9) !important;
}

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

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFEB3B 0%, #C7FF3D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Fredoka', 'Poppins', 'Nunito', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2A0A44;
}

.step-content h3 {
    font-family: 'Fredoka', 'Poppins', 'Nunito', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #FAFAFA;
    margin-bottom: 1rem;
}

.step-content p {
    color: rgba(250, 250, 250, 0.8);
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #FAFAFA;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.pricing-card {
    background: #FAFAFA;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(42, 10, 68, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    height: 650px;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: #7B2EFF;
    box-shadow: 0 20px 40px rgba(123, 46, 255, 0.2);
}

.pricing-card.featured {
    border-color: #7B2EFF;
    background: linear-gradient(135deg, rgba(123, 46, 255, 0.05) 0%, rgba(224, 64, 251, 0.05) 100%);
}

.package-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFEB3B 0%, #C7FF3D 100%);
    color: #2A0A44;
    padding: 8px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-name {
    font-family: 'Fredoka', 'Poppins', 'Nunito', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2A0A44;
    margin-bottom: 0.5rem;
}

.package-stars {
    font-family: 'Fredoka', 'Poppins', 'Nunito', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #7B2EFF;
    margin-bottom: 1rem;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2A0A44;
    margin-bottom: 2rem;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.package-features .feature {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid rgba(42, 10, 68, 0.1);
}

/* Clickable Pricing Cards */
.pricing-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.pricing-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.pricing-card-link:hover .pricing-card {
    transform: translateY(-8px);
    border-color: #7B2EFF;
    box-shadow: 0 25px 50px rgba(123, 46, 255, 0.25);
}

.package-cta {
    margin-top: auto;
    padding: 12px 24px;
    background: linear-gradient(135deg, #7B2EFF 0%, #E040FB 100%);
    color: #FAFAFA;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    align-self: center;
}

.pricing-card-link:hover .package-cta {
    background: linear-gradient(135deg, #8B3EFF 0%, #F050FB 100%);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(123, 46, 255, 0.4);
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2A0A44 0%, #7B2EFF 100%);
    color: #FAFAFA;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Fredoka', 'Poppins', 'Nunito', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FAFAFA;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(250, 250, 250, 0.9);
}

.cta .btn-primary {
    background: linear-gradient(135deg, #FFEB3B 0%, #C7FF3D 100%);
    color: #2A0A44;
    font-weight: 700;
}

.cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 235, 59, 0.4);
}

/* Footer */
.footer {
    background: #2A0A44;
    color: #FAFAFA;
    padding: 60px 0 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Fredoka', 'Poppins', 'Nunito', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFEB3B;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 1.8rem;
    color: #FFEB3B;
}

.footer-section h4 {
    font-family: 'Fredoka', 'Poppins', 'Nunito', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFEB3B;
    margin-bottom: 1rem;
}

.footer-section a {
    display: block;
    color: rgba(250, 250, 250, 0.8);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FFEB3B;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 235, 59, 0.2);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: rgba(250, 250, 250, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #2A0A44;
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        border-bottom: 1px solid rgba(255, 235, 59, 0.2);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        font-family: 'Fredoka', 'Poppins', 'Nunito', sans-serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: #FFEB3B !important;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .phone-mockup {
        order: -1;
    }
    
    .bot-header {
        height: 55px;
        padding: 0 14px;
    }
    
    .bot-avatar {
        width: 38px;
        height: 38px;
    }
    
    .bot-name {
        font-size: 0.95rem;
    }
    
    .bot-status {
        font-size: 0.75rem;
    }
    
    .bot-chat {
        margin-top: 75px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .pricing-card.featured {
        order: -1;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-logo {
        font-size: 1.3rem;
        color: #FFEB3B !important;
    }
    
    .nav-logo i {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        white-space: normal;
        line-height: 1.4;
    }
    
    .hero-line-1,
    .hero-line-2 {
        display: block;
        line-height: 1.3;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .phone-screen {
        padding: 15px;
    }
    
    .bot-header {
        height: 50px !important;
        padding: 0 12px !important;
        gap: 10px !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 10 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }
    
    .bot-avatar {
        width: 35px !important;
        height: 35px !important;
        flex-shrink: 0 !important;
    }
    
    .avatar-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 50% !important;
    }
    
    .bot-info {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: flex-start !important;
    }
    
    .bot-name {
        font-size: 0.9rem !important;
        line-height: 1.2 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    
    .bot-status {
        font-size: 0.7rem !important;
        line-height: 1 !important;
        white-space: nowrap !important;
    }
    
    .bot-chat {
        margin-top: 70px !important;
        gap: 12px !important;
    }
    
    .chat-message.bot {
        justify-content: flex-start !important;
        align-self: flex-start !important;
    }
    
    .chat-message.user {
        justify-content: flex-end !important;
        align-self: flex-end !important;
    }
    
    .message-content {
        max-width: 180px !important;
        font-size: 0.85rem !important;
        padding: 10px 14px !important;
        text-align: left !important;
    }
    
    .chat-message.bot .message-content {
        text-align: left !important;
    }
    
    .chat-message.bot .inline-button {
        text-align: center !important;
    }
    
    .chat-message.user .message-content {
        text-align: right !important;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .pricing-card {
        padding: 30px 20px;
        height: 600px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.pricing-card,
.step {
    animation: fadeInUp 0.6s ease forwards;
}

/* Loading Animation */
html {
    scroll-behavior: smooth;
}

.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* About Page Styles */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2A0A44 0%, #7B2EFF 100%);
    color: #FAFAFA;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-content h2 {
    font-family: 'Fredoka', 'Poppins', 'Nunito', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #FAFAFA;
}

.about-content h3 {
    font-family: 'Fredoka', 'Poppins', 'Nunito', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #FAFAFA;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(250, 250, 250, 0.9);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    color: rgba(250, 250, 250, 0.9);
    position: relative;
    padding-left: 2rem;
    list-style-type: none;
    list-style: none;
}

.feature-list li:before {
    content: '★';
    position: absolute;
    left: 0;
    color: #FFEB3B;
    font-size: 1.2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin: 3rem 0;
    width: 100%;
}

.value-item {
    background: rgba(250, 250, 250, 0.1);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 235, 59, 0.2);
    width: 100%;
    box-sizing: border-box;
}

.value-item h3 {
    font-family: 'Fredoka', 'Poppins', 'Nunito', sans-serif;
    font-size: 1.3rem;
    color: #FFEB3B;
    margin-bottom: 1rem;
}

.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stats-card, .cta-card {
    background: rgba(250, 250, 250, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 235, 59, 0.2);
}

.stats-card h3, .cta-card h3 {
    font-family: 'Fredoka', 'Poppins', 'Nunito', sans-serif;
    font-size: 1.5rem;
    color: #FFEB3B;
    margin-bottom: 1.5rem;
}

.cta-card p {
    margin-bottom: 2rem;
    color: rgba(250, 250, 250, 0.9);
    line-height: 1.6;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 235, 59, 0.2);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-number {
    font-family: 'Fredoka', 'Poppins', 'Nunito', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFEB3B;
}

.stat-label {
    color: rgba(250, 250, 250, 0.8);
    font-size: 0.9rem;
}

/* Services Page Styles */
.services-section {
    padding: 80px 0;
    background: #FAFAFA;
}

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

.service-card {
    background: #FAFAFA;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(42, 10, 68, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #7B2EFF;
    box-shadow: 0 20px 40px rgba(123, 46, 255, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFEB3B 0%, #C7FF3D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: #2A0A44;
}

.service-card h3 {
    font-family: 'Fredoka', 'Poppins', 'Nunito', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2A0A44;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
    list-style: none;
    list-style-type: none;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #7B2EFF;
    font-weight: bold;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2A0A44 0%, #7B2EFF 100%);
    color: #FAFAFA;
}

/* Contact Section Header Overrides */
.contact-section .section-header h2 {
    color: #FAFAFA !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-section .section-header p {
    color: rgba(250, 250, 250, 0.9) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info h2, .contact-form h2 {
    font-family: 'Fredoka', 'Poppins', 'Nunito', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #FAFAFA;
    margin-bottom: 1rem;
}

.contact-info p, .contact-form p {
    font-size: 1.1rem;
    color: rgba(250, 250, 250, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(250, 250, 250, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 235, 59, 0.2);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFEB3B 0%, #C7FF3D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #2A0A44;
}

.method-content h3 {
    font-family: 'Fredoka', 'Poppins', 'Nunito', sans-serif;
    font-size: 1.2rem;
    color: #FFEB3B;
    margin-bottom: 0.5rem;
}

.method-content p {
    color: rgba(250, 250, 250, 0.8);
    margin-bottom: 1rem;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-badge.online {
    background: #C7FF3D;
    color: #2A0A44;
}

.contact-form-element {
    background: rgba(250, 250, 250, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 235, 59, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #FFEB3B;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(255, 235, 59, 0.3);
    border-radius: 8px;
    background: rgba(250, 250, 250, 0.1);
    color: #FAFAFA;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(250, 250, 250, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFEB3B;
    background: rgba(250, 250, 250, 0.15);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #FAFAFA;
}

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

.faq-item {
    background: #FAFAFA;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(42, 10, 68, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    border-color: #7B2EFF;
    transform: translateY(-2px);
}

.faq-item h3 {
    font-family: 'Fredoka', 'Poppins', 'Nunito', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2A0A44;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Privacy and Terms Pages */
.privacy-section, .terms-section {
    padding: 80px 0;
    background: #FAFAFA;
}

.privacy-content, .terms-content {
    max-width: 800px;
    margin: 0 auto;
    background: #FAFAFA;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(42, 10, 68, 0.1);
}

.last-updated {
    background: linear-gradient(135deg, #FFEB3B 0%, #C7FF3D 100%);
    color: #2A0A44;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 2rem;
}

.privacy-content h2, .terms-content h2 {
    font-family: 'Fredoka', 'Poppins', 'Nunito', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #2A0A44;
    margin-bottom: 1rem;
}

.privacy-content h3, .terms-content h3 {
    font-family: 'Fredoka', 'Poppins', 'Nunito', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2A0A44;
    margin: 2rem 0 1rem;
}

.privacy-content p, .terms-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-content ul, .terms-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.privacy-content li, .terms-content li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.privacy-content strong, .terms-content strong {
    color: #2A0A44;
    font-weight: 600;
}

.policy-footer, .terms-footer {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(123, 46, 255, 0.05) 0%, rgba(255, 235, 59, 0.05) 100%);
    border: 2px solid rgba(123, 46, 255, 0.1);
    border-radius: 15px;
    text-align: center;
    color: #2A0A44;
    position: relative;
    overflow: hidden;
    min-width: 500px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.policy-footer::before, .terms-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #7B2EFF 0%, #FFEB3B 50%, #7B2EFF 100%);
}

.policy-footer strong, .terms-footer strong {
    color: #7B2EFF;
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    word-wrap: normal;
    overflow-wrap: normal;
    hyphens: none;
}

.policy-footer p:last-child, .terms-footer p:last-child {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Section for other pages */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2A0A44 0%, #7B2EFF 100%);
    color: #FAFAFA;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Fredoka', 'Poppins', 'Nunito', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FAFAFA;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(250, 250, 250, 0.9);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Footer Section Updates */
.footer-section {
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Fredoka', 'Poppins', 'Nunito', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFEB3B;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(250, 250, 250, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FFEB3B;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .privacy-content, .terms-content {
        padding: 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
    
    .contact-info h2, .contact-form h2 {
        font-size: 1.5rem;
    }
    
    .privacy-content h2, .terms-content h2 {
        font-size: 1.5rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .faq-item {
        padding: 20px;
    }
}

/* New Stylized Scroll to Top Button */
.scroll-to-top-new {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFEB3B 0%, #C7FF3D 100%);
    color: #2A0A44;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(255, 235, 59, 0.4);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    opacity: 0;
    transform: scale(0.3) translateY(50px) rotate(-180deg);
    pointer-events: none;
}

.scroll-to-top-new:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 235, 59, 0.7);
    color: #2A0A44;
    background: linear-gradient(135deg, #FFD700 0%, #B8FF3D 100%);
}

.scroll-to-top-new.show {
    opacity: 1;
    transform: scale(1) translateY(0) rotate(0deg);
    pointer-events: auto;
    animation: buttonPulse 2s ease-in-out infinite, buttonBounce 0.6s ease-out;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(255, 235, 59, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(255, 235, 59, 0.6), 0 0 20px rgba(255, 235, 59, 0.3);
    }
}

@keyframes buttonBounce {
    0% {
        transform: scale(0.3) translateY(50px) rotate(-180deg);
    }
    50% {
        transform: scale(1.2) translateY(-10px) rotate(0deg);
    }
    100% {
        transform: scale(1) translateY(0) rotate(0deg);
    }
}

@media (max-width: 768px) {
    .scroll-to-top-new {
        bottom: 30px;
        right: 30px;
        width: 55px;
        height: 55px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .scroll-to-top-new {
        bottom: 25px;
        right: 25px;
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
}

/* ===== MOBILE-SPECIFIC STYLES (768px and below) ===== */
@media (max-width: 768px) {
  
  /* ===== MOBILE SCROLL BUTTONS ===== */
  /* Hide ALL scroll buttons except the new one */
  button[id="scroll-to-top"]:not(.scroll-to-top-new),
  button[class*="scroll"]:not(.scroll-to-top-new),
  button[id*="scroll"]:not(.scroll-to-top-new),
  button[class*="scroll-to-top"]:not(.scroll-to-top-new),
  .scroll-to-top:not(.scroll-to-top-new),
  .scroll-to-top-old,
  #scroll-to-top-old,
  button[id*="scroll-to-top-old"],
  button[class*="scroll-to-top-old"],
  button[class*="scroll-old"],
  button[id*="scroll-old"],
  .floating-action-button:not(.scroll-to-top-new),
  button.floating-action-button:not(.scroll-to-top-new) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    z-index: -9999 !important;
  }

  /* Ensure the new scroll button is properly positioned and styled for mobile */
  .scroll-to-top-new {
    display: flex !important;
    visibility: visible !important;
    z-index: 1000 !important;
    /* Don't override opacity and pointer-events - let JavaScript control show/hide */
  }

  /* ===== MOBILE SERVICE FEATURES ===== */
  /* Complete reset of service features for mobile */
  .service-features ul,
  .service-features li,
  .service-card .service-features ul,
  .service-card .service-features li,
  .services-section .service-features ul,
  .services-section .service-features li {
    /* Remove all default list styling */
    list-style: none !important;
    list-style-type: none !important;
    list-style-image: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
    background: none !important;
    /* Browser-specific overrides */
    -webkit-list-style: none !important;
    -moz-list-style: none !important;
    -ms-list-style: none !important;
    -webkit-padding-start: 0 !important;
    -moz-padding-start: 0 !important;
    -ms-padding-start: 0 !important;
  }
  
  /* Mobile checkmark styling */
  .service-features li:before,
  .service-card .service-features li:before,
  .services-section .service-features li:before {
    content: '✓' !important;
    color: #7B2EFF !important;
    font-weight: bold !important;
    font-size: 1rem !important;
    position: absolute !important;
    left: 0 !important;
    top: 0.2rem !important;
    line-height: 1.5 !important;
    width: 1rem !important;
    text-align: center !important;
  }

  /* Ensure proper text positioning */
  .service-features li,
  .service-card .service-features li,
  .services-section .service-features li {
    padding-left: 1.8rem !important;
    position: relative !important;
    line-height: 1.5 !important;
    margin-bottom: 0.5rem !important;
  }

  /* ===== MOBILE CHAT INPUT ===== */
  /* Mobile chat input styling */
  .chat-input {
    padding: 12px !important;
    background: #2A0A44 !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
  }

  .input-container {
    gap: 8px !important;
    padding: 6px 12px !important;
    border-radius: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .chat-text-input {
    font-size: 0.85rem !important;
    padding: 6px 0 !important;
    flex: 1 !important;
    min-width: 0 !important;
  }

  .send-button {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.75rem !important;
    border-radius: 50% !important;
    flex-shrink: 0 !important;
    margin-left: 8px !important;
  }

  /* ===== MOBILE EFFECTIVE DATES BLOCKS ===== */
  /* Mobile styling for policy and terms footer blocks */
  .policy-footer, .terms-footer {
    min-width: auto !important;
    max-width: 100% !important;
    margin: 2rem 1rem !important;
    padding: 1.5rem !important;
    border-radius: 12px !important;
  }

  .policy-footer strong, .terms-footer strong {
    font-size: 1rem !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
  }

  .policy-footer p:last-child, .terms-footer p:last-child {
    font-size: 0.9rem !important;
    max-width: 100% !important;
    margin: 0.5rem 0 0 0 !important;
  }
}