/* ============================================
   PHILCONEXIUM — Global Styles
   ============================================ */

:root {
    --gold: #2F6BFF;
    --gold-hover: #4D85FF;
    --gold-dark: #1F4ED8;
    --bg: #070D18;
    --bg-card: #0E1626;
    --bg-card-hover: #152038;
    --bg-section-alt: #0A1221;
    --text: #F4F8FF;
    --text-muted: #9FB0C9;
    --text-dim: #6D7F9E;
    --border: #22314D;
    --border-gold: rgba(47, 107, 255, 0.35);
    --teal: #22D3EE;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Space Grotesk', 'Inter', sans-serif;
    --container: 1200px;
    --header-h: 72px;
    --radius: 8px;
    --radius-lg: 12px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   UTILITIES
   ============================================ */

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

.label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: var(--font-main);
}

.label--gold { color: var(--gold); }
.label--teal { color: var(--teal); }
.label--center { text-align: center; }

.label--line {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.label--line::before,
.label--line::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin-top: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-top: 16px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.section-desc--left {
    margin-left: 0;
    margin-right: 0;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-main);
    white-space: nowrap;
}

.btn--gold {
    background: var(--gold);
    color: #000;
}
.btn--gold:hover { background: var(--gold-hover); transform: translateY(-2px); }

.btn--outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--text-muted);
}
.btn--outline:hover { border-color: var(--text); }

.btn--outline-gold {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 10px 24px;
}
.btn--outline-gold:hover { background: var(--gold); color: #000; }

.btn--ghost {
    background: transparent;
    color: var(--text);
    border: none;
    padding: 14px 0;
}
.btn--ghost:hover { color: var(--gold); }

.btn--lg { padding: 18px 36px; font-size: 0.9rem; }

.btn-icon { font-size: 1.1em; }
.arrow { font-size: 1.2em; }

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.header--scrolled {
    background: rgba(10, 10, 10, 0.97);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo__img {
    height: 38px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.logo:hover .logo__img {
    filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(212, 175, 55, 0.4));
}

.nav {
    display: flex;
    gap: 32px;
}

.nav__link {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    position: relative;
}

.nav__link:hover,
.nav__link.active { color: var(--text); }

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.nav__link:hover::after { width: 100%; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-h);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.95) 100%);
}

.hero__content {
    position: relative;
    z-index: 1;
    padding: 80px 24px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-top: 20px;
}

.hero__subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: 24px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero__stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.hero__stat { text-align: center; }
.hero__stat-label { display: block; font-size: 0.7rem; letter-spacing: 0.15em; color: var(--text-muted); margin-bottom: 6px; }
.hero__stat-value { display: block; font-family: var(--font-heading); font-weight: 600; font-size: 1rem; }

/* ============================================
   POSITIONING
   ============================================ */

.positioning {
    padding: 120px 0 80px;
}

.focus-bar {
    margin-top: 56px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 40px;
}

.focus-bar__items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.focus-bar__item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.focus-bar__num {
    color: var(--gold);
    font-weight: 700;
    font-family: var(--font-heading);
}

.focus-bar__text {
    font-weight: 600;
    font-size: 1.1rem;
}

.focus-bar__divider {
    width: 1px;
    height: 32px;
    background: var(--border);
}

/* ============================================
   SERVICES
   ============================================ */

.services {
    padding: 100px 0;
    background: var(--bg);
}

.services__grid {
    display: grid;
    gap: 24px;
    margin-bottom: 24px;
}

.services__grid--4 { grid-template-columns: repeat(4, 1fr); }
.services__grid--3 { grid-template-columns: repeat(3, 1fr); }

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
}

.service-card__image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-card__image img {
    transform: scale(1.05);
}

.service-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(212, 168, 67, 0.9);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.service-card__icon {
    position: absolute;
    bottom: 12px;
    left: 12px;
    width: 36px;
    height: 36px;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid var(--gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.service-card__body {
    padding: 24px;
}

.service-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.service-card__header h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
}

.chevron {
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: var(--transition);
    line-height: 1;
}

.chevron.open { transform: rotate(180deg); }

.service-card__desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 12px;
    line-height: 1.6;
}

