﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Palette: Frosted White, Soft Slate, Iridescent Accents */
    --aiw-bg: #F0F4F8;
    --aiw-text: #1E293B;
    --aiw-text-muted: #64748B;
    --aiw-accent: #3B82F6;
    --aiw-glass-bg: rgba(255, 255, 255, 0.65);
    --aiw-glass-border: rgba(255, 255, 255, 0.8);
    --aiw-glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    
    --aiw-font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --aiw-radius-lg: 24px;
    --aiw-radius-md: 16px;
    --aiw-container: 1200px;
    --aiw-transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--aiw-font-main);
    background-color: var(--aiw-bg);
    color: var(--aiw-text);
    line-height: 1.7;
    font-size: 16px;
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    /* Animated Gradient Background for Liquid Glass Effect */
    background-image: 
        radial-gradient(at 0% 0%, hsla(253,16%,7deg,0.03) 0, transparent 50%), 
        radial-gradient(at 50% 0%, hsla(225,39%,30%,0.03) 0, transparent 50%), 
        radial-gradient(at 100% 0%, hsla(339,49%,30%,0.03) 0, transparent 50%);
    background-attachment: fixed;
}

h1, h2, h3, h4 { 
    font-weight: 600; 
    color: var(--aiw-text);
    margin-bottom: 1.2rem;
    letter-spacing: -0.03em;
}

h1 { font-size: 4rem; line-height: 1.1; }
h2 { font-size: 2.8rem; }
h3 { font-size: 1.6rem; }

p { margin-bottom: 1.5rem; color: var(--aiw-text-muted); font-size: 1.1rem; }
a { text-decoration: none; color: inherit; transition: var(--aiw-transition); }
img { max-width: 100%; display: block; object-fit: cover; border-radius: var(--aiw-radius-md); }

/* UTILITY CLASSES */
.aiw-container { max-width: var(--aiw-container); margin: 0 auto; padding: 0 5%; }
.aiw-section { padding: 120px 0; position: relative; z-index: 2; }
.aiw-text-center { text-align: center; }

/* LIQUID GLASS COMPONENTS */
.aiw-glass-panel {
    background: var(--aiw-glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--aiw-glass-border);
    border-radius: var(--aiw-radius-lg);
    box-shadow: var(--aiw-glass-shadow);
}

/* BUTTONS */
.aiw-btn {
    display: inline-block;
    background: rgba(255,255,255,0.9);
    color: var(--aiw-text) !important;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: var(--aiw-transition);
    backdrop-filter: blur(10px);
}
.aiw-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background: #FFFFFF;
}
.aiw-btn-primary {
    background: var(--aiw-text);
    color: #FFFFFF !important;
    border-color: var(--aiw-text);
}
.aiw-btn-primary:hover {
    background: #334155;
    box-shadow: 0 10px 25px rgba(30, 41, 59, 0.2);
}

