:root {
    --primary-color: #6B46C1;
    --secondary-color: #9333EA;
    --accent-color: #F59E0B;
    --dark-bg: #0F0F1E;
    --light-bg: #1A1A2E;
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0B8;
    --gradient-primary: linear-gradient(135deg, #6B46C1 0%, #9333EA 100%);
    --gradient-cosmic: linear-gradient(135deg, #0F0F1E 0%, #1A1A2E 50%, #2D1B69 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.cosmic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-cosmic);
    z-index: -2;
}

.cosmic-bg::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(white 1px, transparent 1px),
        radial-gradient(white 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    opacity: 0.1;
    animation: stars 200s linear infinite;
}

@keyframes stars {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

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

/* Header Styles */
.main-header {
    background: rgba(15, 15, 30, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(147, 51, 234, 0.3);
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo i {
    color: var(--accent-color);
    font-size: 1.8rem;
}

.logo:hover {
    transform: translateY(-2px);
    text-shadow: 0 4px 20px rgba(147, 51, 234, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text-primary);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.lang-switcher {
    display: flex;
    gap: 5px;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--text-secondary);
    color: var(--text-secondary);
    padding: 5px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--gradient-primary);
    color: var(--text-primary);
    border-color: transparent;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 20px 20px;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.2); }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gradient-primary);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(147, 51, 234, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(147, 51, 234, 0.6);
}

.hero-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.orbit-1 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-2 {
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 30s;
    animation-direction: reverse;
}

.orbit-3 {
    width: 700px;
    height: 700px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 40s;
}

@keyframes rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Services Section */
.services {
    padding: 80px 0;
    background: rgba(26, 26, 46, 0.5);
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: rgba(45, 27, 105, 0.3);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(147, 51, 234, 0.4);
    border-color: var(--secondary-color);
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--accent-color);
    gap: 10px;
}

/* About Section */
.about {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mystical-orb {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 30% 30%, var(--secondary-color), transparent),
                radial-gradient(circle at 70% 70%, var(--primary-color), transparent);
    border-radius: 50%;
    filter: blur(20px);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: rgba(45, 27, 105, 0.3);
    text-align: center;
}

.cta-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button-secondary {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    border: 2px solid var(--secondary-color);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(147, 51, 234, 0.6);
}

/* Footer */
.main-footer {
    background: rgba(15, 15, 30, 0.95);
    padding: 50px 0 20px;
    margin-top: 80px;
}

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

.footer-section h3 {
    font-family: 'Cinzel', serif;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-section p,
.footer-section ul {
    color: var(--text-secondary);
    line-height: 1.8;
}

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

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

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(147, 51, 234, 0.2);
    border-radius: 50%;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(147, 51, 234, 0.2);
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(15, 15, 30, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-toggle {
        display: flex;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mystical-orb {
        width: 200px;
        height: 200px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .cta-button, .cta-button-secondary {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero {
        min-height: 80vh;
        padding: 60px 15px 15px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .orbit-1 {
        width: 200px;
        height: 200px;
    }
    
    .orbit-2 {
        width: 350px;
        height: 350px;
    }
    
    .orbit-3 {
        width: 500px;
        height: 500px;
    }
}

/* Payment System Styles */
.quick-payment-btn {
    display: block;
    width: 100%;
    padding: 12px 20px;
    margin: 15px 0;
    background: var(--gradient-primary);
    color: var(--text-primary);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
}

.quick-payment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(147, 51, 234, 0.5);
}

.payment-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
}

.payment-modal-content {
    background: var(--light-bg);
    margin: 50px auto;
    padding: 40px;
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 20px;
    max-width: 600px;
    position: relative;
    box-shadow: 0 10px 40px rgba(147, 51, 234, 0.4);
}

.payment-modal-content.success {
    text-align: center;
}

.close-modal {
    color: var(--text-secondary);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--text-primary);
}

.payment-summary {
    background: rgba(45, 27, 105, 0.3);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.price-display {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 15px;
    color: var(--accent-color);
}

.payment-methods h3 {
    margin-bottom: 20px;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.payment-method-btn {
    background: rgba(45, 27, 105, 0.3);
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.payment-method-btn:hover {
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.payment-method-btn.selected {
    background: rgba(147, 51, 234, 0.3);
    border-color: var(--secondary-color);
}

.payment-method-btn i {
    font-size: 2rem;
    color: var(--accent-color);
    display: block;
    margin-bottom: 10px;
}

.payment-method-btn span {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 5px;
}

.payment-method-btn small {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.payment-form {
    background: rgba(45, 27, 105, 0.2);
    padding: 30px;
    border-radius: 10px;
}

.payment-form .form-group {
    margin-bottom: 20px;
}

.payment-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 500;
}

.payment-form input {
    width: 100%;
    padding: 12px;
    background: rgba(15, 15, 30, 0.5);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 16px;
    transition: all 0.3s ease;
}

.payment-form input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(147, 51, 234, 0.3);
}

#card-element {
    background: rgba(15, 15, 30, 0.5);
    padding: 12px;
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 8px;
    margin-bottom: 20px;
}

.submit-payment-btn {
    width: 100%;
    padding: 15px;
    background: var(--gradient-primary);
    color: var(--text-primary);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-payment-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(147, 51, 234, 0.5);
}

.submit-payment-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.security-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    color: var(--text-secondary);
}

.security-info i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.success-icon {
    font-size: 4rem;
    color: #10B981;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .payment-options {
        grid-template-columns: 1fr;
    }
    
    .payment-modal-content {
        margin: 20px;
        padding: 30px 20px;
    }
}

/* Live Chat Styles */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chat-button {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(147, 51, 234, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(147, 51, 234, 0.6);
}

.chat-button.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(147, 51, 234, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(147, 51, 234, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(147, 51, 234, 0);
    }
}

.chat-button i {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.chat-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent-color);
    color: var(--text-primary);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

.chat-window {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 380px;
    height: 500px;
    background: var(--light-bg);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chat-window.minimized {
    height: 60px;
}

.chat-window.minimized .chat-messages,
.chat-window.minimized .chat-input-container,
.chat-window.minimized .chat-quick-actions {
    display: none;
}

.chat-header {
    background: rgba(45, 27, 105, 0.5);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(147, 51, 234, 0.3);
}

.chat-header-info h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--text-primary);
}

.chat-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.chat-status i {
    color: #10B981;
    font-size: 0.5rem;
}

.chat-header-actions {
    display: flex;
    gap: 10px;
}

.chat-header-actions button {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.chat-header-actions button:hover {
    color: var(--text-primary);
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-message {
    display: flex;
    gap: 10px;
    animation: fadeIn 0.3s ease;
}

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

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

.message-avatar {
    width: 35px;
    height: 35px;
    background: rgba(147, 51, 234, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.message-avatar i {
    color: var(--accent-color);
    font-size: 1rem;
}

.message-content {
    background: rgba(45, 27, 105, 0.3);
    padding: 10px 15px;
    border-radius: 15px;
    max-width: 70%;
}

.chat-message.user .message-content {
    background: var(--gradient-primary);
}

.message-content p {
    margin: 0;
    color: var(--text-primary);
    font-size: 0.9rem;
    line-height: 1.4;
}

.message-content p + p {
    margin-top: 8px;
}

.chat-input-container {
    padding: 15px;
    border-top: 1px solid rgba(147, 51, 234, 0.3);
}

.chat-user-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-user-info input {
    padding: 10px;
    background: rgba(15, 15, 30, 0.5);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.chat-user-info input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.start-chat-btn {
    padding: 10px;
    background: var(--gradient-primary);
    color: var(--text-primary);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.start-chat-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.4);
}

.chat-input {
    display: flex;
    gap: 10px;
    align-items: center;
}

#chatInput {
    flex: 1;
    padding: 10px 15px;
    background: rgba(15, 15, 30, 0.5);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 25px;
    color: var(--text-primary);
    font-size: 0.9rem;
}

#chatInput:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.send-btn {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.send-btn:hover {
    transform: scale(1.1);
}

.chat-quick-actions {
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    border-top: 1px solid rgba(147, 51, 234, 0.3);
}

.quick-action {
    padding: 8px 12px;
    background: rgba(45, 27, 105, 0.3);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 20px;
    color: var(--text-primary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-action:hover {
    background: rgba(147, 51, 234, 0.3);
    border-color: var(--secondary-color);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@media (max-width: 768px) {
    .chat-window {
        width: calc(100vw - 40px);
        height: calc(100vh - 120px);
        right: 20px;
        bottom: 90px;
    }
    
    .chat-quick-actions {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-button {
        bottom: 90px;
        left: 20px;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: rgba(26, 26, 46, 0.5);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: rgba(45, 27, 105, 0.3);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.3);
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.stars i {
    color: var(--accent-color);
    font-size: 1rem;
}

.testimonial-text {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: rgba(147, 51, 234, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.author-info h4 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Process Section */
.process {
    padding: 80px 0;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    text-align: center;
    min-width: 200px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 5px 20px rgba(147, 51, 234, 0.4);
}

.process-step h3 {
    color: var(--text-primary);
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.process-arrow {
    color: var(--secondary-color);
    font-size: 2rem;
    margin: 0 20px;
}

/* FAQ Preview Section */
.faq-preview {
    padding: 80px 0;
    background: rgba(26, 26, 46, 0.5);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    background: rgba(45, 27, 105, 0.3);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(147, 51, 234, 0.3);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--secondary-color);
    transform: translateY(-3px);
}

.faq-item h3 {
    color: var(--text-primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h3 i {
    color: var(--accent-color);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Blog Preview Section */
.blog-preview {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background: rgba(45, 27, 105, 0.3);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.3);
}

.blog-image {
    height: 200px;
    background: rgba(147, 51, 234, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image i {
    font-size: 4rem;
    color: var(--accent-color);
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.6;
}

.read-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--accent-color);
}

.blog-cta {
    text-align: center;
    margin-top: 40px;
}

/* Responsive Updates */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 30px;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Booking System Styles */
.booking-btn {
    display: block;
    width: 100%;
    padding: 12px 20px;
    margin: 10px 0;
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-btn:hover {
    background: var(--secondary-color);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
}

.booking-modal {
    display: none;
    position: fixed;
    z-index: 2001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
}

.booking-modal-content {
    background: var(--light-bg);
    margin: 50px auto;
    padding: 40px;
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 20px;
    max-width: 800px;
    position: relative;
}

.close-booking {
    color: var(--text-secondary);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-booking:hover {
    color: var(--text-primary);
}

.booking-steps {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.booking-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 25px;
    border: 2px solid rgba(147, 51, 234, 0.3);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.booking-step.active {
    background: rgba(147, 51, 234, 0.2);
    border-color: var(--secondary-color);
    color: var(--text-primary);
}

.step-number {
    width: 30px;
    height: 30px;
    background: rgba(147, 51, 234, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.booking-step.active .step-number {
    background: var(--gradient-primary);
}

.calendar-container {
    max-width: 400px;
    margin: 0 auto;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-nav {
    background: rgba(147, 51, 234, 0.2);
    border: none;
    color: var(--text-primary);
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-nav:hover {
    background: var(--secondary-color);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day-header {
    text-align: center;
    font-weight: bold;
    color: var(--text-secondary);
    padding: 10px 5px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.calendar-day.empty {
    cursor: default;
}

.calendar-day.past {
    color: rgba(160, 160, 184, 0.3);
    cursor: not-allowed;
}

.calendar-day.available {
    background: rgba(147, 51, 234, 0.2);
    color: var(--text-primary);
}

.calendar-day.available:hover {
    background: rgba(147, 51, 234, 0.4);
    transform: scale(1.1);
}

.calendar-day.unavailable {
    background: rgba(45, 27, 105, 0.2);
    color: var(--text-secondary);
    cursor: not-allowed;
}

.calendar-day.selected {
    background: var(--gradient-primary);
    color: var(--text-primary);
    transform: scale(1.1);
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.time-slot {
    padding: 15px;
    background: rgba(45, 27, 105, 0.3);
    border: 2px solid rgba(147, 51, 234, 0.3);
    border-radius: 10px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.time-slot:hover {
    border-color: var(--secondary-color);
    background: rgba(147, 51, 234, 0.3);
}

.time-slot.selected {
    background: var(--gradient-primary);
    border-color: var(--secondary-color);
}

.booking-summary {
    background: rgba(45, 27, 105, 0.3);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.booking-summary p {
    margin: 10px 0;
    color: var(--text-primary);
}

.booking-form .form-group {
    margin-bottom: 20px;
}

.booking-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 500;
}

.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 12px;
    background: rgba(15, 15, 30, 0.5);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 16px;
    transition: all 0.3s ease;
}

.booking-form input:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(147, 51, 234, 0.3);
}

.confirm-booking-btn {
    width: 100%;
    padding: 15px;
    background: var(--gradient-primary);
    color: var(--text-primary);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.confirm-booking-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(147, 51, 234, 0.5);
}

.confirm-booking-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.booking-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.nav-btn {
    padding: 12px 25px;
    background: rgba(147, 51, 234, 0.2);
    color: var(--text-primary);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-btn:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.booking-success {
    text-align: center;
    padding: 40px 20px;
}

.booking-success .success-icon {
    font-size: 4rem;
    color: #10B981;
    margin-bottom: 20px;
}

.booking-success h2 {
    color: var(--text-primary);
    margin-bottom: 20px;
}

.booking-success p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .booking-modal-content {
        margin: 20px;
        padding: 30px 20px;
    }
    
    .booking-steps {
        flex-direction: column;
        gap: 15px;
    }
    
    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-navigation {
        flex-direction: column;
        gap: 15px;
    }
}