/* Global Styles */
:root {
    --primary-color: #6366f1; /* Indigo */
    --secondary-color: #f59e0b; /* Amber */
    --accent-color: #ec4899; /* Pink */
    --text-color: #ffffff; /* White */
    --dark-bg: #0f172a; /* Slate 900 */
    --card-bg: #1e293b; /* Slate 800 */
    --border-color: #334155; /* Slate 700 */
    --soft-shadow: 0 4px 20px rgba(99, 102, 241, 0.15);
    --hover-shadow: 0 8px 30px rgba(99, 102, 241, 0.25);
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #6366f1 100%);
    --gradient-dark: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    --glow-primary: 0 0 30px rgba(99, 102, 241, 0.3);
    --glow-secondary: 0 0 30px rgba(245, 158, 11, 0.3);
    --glow-pink: 0 0 30px rgba(236, 72, 153, 0.3);
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: var(--dark-bg);
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-color);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* Background Animation */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background: transparent;
}

/* Coming Soon Container */
.coming-soon-container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

/* Game Brand */
.game-brand {
    margin-bottom: 3rem;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

.game-title {
    font-size: 4.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    animation: titleFloat 3s ease-in-out infinite alternate, titleGlow 4s ease-in-out infinite;
    position: relative;
    text-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
}

.game-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(20px);
    opacity: 0.3;
    z-index: -1;
    animation: titlePulse 2s ease-in-out infinite;
}

.game-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
    position: relative;
    animation: subtitleFloat 3s ease-in-out infinite alternate 0.5s;
}

.game-subtitle::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gradient-secondary);
    border-radius: 1px;
    animation: lineExpand 2s ease-in-out infinite;
}

@keyframes titleFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-10px); }
}

@keyframes titleGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.4)); }
    50% { filter: drop-shadow(0 0 40px rgba(99, 102, 241, 0.8)); }
}

@keyframes titlePulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

@keyframes subtitleFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-5px); }
}

@keyframes lineExpand {
    0%, 100% { width: 60px; }
    50% { width: 80px; }
}

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

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient-secondary);
    border-radius: 50px;
    box-shadow: var(--soft-shadow), var(--glow-secondary);
    animation: badgeFloat 2s ease-in-out infinite, badgeGlow 3s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.coming-soon-badge::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;
}

.coming-soon-badge:hover::before {
    left: 100%;
}

.coming-soon-badge:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--hover-shadow), var(--glow-secondary), 0 0 50px rgba(245, 158, 11, 0.4);
}

.badge-text {
    color: var(--text-color);
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: var(--soft-shadow), var(--glow-secondary); }
    50% { box-shadow: var(--soft-shadow), var(--glow-secondary), 0 0 30px rgba(245, 158, 11, 0.4); }
}

/* Countdown Section */
.countdown-section {
    margin: 3rem 0;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.countdown-item {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem 1rem;
    margin: 0 0.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--soft-shadow);
    position: relative;
    overflow: hidden;
    animation: countdownFloat 4s ease-in-out infinite;
}

.countdown-item:nth-child(1) { animation-delay: 0s; }
.countdown-item:nth-child(2) { animation-delay: 0.5s; }
.countdown-item:nth-child(3) { animation-delay: 1s; }
.countdown-item:nth-child(4) { animation-delay: 1.5s; }

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.countdown-item:hover::before {
    transform: scaleX(1);
}

.countdown-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--hover-shadow), var(--glow-primary);
}

.countdown-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    animation: numberPulse 2s ease-in-out infinite;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    opacity: 0.7;
}

@keyframes countdownFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

@keyframes numberPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Game Description */
.game-description {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.description-text {
    font-size: 1.2rem;
    color: var(--text-color);
    line-height: 1.8;
    text-align: center;
    opacity: 0.9;
}

/* Game Features */
.game-features {
    margin: 3rem 0;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.feature-item {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--soft-shadow);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    animation: featureFloat 5s ease-in-out infinite;
}

.feature-item:nth-child(odd) { animation-delay: 0s; }
.feature-item:nth-child(even) { animation-delay: 1s; }

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.feature-item:hover::before {
    opacity: 0.1;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--hover-shadow), var(--glow-primary);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    animation: iconFloat 3s ease-in-out infinite;
}

.feature-item:hover i {
    transform: scale(1.1) rotate(5deg);
    color: var(--secondary-color);
}

.feature-item span {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

@keyframes featureFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-2px); }
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

