/* 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: #020617;
    --bg-card: rgba(15, 23, 42, 0.8);
    --bg-glass: rgba(255, 255, 255, 0.05);
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    
    --accent-primary: #38bdf8; /* Sky Blue */
    --accent-secondary: #818cf8; /* Indigo */
    --accent-light: #f1f5f9; /* Light slate/white */
    --accent-glow: rgba(56, 189, 248, 0.3);
    
    --gradient-primary: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    --gradient-light: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    --gradient-surface: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    
    --border-glass: rgba(255, 255, 255, 0.1);
    --border-light: rgba(255, 255, 255, 0.2);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --radius-full: 100px;
    --radius-lg: 32px;
    --radius-md: 20px;
    --radius-sm: 12px;
    
    --shadow-premium: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(56, 189, 248, 0.2);
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;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;
    background: radial-gradient(circle at 0% 0%, #0f172a 0%, #020617 100%);
}

.blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--gradient-primary);
    filter: blur(150px);
    border-radius: 50%;
    opacity: 0.12;
    animation: move 25s infinite alternate ease-in-out;
}

.blob-1 { top: -200px; right: -100px; animation-delay: 0s; }
.blob-2 { bottom: -200px; left: -100px; animation-delay: -7s; }

@keyframes move {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    100% { transform: translate(100px, 100px) scale(1.2) rotate(90deg); }
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--border-glass) 1px, transparent 1px),
                      linear-gradient(90deg, var(--border-glass) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.2;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
}

/* --- Layout --- */
.main-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    position: relative;
    z-index: 1;
}

.container-glass {
    background: var(--bg-card);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 5rem 4rem;
    max-width: 1100px;
    width: 100%;
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
}

.container-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

/* --- Typography --- */
h1, h2, h3 {
    font-family: var(--font-heading);
}

.display-title {
    font-size: clamp(3rem, 10vw, 5.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    color: var(--text-main);
    background: linear-gradient(to bottom right, #fff 30%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    color: var(--accent-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

.text-lead {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 3.5rem;
    font-weight: 400;
}

/* --- Components --- */
.hero-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.brand-showcase {
    margin-bottom: 3rem;
}

.brand-logo-container {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: var(--shadow-glow);
    position: relative;
    z-index: 2;
}

.brand-logo-container::after {
    content: '';
    position: absolute;
    inset: -5px;
    background: var(--gradient-primary);
    border-radius: 32px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(10px);
}

.email-section {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.email-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.email-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.email-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-light);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.email-info {
    text-align: left;
}

.email-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.email-address {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
}

/* --- Contact Page Layout --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-content {
    text-align: left;
}

.contact-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
}

.contact-meta {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    color: var(--text-muted);
}

.meta-item i {
    color: var(--accent-primary);
    font-size: 1.1rem;
}

/* --- Form --- */
.contact-form-container {
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-glass);
}

.form-field {
    margin-bottom: 2rem;
}

.field-label {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

.field-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    padding: 1.1rem 1.25rem;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.field-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.1);
}

textarea.field-input {
    min-height: 120px;
    resize: none;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background: var(--gradient-light);
    color: var(--bg-dark);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-submit:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px -10px rgba(255, 255, 255, 0.2);
}

/* --- Legal Footer --- */
.legal-nav {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-glass);
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.legal-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: var(--accent-primary);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .container-glass {
        padding: 4rem 2rem;
    }
}

@media (max-width: 640px) {
    .display-title {
        font-size: 3rem;
    }
    
    .email-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .email-info {
        text-align: center;
    }
    
    .legal-nav {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}