.service-card__sub {
    display: none;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.service-card__sub.open { display: block; }

.service-card__sub ul {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-card__sub li {
    font-size: 0.88rem;
    color: var(--text-muted);
    padding-left: 16px;
    position: relative;
}

.service-card__sub li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
}

.service-card__toggle {
    display: inline-block;
    margin-top: 16px;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    cursor: pointer;
    font-family: var(--font-main);
    transition: var(--transition);
}

.service-card__toggle:hover { color: var(--gold-hover); }

.chevron-sm {
    display: inline-block;
    transition: var(--transition);
    font-size: 1rem;
}

.service-card__toggle.open .chevron-sm { transform: rotate(180deg); }

/* ============================================
   AI ADVANTAGE
   ============================================ */

.ai-advantage {
    padding: 100px 0;
    background: var(--bg-section-alt);
}

.ai-advantage__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.result-box {
    margin-top: 32px;
    padding: 20px 24px;
    border-left: 3px solid var(--gold);
    background: rgba(212, 168, 67, 0.05);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.result-box__text {
    font-weight: 600;
    font-size: 1.05rem;
    margin-top: 8px;
}

.ai-feature {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    margin-bottom: 12px;
}

.ai-feature:hover {
    border-color: var(--border-gold);
    background: var(--bg-card);
}

.ai-feature__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.ai-feature__title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
}

.ai-feature__desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 2px;
    font-family: monospace;
    letter-spacing: 0.03em;
}

/* ============================================
   APPROACH
   ============================================ */

.approach {
    padding: 100px 0;
}

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

.approach-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition);
}

.approach-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
}

.approach-card__num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.4;
    line-height: 1;
}

.approach-card__title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.15rem;
    margin-top: 20px;
}

.approach-card__desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 8px;
}

/* ============================================
   EVENTS
   ============================================ */

.events {
    padding: 100px 0;
    background: var(--bg-section-alt);
}

.events__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.events__bold {
    font-weight: 700;
    margin-top: 24px;
    font-size: 1.05rem;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    transition: var(--transition);
}

.event-item:hover {
    border-color: var(--border-gold);
    background: var(--bg-card);
}

.event-item__num {
    color: var(--gold);
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 0.85rem;
}

.event-item__divider {
    width: 1px;
    height: 24px;
    background: var(--gold);
}

.event-item__title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
}

/* ============================================
   WHY US
   ============================================ */

.why-us {
    padding: 100px 0;
}

.why-us__grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.why-us__item {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    min-width: 180px;
    flex: 1;
    max-width: 220px;
    transition: var(--transition);
}

.why-us__item:hover { transform: translateY(-4px); }

.why-us__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.why-us__item p {
    font-weight: 600;
    font-size: 0.95rem;
}

/* ============================================
   MINDSET
   ============================================ */

.mindset {
    padding: 100px 0;
    background: var(--bg-section-alt);
}

.mindset__rows {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mindset__row {
    display: flex;
    align-items: center;
    gap: 32px;
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 600;
}

.mindset__line {
    width: 60px;
    height: 2px;
    background: var(--text-muted);
}

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

/* ============================================
   OFFICES
   ============================================ */

.offices {
    padding: 100px 0;
}

.offices__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 40px;
    align-items: start;
}

.offices__image {
    border: 1px dashed var(--gold);
    border-radius: var(--radius-lg);
    padding: 8px;
}

.offices__image img {
    border-radius: var(--radius);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.office-location {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 32px;
}

.office-location__flag { font-size: 1.5rem; }

.office-location h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 4px;
}

.office-location__address {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.offices__status {
    margin-top: 24px;
    padding: 16px 24px;
    border: 1px solid var(--teal);
    border-radius: var(--radius);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--teal);
    text-align: center;
}

/* ============================================
   AI ASSISTANT
   ============================================ */

.ai-assistant {
    padding: 100px 0;
    background: var(--bg-section-alt);
}

.ai-assistant__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ai-assistant__quote {
    margin-top: 24px;
    padding-left: 20px;
    border-left: 3px solid var(--gold);
    font-weight: 600;
    color: var(--gold);
}

.system-panel {
    border: 1px solid var(--teal);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
}

.system-panel::before,
.system-panel::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border: 1px solid var(--teal);
}

.system-panel::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.system-panel::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.system-panel__header {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--teal);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.system-panel__item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 500;
}

.system-panel__icon {
    font-size: 1.1rem;
    opacity: 0.8;
}

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

.cta {
    padding: 120px 0;
    text-align: center;
    border-top: 1px solid var(--border);
}

.cta__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-top: 16px;
}

.cta__desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: 16px;
}

.cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* ============================================
   CLOSING
   ============================================ */

.closing {
    padding: 100px 0;
    background: var(--bg-section-alt);
    border-top: 1px solid var(--teal);
    text-align: center;
}

.closing__text {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    line-height: 1.5;
}

.closing__sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-top: 12px;
}

.closing__tagline {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

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

.footer {
    padding: 60px 0 32px;
    border-top: 1px solid var(--border);
}

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

.footer__status p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.footer__bottom {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-muted);
    font-family: monospace;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    animation: pulse 2s infinite;
}

