/* ==========================================================================
   GLOBAL VARIABLES & SCALED DOWN THEME
   ========================================================================== */
:root {
    --bg-main: #05070a;
    
    /* Lights and Glows */
    --gold-glow: #e6b741;
    --gold-dark: #8c6a1e;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #fcebb6 0%, #e6b741 50%, #b8860b 100%);
    --gradient-glass: linear-gradient(135deg, rgba(20, 25, 35, 0.5) 0%, rgba(10, 15, 25, 0.3) 100%);
    
    --font-main: 'Montserrat', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { 
    scroll-behavior: smooth; 
    font-size: 14px; /* Reduced from 16px to scale down everything globally */
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-main);
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ==========================================================================
   CANVAS & LIGHT ORBS
   ========================================================================== */
#particleCanvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    z-index: -2;
    pointer-events: none;
}

.light-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    opacity: 0.4;
    animation: floatOrbs 25s infinite alternate ease-in-out;
    pointer-events: none;
}

.orb-1 { width: 50vw; height: 50vw; background: rgba(230, 183, 65, 0.25); top: -10%; left: -10%; }
.orb-2 { width: 40vw; height: 40vw; background: rgba(184, 134, 11, 0.2); bottom: -10%; right: -10%; animation-delay: -5s; }
.orb-3 { width: 30vw; height: 30vw; background: rgba(30, 58, 138, 0.25); top: 30%; left: 30%; animation-delay: -10s; }

@keyframes floatOrbs {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(10vw, 10vh) scale(1.1); }
    100% { transform: translate(-5vw, -5vh) scale(0.9); }
}

/* ==========================================================================
   GLASSMORPHISM CORE CLASSES
   ========================================================================== */
.glass-panel {
    background: var(--gradient-glass);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-radius: 20px;
}

.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.animate-gradient {
    background-size: 200% auto;
    animation: shineText 4s linear infinite;
}

@keyframes shineText { to { background-position: 200% center; } }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.navbar {
    position: fixed;
    top: 15px; left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    padding: 0.8rem 1.5rem;
    z-index: 1000;
    transition: var(--transition);
    border-radius: 50px;
}

.nav-container { display: flex; justify-content: space-between; align-items: center; }

.brand-logo {
    display: flex; align-items: center; gap: 10px;
    color: #fff; text-decoration: none;
    font-size: 1.2rem; font-weight: 800; letter-spacing: 1.5px;
}

.logo-icon-spin {
    color: var(--gold-glow); font-size: 1.5rem;
    animation: spinSlow 10s linear infinite; display: flex;
}
@keyframes spinSlow { 100% { transform: rotate(360deg); } }

.nav-menu { display: flex; list-style: none; gap: 2.5rem; }
.nav-menu a {
    color: rgba(255, 255, 255, 0.7); text-decoration: none;
    font-weight: 600; font-size: 0.9rem; transition: var(--transition);
}
.nav-menu a:hover, .nav-menu a.active { color: #fff; }

.btn-glass-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff; padding: 0.6rem 1.4rem; border-radius: 50px;
    text-decoration: none; font-weight: 600; display: inline-flex;
    align-items: center; gap: 8px; transition: var(--transition);
}
.btn-glass-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold-glow);
    box-shadow: 0 0 15px rgba(230, 183, 65, 0.3);
}
.mobile-menu-btn { display: none; }

