/* Chic Global - Modern Premium Theme */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-dark: #030712;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-glass: rgba(255, 255, 255, 0.05);
    
    --text-main: #f9fafb;
    --text-muted: #9ca3af;
    
    --accent-primary: #6366f1; /* Indigo */
    --accent-secondary: #d946ef; /* Magenta */
    --accent-glow: rgba(99, 102, 241, 0.5);
    
    --gradient-primary: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    --gradient-surface: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    
    --border-glass: rgba(255, 255, 255, 0.12);
    
    --font-display: 'Outfit', sans-serif;
    --font-heading: 'Syne', sans-serif; /* Adding a bold, artsy heading font if available */
    --font-body: 'Inter', sans-serif;
    
    --radius-full: 100px;
    --radius-lg: 32px;
    --radius-md: 20px;
    --radius-sm: 14px;
    
    --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.3);
}

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* --- Dynamic Background --- */
.bg-visuals {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--gradient-primary);
    filter: blur(120px);
    border-radius: 50%;
    opacity: 0.15;
    animation: move 20s infinite alternate;
}

.blob-1 { top: -100px; right: -100px; animation-delay: 0s; }
.blob-2 { bottom: -100px; left: -100px; animation-delay: -5s; }

@keyframes move {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

/* --- Layout --- */
.main-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.container-glass {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 4rem;
    max-width: 1000px;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* --- Typography --- */
h1, h2, h3 {
    font-family: var(--font-display);
}

.display-title {
    font-size: clamp(3.5rem, 12vw, 6.5rem);
    font-family: var(--font-heading), var(--font-display);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.05em;
    margin-bottom: 2.5rem;
    background: linear-gradient(to right, #fff, var(--accent-primary), var(--accent-secondary), #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 8s linear infinite;
}

@keyframes shine {
    to { background-position: 200% center; }
}

.subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.5rem;
    background: rgba(99, 102, 241, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-full);
    color: var(--accent-primary);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-glow);
}

.text-lead {
    font-size: 1.35rem;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 650px;
    margin-bottom: 4rem;
    font-weight: 400;
}

/* --- Hero Layout --- */
.hero-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.landing-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-glass);
}

.text-center {
    justify-content: center !important;
    text-align: center;
}

.footer-legal {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.email-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.8rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-main);
    text-decoration: none;
}

.email-badge:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.email-badge i {
    font-size: 1rem;
    color: var(--accent-primary);
    background: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.email-badge:hover i {
    color: var(--accent-secondary);
}

/* --- Buttons --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 3.5rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px -10px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 25px 50px -15px var(--accent-glow);
}

/* --- Contact Page Specifics --- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    padding-top: 2rem;
}

.contact-info {
    text-align: left;
}

.contact-info h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.contact-email {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-glass);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-glass);
    transition: all 0.3s ease;
}

.contact-email:hover {
    border-color: var(--accent-primary);
    transform: translateX(10px);
}

.email-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-primary);
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.email-value {
    font-size: 1.25rem;
    font-family: var(--font-display);
    font-weight: 500;
}

/* --- Form Styles --- */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.form-input {
    width: 100%;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

textarea.form-input {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1.25rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-sm);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px var(--accent-glow);
}

/* --- Brand Icon --- */
.brand-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: white;
    box-shadow: 0 10px 20px -5px var(--accent-glow);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .container-glass {
        padding: 3rem 2rem;
    }
}

@media (max-width: 640px) {
    .display-title {
        font-size: 3.5rem;
    }
    
    .contact-info h1 {
        font-size: 2.75rem;
    }
}