/* ===== CSS RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color System */
    --background: hsl(220, 15%, 4%);
    --foreground: hsl(210, 20%, 98%);
    --card: hsl(220, 15%, 6%);
    --card-foreground: hsl(210, 20%, 98%);
    --popover: hsl(220, 15%, 5%);
    --popover-foreground: hsl(210, 20%, 98%);
    --primary: hsl(190, 100%, 50%);
    --primary-foreground: hsl(220, 15%, 4%);
    --secondary: hsl(215, 25%, 15%);
    --secondary-foreground: hsl(210, 20%, 98%);
    --muted: hsl(215, 25%, 12%);
    --muted-foreground: hsl(215, 20%, 65%);
    --accent: hsl(45, 100%, 50%);
    --accent-foreground: hsl(220, 15%, 4%);
    --border: hsl(215, 25%, 15%);
    --input: hsl(215, 25%, 15%);
    --ring: hsl(190, 100%, 50%);
    /* Fonts */
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-tech: 'Rajdhani', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    line-height: 1.6;
}

::selection {
    background: hsla(190, 100%, 50%, 0.2);
    color: var(--primary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    letter-spacing: -0.02em;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    color: inherit;
}

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

input {
    font-family: inherit;
}

/* ===== UTILITY CLASSES ===== */
.font-serif {
    font-family: var(--font-serif);
}

.font-tech {
    font-family: var(--font-tech);
}

.font-sans {
    font-family: var(--font-sans);
}

.text-primary {
    color: var(--primary);
}

.text-white {
    color: #fff;
}

.text-muted {
    color: var(--muted-foreground);
}

.text-glow {
    text-shadow: 0 0 20px hsla(190, 100%, 50%, 0.5);
}

.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.tracking-ultra {
    letter-spacing: 0.4em;
}

.uppercase {
    text-transform: uppercase;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    background: hsla(220, 15%, 4%, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
    .navbar {
        padding: 0 48px;
    }
}

.navbar__brand {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar__brand:hover .navbar__brand-name {
    color: var(--primary);
}

.navbar__logo {
    width: 40px;
    height: 40px;
    /* background: #fff; */
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: var(--font-serif);
    font-size: 20px;
    border-radius: 2px;
}

.navbar__brand-text {
    display: flex;
    flex-direction: column;
}

.navbar__brand-name {
    font-family: var(--font-serif);
    font-weight: bold;
    font-size: 18px;
    letter-spacing: -0.02em;
    color: #ffa700;
    line-height: 1;
    transition: color 0.3s;
}

.navbar__brand-sub {
    font-size: 10px;
    font-family: var(--font-tech);
    color: #ffa700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.navbar__links {
    display: none;
    align-items: center;
    gap: 32px;
    font-family: var(--font-tech);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 1024px) {
    .navbar__links {
        display: flex;
    }
}

.navbar__links a {
    transition: color 0.3s;
}

.navbar__links a:hover {
    color: var(--primary);
}

.navbar__actions {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
    display: none;
}

.navbar__icon-btn {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar__icon-btn:hover {
    color: #fff;
}

.navbar__menu-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: background 0.3s;
}

.navbar__menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    width: 100%;
    min-height: 900px;
    background: var(--background);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-top: 80px;
}

@media (min-width: 1024px) {
    .hero {
        flex-direction: row;
    }
}

.hero__left {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    z-index: 10;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .hero__left {
        padding: 80px;
    }
}

.hero__content {
    position: relative;
    z-index: 20;
    max-width: 560px;
}

.hero__label {
    color: var(--primary);
    font-family: var(--font-tech);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 16px;
    display: block;
    font-size: 14px;
}

.hero__title {
    font-size: 48px;
    font-family: var(--font-serif);
    font-weight: bold;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero__title {
        font-size: 72px;
    }
}

.hero__quote {
    font-size: 24px;
    font-family: var(--font-serif);
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    border-left: 4px solid var(--primary);
    padding-left: 24px;
    margin-bottom: 32px;
}

.hero__desc {
    color: var(--muted-foreground);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero__cta {
    padding: 16px 32px;
    background: var(--primary);
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    border: none;
}

.hero__cta:hover {
    background: #fff;
}

.hero__right {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    z-index: 5;
}

.hero__globe-wrap {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 1;
    position: relative;
}

.hero__globe-canvas {
    width: 100%;
    height: 100%;
    opacity: 0.9;
    transition: opacity 1s ease-in-out;
}

.hero__globe-canvas:hover {
    cursor: grab;
}

.hero__globe-canvas:active {
    cursor: grabbing;
}

/* ===== VISION SECTION ===== */
.vision {
    padding: 128px 0;
    position: relative;
    overflow: hidden;
    background: hsla(215, 25%, 15%, 0.1);
}

.vision__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    position: relative;
    z-index: 10;
    text-align: center;
}

@media (min-width: 768px) {
    .vision__inner {
        padding: 0 32px;
    }
}

.vision__label {
    color: var(--primary);
    font-family: var(--font-tech);
    text-transform: uppercase;
    letter-spacing: 0.4em;
    margin-bottom: 32px;
    display: block;
    font-size: 14px;
}

.vision__title {
    font-size: 48px;
    font-family: var(--font-serif);
    font-weight: bold;
    color: #fff;
    margin-bottom: 40px;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.15;
}

@media (min-width: 768px) {
    .vision__title {
        font-size: 72px;
    }
}

.vision__divider {
    width: 96px;
    height: 4px;
    background: var(--primary);
    margin: 0 auto 40px;
}

.vision__quote {
    font-size: 20px;
    font-family: var(--font-serif);
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    max-width: 768px;
    margin: 0 auto;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .vision__quote {
        font-size: 24px;
    }
}

.vision__play {
    margin-top: 64px;
    display: flex;
    justify-content: center;
    gap: 32px;
}

.vision__play-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-family: var(--font-tech);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}

.vision__play-btn:hover {
    color: var(--primary);
}

.vision__play-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== TIMELINE SECTION ===== */
.timeline {
    padding: 96px 16px;
    background: var(--background);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .timeline {
        padding: 96px 32px;
    }
}

.timeline__inner {
    max-width: 768px;
    margin: 0 auto;
}

.timeline__header {
    text-align: center;
    margin-bottom: 80px;
}

.timeline__label {
    color: var(--primary);
    font-family: var(--font-tech);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.timeline__heading {
    font-size: 36px;
    font-family: var(--font-serif);
    font-weight: bold;
    color: #fff;
    margin-top: 16px;
}

@media (min-width: 768px) {
    .timeline__heading {
        font-size: 48px;
    }
}

.timeline__track {
    position: relative;
    border-left: 2px solid hsla(190, 100%, 50%, 0.2);
    margin-left: 16px;
}

@media (min-width: 768px) {
    .timeline__track {
        margin-left: 0;
    }
}

.timeline__item {
    position: relative;
    padding-left: 40px;
    padding-bottom: 64px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease-out;
}

.timeline__item.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline__item:last-child {
    padding-bottom: 0;
}

.timeline__dot {
    position: absolute;
    left: -9px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.timeline__row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (min-width: 768px) {
    .timeline__row {
        flex-direction: row;
        align-items: baseline;
        gap: 32px;
    }
}

.timeline__year {
    font-size: 36px;
    font-family: var(--font-serif);
    font-weight: bold;
    color: hsla(190, 100%, 50%, 0.4);
}

.timeline__card {
    width: 100%;
    padding: 24px;
    border-radius: 8px;
}

.timeline__card-title {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 8px;
}

.timeline__card-desc {
    color: var(--muted-foreground);
}

/* ===== LOCATIONS MAP ===== */
.locations {
    padding: 96px 0;
    background: var(--background);
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.locations__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .locations__inner {
        padding: 0 32px;
    }
}

.locations__header {
    margin-bottom: 64px;
    text-align: center;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.locations__label {
    color: var(--primary);
    font-family: var(--font-tech);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.locations__heading {
    font-size: 36px;
    font-family: var(--font-serif);
    font-weight: bold;
    color: #fff;
    margin-top: 16px;
    margin-bottom: 16px;
}

.locations__desc {
    color: var(--muted-foreground);
    font-size: 18px;
}

.locations__map {
    position: relative;
    width: 100%;
    aspect-ratio: 21 / 9;
    background: hsla(215, 25%, 15%, 0.1);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.locations__map-bg {
    position: absolute;
    inset: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
    transform: scale(1.1);
}

.location-pin {
    position: absolute;
    cursor: pointer;
    z-index: 5;
}

.location-pin__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid hsla(190, 100%, 50%, 0.3);
    transition: all 0.3s;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.location-pin:hover .location-pin__icon {
    border-color: var(--primary);
    transform: scale(1.25);
}

.location-pin__icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.location-pin__ping {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background: hsla(190, 100%, 50%, 0.2);
    border-radius: 50%;
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.location-pin__tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    margin-bottom: 16px;
    padding: 8px 16px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.location-pin:hover .location-pin__tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.location-pin__name {
    font-family: var(--font-serif);
    font-weight: bold;
    color: #fff;
    font-size: 14px;
    display: block;
    margin-bottom: 4px;
}

.location-pin__status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-pin__status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

.location-pin__status-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    font-family: var(--font-tech);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-style: italic;
}

/* ===== VENTURES GRID ===== */
.ventures {
    padding: 96px 16px;
    background: var(--background);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

@media (min-width: 768px) {
    .ventures {
        padding: 96px 32px;
        display: none;
    }
}

.ventures__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.ventures__header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 64px;
    gap: 24px;
}

@media (min-width: 768px) {
    .ventures__header {
        flex-direction: row;
        align-items: flex-end;
    }
}

.ventures__header-text {
    max-width: 640px;
}

.ventures__label {
    color: var(--primary);
    font-family: var(--font-tech);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 16px;
}

.ventures__heading {
    font-size: 36px;
    font-family: var(--font-serif);
    font-weight: bold;
    color: #fff;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .ventures__heading {
        font-size: 60px;
    }
}

.ventures__subtext {
    color: var(--muted-foreground);
    font-size: 18px;
    line-height: 1.7;
}

.ventures__portfolio-btn {
    padding: 16px 32px;
    border: 1px solid hsla(190, 100%, 50%, 0.3);
    color: var(--primary);
    text-transform: uppercase;
    font-family: var(--font-tech);
    letter-spacing: 0.1em;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    white-space: nowrap;
}

.ventures__portfolio-btn:hover {
    background: hsla(190, 100%, 50%, 0.1);
}

.ventures__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .ventures__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .ventures__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .ventures__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.venture-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s;
    opacity: 0;
    transform: scale(0.95);
}

.venture-card.visible {
    opacity: 1;
    transform: scale(1);
}

.venture-card:hover {
    border-color: hsla(190, 100%, 50%, 0.4);
}

.venture-card__bg {
    position: absolute;
    inset: 0;
}

.venture-card__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s;
    opacity: 0.3;
}

.venture-card:hover .venture-card__bg img {
    transform: scale(1.1);
    opacity: 0.2;
}

.venture-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--background) 0%, hsla(220, 15%, 4%, 0.6) 50%, transparent 100%);
}