/* ==========================================================================
   CLEAN HERO
   ========================================================================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

.hero {
    min-height: 85vh;
    padding-top: 130px;
    display: flex;
    align-items: center;
    position: relative;
    padding-bottom: 50px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
}

.hero-text {
    z-index: 2;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(230, 183, 65, 0.1);
    border: 1px solid rgba(230, 183, 65, 0.3);
    color: var(--gold-glow);
    padding: 0.5rem 1rem; border-radius: 50px;
    font-size: 0.75rem; font-weight: 700; letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.pulse-anim { animation: pulseGlow 2s infinite; }
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(230, 183, 65, 0.3); }
    70% { box-shadow: 0 0 0 10px rgba(230, 183, 65, 0); }
    100% { box-shadow: 0 0 0 0 rgba(230, 183, 65, 0); }
}

.hero-title {
    font-size: clamp(2.2rem, 3.5vw, 3.8rem);
    font-weight: 900; line-height: 1.1;
    margin-bottom: 1.2rem; letter-spacing: -1px;
}

.hero-desc {
    font-size: 1rem; color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem; max-width: 90%;
}

.hero-stats {
    display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2.5rem;
}

.stat-item {
    display: flex; align-items: center; gap: 12px;
}
.stat-item i { font-size: 1.8rem; color: var(--gold-glow); }
.stat-num { display: block; font-size: 1.2rem; font-weight: 800; }
.stat-label { font-size: 0.75rem; color: rgba(255, 255, 255, 0.5); }
.stat-divider { width: 1px; height: 35px; background: rgba(255,255,255,0.1); }

.hero-buttons { display: flex; gap: 1rem; }

.btn-primary {
    background: var(--gradient-gold); color: #000; border: none;
    padding: 1rem 2rem; font-size: 0.95rem; font-weight: 700;
    border-radius: 50px; display: inline-flex; align-items: center; gap: 8px;
    cursor: pointer; position: relative; overflow: hidden;
}

.shine-anim::before {
    content: ''; position: absolute; top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg); animation: shineBtn 3s infinite;
}
@keyframes shineBtn { 0% { left: -100%; } 20%, 100% { left: 200%; } }

/* Hero Visuals Clean */
.hero-visual-clean {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-main {
    width: 85%; height: 85%;
    border-radius: 20px; overflow: hidden;
    position: absolute; right: 0; top: 0;
    z-index: 1;
}
.visual-main img { width: 100%; height: 100%; object-fit: cover; }

.visual-secondary {
    width: 55%; height: 50%;
    border-radius: 16px; overflow: hidden;
    position: absolute; left: 0; bottom: 5%;
    z-index: 2;
    border: 2px solid rgba(255,255,255,0.1);
}
.visual-secondary img { width: 100%; height: 100%; object-fit: cover; }

.status-badge {
    position: absolute; bottom: 10px; right: 10px;
    padding: 0.5rem 1rem; border-radius: 50px;
    font-size: 0.75rem; font-weight: 700;
    display: flex; align-items: center; gap: 8px;
}

/* Animated Moving Border (Stroke Animation) */
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.glow-border {
    position: relative;
    border: none !important;
    box-shadow: 0 0 30px rgba(230, 183, 65, 0.1);
}

.glow-border::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px; /* Çizgi/Stroke kalınlığı */
    background: conic-gradient(from var(--angle), transparent 40%, rgba(230, 183, 65, 0.4) 80%, var(--gold-glow) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: borderSpin 4s linear infinite;
    z-index: 0;
}

@keyframes borderSpin {
    100% { --angle: 360deg; }
}

.pulse-dot {
    width: 10px; height: 10px; background: #ff3b30;
    border-radius: 50%; box-shadow: 0 0 10px #ff3b30;
    animation: pulseRed 1.5s infinite;
}
@keyframes pulseRed {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(255, 59, 48, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 59, 48, 0); }
}

.float-slow { animation: floatY 5s ease-in-out infinite; }
.float-fast { animation: floatY 4s ease-in-out infinite reverse; }
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ==========================================================================
   SPONSOR MARQUEE
   ========================================================================== */
.sponsor-strip {
    margin: 2rem auto; width: 95%; max-width: 1400px;
    padding: 1.2rem 0; border-radius: 20px;
}
.marquee-track { overflow: hidden; }
.marquee-content {
    display: flex; white-space: nowrap; animation: marquee 25s linear infinite;
}
.marquee-content span {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.9rem; font-weight: 800; color: rgba(255, 255, 255, 0.5);
    margin: 0 2.5rem; letter-spacing: 1px;
}
.marquee-content span i { color: var(--gold-glow); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ==========================================================================
   SECTIONS & EXHIBITIONS
   ========================================================================== */
section { padding: 80px 0; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header p { color: rgba(255,255,255,0.6); margin-top: 0.5rem; }
.section-title { font-size: 2.2rem; font-weight: 900; }

.exhibitions-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}

.exhibition-card {
    padding: 1.2rem; display: flex; flex-direction: column; height: 100%;
    transition: var(--transition);
}
.card-content { display: flex; flex-direction: column; flex-grow: 1; }

.glow-hover:hover {
    transform: translateY(-10px);
    border-color: rgba(230, 183, 65, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(230, 183, 65, 0.1);
}

.card-image-box {
    position: relative; height: 200px; border-radius: 12px;
    overflow: hidden; margin-bottom: 1.2rem;
}
.card-image-box img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease;
}
.glow-hover:hover .card-image-box img { transform: scale(1.08); }

.date-badge {
    position: absolute; top: 12px; left: 12px;
    padding: 0.6rem; text-align: center; border-radius: 12px;
}
.date-badge .day { display: block; font-size: 1.2rem; font-weight: 900; color: var(--gold-glow); line-height: 1; }
.date-badge .month { font-size: 0.65rem; font-weight: 700; }

.tag-group { display: flex; gap: 8px; margin-bottom: 1rem; }
.tag {
    padding: 0.3rem 0.6rem; font-size: 0.7rem; font-weight: 700;
    display: flex; align-items: center; gap: 5px; border-radius: 8px;
}
.tag i { color: var(--gold-glow); }

.card-title { font-size: 1.2rem; font-weight: 800; margin-bottom: 0.8rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.8rem; }
.card-desc { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 1.5rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.8rem; }

/* Diagonal Corner Ribbon (VIP Band) */
@property --ribbon-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.live-status {
    position: absolute;
    top: 30px;
    right: -45px;
    width: 180px; /* Long enough to span the corner */
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(10, 14, 24, 0.95);
    border: none;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.6), 0 0 10px currentColor;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
    z-index: 10;
    color: var(--gold-glow); /* default */
    transition: all 0.3s ease;
}

