* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --nova-deep: #083B77;
    --nova-azure: #1E8DB0;
    --nova-emerald: #29A87C;
    --nova-gold: #F59E0B;
    --nova-purple: #8B5CF6;
    --nova-cyan: #00D4FF;
    --nova-charcoal: #1F2937;
    --nova-steel: #6B7280;
    --nova-cloud: #F9FAFB;
    --nova-white: #FFFFFF;
    --nova-border: #E5E7EB;
    --nova-bg: #FFFFFF;
    --nova-card-bg: #FFFFFF;
    --nova-text-primary: #1F2937;
    --nova-text-secondary: #6B7280;
    --gradient-primary: linear-gradient(135deg, #083B77, #1E8DB0);
    --gradient-accent: linear-gradient(135deg, #1E8DB0, #00D4FF);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 20px rgba(30, 141, 176, 0.3);
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;
}

[data-theme="dark"] {
    --nova-deep: #062A55;
    --nova-azure: #2AA9C9;
    --nova-cloud: #111827;
    --nova-bg: #0F172A;
    --nova-card-bg: #1E293B;
    --nova-border: #334155;
    --nova-text-primary: #F1F5F9;
    --nova-text-secondary: #94A3B8;
    --gradient-primary: linear-gradient(135deg, #0A2A4A, #166F8A);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--nova-bg);
    color: var(--nova-text-primary);
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ---------- HERO with Background Image ---------- */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/contactus.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 59, 119, 0.92), rgba(30, 141, 176, 0.88));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 4rem 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: white;
    letter-spacing: -0.02em;
}

.hero-gradient-text {
    background: linear-gradient(135deg, var(--nova-cyan), var(--nova-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 1.5rem 0 2rem;
    max-width: 90%;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--nova-cyan), var(--nova-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-right-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

    .hero-right-card i {
        font-size: 3rem;
        color: var(--nova-cyan);
        margin-bottom: 1rem;
    }

    .hero-right-card h3 {
        font-size: 1.5rem;
        color: white;
        margin-bottom: 0.5rem;
    }

    .hero-right-card p {
        color: rgba(255, 255, 255, 0.8);
    }

.pill-button {
    background: white;
    color: var(--nova-deep);
    border: none;
    padding: 0.75rem 1.8rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    margin-top: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

    .pill-button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-glow);
    }

/* ---------- Contact Methods Section ---------- */
.methods-section {
    padding: 6rem 0;
    background: var(--nova-cloud);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--nova-azure);
    background: rgba(30, 141, 176, 0.1);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin: 1rem 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--nova-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.method-card {
    background: var(--nova-card-bg);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid var(--nova-border);
    position: relative;
    overflow: hidden;
}

    .method-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient-accent);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .method-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-xl);
        border-color: transparent;
    }

        .method-card:hover::before {
            transform: scaleX(1);
        }

.method-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.method-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--nova-text-primary);
}

.method-description {
    color: var(--nova-text-secondary);
    margin-bottom: 1.5rem;
}

.method-details {
    background: var(--nova-cloud);
    border-radius: var(--radius-lg);
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.method-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    color: var(--nova-text-secondary);
    font-size: 0.875rem;
}

    .method-detail i {
        color: var(--nova-azure);
        width: 20px;
    }

.method-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--nova-azure);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s;
    background: none;
    border: none;
    cursor: pointer;
}

    .method-cta:hover {
        gap: 0.75rem;
        color: var(--nova-cyan);
    }

/* ---------- Form Section ---------- */
.form-section {
    padding: 6rem 0;
    background: var(--nova-bg);
}

.form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--nova-card-bg);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    border: 1px solid var(--nova-border);
    box-shadow: var(--shadow-xl);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.full-width {
    grid-column: span 2;
}

.input-group {
    position: relative;
}

    .input-group i {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--nova-text-secondary);
    }

    .input-group.textarea-icon i {
        top: 1rem;
        transform: none;
    }

input, select, textarea {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 2.8rem;
    border: 1.5px solid var(--nova-border);
    border-radius: var(--radius-lg);
    background: var(--nova-bg);
    color: var(--nova-text-primary);
    font-family: inherit;
    transition: 0.2s;
}

textarea {
    padding-top: 1rem;
    resize: vertical;
}

    input:focus, select:focus, textarea:focus {
        outline: none;
        border-color: var(--nova-azure);
        box-shadow: 0 0 0 3px rgba(30, 141, 176, 0.15);
    }

.navigation-buttons {
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
    gap: 1rem;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.2s;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
}

    .btn-primary:hover {
        transform: translateX(2px);
        box-shadow: var(--shadow-md);
    }

/* FAQ Section - FULLY FUNCTIONAL ACCORDION */
.faq-section {
    padding: 6rem 0;
    background: var(--nova-cloud);
}

.faq-grid {
    max-width: 800px;
    margin: 3rem auto 0;
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: var(--nova-card-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--nova-border);
    overflow: hidden;
    transition: all 0.3s ease;
}

    .faq-item:hover {
        border-color: var(--nova-azure);
        box-shadow: var(--shadow-md);
    }

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
}

    .faq-question:hover {
        background: rgba(30, 141, 176, 0.05);
    }

    .faq-question h4 {
        font-size: 1.125rem;
        margin: 0;
        color: var(--nova-text-primary);
        font-weight: 600;
        letter-spacing: -0.2px;
    }

.faq-toggle {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--nova-azure);
    font-size: 1.1rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 1.5rem;
    color: var(--nova-text-secondary);
    line-height: 1.6;
    border-top: 0px solid transparent;
}

.faq-item.active .faq-answer {
    max-height: 350px;
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid var(--nova-border);
}

.floating-action-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 52px;
    height: 52px;
    background: var(--gradient-accent);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    z-index: 99;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s;
}

    .floating-action-btn:hover {
        transform: scale(1.1);
    }

/* Location highlight badge */
.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(30, 141, 176, 0.12);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--nova-azure);
    margin-top: 1rem;
}

    .location-badge i {
        font-size: 1rem;
    }

/* Responsive */
@media (max-width: 1024px) {
    .methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-desc {
        max-width: 100%;
    }

    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .methods-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: span 1;
    }

    .form-wrapper {
        padding: 1.5rem;
    }

    .navigation-buttons {
        justify-content: center;
    }

    .faq-question h4 {
        font-size: 1rem;
    }
}