/* Newsletter Section */
.newsletter-section {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin: 3rem 0;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.newsletter-title {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    animation: titleGlow 3s ease-in-out infinite;
}

.newsletter-subtitle {
    color: var(--text-color);
    margin-bottom: 2rem;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

.newsletter-form .input-group {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.newsletter-form .form-control {
    border: 2px solid var(--border-color);
    border-radius: 50px 0 0 50px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    background: var(--dark-bg);
    color: var(--text-color);
    transition: all 0.3s ease;
}

.newsletter-form .form-control::placeholder {
    color: #666;
}

.newsletter-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
    transform: translateY(-2px);
    background: var(--card-bg);
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.newsletter-form .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;
}

.newsletter-form .btn:hover::before {
    left: 100%;
}

.newsletter-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--hover-shadow), var(--glow-primary);
}

/* Social Media Section */
.social-media-section {
    margin: 3rem 0;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.social-title {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
    animation: titleGlow 3s ease-in-out infinite 1s;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--card-bg);
    border-radius: 50%;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--soft-shadow);
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
    animation: socialFloat 4s ease-in-out infinite;
}

.social-link:nth-child(1) { animation-delay: 0s; }
.social-link:nth-child(2) { animation-delay: 0.5s; }
.social-link:nth-child(3) { animation-delay: 1s; }
.social-link:nth-child(4) { animation-delay: 1.5s; }
.social-link:nth-child(5) { animation-delay: 2s; }

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.social-link:hover::before {
    transform: scale(1);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow), var(--glow-primary);
}

.social-link i {
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.social-link:hover i {
    color: var(--text-color);
}

@keyframes socialFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

/* Contact Section */
.contact-section {
    margin: 3rem 0;
    animation: fadeInUp 1s ease-out 1.8s both;
}

.contact-info {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--card-bg);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: contactFloat 3s ease-in-out infinite;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-info:hover::before {
    opacity: 0.1;
}

.contact-info:hover {
    transform: translateY(-2px);
    box-shadow: var(--hover-shadow), var(--glow-secondary);
}

.contact-info i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
    animation: iconPulse 2s ease-in-out infinite;
}

.contact-info span {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

@keyframes contactFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-2px); }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Footer */
.footer {
    background: var(--gradient-secondary);
    color: var(--text-color);
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 2.1s both;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.footer p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.footer i {
    animation: heartBeat 2s ease-in-out infinite;
    color: #ef4444;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
}

.navbar-brand .brand-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

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

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

/* Contact Page Section */
.contact-page-section {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(245, 158, 11, 0.05) 50%, rgba(236, 72, 153, 0.05) 100%);
}

.page-header {
    margin-bottom: 3rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    position: relative;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.8;
}

.contact-info-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--soft-shadow);
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 20px 20px 0 0;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow), var(--glow-primary);
}

.contact-info-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.contact-info-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-bg);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-details p {
    color: var(--text-color);
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

.social-media-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--soft-shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-media-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-secondary);
}

.social-media-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow), var(--glow-primary);
}

.contact-form-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--soft-shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.contact-form-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow), var(--glow-primary);
}

.form-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

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

.contact-form .form-label {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-form .form-control {
    background: var(--dark-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: var(--text-color);
}

.contact-form .form-control:focus {
    background: var(--card-bg);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
    outline: none;
    transform: translateY(-2px);
}

.contact-form .form-control::placeholder {
    color: #64748b;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form .form-check-input {
    border-color: var(--primary-color);
}

.contact-form .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.contact-form .form-check-label {
    color: var(--text-color);
    font-size: 0.9rem;
}

.contact-form .form-check-label a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-form .form-check-label a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.btn-submit {
    background: var(--gradient-primary);
    color: var(--white-bg);
    border: none;
    border-radius: 15px;
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-shadow: var(--soft-shadow);
}

.btn-submit::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;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--hover-shadow), var(--glow-primary);
}

.btn-submit i {
    margin-right: 0.5rem;
}

.success-message {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    margin-top: 1.5rem;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.5s ease-in-out;
}

.success-message h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.success-message p {
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
}

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

.faq-section {
    margin-top: 4rem;
}

.faq-title {
    color: var(--secondary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.accordion-item {
    background: var(--white-bg);
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: var(--soft-shadow);
}

.accordion-button {
    background: var(--white-bg);
    color: var(--text-color);
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: var(--orange-light);
    color: var(--secondary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff6b35'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    color: var(--text-color);
    line-height: 1.6;
    background: var(--white-bg);
}

/* Responsive Design for Contact Page */
@media (max-width: 991px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .contact-info-card,
    .social-media-card {
        margin-bottom: 2rem;
    }
    
    .contact-form-card,
    .contact-info-card {
        height: auto;
    }
}

@media (max-width: 767px) {
    .page-title {
        font-size: 2rem;
    }
    
    .contact-info-item {
        padding: 1.5rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 575px) {
    .page-title {
        font-size: 1.8rem;
    }
    
    .contact-form-card,
    .social-media-card {
        padding: 1.5rem;
    }
    
    .btn-submit {
        padding: 0.8rem 1.5rem;
    }
} 