/* Animated Stroke Border */
.live-status::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px; /* Stroke thickness */
    background: conic-gradient(from var(--ribbon-angle), transparent 20%, rgba(255,255,255,0.5) 70%, currentColor 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: ribbonBorderSpin 3s linear infinite;
    z-index: 0;
}

/* Metallic Sweep Animation */
.live-status::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: ribbonShine 4s infinite;
    pointer-events: none;
}

/* Glowing Indicator Dot inside Ribbon */
.live-status .pulse-dot {
    width: 5px !important;
    height: 5px !important;
    border-radius: 50% !important;
    background: currentColor !important;
    box-shadow: 0 0 8px currentColor !important;
    animation: ribbonPulse 1.5s infinite alternate !important;
    margin: 0 !important;
}

/* Hover Effect: Ribbon glows brighter */
.glow-hover:hover .live-status {
    box-shadow: 0 10px 25px rgba(0,0,0,0.8), 0 0 25px currentColor;
}

@keyframes ribbonBorderSpin {
    100% { --ribbon-angle: 360deg; }
}

@keyframes ribbonShine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

@keyframes ribbonPulse {
    from { opacity: 0.5; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1.5); box-shadow: 0 0 12px currentColor !important; }
}

.card-details-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
    margin-top: auto; margin-bottom: 1.5rem; padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.detail-col { display: flex; flex-direction: column; gap: 4px; }
.detail-label { font-size: 0.65rem; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.detail-label i { color: var(--gold-glow); }
.detail-val { font-size: 0.8rem; font-weight: 700; color: #fff; }

.ticket-status { margin-bottom: 1.5rem; }
.status-header { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 0.75rem; font-weight: 600; }
.status-pct { color: var(--gold-glow); font-weight: 800; }
.progress-bar-bg { width: 100%; height: 6px; background: rgba(255,255,255,0.05); border-radius: 10px; overflow: hidden; }
.progress-bar-fill { height: 100%; background: var(--gradient-gold); border-radius: 10px; position: relative; }
.progress-bar-fill::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: progressShine 2s infinite;
}
@keyframes progressShine { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

.sponsor-highlight {
    display: flex; align-items: center; gap: 12px; padding: 0.8rem;
    border-radius: 12px; margin-bottom: 1.5rem; background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.03);
}
.sponsor-logo { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--gold-glow); background: rgba(255,255,255,0.05); }
.sponsor-info { display: flex; flex-direction: column; }
.sponsor-info span { font-size: 0.65rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 700; }
.sponsor-info strong { font-size: 0.8rem; font-weight: 600; }

.card-footer-actions { display: flex; gap: 10px; }
.w-100 { flex: 1; justify-content: center; padding: 0.8rem; font-size: 0.85rem; }

/* ==========================================================================
   TESTIMONIALS (YENİ)
   ========================================================================== */
.testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.testimo-card {
    padding: 2rem; position: relative;
}
.testimo-icon {
    font-size: 2rem; color: rgba(230, 183, 65, 0.3);
    position: absolute; top: 20px; right: 20px;
}
.testimo-card p {
    font-size: 0.95rem; font-style: italic; color: rgba(255,255,255,0.8);
    margin-bottom: 2rem; position: relative; z-index: 1;
}
.author { display: flex; align-items: center; gap: 15px; }
.author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.author strong { display: block; font-size: 0.9rem; font-weight: 700; }
.author span { font-size: 0.75rem; color: var(--gold-glow); }

/* ==========================================================================
   STATS SECTION
   ========================================================================== */
