/* AVl App - Premium Light SaaS Theme */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --bg-main: #f8fafc;
    --bg-overlay: rgba(255, 255, 255, 0.85);
    --bg-card: #ffffff;

    --text-primary: #0f172a;
    --text-secondary: #475569;

    --accent-color: #6366f1; /* Indigo */
    --accent-glow: rgba(99, 102, 241, 0.15);
    --border-color: rgba(15, 23, 42, 0.08);

    --font-display: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-md: 1.5rem;
    --spacing-xl: 4rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

/* --- Decorative Background --- */
.temple-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background:
        radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(236, 72, 153, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.08) 0%, transparent 30%);
    background-color: var(--bg-main);
}

.temple-texture {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.4;
    background-image: radial-gradient(var(--border-color) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

/* --- Typography Utilities --- */
h1,
h2,
h3 {
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: 0.01em;
}

.display-title {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.05;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.03em;
    font-weight: 700;
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: var(--spacing-md);
    display: inline-block;
    font-weight: 700;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 100px;
}

.text-lead {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
    letter-spacing: 0.01em;
}

/* --- Layouts --- */
.main-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* --- Index Page Specifics --- */
.border-frame {
    display: none; /* Removed for this cleaner theme */
}

.brand-mark {
    width: 60px;
    height: 60px;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
    color: var(--accent-color);
    position: relative;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: #ffffff;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.25);
}

.btn-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(99, 102, 241, 0.35);
    color: #ffffff;
}

/* --- Ask Us Page Specifics --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
    max-width: 1100px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    overflow: hidden;
}

.contact-info-panel,
.contact-form-panel {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-panel {
    background: #f1f5f9;
    position: relative;
}

.info-item {
    margin-top: 3rem;
}

.info-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-value {
    font-size: 1.4rem;
    font-family: var(--font-display);
    color: var(--text-primary);
}

.form-group {
    margin-bottom: 2.5rem;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-input {
    width: 100%;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    padding: 1rem 1.2rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

textarea.form-input {
    min-height: 140px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--accent-color);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
}

.submit-btn:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(99, 102, 241, 0.3);
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 4rem 2rem;
    }

    .contact-info-panel {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

@media (max-width: 600px) {
    .display-title {
        font-size: 2.8rem;
    }

    .border-frame {
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
    }
}