/* =========================
   AAUREX PREMIUM DESIGN SYSTEM
   Palette:
   Midnight Blue, Onyx, Moss Green,
   Burgundy, Champagne, Umber
========================= */

:root {
    --midnight: #071426;
    --midnight-soft: #0b1d33;
    --onyx: #111111;
    --onyx-soft: #1a1a1a;
    --moss: #596943;
    --moss-soft: #6f7f55;
    --burgundy: #6d1f36;
    --burgundy-soft: #8a2b45;
    --champagne: #d6c6a5;
    --champagne-bright: #eadab7;
    --umber: #6b4a3a;
    --text: #f5f1e8;
    --muted: #b8ad9b;
    --glass: rgba(255, 255, 255, 0.055);
    --glass-border: rgba(214, 198, 165, 0.18);
}

/* =========================
   RESET
========================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(109, 31, 54, 0.26), transparent 34%),
        radial-gradient(circle at top right, rgba(89, 105, 67, 0.2), transparent 35%),
        linear-gradient(135deg, var(--midnight), #050910 75%);
    color: var(--text);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    width: 100%;
}

/* =========================
   HEADER
========================= */

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    height: 92px;
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 5%;

    background: rgba(7, 20, 38, 0.86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--glass-border);
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    width: 58px;
    height: 58px;
    border-radius: 50%;

    display: grid;
    place-items: center;

    color: var(--champagne);
    border: 1px solid var(--champagne);
    background:
        radial-gradient(circle, rgba(214, 198, 165, 0.12), rgba(255, 255, 255, 0.02));
    font-size: 27px;
    box-shadow: 0 0 30px rgba(214, 198, 165, 0.12);
}

.brand h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    letter-spacing: 4px;
    color: var(--champagne);
}

.brand p {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--muted);
    text-transform: uppercase;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 24px;
}

.navbar a {
    font-size: 14px;
    color: rgba(245, 241, 232, 0.86);
    transition: 0.25s ease;
}

.navbar a:hover,
.navbar a.active {
    color: var(--champagne-bright);
}

.header-btn {
    padding: 13px 22px;
    border-radius: 999px;

    background: linear-gradient(135deg, var(--burgundy), var(--umber));
    color: white;
    font-size: 14px;
    font-weight: 600;

    border: 1px solid rgba(214, 198, 165, 0.22);
    box-shadow: 0 16px 34px rgba(109, 31, 54, 0.28);
}

/* =========================
   HERO
========================= */

.hero-section {
    min-height: 100vh;
    position: relative;
    padding: 150px 5% 80px;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 36px;
    align-items: center;

    background:
        linear-gradient(90deg, rgba(7, 20, 38, 0.98), rgba(7, 20, 38, 0.78), rgba(7, 20, 38, 0.45)),
        url("https://images.unsplash.com/photo-1576086213369-97a306d36557?auto=format&fit=crop&w=1800&q=85");
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 16% 40%, rgba(214, 198, 165, 0.1), transparent 28%),
        radial-gradient(circle at 78% 30%, rgba(109, 31, 54, 0.18), transparent 30%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.hero-label,
.section-label,
.final-cta p,
.section-heading p {
    color: var(--champagne);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
}

.hero-content h2 {
    margin-top: 24px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(45px, 6.2vw, 86px);
    line-height: 1.02;
    letter-spacing: -2px;
}

.hero-content h2 span {
    color: var(--champagne);
}

.hero-description {
    margin-top: 28px;
    max-width: 720px;

    font-size: 18px;
    line-height: 1.85;
    color: rgba(245, 241, 232, 0.78);
}

.hero-actions {
    margin-top: 38px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 0 26px;
    border-radius: 999px;

    font-weight: 700;
    transition: 0.3s ease;
}

.primary-btn {
    background: linear-gradient(135deg, var(--burgundy), var(--umber));
    color: #fff;
    border: 1px solid rgba(214, 198, 165, 0.22);
    box-shadow: 0 18px 38px rgba(109, 31, 54, 0.34);
}

.secondary-btn {
    color: var(--champagne);
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(10px);
}

.primary-btn:hover,
.secondary-btn:hover {
    transform: translateY(-4px);
}

/* =========================
   AI PANEL
========================= */

.ai-panel {
    position: relative;
    z-index: 2;

    padding: 26px;
    border-radius: 28px;

    background:
        linear-gradient(180deg, rgba(26, 26, 26, 0.85), rgba(7, 20, 38, 0.9));
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(22px);

    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.46),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.ai-panel-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.ai-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;

    display: grid;
    place-items: center;

    color: var(--champagne);
    border: 1px solid var(--champagne);
    font-size: 30px;
    box-shadow: 0 0 34px rgba(214, 198, 165, 0.14);
}