.stats-section { padding: 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.stat-card { padding: 2rem; border-radius: 20px; text-align: center; transition: var(--transition); }
.stat-card:hover { transform: translateY(-8px); }
.stat-icon { font-size: 2rem; color: var(--gold-glow); margin-bottom: 1rem; }
.stat-number-big { font-size: 3rem; font-weight: 900; background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 0.5rem; line-height: 1; }
.stat-number-big span { font-size: 2rem; }
.stat-card p { font-size: 0.9rem; color: rgba(255,255,255,0.65); margin-bottom: 1.2rem; }
.stat-bar { height: 4px; background: rgba(255,255,255,0.08); border-radius: 10px; overflow: hidden; }
.stat-bar-fill { height: 100%; background: var(--gradient-gold); border-radius: 10px; transition: width 1.5s cubic-bezier(0.16,1,0.3,1); }

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section { padding: 80px 0 100px; }
.services-chip {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 0.5rem 1.2rem; border-radius: 50px;
    font-size: 0.8rem; font-weight: 700; color: var(--gold-glow);
    border-color: rgba(230,183,65,0.2) !important;
}
.services-layout { display: grid; grid-template-columns: 320px 1fr; gap: 2rem; margin-top: 3rem; align-items: start; }
.services-list { display: flex; flex-direction: column; gap: 8px; position: sticky; top: 120px; }
.srv-item {
    display: flex; align-items: center; gap: 14px;
    padding: 1.1rem 1.3rem; border-radius: 16px; cursor: pointer;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
    min-height: 72px;
}
.srv-item > div { flex: 1; min-width: 0; }
.srv-item strong { display: block; font-size: 0.88rem; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.srv-item span { font-size: 0.73rem; color: rgba(255,255,255,0.5); display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.srv-item:hover { background: rgba(255,255,255,0.06); border-color: rgba(230,183,65,0.2); }
.srv-item.active { background: rgba(230,183,65,0.1); border-color: rgba(230,183,65,0.35); }
.srv-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(230,183,65,0.1); color: var(--gold-glow); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.srv-item strong { display: block; font-size: 0.9rem; font-weight: 700; }
.srv-item span { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.srv-arrow { margin-left: auto; color: rgba(255,255,255,0.3); transition: transform 0.2s; }
.srv-item.active .srv-arrow { color: var(--gold-glow); transform: translateX(4px); }

.services-detail { position: relative; }
.srv-detail-card { border-radius: 24px; overflow: hidden; display: none; }
.srv-detail-card.active { display: block; animation: fadeInUp 0.4s ease; }
@keyframes fadeInUp { from { opacity:0; transform:translateY(15px); } to { opacity:1; transform:translateY(0); } }
.srv-detail-card > img { width: 100%; height: 240px; object-fit: cover; display: block; }
.srv-detail-body { padding: 2rem; }
.srv-detail-body h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem; }
.srv-detail-body p { font-size: 0.92rem; color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 1.5rem; }
.srv-features { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.8rem; }
.srv-features li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: rgba(255,255,255,0.8); }
.srv-features i { color: #4ade80; font-size: 1.1rem; }
.srv-stat-row { display: flex; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); }
.srv-mini-stat { text-align: center; flex: 1; }
.srv-mini-stat span { display: block; font-size: 1.4rem; font-weight: 900; color: var(--gold-glow); }
.srv-mini-stat p { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin: 0; }

/* ==========================================================================
   WHY SECTION
   ========================================================================== */
.why-section { padding: 80px 0; }
.why-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-text .why-chip { display: inline-flex; align-items: center; gap: 8px; padding: 0.5rem 1.2rem; border-radius: 50px; font-size: 0.8rem; font-weight: 700; color: var(--gold-glow); }
.why-features { display: flex; flex-direction: column; gap: 1rem; }
.why-feat { display: flex; align-items: center; gap: 1rem; padding: 1.2rem; border-radius: 16px; }
.why-feat-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(230,183,65,0.15); color: var(--gold-glow); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.why-feat strong { display: block; font-size: 0.9rem; font-weight: 700; margin-bottom: 3px; }
.why-feat span { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.why-visual { position: relative; }
.why-img-wrap { padding: 0 !important; border-radius: 24px; overflow: hidden; position: relative; }
.why-img-wrap img { width: 100%; height: 450px; object-fit: cover; display: block; }
.why-badge-1, .why-badge-2 {
    position: absolute; display: flex; align-items: center; gap: 8px;
    padding: 0.7rem 1.2rem; border-radius: 50px; font-size: 0.82rem; font-weight: 700;
}
.why-badge-1 { top: 20px; left: 20px; color: var(--gold-glow); }
.why-badge-1 i { color: var(--gold-glow); }
.why-badge-2 { bottom: 20px; right: 20px; color: #4ade80; }
.why-badge-2 i { color: #4ade80; }

/* ==========================================================================
   SECTORS SECTION
   ========================================================================== */
.sectors-section { padding: 80px 0; }
.sectors-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.sector-card { padding: 2rem; border-radius: 20px; transition: var(--transition); position: relative; overflow: hidden; }
.sector-card:hover { transform: translateY(-8px); }
.sector-icon { width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: #fff; margin-bottom: 1.2rem; }
.sector-card h4 { font-size: 1rem; font-weight: 800; margin-bottom: 0.5rem; }
.sector-card p { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-bottom: 1rem; }
.sector-tag { font-size: 0.72rem; font-weight: 700; color: var(--gold-glow); padding: 0.3rem 0.8rem; border-radius: 50px; background: rgba(230,183,65,0.1); border: 1px solid rgba(230,183,65,0.2); }

/* ==========================================================================
   PROCESS SECTION
   ========================================================================== */
.process-section { padding: 80px 0 100px; }
.process-timeline { display: flex; align-items: flex-start; gap: 0; margin-top: 3rem; overflow-x: auto; padding-bottom: 1rem; }
.proc-step { flex: 1; min-width: 180px; }
.proc-num { font-size: 2.5rem; font-weight: 900; color: rgba(230,183,65,0.2); margin-bottom: 0.5rem; }
.proc-card { padding: 1.5rem; border-radius: 18px; height: 100%; }
.proc-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(230,183,65,0.15); color: var(--gold-glow); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 1rem; }
.proc-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
.proc-card p { font-size: 0.82rem; color: rgba(255,255,255,0.65); }
.proc-arrow { font-size: 1.5rem; color: rgba(255,255,255,0.2); padding: 0 0.5rem; margin-top: 70px; flex-shrink: 0; }

@media (max-width: 992px) {
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .services-layout { grid-template-columns: 1fr; }
    .services-list { position: static; }
    .why-layout { grid-template-columns: 1fr; }
    .sectors-grid { grid-template-columns: repeat(2,1fr); }
    .process-timeline { flex-direction: column; }
    .proc-arrow { transform: rotate(90deg); margin: 0 auto; }
}
@media (max-width: 600px) {
    .stats-grid, .sectors-grid { grid-template-columns: 1fr; }
}


/* ==========================================================================
   PREMIUM TRAIN SCENE
   ========================================================================== */
.train-section { padding: 0 0 60px; overflow: hidden; }

.train-scene-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

/* Dark gradient background */
.train-scene-bg {
    position: absolute; inset: 0;
    background: linear-gradient(180deg,
        rgba(5,7,10,0) 0%,
        rgba(10,14,24,0.6) 40%,
        rgba(5,7,10,0.95) 100%);
}

/* Silhouette hills */
.train-landscape {
    position: absolute;
    bottom: 40px; left: 0; right: 0;
    width: 100%; height: 120px;
    pointer-events: none;
}

/* ── STATIONS ── */
.train-stations {
    position: absolute;
    left: 5%; right: 5%;
    bottom: 75px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 3;
}
.train-station {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    transition: all 0.4s;
}
.st-pole {
    width: 3px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(230,183,65,0.8), rgba(230,183,65,0.2));
    border-radius: 2px;
    transition: all 0.4s;
}
.st-sign {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    padding: 6px 12px; border-radius: 10px;
    background: rgba(20,25,35,0.8);
    border: 1px solid rgba(230,183,65,0.2);
    backdrop-filter: blur(8px);
    font-size: 0.7rem; font-weight: 700;
    color: rgba(255,255,255,0.5);
    transition: all 0.4s;
    white-space: nowrap;
}
.st-sign i { font-size: 1.1rem; color: rgba(230,183,65,0.5); }
.st-light {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.2);
    box-shadow: none;
    transition: all 0.4s;
    margin-top: 2px;
}
/* Active station state (JS will add .lit) */
.train-station.lit .st-light {
    background: var(--gold-glow);
    box-shadow: 0 0 14px 4px rgba(230,183,65,0.7);
}
.train-station.lit .st-sign {
    border-color: rgba(230,183,65,0.6);
    color: #fff;
    background: rgba(230,183,65,0.12);
}
.train-station.lit .st-sign i { color: var(--gold-glow); }
.train-station.lit .st-pole {
    background: linear-gradient(to bottom, #e6b741, rgba(230,183,65,0.3));
    box-shadow: 0 0 8px rgba(230,183,65,0.4);
}

/* ── RAILS ── */
.train-rails {
    position: absolute;
    left: 0; right: 0;
    bottom: 40px;
    height: 34px;
    z-index: 2;
}
.rail {
    position: absolute;
    left: 0; right: 0;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(100,80,30,0.6) 3%,
        rgba(180,140,40,0.8) 50%,
        rgba(100,80,30,0.6) 97%,
        transparent 100%);
    box-shadow: 0 2px 6px rgba(0,0,0,0.5);
}
.rail-a { top: 0; }
.rail-b { bottom: 0; }
/* Progress glow overlaid on top rail */
.track-progress {
    position: absolute;
    left: 0;
    top: 40px; /* same as bottom of scene minus rail height */
    height: 4px;
    width: 0%;
    background: linear-gradient(90deg, rgba(230,183,65,0.2), rgba(230,183,65,0.9));
    box-shadow: 0 0 12px 3px rgba(230,183,65,0.5);
    border-radius: 2px;
    z-index: 4;
    transition: width 0.1s linear;
}

/* Sleepers */
.rail-sleepers {
    position: absolute;
    left: 0; right: 0;
    top: -3px; bottom: -3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1%;
    z-index: 1;
    pointer-events: none;
}
.rail-sleepers .sleeper {
    width: 10px;
    height: 40px;
    background: linear-gradient(to bottom, #5c3d1a, #3a2510);
    border-radius: 2px;
    flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

/* ── LOCOMOTIVE ── */
.train-loco {
    position: absolute;
    bottom: 36px;
    left: -200px;
    width: 180px;
    height: 70px;
    z-index: 5;
    animation: trainJourney 10s cubic-bezier(0.4,0,0.6,1) infinite;
    overflow: visible;
}
/* Separate flipper so scaleX never interpolates with left */
.train-flipper {
    width: 180px;
    height: 70px;
    animation: trainFlip 10s cubic-bezier(0.4,0,0.6,1) infinite;
    transform-origin: 90px 35px;
    will-change: transform;
    transform: scaleX(-1); /* SVG faces left by default → mirror to face right */
}
@keyframes trainJourney {
    0%   { left: -190px; }
    10%  { left: 5%; }
    10.5%{ left: 5%; }
    27%  { left: 24%; }
    27.5%{ left: 24%; }
    44%  { left: 44%; }
    44.5%{ left: 44%; }
    61%  { left: 63%; }
    61.5%{ left: 63%; }
    78%  { left: 83%; }
    78.5%{ left: 83%; }
    93%  { left: calc(100% + 10px); }
    93.1%{ left: calc(100% + 10px); }
    99%  { left: -190px; }
    100% { left: -190px; }
}
@keyframes trainFlip {
    0%    { transform: scaleX(-1); } /* going right → face right */
    93%   { transform: scaleX(-1); }
    93.05%{ transform: scaleX(1);  } /* going left → face left (original) */
    99.9% { transform: scaleX(1);  }
    100%  { transform: scaleX(-1); }
}


.loco-svg {
    width: 180px;
    height: 70px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(230,183,65,0.4))
            drop-shadow(0 4px 8px rgba(0,0,0,0.6));
}

/* ── SMOKE ── */
.smoke-stack {
    position: absolute;
    top: -30px;
    left: 42px;
    width: 14px;
    height: 30px;
}
.puff {
    position: absolute;
    border-radius: 50%;
    background: rgba(200,200,220,0.35);
    backdrop-filter: blur(2px);
    animation: smokeUp 2s ease-out infinite;
}
.puff-1 { width: 16px; height: 16px; left: 0; animation-delay: 0s; }
.puff-2 { width: 20px; height: 20px; left: -4px; animation-delay: 0.6s; }
.puff-3 { width: 13px; height: 13px; left: 2px; animation-delay: 1.2s; }
@keyframes smokeUp {
    0%   { bottom: 0; opacity: 0.8; transform: scale(0.5) translateX(0); }
    50%  { opacity: 0.4; transform: scale(1.2) translateX(8px); }
    100% { bottom: 35px; opacity: 0; transform: scale(1.8) translateX(14px); }
}

/* Headlight beam */
.train-loco::before {
    content: '';
    position: absolute;
    top: 50%; left: -30px;
    transform: translateY(-50%);
    width: 40px; height: 20px;
    background: radial-gradient(ellipse at right, rgba(255,240,150,0.5), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}


/* ==========================================================================
   CONTACT SECTION (YENİ)
   ========================================================================== */

.contact-section { padding-bottom: 100px; }
.contact-grid {
    display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem;
}
.contact-info-panel { padding: 3rem; border-radius: 20px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.contact-info-panel h3 { font-size: 1.8rem; font-weight: 800; margin-bottom: 0.5rem; }
.contact-subtitle { color: rgba(255,255,255,0.6); font-size: 0.95rem; margin-bottom: 2.5rem; }

.contact-list { list-style: none; display: flex; flex-direction: column; gap: 1.8rem; margin-bottom: 3rem; }
.contact-list li { display: flex; align-items: center; gap: 1rem; }
.icon-box { 
    width: 50px; height: 50px; border-radius: 12px; background: rgba(230, 183, 65, 0.1); 
    color: var(--gold-glow); display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
    border: 1px solid rgba(230, 183, 65, 0.2);
}
.info-text { display: flex; flex-direction: column; }
.info-text span { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; font-weight: 700; letter-spacing: 0.5px; }
.info-text strong { font-size: 1rem; font-weight: 600; color: #fff; }

.working-hours { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.6); font-size: 0.9rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); }
.working-hours i { color: var(--gold-glow); font-size: 1.2rem; }

.contact-form-panel { padding: 3rem; border-radius: 24px; }
.premium-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.input-group { display: flex; flex-direction: column; gap: 8px; }
.input-group label { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.8); margin-left: 5px; }

.glass-input-premium {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1);
    color: #fff; padding: 1rem 1.2rem; border-radius: 12px; outline: none;
    font-family: var(--font-main); font-size: 0.95rem; transition: var(--transition);
    width: 100%;
}
.glass-input-premium:focus { background: rgba(255,255,255,0.06); border-color: var(--gold-glow); box-shadow: 0 0 15px rgba(230, 183, 65, 0.1); }
.glass-input-premium::placeholder { color: rgba(255,255,255,0.3); }

select.glass-input-premium { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23E6B741%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E"); background-repeat: no-repeat; background-position: right 1rem top 50%; background-size: 0.65rem auto; }
select.glass-input-premium option { background: var(--bg-main); color: #fff; }
.textarea-premium { resize: vertical; min-height: 120px; }
.btn-full { width: 100%; display: flex; justify-content: center; gap: 10px; margin-top: 1rem; padding: 1.2rem; font-size: 1rem; border-radius: 12px; }

/* ==========================================================================
   NEWSLETTER (YENİ)
   ========================================================================== */
.newsletter { padding-bottom: 100px; }
.newsletter-box {
    padding: 4rem; display: flex; justify-content: space-between; align-items: center;
    border-radius: 30px; gap: 3rem;
}
.nl-content { flex: 1; }
.nl-content .section-title { text-align: left; margin-bottom: 1rem; }
.nl-content p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.nl-form {
    flex: 1; display: flex; gap: 10px; width: 100%;
}
.glass-input {
    flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    color: #fff; padding: 1rem 1.5rem; border-radius: 50px; outline: none;
    font-family: var(--font-main); font-size: 0.9rem;
}
.glass-input:focus { border-color: var(--gold-glow); }

/* ==========================================================================
   FOOTER (DETAILED)
   ========================================================================== */
.glass-footer {
    margin: 0 auto 2rem; width: 95%; max-width: 1200px;
    padding: 4rem 3rem 2rem; border-radius: 30px;
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand .brand-logo { justify-content: flex-start; margin-bottom: 1.5rem; }
.footer-desc { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 1.5rem; line-height: 1.8; }
.contact-info { display: flex; flex-direction: column; gap: 10px; }
.contact-info span { font-size: 0.85rem; color: rgba(255,255,255,0.8); display: flex; align-items: center; gap: 8px; }
.contact-info i { color: var(--gold-glow); font-size: 1.1rem; }

.footer-links h4, .footer-social-cta h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.5rem; color: #fff; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold-glow); padding-left: 5px; }

.footer-social-cta .socials { display: flex; gap: 1rem; margin-bottom: 2rem; }
.socials a {
    width: 45px; height: 45px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: #fff; text-decoration: none; transition: var(--transition);
}
.socials a:hover { background: var(--gold-glow); color: #000; transform: translateY(-5px); }
.mt-15 { margin-top: 15px; }

.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1);
}
.copyright { font-size: 0.85rem; color: rgba(255,255,255,0.4); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.85rem; color: rgba(255,255,255,0.4); text-decoration: none; transition: var(--transition); }
.footer-legal a:hover { color: #fff; }

@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-brand .brand-logo { justify-content: center; }
    .contact-info { align-items: center; }
    .footer-social-cta .socials { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .contact-info-panel, .contact-form-panel { padding: 2rem; }
}
.copyright { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* ==========================================================================
   ANIMATIONS & RESPONSIVE
   ========================================================================== */
.fade-up { opacity: 0; transform: translateY(30px); transition: var(--transition); }
.fade-in { opacity: 0; transition: var(--transition); }
.fade-up.active, .fade-in.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }

@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-text { display: flex; flex-direction: column; align-items: center; }
    .hero-desc { text-align: center; }
    .hero-stats { justify-content: center; }
    .hero-visual-clean { height: 400px; width: 100%; max-width: 600px; margin: 0 auto; }
    .visual-main { width: 90%; height: 90%; }
    .exhibitions-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .newsletter-box { flex-direction: column; text-align: center; padding: 2.5rem; }
}

@media (max-width: 768px) {
    .nav-menu, .nav-actions { display: none; }
    .mobile-menu-btn { display: block; font-size: 1.8rem; background: none; border: none; color: #fff; }
    .exhibitions-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.2rem; }
    .nl-form { flex-direction: column; }
    .btn-primary { justify-content: center; }
}

/* ==========================================================================
   MAY AI CHATBOT (PREMIUM)
   ========================================================================== */
.may-ai-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    font-family: 'Montserrat', sans-serif;
}

/* Floating Button */
.may-ai-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(230,183,65,0.9), rgba(180,140,40,0.9));
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 14px 20px;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(230,183,65,0.3), inset 0 1px 0 rgba(255,255,255,0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}
.may-ai-btn i { font-size: 1.5rem; }
.may-ai-btn .btn-text { font-weight: 600; font-size: 0.95rem; }
.may-ai-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(230,183,65,0.5), inset 0 1px 0 rgba(255,255,255,0.5);
}

/* Chat Window */
.may-ai-window {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 360px;
    height: 520px;
    background: rgba(10, 14, 24, 0.85);
    border: 1px solid rgba(230, 183, 65, 0.2);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5), 0 0 20px rgba(230,183,65,0.1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.95);
    transform-origin: bottom right;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(15px);
}
.may-ai-window.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0) scale(1);
}

