/* Custom styles for the application */
:root {
    --bs-primary: #6a5acd;
    --bs-secondary: #343a40;
    --bs-info: #17a2b8;
}

body {
    font-family: 'Inter', sans-serif;
}

.navbar-brand {
    font-weight: 700;
}

.hero-section {
    padding: 100px 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #fff;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.footer {
    padding: 60px 0;
}

/* Pricing styles */
.price-card {
    transition: transform 0.3s ease;
    border-radius: 30px !important;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    border: none;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.price-card .card-header {
    border-radius: 30px 30px 0 0 !important;
    padding: 30px;
    text-align: center;
}

.price-card .card-body {
    border-radius: 0 0 30px 30px !important;
    padding: 30px;
}

.price-card .btn {
    border-radius: 30px;
    padding: 12px 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: 100%;
}

.price-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Chat styles */
.chat-container {
    height: calc(100vh - 76px);
    display: flex;
    flex-direction: column;
    background-color: #121212;
}

.chat-messages {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.2);
}

.message {
    margin-bottom: 15px;
    display: flex;
    max-width: 85%;
    transition: all 0.3s ease;
}

.message:hover {
    transform: translateY(-2px);
}

.message.user-message {
    justify-content: flex-end;
    margin-left: auto;
}

.message.bot-message {
    justify-content: flex-start;
    margin-right: auto;
}

.message-content {
    padding: 12px 18px;
    border-radius: 18px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    line-height: 1.5;
}

.user-message .message-content {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    border-bottom-right-radius: 5px;
    text-align: right;
}

.bot-message .message-content {
    background-color: #2a2a2a;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom-left-radius: 5px;
    text-align: left;
}

.chat-input-container {
    padding: 15px;
    background-color: #1e1e1e;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
}

.chat-input {
    flex-grow: 1;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    background-color: #2a2a2a;
    color: white;
    font-size: 1rem;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.chat-input:focus {
    outline: none;
    border-color: rgba(106, 17, 203, 0.5);
    box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.25);
}

.chat-submit {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    border: none;
    color: white;
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chat-submit:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(106, 17, 203, 0.4);
}

.typing-indicator {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.typing-indicator span {
    height: 10px;
    width: 10px;
    margin: 0 1px;
    background-color: #9E9EA1;
    display: block;
    border-radius: 50%;
    opacity: 0.4;
}

.typing-indicator span:nth-of-type(1) {
    animation: 1s blink infinite 0.3333s;
}

.typing-indicator span:nth-of-type(2) {
    animation: 1s blink infinite 0.6666s;
}

.typing-indicator span:nth-of-type(3) {
    animation: 1s blink infinite 0.9999s;
}

@keyframes blink {
    50% {
        opacity: 1;
    }
}

/* Payment success/cancel pages */
.payment-status {
    min-height: calc(100vh - 76px - 72px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.payment-status i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.payment-success i {
    color: #28a745;
}

.payment-cancel i {
    color: #dc3545;
}

/* Embed page styles */
.embed-token {
    font-family: monospace;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 5px;
    margin-bottom: 15px;
    word-break: break-all;
}

.embed-script {
    font-family: monospace;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    white-space: pre-wrap;
    margin-bottom: 15px;
}