.ai-panel h3 {
    color: var(--champagne);
    font-size: 21px;
}

.ai-panel p {
    color: var(--muted);
    font-size: 14px;
}

.ai-message {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(214, 198, 165, 0.12);
    color: rgba(245, 241, 232, 0.86);
    line-height: 1.7;
    margin-bottom: 18px;
}

.ai-options {
    display: grid;
    gap: 10px;
}

.ai-options button {
    padding: 14px 15px;
    border-radius: 14px;
    text-align: left;

    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(214, 198, 165, 0.14);
    color: var(--text);

    cursor: pointer;
    transition: 0.25s ease;
}

.ai-options button:hover {
    background: rgba(109, 31, 54, 0.28);
    border-color: rgba(214, 198, 165, 0.32);
}

.ai-input {
    margin-top: 18px;
    display: flex;
    gap: 10px;
}

.ai-input input {
    flex: 1;
    min-width: 0;
    padding: 14px;

    border-radius: 14px;
    border: 1px solid rgba(214, 198, 165, 0.14);
    background: rgba(0, 0, 0, 0.25);
    color: var(--text);
}

.ai-input button {
    width: 48px;
    border: 0;
    border-radius: 14px;
    background: var(--burgundy);
    color: var(--champagne);
}

/* =========================
   IMPACT
========================= */

.impact-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;

    max-width: 1180px;
    margin: -48px auto 0;
    position: relative;
    z-index: 5;

    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: rgba(17, 17, 17, 0.82);
    backdrop-filter: blur(18px);
}

.impact-card {
    padding: 34px 28px;
    border-right: 1px solid rgba(214, 198, 165, 0.12);
}

.impact-card:last-child {
    border-right: 0;
}

.impact-card h3 {
    color: var(--champagne);
    margin-bottom: 10px;
    font-size: 21px;
}

.impact-card p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 15px;
}

/* =========================
   SECTION BLOCK
========================= */

.section-block {
    padding: 120px 5%;
}

.section-heading {
    max-width: 860px;
    margin-bottom: 46px;
}