/* Header */
.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: linear-gradient(90deg, rgba(20,25,35,0.9), rgba(30,35,45,0.9));
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.chat-title { display: flex; align-items: center; gap: 12px; }
.robot-icon-wrap {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e6b741, #b48c28);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.2rem;
    box-shadow: 0 0 10px rgba(230,183,65,0.4);
}
.title-text { display: flex; flex-direction: column; }
.title-text strong { font-size: 1rem; color: #fff; letter-spacing: 0.5px; }
.title-text span { font-size: 0.75rem; color: #e6b741; font-weight: 500; }
.chat-close {
    background: none; border: none; color: rgba(255,255,255,0.5);
    font-size: 1.2rem; cursor: pointer; transition: color 0.2s;
}
.chat-close:hover { color: #fff; }

/* Body */
.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
/* Scrollbar for chat */
.chat-body::-webkit-scrollbar { width: 6px; }
.chat-body::-webkit-scrollbar-track { background: transparent; }
.chat-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }

/* Messages */
.chat-msg {
    display: flex;
    gap: 12px;
    max-width: 90%;
    animation: fadeUp 0.3s ease-out forwards;
}
.chat-msg.user-msg {
    align-self: flex-end;
    flex-direction: row-reverse;
}
.chat-msg.user-msg .msg-content {
    background: linear-gradient(135deg, rgba(230,183,65,0.15), rgba(230,183,65,0.05));
    border: 1px solid rgba(230,183,65,0.3);
    color: #fff;
    border-radius: 16px 16px 4px 16px;
}
.msg-avatar {
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(20,25,35,0.8);
    display: flex; align-items: center; justify-content: center;
    color: #e6b741; flex-shrink: 0;
    border: 1px solid rgba(230,183,65,0.2);
}
.chat-msg.user-msg .msg-avatar { display: none; }
.msg-content {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 12px 16px;
    border-radius: 16px 16px 16px 4px;
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.85);
}
.msg-content p { margin: 0 0 8px 0; }
.msg-content p:last-child { margin-bottom: 0; }
.msg-content strong { color: #e6b741; }
.msg-content ul { padding-left: 20px; margin: 8px 0; }
.msg-content li { margin-bottom: 4px; }
.msg-content a.chat-btn {
    display: inline-block;
    margin-top: 8px; padding: 6px 12px;
    background: rgba(230,183,65,0.1); border: 1px solid rgba(230,183,65,0.4);
    color: #e6b741; text-decoration: none; border-radius: 6px;
    font-weight: 600; transition: all 0.2s;
}
.msg-content a.chat-btn:hover { background: rgba(230,183,65,0.2); }

/* Typing Indicator */
.typing-dots {
    display: flex; gap: 4px; padding: 4px 0;
}
.typing-dots span {
    width: 6px; height: 6px; background: #e6b741; border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out both;
}
.typing-dots span:nth-child(1) { animation-delay: -0.32s; }
.typing-dots span:nth-child(2) { animation-delay: -0.16s; }
@keyframes typing {
    0%, 80%, 100% { transform: scale(0); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

/* Footer (Input) */
.chat-footer {
    padding: 15px;
    background: rgba(10,14,24,0.95);
    border-top: 1px solid rgba(255,255,255,0.05);
}
.chat-input-wrapper {
    display: flex; gap: 10px;
}
.chat-input-wrapper input {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 10px 16px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s;
}
.chat-input-wrapper input:focus {
    outline: none;
    border-color: rgba(230,183,65,0.5);
    background: rgba(255,255,255,0.08);
}
.chat-send-btn {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, #e6b741, #b48c28);
    border: none; color: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.chat-send-btn:hover { transform: scale(1.05); box-shadow: 0 0 10px rgba(230,183,65,0.4); }

@media (max-width: 480px) {
    .may-ai-window { width: calc(100vw - 40px); right: -10px; bottom: 70px; height: 450px; }
}