.venture-card__icon {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s;
}

.venture-card:hover .venture-card__icon {
    border-color: hsla(190, 100%, 50%, 0.5);
}

.venture-card__icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.venture-card__content {
    position: absolute;
    inset: 0;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.venture-card__content-inner {
    transform: translateY(24px);
    transition: transform 0.5s;
}

.venture-card:hover .venture-card__content-inner {
    transform: translateY(0);
}

.venture-card__category {
    color: var(--primary);
    font-size: 12px;
    font-family: var(--font-tech);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 12px;
    display: block;
}

.venture-card__name {
    font-size: 28px;
    font-family: var(--font-serif);
    color: #fff;
    font-weight: bold;
    margin-bottom: 16px;
    transition: color 0.3s;
}

.venture-card:hover .venture-card__name {
    color: var(--primary);
}

.venture-card__desc {
    color: var(--muted-foreground);
    font-size: 16px;
    line-height: 1.7;
    opacity: 0;
    transition: opacity 0.5s 0.1s;
}

.venture-card:hover .venture-card__desc {
    opacity: 1;
}

.venture-card__explore {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    transition: opacity 0.5s 0.2s;
}

.venture-card:hover .venture-card__explore {
    opacity: 1;
}

.venture-card__explore-btn {
    color: #fff;
    font-family: var(--font-tech);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.venture-card__explore-btn:hover {
    color: var(--primary);
}

/* ===== VIP CONCIERGE SECTION ===== */
.concierge {
    padding: 128px 0;
    background: hsla(190, 100%, 50%, 0.05);
    border-top: 1px solid hsla(190, 100%, 50%, 0.1);
    border-bottom: 1px solid hsla(190, 100%, 50%, 0.1);
    position: relative;
    overflow: hidden;
}

.concierge__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 64px;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .concierge__inner {
        padding: 0 32px;
    }
}

@media (min-width: 1024px) {
    .concierge__inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.concierge__text {
    max-width: 768px;
}

.concierge__label {
    color: var(--primary);
    font-family: var(--font-tech);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 16px;
}

.concierge__heading {
    font-size: 36px;
    font-family: var(--font-serif);
    font-weight: bold;
    color: #fff;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .concierge__heading {
        font-size: 60px;
    }
}

.concierge__desc {
    color: var(--muted-foreground);
    font-size: 20px;
    line-height: 1.7;
}

.concierge__avatars {
    margin-top: 40px;
    display: flex;
    gap: 48px;
    align-items: center;
}

.concierge__avatar-stack {
    display: flex;
}

.concierge__avatar-stack > div {
    margin-left: -16px;
}

.concierge__avatar-stack > div:first-child {
    margin-left: 0;
}

.concierge__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--background);
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.concierge__avatar-inner {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
}