.section-heading h2 {
    margin-top: 16px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.08;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.feature-card {
    overflow: hidden;
    border-radius: 26px;

    background: rgba(255, 255, 255, 0.052);
    border: 1px solid var(--glass-border);

    transition: 0.32s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.feature-card img {
    height: 230px;
    object-fit: cover;
    filter: brightness(0.82) saturate(0.9);
}

.feature-card div {
    padding: 24px;
}

.feature-card h3 {
    color: var(--champagne);
    margin-bottom: 12px;
    font-size: 21px;
}

.feature-card p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 15px;
}

.feature-card a {
    display: inline-block;
    margin-top: 18px;
    color: var(--champagne-bright);
    font-weight: 700;
}

/* =========================
   SPLIT SECTION
========================= */

.split-section {
    padding: 100px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    align-items: center;

    background:
        linear-gradient(135deg, rgba(89, 105, 67, 0.13), rgba(109, 31, 54, 0.1));
}

.split-image img {
    height: 560px;
    object-fit: cover;
    border-radius: 34px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
}

.split-content h2 {
    margin: 18px 0 22px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.08;
}

.split-content p {
    margin-bottom: 20px;
    color: var(--muted);
    line-height: 1.85;
    font-size: 17px;
}

/* =========================
   FINAL CTA
========================= */

.final-cta {
    margin: 110px 5%;
    padding: 74px 8%;
    text-align: center;

    border-radius: 34px;
    border: 1px solid var(--glass-border);

    background:
        radial-gradient(circle at center, rgba(214, 198, 165, 0.12), transparent 50%),
        linear-gradient(135deg, rgba(109, 31, 54, 0.35), rgba(17, 17, 17, 0.94));
}

.final-cta h2 {
    max-width: 850px;
    margin: 18px auto 28px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.1;
}

/* =========================
   FOOTER
========================= */

.footer {
    padding: 46px 5%;

    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;

    background: rgba(0, 0, 0, 0.28);
    border-top: 1px solid var(--glass-border);
}

.footer h2 {
    color: var(--champagne);
    letter-spacing: 3px;
    font-family: Georgia, "Times New Roman", serif;
}

.footer p {
    color: var(--muted);
    font-size: 14px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1180px) {
    .navbar {
        display: none;
    }

    .hero-section {
        grid-template-columns: 1fr;
    }

    .ai-panel {
        max-width: 520px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-section {
        grid-template-columns: repeat(2, 1fr);
        margin: 0 5%;
    }

    .impact-card {
        border-bottom: 1px solid rgba(214, 198, 165, 0.12);
    }
}

@media (max-width: 720px) {
    .site-header {
        height: auto;
        padding: 18px 5%;
        position: relative;
        flex-direction: column;
        gap: 18px;
    }

    .brand h1 {
        font-size: 27px;
    }

    .header-btn {
        width: 100%;
        text-align: center;
    }

    .hero-section {
        min-height: auto;
        padding: 72px 5%;
    }

    .hero-content h2 {
        font-size: 42px;
    }

    .hero-description {
        font-size: 16px;
    }

    .impact-section,
    .feature-grid,
    .split-section {
        grid-template-columns: 1fr;
    }

    .impact-card {
        border-right: 0;
    }

    .split-image img {
        height: 360px;
    }

    .footer {
        flex-direction: column;
        text-align: center;
    }
}
/* =========================
   INNER PAGE HEROES
========================= */

.page-hero {
    min-height: 72vh;
    position: relative;
    padding: 150px 5% 90px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(90deg, rgba(7, 20, 38, 0.97), rgba(7, 20, 38, 0.72), rgba(7, 20, 38, 0.42)),
        url("https://images.unsplash.com/photo-1582719471384-894fbb16e074?auto=format&fit=crop&w=1800&q=85");
    background-size: cover;
    background-position: center;
}

.about-hero {
    background:
        linear-gradient(90deg, rgba(7, 20, 38, 0.97), rgba(7, 20, 38, 0.72), rgba(7, 20, 38, 0.42)),
        url("https://images.unsplash.com/photo-1582719471384-894fbb16e074?auto=format&fit=crop&w=1800&q=85");
    background-size: cover;
    background-position: center;
}

.page-hero-content {
    max-width: 850px;
}

.page-hero-content h2 {
    margin-top: 24px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 6vw, 82px);
    line-height: 1.03;
    letter-spacing: -2px;
}

.page-hero-content h2 span {
    color: var(--champagne);
}

/* =========================
   ABOUT / STORY CARDS
========================= */

.story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.story-card,
.value-card {
    padding: 32px;
    border-radius: 26px;

    background: rgba(255, 255, 255, 0.052);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(14px);

    transition: 0.32s ease;
}

.story-card:hover,
.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.story-card h3,
.value-card h3 {
    color: var(--champagne);
    font-size: 22px;
    margin-bottom: 14px;
}

.story-card p,
.value-card p {
    color: var(--muted);
    line-height: 1.8;
}

/* =========================
   REVERSE SPLIT
========================= */

.reverse-split {
    background:
        linear-gradient(135deg, rgba(109, 31, 54, 0.13), rgba(89, 105, 67, 0.12));
}

/* =========================
   RESPONSIVE INNER PAGES
========================= */

@media (max-width: 980px) {
    .story-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
   RESEARCH PAGE
========================= */

.research-hero {
    background:
        linear-gradient(90deg, rgba(7, 20, 38, 0.97), rgba(7, 20, 38, 0.72), rgba(7, 20, 38, 0.42)),
        url("https://images.unsplash.com/photo-1581093458791-9d15482442f6?auto=format&fit=crop&w=1800&q=85");
    background-size: cover;
    background-position: center;
}

.research-dark {
    background:
        radial-gradient(circle at top left, rgba(89, 105, 67, 0.18), transparent 32%),
        linear-gradient(135deg, rgba(17, 17, 17, 0.78), rgba(7, 20, 38, 0.92));
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}
/* =========================
   WORKSHOPS PAGE
========================= */

.workshops-hero {
    background:
        linear-gradient(90deg, rgba(7, 20, 38, 0.97), rgba(7, 20, 38, 0.72), rgba(7, 20, 38, 0.42)),
        url("https://images.unsplash.com/photo-1559757175-0eb30cd8c063?auto=format&fit=crop&w=1800&q=85");
    background-size: cover;
    background-position: center;
}

.workshops-dark {
    background:
        radial-gradient(circle at top right, rgba(109, 31, 54, 0.18), transparent 34%),
        radial-gradient(circle at bottom left, rgba(107, 74, 58, 0.18), transparent 34%),
        linear-gradient(135deg, rgba(17, 17, 17, 0.82), rgba(7, 20, 38, 0.94));
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}
/* =========================
   CONFERENCES PAGE
========================= */

.conferences-hero {
    background:
        linear-gradient(90deg, rgba(7, 20, 38, 0.97), rgba(7, 20, 38, 0.72), rgba(7, 20, 38, 0.42)),
        url("https://images.unsplash.com/photo-1505373877841-8d25f7d46678?auto=format&fit=crop&w=1800&q=85");
    background-size: cover;
    background-position: center;
}

.conferences-dark {
    background:
        radial-gradient(circle at top left, rgba(214, 198, 165, 0.12), transparent 34%),
        radial-gradient(circle at bottom right, rgba(109, 31, 54, 0.18), transparent 34%),
        linear-gradient(135deg, rgba(17, 17, 17, 0.84), rgba(7, 20, 38, 0.95));
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}
/* =========================
   MEMBERS PAGE
========================= */

.members-hero {
    background:
        linear-gradient(90deg, rgba(7, 20, 38, 0.97), rgba(7, 20, 38, 0.72), rgba(7, 20, 38, 0.42)),
        url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1800&q=85");
    background-size: cover;
    background-position: center;
}

.members-dark {
    background:
        radial-gradient(circle at top left, rgba(214, 198, 165, 0.12), transparent 34%),
        radial-gradient(circle at bottom right, rgba(89, 105, 67, 0.16), transparent 34%),
        linear-gradient(135deg, rgba(17, 17, 17, 0.86), rgba(7, 20, 38, 0.96));
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.founder-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 34px;
    align-items: center;

    padding: 34px;
    border-radius: 32px;

    background: rgba(255, 255, 255, 0.052);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(18px);
}

.founder-photo img {
    height: 340px;
    object-fit: cover;
    border-radius: 26px;
    border: 1px solid var(--glass-border);
}

.founder-info h3 {
    margin: 14px 0 16px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4vw, 54px);
    color: var(--champagne);
}

.founder-info p {
    color: var(--muted);
    line-height: 1.85;
    font-size: 17px;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
}

.member-card {
    padding: 18px;
    border-radius: 24px;

    background: rgba(255, 255, 255, 0.052);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);

    text-align: center;
    transition: 0.32s ease;
}