.status-dot--teal { background: var(--teal); }

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */

.floating-btns {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.floating-btn:hover { transform: scale(1.1); }

.floating-btn--whatsapp { background: #25D366; }
.floating-btn--chat { background: var(--gold); }

/* ============================================
   BOOKING PAGE
   ============================================ */

.booking-page {
    min-height: 100vh;
    background: var(--bg);
    padding-top: 40px;
}

.booking-page .header__inner {
    border-bottom: none;
}

.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    max-width: var(--container);
    margin: 0 auto;
}

.back-link {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

.back-link:hover { color: var(--text); }

.booking-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 24px;
    text-align: center;
}

.booking-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid var(--teal);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--teal);
}

.booking-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-top: 24px;
}

.booking-desc {
    color: var(--text-muted);
    margin-top: 12px;
    font-size: 1.05rem;
}

.booking-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.booking-step {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
}

.booking-step.active { color: var(--gold); }

.booking-step__num {
    width: 24px;
    height: 24px;
    border: 1px solid currentColor;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.booking-step-line {
    width: 40px;
    height: 1px;
    background: var(--text-muted);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    text-align: left;
}

.calendar-section,
.time-section {
    padding: 0;
}

.calendar-label,
.time-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.calendar {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.calendar__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.calendar__title {
    font-family: var(--font-heading);
    font-weight: 600;
}

.calendar__nav {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px 8px;
    transition: var(--transition);
}

.calendar__nav:hover { color: var(--text); }

.calendar__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
}

.calendar__day-name {
    font-size: 0.75rem;
    color: var(--text-muted);
    padding: 8px 0;
    font-weight: 500;
}

.calendar__day {
    padding: 10px 0;
    font-size: 0.9rem;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    background: none;
    color: var(--text);
    font-family: var(--font-main);
}

.calendar__day:hover:not(.calendar__day--disabled) {
    background: var(--bg-card-hover);
}

.calendar__day--disabled {
    color: var(--text-dim);
    cursor: default;
}

.calendar__day--today {
    background: var(--gold);
    color: #000;
    font-weight: 600;
}

.calendar__day--selected {
    background: var(--gold) !important;
    color: #000 !important;
    font-weight: 600;
}

.calendar__note {
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.time-slots {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.time-slot {
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 500;
    background: none;
    color: var(--text);
    font-family: var(--font-main);
}

.time-slot:hover { border-color: var(--gold); }

.time-slot--selected {
    background: var(--gold) !important;
    color: #000 !important;
    border-color: var(--gold) !important;
    font-weight: 600;
}

.time-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.booking-continue {
    display: flex;
    justify-content: flex-end;
    margin-top: 32px;
}

/* Step 2 - Form */
.booking-summary {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 16px 24px;
    margin-bottom: 40px;
    font-size: 0.9rem;
    justify-content: center;
}

.booking-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid var(--teal);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    text-align: left;
}

.booking-form-wrapper::before,
.booking-form-wrapper::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border: 1px solid var(--teal);
}

.booking-form-wrapper::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.booking-form-wrapper::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.form-title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group { display: flex; flex-direction: column; }

.form-group--full { grid-column: 1 / -1; }

.form-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.form-label .required { color: var(--gold); }

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 0.95rem;
    font-family: var(--font-main);
    transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-dim); }

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

.form-actions {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-page {
    min-height: 100vh;
    background: var(--bg);
    padding-top: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    align-items: start;
}

.contact-left { padding: 24px 0; }

.contact-steps {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-step__num {
    color: var(--gold);
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.contact-step h4 {
    font-family: var(--font-heading);
    font-weight: 600;
}

.contact-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

@media (max-width: 1024px) {
    .services__grid--4 { grid-template-columns: repeat(2, 1fr); }
    .services__grid--3 { grid-template-columns: repeat(2, 1fr); }
    .ai-advantage__grid { grid-template-columns: 1fr; gap: 48px; }
    .events__grid { grid-template-columns: 1fr; gap: 48px; }
    .offices__grid { grid-template-columns: 1fr; }
    .ai-assistant__grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    :root { --header-h: 64px; }

    .nav {
        display: none;
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 24px;
        border-bottom: 1px solid var(--border);
    }

    .nav.open { display: flex; }

    .header__cta { display: none; }
    .hamburger { display: flex; }
    .logo__img { height: 30px; }

    .services__grid--4,
    .services__grid--3 { grid-template-columns: 1fr; }

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

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

    .hero__actions { flex-direction: column; }

    .focus-bar__items { flex-direction: column; gap: 16px; }
    .focus-bar__divider { width: 40px; height: 1px; }

    .booking-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .mindset__row { font-size: 1.2rem; gap: 16px; }
    .mindset__line { width: 32px; }

    .why-us__grid { flex-direction: column; align-items: center; }
    .why-us__item { max-width: 100%; }

    .cta__actions { flex-direction: column; }

    .booking-summary { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
    .hero__title { font-size: 1.8rem; }
    .section-title { font-size: 1.6rem; }
    .container { padding: 0 16px; }
}

/* ============================================
   TEAM
   ============================================ */

.team {
    padding: 100px 0;
    background: var(--bg-section-alt);
}

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

.team-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.team-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-6px);
}

.team-card__photo {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--border);
    transition: var(--transition);
}

.team-card:hover .team-card__photo {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 168, 67, 0.2);
}