.concierge__active-text {
    font-size: 12px;
    font-family: var(--font-tech);
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.concierge__booking-btn {
    padding: 24px 40px;
    background: var(--primary);
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
    border: none;
}

.concierge__booking-btn:hover {
    background: #fff;
    transform: scale(1.05);
}

/* ===== CHAT DIALOG ===== */
.chat-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
}

.chat-overlay.active {
    display: flex;
}

.chat-dialog {
    width: 100%;
    max-width: 500px;
    height: 600px;
    background: hsla(220, 15%, 4%, 0.95);
    backdrop-filter: blur(48px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.chat-dialog__header {
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 16px;
}

.chat-dialog__header-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid hsla(190, 100%, 50%, 0.3);
}

.chat-dialog__header-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.chat-dialog__header-text h3 {
    font-family: var(--font-serif);
    font-weight: bold;
    font-size: 20px;
}

.chat-dialog__header-text p {
    font-size: 12px;
    color: var(--primary);
    font-family: var(--font-tech);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.chat-dialog__close {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
}

.chat-dialog__close:hover {
    color: #fff;
}

.chat-dialog__messages {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.chat-msg {
    display: flex;
}

.chat-msg--user {
    justify-content: flex-end;
}

.chat-msg--bot {
    justify-content: flex-start;
}

.chat-msg__bubble {
    max-width: 80%;
    padding: 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.6;
}

.chat-msg--user .chat-msg__bubble {
    background: var(--primary);
    color: #000;
    font-weight: 500;
    border-top-right-radius: 0;
}

.chat-msg--bot .chat-msg__bubble {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top-left-radius: 0;
}

.chat-dialog__input {
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 12px;
}

.chat-dialog__input input {
    flex: 1;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 16px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.chat-dialog__input input:focus {
    border-color: var(--primary);
}

.chat-dialog__input input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.chat-dialog__send {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    border: none;
}

.chat-dialog__send:hover {
    background: #fff;
}

/* ===== GALLERY SECTION ===== */
.gallery {
    padding: 128px 16px;
    background: var(--background);
}

@media (min-width: 768px) {
    .gallery {
        padding: 128px 32px;
        display: none;
    }
}

.gallery__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.gallery__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
}

.gallery__header-text {
    max-width: 560px;
}

.gallery__heading {
    font-size: 36px;
    font-family: var(--font-serif);
    font-weight: bold;
    color: #fff;
    margin-bottom: 16px;
}

.gallery__subtext {
    color: var(--muted-foreground);
    font-size: 18px;
}

.gallery__view-btn {
    color: var(--primary);
    font-family: var(--font-tech);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s;
    display: none;
}

@media (min-width: 768px) {
    .gallery__view-btn {
        display: block;
    }
}

.gallery__view-btn:hover {
    color: #fff;
}

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

@media (min-width: 768px) {
    .gallery__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery__col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.gallery__col--offset {
    padding-top: 48px;
}

.gallery__item {
    border-radius: 16px;
    overflow: hidden;
}

.gallery__item--tall {
    aspect-ratio: 3 / 4;
}

.gallery__item--square {
    aspect-ratio: 1;
}

.gallery__item-inner {
    width: 100%;
    height: 100%;
}

.gallery__item-inner--white {
    background: rgba(255, 255, 255, 0.05);
}

.gallery__item-inner--primary {
    background: hsla(190, 100%, 50%, 0.1);
}

.gallery__item-inner--accent {
    background: hsla(45, 100%, 50%, 0.1);
}

/* ===== FOOTER ===== */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #000;
    padding-top: 96px;
    padding-bottom: 48px;
    padding-left: 16px;
    padding-right: 16px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .footer {
        padding-left: 32px;
        padding-right: 32px;
    }
}

.footer__grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 64px;
    margin-bottom: 96px;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .footer__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer__grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.footer__brand {
    grid-column: span 2;
}

.footer__brand-name {
    font-size: 28px;
    font-family: var(--font-serif);
    font-weight: bold;
    color: #fff;
    letter-spacing: -0.02em;
}

.footer__brand-sub {
    font-size: 12px;
    font-family: var(--font-tech);
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.4em;
    margin-top: 4px;
}

.footer__tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    font-style: italic;
    font-family: var(--font-serif);
    line-height: 1.7;
    margin-top: 32px;
    margin-bottom: 32px;
}

.footer__socials {
    display: flex;
    gap: 16px;
}

.footer__social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s;
}

.footer__social-icon:hover {
    border-color: var(--primary);
}

.footer__col-title {
    color: #fff;
    font-weight: bold;
    margin-bottom: 32px;
    font-family: var(--font-tech);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 14px;
}

.footer__col-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__col-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
}

