
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #020122 0%, #1a1a3a 50%, #020122 100%);
    min-height: 100vh;
    color: #333;
    position: relative;
    overflow-x: hidden;
}

.container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
}

/* Background Decorations */
.bg-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, #F4442E, #ff6b4a);
    opacity: 0.05;
    animation: float 8s ease-in-out infinite;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -100px;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: -50px;
    animation-delay: 3s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 30%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    50% { transform: translateY(-30px) rotate(180deg) scale(1.1); }
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid #020122;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;
}

.logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 44px;
    width: auto;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: #020122;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 4px;
    transition: color 0.2s ease;
}

.nav a:hover,
.nav a.active {
    color: #F4442E;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.95);
    margin: 40px 0;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F4442E, #ff6b4a);
}

.hero-content h2 {
    font-size: 2.5rem;
    color: #020122;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
}

.search-bar {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.search-bar:focus-within {
    border-color: #F4442E;
    box-shadow: 0 10px 30px rgba(244, 68, 46, 0.2);
}

.search-bar i {
    color: #999;
    margin-left: 20px;
    font-size: 1.2rem;
}

.search-bar input {
    flex: 1;
    border: none;
    outline: none;
    padding: 15px 20px;
    font-size: 1rem;
    background: transparent;
}

.search-bar button {
    background: linear-gradient(45deg, #F4442E, #ff6b4a);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-bar button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 68, 46, 0.3);
}

/* Quick Actions */
.quick-actions {
    margin: 60px 0;
}

.quick-actions h3 {
    font-size: 2rem;
    color: white;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.action-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(244, 68, 46, 0.1), transparent);
    transition: left 0.5s ease;
}

.action-card:hover::before {
    left: 100%;
}

.action-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(244, 68, 46, 0.2);
    border-color: #F4442E;
}

.action-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #F4442E, #ff6b4a);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.action-icon i {
    font-size: 2rem;
    color: white;
}

.action-card h4 {
    font-size: 1.4rem;
    color: #020122;
    margin-bottom: 10px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.action-card p {
    color: #666;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.status {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    background: #f8f9fa;
    color: #666;
    position: relative;
    z-index: 1;
}

.status.online {
    background: #d4edda;
    color: #155724;
}

.status.online::before {
    content: '●';
    color: #28a745;
    margin-right: 5px;
}

/* FAQ Section */
.faq-section {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 50px;
    margin: 60px 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.faq-section h3 {
    font-size: 2rem;
    color: #020122;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #F4442E;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    background: white;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h4 {
    color: #020122;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-question i {
    color: #F4442E;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 25px 30px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* Support Forms */
.support-forms {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.support-forms.show {
    display: flex;
}

.form-container {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    display: none;
    animation: slideUp 0.3s ease;
}

.form-container.active {
    display: block;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 30px 30px 20px;
    border-bottom: 2px solid #f0f0f0;
}

.back-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #020122;
}

.back-btn:hover {
    background: #F4442E;
    color: white;
    transform: translateX(-2px);
}

.form-header h3 {
    color: #020122;
    font-size: 1.5rem;
    font-weight: 600;
    flex: 1;
}

.online-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #28a745;
    font-weight: 600;
    font-size: 0.9rem;
}

.online-indicator i {
    font-size: 0.7rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Chat Styles */
.chat-container {
    height: 500px;
    display: flex;
    flex-direction: column;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f8f9fa;
}

.message {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.bot-message .message-avatar {
    background: linear-gradient(45deg, #F4442E, #ff6b4a);
}

.user-message .message-avatar {
    background: #020122;
    order: 2;
}

.user-message {
    flex-direction: row-reverse;
}

.message-content {
    background: white;
    padding: 15px 20px;
    border-radius: 20px;
    max-width: 70%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.user-message .message-content {
    background: linear-gradient(45deg, #F4442E, #ff6b4a);
    color: white;
}

.message-content p {
    margin: 0;
    line-height: 1.4;
}

.message-time {
    font-size: 0.8rem;
    color: #999;
    margin-top: 5px;
    display: block;
}

.user-message .message-time {
    color: rgba(255, 255, 255, 0.8);
}

.chat-input {
    display: flex;
    padding: 20px;
    border-top: 2px solid #f0f0f0;
    background: white;
}

.chat-input input {
    flex: 1;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    padding: 15px 20px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.chat-input input:focus {
    border-color: #F4442E;
}

.chat-input button {
    width: 50px;
    height: 50px;
    border: none;
    background: linear-gradient(45deg, #F4442E, #ff6b4a);
    color: white;
    border-radius: 50%;
    margin-left: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-input button:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(244, 68, 46, 0.3);
}

/* Form Styles */
.form-container form {
    padding: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    color: #020122;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: #F4442E;
    box-shadow: 0 0 0 3px rgba(244, 68, 46, 0.1);
}

.input-group textarea {
    resize: vertical;
    min-height: 120px;
}

.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    border: 2px dashed #e9ecef;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.file-label:hover {
    border-color: #F4442E;
    background: rgba(244, 68, 46, 0.05);
}

.file-label i {
    font-size: 2rem;
    color: #F4442E;
    margin-bottom: 10px;
}

.file-label span {
    color: #666;
    font-weight: 600;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #F4442E, #ff6b4a);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(244, 68, 46, 0.3);
}

/* Contact Info */
.contact-info {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 50px;
    margin: 60px 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    font-size: 2rem;
    color: #020122;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: #F4442E;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(244, 68, 46, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #F4442E, #ff6b4a);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-details h4 {
    color: #020122;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-details p {
    color: #F4442E;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-details span {
    color: #666;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: rgba(255, 255, 255, 0.98);
    margin-top: 60px;
    padding: 50px 0 30px;
    backdrop-filter: blur(10px);
    border-top: 3px solid #F4442E;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h4 {
    color: #020122;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section p {
    color: #666;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #F4442E;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #e9ecef;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 20px;
    }

    .nav {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .actions-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .main-content {
        padding: 0 20px;
    }

    .faq-section,
    .contact-info {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 20px;
    }

    .action-card {
        padding: 30px 20px;
    }

    .search-bar {
        flex-direction: column;
        border-radius: 15px;
        padding: 10px;
    }

    .search-bar input {
        margin-bottom: 10px;
        border: 2px solid #e9ecef;
        border-radius: 10px;
    }

    .search-bar button {
        border-radius: 10px;
    }
}
