/* =========================================================
   GLOBAL STYLES
   ========================================================= */

html {
    scroll-behavior: smooth;
}

* {
    transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

/* Glass UI */
.glass {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, #7C3AED, #06B6D4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hover Elevation */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}


/* =========================================================
   MOBILE MENU
   ========================================================= */

.mobile-menu {
    transition: all 0.3s ease-in-out;
    transform: translateX(-100%);
    display: block !important;
}

.mobile-menu.menu-open {
    transform: translateX(0);
}


/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}


/* =========================================================
   HERO SECTION
   ========================================================= */

.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom right, #111827, #4b0082);
    padding-top: 90px;
    padding-bottom: 25px;
    min-height: 320px;
}

.hero-video-left video,
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    color: white;
    padding-right: 3rem;
    text-align: right;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.7rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #d7e5ff;
    max-width: 40rem;
    margin-left: auto;
    margin-bottom: 1.2rem;
}

.hero-cta {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 8px;
    background: white;
    color: #5b21b6;
    font-weight: 600;
    transition: all .2s ease;
}

.hero-cta:hover {
    background: #f0f0f0;
}


/* =========================================================
   RESPONSIVE HERO
   ========================================================= */

@media (max-width: 768px) {
    .hero-section { padding-top: 110px; padding-bottom: 40px; }
    .hero-content { text-align: center !important; padding: 20px !important; margin-top: 15px; }
    .hero-video-left { height: 230px !important; }
    .hero-title { font-size: 1.9rem; line-height: 1.2; }
    .hero-subtitle { font-size: 1rem; max-width: 95%; margin: 0.8rem auto 1.2rem auto; }
    .hero-cta { margin-top: 10px; padding-left: 20px; padding-right: 20px; }
}

@media (min-width: 768px) and (max-width: 992px) {
    .hero-title { font-size: 2.3rem; }
    .hero-subtitle { font-size: 1.05rem; }
}


/* =========================================================
   FAQ
   ========================================================= */

.faq-item { transition: all 0.3s ease; }
.faq-item:hover { border-color: #7C3AED; }
.faq-icon { transition: transform 0.3s ease; }
.faq-icon.rotate-180 { transform: rotate(180deg); }
.faq-answer { animation: fadeIn 0.3s ease-in; }
.faq-answer.hidden { display: none !important; }
.faq-answer:not(.hidden) { display: block; }


/* =========================================================
   CONTACT FORM
   ========================================================= */

.contact-section {
    max-width: 750px;
    margin: 0 auto;
    padding: 40px 20px;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #111827;
}

.contact-form {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 18px;
    box-shadow: 0px 10px 40px rgba(0,0,0,0.08);
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 15px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    background: #f9fafb;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: #6366f1;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
    outline: none;
}

.contact-form textarea {
    height: 130px;
    resize: vertical;
}

#submitBtn {
    width: 100%;
    margin-top: 8px !important;
}

/* Mobile */
@media (max-width: 600px) {
    .contact-form { padding: 20px 15px; }
    .contact-section h2 { font-size: 1.75rem; }
}