.footer__col-links a:hover {
    color: var(--primary);
}

.footer__newsletter {
    grid-column: span 2;
}

.footer__newsletter-form {
    display: flex;
    gap: 12px;
}

.footer__newsletter-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 24px;
    width: 100%;
    color: #fff;
    transition: border-color 0.3s;
    outline: none;
}

.footer__newsletter-input:focus {
    border-color: var(--primary);
}

.footer__newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.footer__newsletter-btn {
    background: var(--primary);
    color: #000;
    font-weight: bold;
    padding: 16px 32px;
    border-radius: 12px;
    transition: all 0.3s;
    border: none;
    white-space: nowrap;
}

.footer__newsletter-btn:hover {
    background: #fff;
}

.footer__bottom {
    max-width: 1280px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer__bottom-links {
    display: flex;
    gap: 32px;
}

.footer__bottom-links a {
    transition: color 0.3s;
}

.footer__bottom-links a:hover {
    color: #fff;
}

/* ===== FLOATING DOCK ===== */
.floating-dock {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 50;
}

.floating-dock__trigger {
    height: 64px;
    width: 64px;
    border-radius: 50%;
    background: #22c55e;
    color: #fff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: none;
    transition: all 0.3s;
}

.floating-dock__trigger:hover {
    background: #4ade80;
    transform: scale(1.05);
}

.floating-dock__trigger:active {
    transform: scale(0.95);
}

.floating-dock__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top right, rgba(0,0,0,0.2), transparent);
}