/* HEADER */
.aiw-header {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.aiw-nav-wrap { display: flex; justify-content: space-between; align-items: center; }

.aiw-logo { 
    display: flex; align-items: center; gap: 12px; 
    font-size: 1.4rem; 
    font-weight: 700; 
    letter-spacing: -0.02em;
}
.aiw-logo img { height: 36px; width: 36px; }

.aiw-menu { display: flex; list-style: none; gap: 35px; }
.aiw-link { 
    font-weight: 500; font-size: 0.95rem; color: var(--aiw-text-muted); 
}
.aiw-link:hover { color: var(--aiw-text); }

.aiw-mobile-toggle { display: none; font-size: 1.8rem; cursor: pointer; color: var(--aiw-text); }

/* MOBILE MENU */
@media (max-width: 768px) {
    .aiw-menu {
        display: none; position: absolute; top: 100%; left: 0; width: 100%;
        background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(20px); flex-direction: column;
        padding: 40px 5%; border-bottom: 1px solid var(--aiw-glass-border);
    }
    .aiw-menu.active { display: flex; gap: 25px; }
    .aiw-mobile-toggle { display: block; }
    h1 { font-size: 2.8rem; }
    .aiw-section { padding: 80px 0; }
}

/* HERO */
.aiw-hero { min-height: 85vh; display: flex; align-items: center; position: relative; }
.aiw-grid-2 { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .aiw-grid-2 { grid-template-columns: 1fr; gap: 40px; } }
.aiw-hero-img { height: 600px; width: 100%; object-fit: cover; border-radius: var(--aiw-radius-lg); box-shadow: var(--aiw-glass-shadow); border: 2px solid #FFFFFF; }

/* SERVICES GRID */
.aiw-grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.aiw-card {
    padding: 30px;
    transition: var(--aiw-transition);
}
.aiw-card:hover { transform: translateY(-5px); }
.aiw-card img { height: 220px; width: 100%; object-fit: cover; margin-bottom: 25px; border-radius: var(--aiw-radius-md); }

/* FAQ ACCORDION */
.aiw-faq-wrap { max-width: 800px; margin: 0 auto; }
.aiw-faq-item {
    margin-bottom: 15px;
    border-radius: var(--aiw-radius-md);
    overflow: hidden;
}
.aiw-faq-header {
    padding: 25px 30px; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    font-weight: 600; font-size: 1.15rem; color: var(--aiw-text);
}
.aiw-faq-body { padding: 0 30px 25px 30px; display: none; color: var(--aiw-text-muted); }
.aiw-faq-item.active .aiw-faq-body { display: block; animation: fadeIn 0.4s; }
.aiw-faq-icon { font-size: 1.5rem; font-weight: 300; transition: transform 0.3s; color: var(--aiw-text-muted); }
.aiw-faq-item.active .aiw-faq-icon { transform: rotate(45deg); color: var(--aiw-text); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }

/* FORM & SAFE SUCCESS MESSAGE */
.aiw-form-box { padding: 50px; }
@media (max-width: 768px) { .aiw-form-box { padding: 30px 20px; } }
.aiw-input-group { margin-bottom: 25px; }
.aiw-label { display: block; margin-bottom: 10px; font-size: 0.9rem; font-weight: 500; color: var(--aiw-text); }
.aiw-input {
    width: 100%; padding: 16px 20px;
    border: 1px solid rgba(255,255,255,0.8);
    background-color: rgba(255,255,255,0.5);
    border-radius: var(--aiw-radius-md);
    font-family: var(--aiw-font-body);
    font-size: 1rem; color: var(--aiw-text);
    transition: var(--aiw-transition);
}
.aiw-input:focus { outline: none; background-color: #FFFFFF; box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1); }
.aiw-success-msg {
    background-color: rgba(255,255,255,0.9); border: 1px solid #E2E8F0; color: var(--aiw-text);
    padding: 40px; border-radius: var(--aiw-radius-md); text-align: center;
    box-shadow: var(--aiw-glass-shadow);
}
.aiw-success-msg h3 { margin-bottom: 10px; color: #10B981; }

/* FOOTER */
.aiw-footer {
    background-color: rgba(255,255,255,0.4); backdrop-filter: blur(20px);
    border-top: 1px solid var(--aiw-glass-border); padding: 80px 0 40px; margin-top: 60px;
}
.aiw-footer h4 { font-size: 1rem; margin-bottom: 25px; color: var(--aiw-text); }
.aiw-footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 60px; margin-bottom: 60px; }
.aiw-footer-link { display: block; margin-bottom: 12px; color: var(--aiw-text-muted); font-size: 0.95rem; }
.aiw-footer-link:hover { color: var(--aiw-text); }
.aiw-copyright {
    text-align: center; border-top: 1px solid rgba(0,0,0,0.05); padding-top: 30px;
    font-size: 0.85rem; color: var(--aiw-text-muted);
}

/* COOKIE BANNER (GDPR) */
.aiw-cookie {
    position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); width: 90%; max-width: 700px;
    background-color: rgba(255,255,255,0.9); backdrop-filter: blur(20px);
    padding: 25px 30px; border-radius: var(--aiw-radius-lg); border: 1px solid var(--aiw-glass-border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: none; justify-content: space-between; align-items: center; gap: 20px; z-index: 9999;
}
@media (max-width: 768px) { .aiw-cookie { flex-direction: column; text-align: center; } }