.team-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: var(--transition);
}

.team-card:hover .team-card__photo img {
    transform: scale(1.05);
}

.team-card__name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.team-card__role {
    font-size: 0.82rem;
    color: var(--gold);
    font-weight: 500;
    line-height: 1.4;
}

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

@media (max-width: 768px) {
    .team__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .team-card { padding: 24px 16px; }
    .team-card__photo { width: 110px; height: 110px; }
}

@media (max-width: 480px) {
    .team__grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
}

/* ============================================
   CHATBOT
   ============================================ */

.chatbot {
    position: fixed;
    bottom: 96px;
    right: 24px;
    width: 400px;
    max-height: 560px;
    background: #111111;
    border: 1px solid var(--border);
    border-radius: 16px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.chatbot--open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.chatbot__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #0D0D0D;
    border-bottom: 1px solid var(--border);
}

.chatbot__header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold);
    color: #000;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot__name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
}

.chatbot__status {
    font-size: 0.7rem;
    color: var(--teal);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
}

.chatbot__status .status-dot { width: 6px; height: 6px; }

.chatbot__close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    transition: var(--transition);
}

.chatbot__close:hover { color: var(--text); }

.chatbot__messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 280px;
    max-height: 340px;
    scroll-behavior: smooth;
}

.chatbot__messages::-webkit-scrollbar { width: 4px; }
.chatbot__messages::-webkit-scrollbar-track { background: transparent; }
.chatbot__messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.chatbot__msg {
    display: flex;
    gap: 10px;
    max-width: 90%;
    animation: msgFadeIn 0.3s ease;
}

@keyframes msgFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.chatbot__msg--bot { align-self: flex-start; }
.chatbot__msg--user { align-self: flex-end; flex-direction: row-reverse; }

.chatbot__msg-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gold);
    color: #000;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.chatbot__msg-bubble {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.88rem;
    line-height: 1.6;
}

.chatbot__msg--bot .chatbot__msg-bubble {
    background: #1A1A1A;
    border: 1px solid var(--border);
    border-top-left-radius: 4px;
    color: var(--text);
}

.chatbot__msg--user .chatbot__msg-bubble {
    background: var(--gold);
    color: #000;
    border-top-right-radius: 4px;
    font-weight: 500;
}

.chatbot__msg-bubble b { color: var(--gold); }
.chatbot__msg--user .chatbot__msg-bubble b { color: #000; }

.chatbot__msg-bubble a.chatbot-link {
    display: inline-block;
    margin-top: 8px;
    color: var(--gold);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.chatbot__msg-bubble a.chatbot-link:hover { color: var(--gold-hover); }

.chatbot__suggestions {
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-bottom: 12px;
}

.chatbot__suggestion {
    padding: 7px 14px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: transparent;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-family: var(--font-main);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.chatbot__suggestion:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 168, 67, 0.08);
}

.chatbot__input-area {
    display: flex;
    gap: 8px;
    padding: 16px 20px;
    border-top: 1px solid var(--border);
    background: #0D0D0D;
}

.chatbot__input {
    flex: 1;
    padding: 10px 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 0.88rem;
    font-family: var(--font-main);
    transition: var(--transition);
}

.chatbot__input:focus {
    outline: none;
    border-color: var(--gold);
}

.chatbot__input::placeholder { color: var(--text-dim); }

.chatbot__send {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--gold);
    border: none;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.chatbot__send:hover { background: var(--gold-hover); }

/* Typing indicator */
.typing-dots {
    display: flex;
    gap: 4px;
    align-items: center;
    padding: 4px 0;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-muted);
    animation: typingBounce 1.4s infinite;
}

.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-6px); opacity: 1; }
}

/* Mobile chatbot */
@media (max-width: 480px) {
    .chatbot {
        right: 8px;
        left: 8px;
        bottom: 88px;
        width: auto;
        max-height: 70vh;
    }
}