.floating-dock__trigger svg {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 10;
}

.floating-dock__pulse {
    position: absolute;
    display: inline-flex;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #4ade80;
    opacity: 0.2;
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.floating-dock__menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 288px;
    padding: 8px;
    background: hsla(220, 15%, 4%, 0.9);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    display: none;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.floating-dock__menu.active {
    display: block;
}

.floating-dock__menu-header {
    padding: 8px 8px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 8px;
}

.floating-dock__menu-header h4 {
    font-weight: bold;
}

.floating-dock__menu-header p {
    font-size: 12px;
    color: var(--muted-foreground);
}

.floating-dock__menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    transition: background 0.2s;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

.floating-dock__menu-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.floating-dock__menu-item-icon {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-dock__menu-item-icon--blue {
    background: rgba(59, 130, 246, 0.2);
    color: rgb(96, 165, 250);
}

.floating-dock__menu-item-icon--cyan {
    background: rgba(6, 182, 212, 0.2);
    color: rgb(34, 211, 238);
}

.floating-dock__menu-item-icon--green {
    background: rgba(34, 197, 94, 0.2);
    color: rgb(74, 222, 128);
}

.floating-dock__menu-item-icon--red {
    background: rgba(239, 68, 68, 0.2);
    color: rgb(248, 113, 113);
}

.floating-dock__menu-item-text {
    display: flex;
    flex-direction: column;
}

.floating-dock__menu-item-text span:first-child {
    font-weight: 500;
    font-size: 14px;
}

.floating-dock__menu-item-text span:last-child {
    font-size: 12px;
    color: var(--muted-foreground);
}

/* ===== PARTICLES CANVAS ===== */
.particles-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.particles-container canvas {
    width: 100% !important;
    height: 100% !important;
}

/* ===== ANIMATIONS ===== */
@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fadeIn {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Scroll reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--background);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}