.member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.member-card img {
    height: 210px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    margin-bottom: 18px;
    filter: brightness(0.9) saturate(0.9);
}

.member-card h3 {
    color: var(--champagne);
    font-size: 18px;
    margin-bottom: 8px;
}

.member-card p {
    color: var(--muted);
    font-size: 14px;
}

/* =========================
   MEMBERS RESPONSIVE
========================= */

@media (max-width: 1180px) {
    .members-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 820px) {
    .founder-card {
        grid-template-columns: 1fr;
    }

    .members-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .members-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
   AI TOOLS PAGE
========================= */

.ai-tools-hero {
    background:
        linear-gradient(90deg, rgba(7, 20, 38, 0.97), rgba(7, 20, 38, 0.72), rgba(7, 20, 38, 0.42)),
        url("https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&w=1800&q=85");
    background-size: cover;
    background-position: center;
}

.ai-workspace-section {
    padding: 110px 5%;
    background:
        radial-gradient(circle at top left, rgba(214, 198, 165, 0.12), transparent 34%),
        radial-gradient(circle at bottom right, rgba(109, 31, 54, 0.18), transparent 34%),
        linear-gradient(135deg, rgba(17, 17, 17, 0.9), rgba(7, 20, 38, 0.98));
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.ai-workspace {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 28px;
    max-width: 1180px;
    margin: auto;
}

.ai-sidebar,
.ai-chat-window {
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(18px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.ai-sidebar {
    padding: 34px;
}

.ai-orb-large {
    width: 94px;
    height: 94px;
    border-radius: 50%;
    display: grid;
    place-items: center;

    color: var(--champagne);
    font-size: 46px;
    border: 1px solid var(--champagne);
    background:
        radial-gradient(circle, rgba(214, 198, 165, 0.14), rgba(255,255,255,0.02));
    box-shadow: 0 0 55px rgba(214, 198, 165, 0.16);
    margin-bottom: 24px;
}

.ai-sidebar h3 {
    color: var(--champagne);
    font-size: 26px;
    margin-bottom: 14px;
}

.ai-sidebar p {
    color: var(--muted);
    line-height: 1.8;
}

.ai-mini-list {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.ai-mini-list span {
    padding: 13px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(214, 198, 165, 0.14);
    color: var(--text);
    font-size: 14px;
}

.ai-chat-window {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 620px;
}

.chat-top {
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.18);
}

.chat-top h3 {
    color: var(--champagne);
    font-size: 22px;
}

.chat-top p {
    color: var(--muted);
    font-size: 14px;
}

.status-dot {
    color: #9fb27a;
    font-size: 14px;
    font-weight: 700;
}

.chat-body {
    flex: 1;
    padding: 28px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bot-message,
.user-message {
    max-width: 78%;
    padding: 18px 20px;
    border-radius: 20px;
    line-height: 1.7;
}

.bot-message {
    align-self: flex-start;
    background: rgba(214, 198, 165, 0.08);
    border: 1px solid rgba(214, 198, 165, 0.16);
}

.bot-message strong {
    display: block;
    color: var(--champagne);
    margin-bottom: 8px;
}

.user-message {
    align-self: flex-end;
    background: linear-gradient(135deg, var(--burgundy), var(--umber));
    color: white;
}

.chat-suggestions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 18px 28px;
    border-top: 1px solid var(--glass-border);
}

.chat-suggestions button {
    padding: 11px 14px;
    border-radius: 999px;
    border: 1px solid rgba(214, 198, 165, 0.2);
    background: rgba(255,255,255,0.05);
    color: var(--champagne);
    cursor: pointer;
}

.chat-input-area {
    display: flex;
    gap: 12px;
    padding: 22px 28px;
    border-top: 1px solid var(--glass-border);
    background: rgba(0,0,0,0.18);
}

.chat-input-area input {
    flex: 1;
    padding: 16px 18px;
    border-radius: 999px;
    border: 1px solid rgba(214, 198, 165, 0.18);
    background: rgba(0,0,0,0.26);
    color: var(--text);
    outline: none;
}

.chat-input-area button {
    padding: 0 24px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--burgundy), var(--umber));
    color: white;
    font-weight: 700;
    cursor: pointer;
}

@media (max-width: 980px) {
    .ai-workspace {
        grid-template-columns: 1fr;
    }

    .ai-chat-window {
        min-height: 540px;
    }

    .bot-message,
    .user-message {
        max-width: 92%;
    }
}
/* =========================
   CONTACT PAGE
========================= */

.contact-hero {
    background:
        linear-gradient(90deg, rgba(7, 20, 38, 0.97), rgba(7, 20, 38, 0.72), rgba(7, 20, 38, 0.42)),
        url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1800&q=85");
    background-size: cover;
    background-position: center;
}

.contact-workspace-section {
    padding: 110px 5%;
    background:
        radial-gradient(circle at top left, rgba(214, 198, 165, 0.12), transparent 34%),
        radial-gradient(circle at bottom right, rgba(109, 31, 54, 0.18), transparent 34%),
        linear-gradient(135deg, rgba(17, 17, 17, 0.9), rgba(7, 20, 38, 0.98));
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.contact-workspace {
    max-width: 1180px;
    margin: auto;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 30px;
}

.contact-info-panel,
.contact-form {
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(18px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.contact-info-panel {
    padding: 36px;
}

.contact-info-panel h2 {
    margin: 18px 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    color: var(--champagne);
}

.contact-info-panel p {
    color: var(--muted);
    line-height: 1.85;
}

.contact-mini-list {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.contact-mini-list span {
    padding: 13px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(214, 198, 165, 0.14);
    color: var(--text);
    font-size: 14px;
}

.contact-form {
    padding: 34px;
}

.form-row {
    display: grid;
    gap: 9px;
    margin-bottom: 18px;
}

.form-row label {
    color: var(--champagne);
    font-size: 14px;
    font-weight: 700;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 15px 16px;
    border-radius: 16px;
    border: 1px solid rgba(214, 198, 165, 0.18);
    background: rgba(0, 0, 0, 0.26);
    color: var(--text);
    outline: none;
    font-size: 15px;
}

.form-row select option {
    background: #111111;
    color: var(--text);
}

.form-row textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-color: var(--champagne);
    box-shadow: 0 0 0 4px rgba(214, 198, 165, 0.08);
}

.contact-submit {
    width: 100%;
    min-height: 54px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    color: white;
    font-weight: 800;
    font-size: 15px;
    background: linear-gradient(135deg, var(--burgundy), var(--umber));
    box-shadow: 0 18px 38px rgba(109, 31, 54, 0.28);
    transition: 0.3s ease;
}

.contact-submit:hover {
    transform: translateY(-3px);
    filter: brightness(1.08);
}

.contact-status {
    margin-top: 18px;
    text-align: center;
    color: var(--champagne);
    font-weight: 700;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.social-card {
    display: block;
    padding: 30px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.052);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(14px);
    transition: 0.32s ease;
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.social-card h3 {
    color: var(--champagne);
    font-size: 22px;
    margin-bottom: 12px;
}

.social-card p {
    color: var(--muted);
    line-height: 1.75;
}

/* =========================
   CONTACT RESPONSIVE
========================= */

@media (max-width: 1050px) {
    .contact-workspace {
        grid-template-columns: 1fr;
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .contact-workspace-section {
        padding: 70px 5%;
    }

    .contact-info-panel,
    .contact-form {
        padding: 24px;
        border-radius: 24px;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }
}
