/* Premium Malls Styles - Dark Blue & White Theme */
:root {
    --primary-deep: #0a1a35;
    --primary-dark: #1a365d;
    --primary-medium: #2d5aa9;
    --primary-light: #3b82f6;
    --primary-accent: #60a5fa;
    --primary-pale: #93c5fd;
    --primary-very-pale: #dbeafe;
    --white: #ffffff;
    --white-95: #f8fafc;
    --white-90: #f1f5f9;
    --white-80: #e2e8f0;
    --white-70: #cbd5e1;
    --gray-dark: #475569;
    --gray-medium: #64748b;
    --gray-light: #94a3b8;
    --gradient-primary: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
    --gradient-hero: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-dark) 50%, var(--primary-medium) 100%);
    --gradient-light: linear-gradient(135deg, var(--white-95) 0%, var(--white-90) 100%);
    --gradient-card: linear-gradient(135deg, var(--white) 0%, var(--white-95) 100%);
}

/* Reset and Base Styles */
.premium-malls {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--gray-dark);
    background: var(--white);
    overflow-x: hidden;
}

.premium-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Enhanced Mall Loading Animation */
.premium-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.premium-loader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.mall-loader {
    position: relative;
    width: 150px;
    height: 120px;
}

.mall-structure {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 80px;
    display: flex;
    align-items: flex-end;
    gap: 5px;
}

.mall-wing {
    height: 60px;
    background: var(--primary-medium);
    border-radius: 5px 5px 0 0;
    opacity: 0;
    animation: wing-appear 0.6s ease forwards;
}

.left-wing {
    width: 30px;
    animation-delay: 0.1s;
}

.center-wing {
    width: 40px;
    height: 70px;
    animation-delay: 0.2s;
}

.right-wing {
    width: 30px;
    animation-delay: 0.3s;
}

.mall-atrium {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 15px;
    background: var(--primary-light);
    border-radius: 3px;
    opacity: 0;
    animation: atrium-appear 0.5s ease 0.4s forwards;
}

.shopper-flow {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 20px;
}

.shopper {
    position: absolute;
    width: 4px;
    height: 8px;
    background: var(--primary-accent);
    border-radius: 2px;
    opacity: 0;
    animation: shopper-walk 2s ease-in-out infinite;
}

.shopper:nth-child(1) { left: 10px; animation-delay: 0s; }
.shopper:nth-child(2) { left: 50px; animation-delay: 0.7s; }
.shopper:nth-child(3) { left: 80px; animation-delay: 1.4s; }

.loader-text {
    margin-top: 20px;
    color: var(--white);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Enhanced Hero Section */
.premium-hero {
    position: relative;
    background: var(--gradient-hero);
    color: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vw;
    pointer-events: none;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: orbit 20s linear infinite;
}

.ring-1 { width: 50vw; height: 50vw; animation-duration: 25s; }
.ring-2 { width: 80vw; height: 80vw; animation-duration: 30s; animation-direction: reverse; }
.ring-3 { width: 110vw; height: 110vw; animation-duration: 35s; }

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) { top: 20%; left: 10%; width: 4px; height: 4px; animation-delay: 0s; }
.particle:nth-child(2) { top: 60%; left: 80%; width: 6px; height: 6px; animation-delay: 1s; }
.particle:nth-child(3) { top: 40%; left: 90%; width: 3px; height: 3px; animation-delay: 2s; }
.particle:nth-child(4) { top: 80%; left: 20%; width: 5px; height: 5px; animation-delay: 3s; }
.particle:nth-child(5) { top: 30%; left: 50%; width: 4px; height: 4px; animation-delay: 4s; }

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero Text Content */
.premium-breadcrumb {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    font-size: 0.9rem;
}

.breadcrumb-item {
    color: var(--primary-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item:hover {
    color: var(--white);
}

.breadcrumb-divider {
    margin: 0 10px;
    color: var(--primary-accent);
}

.breadcrumb-current {
    color: var(--white);
    font-weight: 600;
}

.hero-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line.accent {
    background: linear-gradient(135deg, var(--primary-accent) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: var(--primary-pale);
    max-width: 500px;
}

/* Critical Indicators */
.critical-indicators {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.indicator-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    transition: transform 0.3s ease;
}

.indicator:hover .indicator-icon {
    transform: scale(1.1);
}

.indicator-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

.indicator-label {
    font-size: 0.9rem;
    color: var(--primary-accent);
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-light);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-medium);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-icon {
    padding: 12px 25px;
}

.btn-large {
    padding: 18px 35px;
    font-size: 1.1rem;
}

/* Mall Visualization */
.mall-visualization {
    position: relative;
    width: 100%;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
}

.mall-complex {
    position: relative;
    width: 100%;
    height: 100%;
}

.mall-layout {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.mall-levels {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 180px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.level {
    flex: 1;
    background: var(--primary-medium);
    border-radius: 5px;
    transition: all 0.5s ease;
}

.level[data-occupancy="high"] {
    background: var(--primary-light);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.level[data-occupancy="medium"] {
    background: var(--primary-medium);
}

.level[data-occupancy="low"] {
    background: var(--primary-dark);
}

.retail-zones {
    position: absolute;
    left: 20px;
    bottom: 20px;
    display: flex;
    gap: 15px;
}

.zone {
    width: 50px;
    height: 40px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.food-court {
    background: var(--primary-light);
    animation: zone-pulse 4s ease-in-out infinite;
}

.anchor-store {
    background: var(--primary-medium);
    animation: zone-pulse 4s ease-in-out 1s infinite;
}

.boutique-area {
    background: var(--primary-accent);
    animation: zone-pulse 4s ease-in-out 2s infinite;
}

.airflow-system {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(96, 165, 250, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(96, 165, 250, 0.2) 0%, transparent 50%);
    animation: airflow-circulation 8s ease-in-out infinite;
}

.mall-data {
    position: absolute;
    top: 30px;
    right: 30px;
}

.data-panel {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.data-item {
    margin-bottom: 15px;
}

.data-item:last-child {
    margin-bottom: 0;
}

.data-label {
    font-size: 0.8rem;
    color: var(--primary-accent);
    margin-bottom: 5px;
}

.data-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.data-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 5px;
    background: var(--primary-light);
    animation: status-pulse 2s ease-in-out infinite;
}

/* Retail Areas Section */
.retail-areas-section {
    padding: 120px 0;
    background: var(--white-95);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray-dark);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.area-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(10, 26, 53, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.area-card:hover::before {
    transform: scaleX(1);
}

.area-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(10, 26, 53, 0.15);
    border-color: var(--primary-light);
}

.area-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--white);
    transition: transform 0.3s ease;
}

.area-card:hover .area-icon {
    transform: scale(1.1) rotate(5deg);
}

.area-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.area-card p {
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 20px;
}

.area-spec {
    background: var(--primary-very-pale);
    color: var(--primary-dark);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

/* Solutions Showcase */
.solutions-showcase {
    padding: 120px 0;
    background: var(--white);
}

.showcase-header {
    text-align: center;
    margin-bottom: 80px;
}

.showcase-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.showcase-subtitle {
    font-size: 1.2rem;
    color: var(--gray-dark);
    max-width: 600px;
    margin: 0 auto;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.solution-card {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(10, 26, 53, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--white-80);
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(10, 26, 53, 0.15);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solution-card:hover .card-glow {
    opacity: 0.1;
}

.card-inner {
    position: relative;
    z-index: 2;
    padding: 40px 30px;
    background: var(--white);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.card-icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.icon-pulse {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--primary-light);
    border-radius: 17px;
    opacity: 0;
    animation: pulse 2s infinite;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
}

.card-description {
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 20px;
}

.card-ideal {
    background: var(--white-90);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-light);
}

.card-ideal strong {
    color: var(--primary-dark);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--gray-dark);
}

.feature-list i {
    color: var(--primary-medium);
    font-size: 0.9rem;
}

.card-footer {
    border-top: 1px solid var(--white-80);
    padding-top: 20px;
}

.performance-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: var(--white-90);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.performance-badge i {
    color: var(--primary-medium);
}

/* Performance Section */
.performance-section {
    padding: 120px 0;
    background: var(--gradient-hero);
    color: var(--white);
}

.performance-header {
    text-align: center;
    margin-bottom: 80px;
}

.performance-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.performance-header p {
    font-size: 1.2rem;
    color: var(--primary-pale);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.metric-item {
    text-align: center;
}

.metric-visual {
    margin-bottom: 30px;
}

.metric-circle {
    width: 150px;
    height: 150px;
    margin: 0 auto;
}

.circular-chart {
    display: block;
    margin: 10px auto;
    max-width: 100%;
    max-height: 150px;
}

.circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 2;
}

.circle {
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    animation: progress 1s ease-out forwards;
    stroke: var(--primary-light);
}

.percentage {
    fill: var(--white);
    font-size: 0.5em;
    font-weight: 700;
    text-anchor: middle;
}

.metric-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.metric-content p {
    color: var(--primary-pale);
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 120px 0;
    background: var(--white-95);
}

.benefits-header {
    text-align: center;
    margin-bottom: 80px;
}

.benefits-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.benefits-header p {
    font-size: 1.2rem;
    color: var(--gray-dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.benefit-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(10, 26, 53, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(10, 26, 53, 0.15);
    border-color: var(--primary-light);
}

.benefit-visual {
    margin-bottom: 30px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-animation {
    position: relative;
    width: 100px;
    height: 100px;
}

/* Benefit Animations */
.shopper-movement {
    position: relative;
    width: 100px;
    height: 60px;
}

.shopper-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-medium);
    border-radius: 50%;
    animation: shopper-move 3s ease-in-out infinite;
}

.shopper-dot:nth-child(1) { top: 10px; left: 10px; animation-delay: 0s; }
.shopper-dot:nth-child(2) { top: 30px; left: 30px; animation-delay: 1s; }
.shopper-dot:nth-child(3) { top: 50px; left: 50px; animation-delay: 2s; }

.comfort-zone {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 40px;
    border: 2px solid var(--primary-light);
    border-radius: 20px;
    opacity: 0.3;
    animation: zone-breath 4s ease-in-out infinite;
}

.energy-flow {
    position: relative;
    width: 80px;
    height: 80px;
}

.flow-line {
    position: absolute;
    background: var(--primary-medium);
    border-radius: 2px;
    animation: flow-move 3s ease-in-out infinite;
}

.flow-line:nth-child(1) {
    top: 20px;
    left: 10px;
    width: 30px;
    height: 3px;
    animation-delay: 0s;
}

.flow-line:nth-child(2) {
    top: 40px;
    left: 20px;
    width: 25px;
    height: 3px;
    animation-delay: 0.5s;
}

.flow-line:nth-child(3) {
    top: 60px;
    left: 15px;
    width: 35px;
    height: 3px;
    animation-delay: 1s;
}

.efficiency-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--primary-light);
    border-radius: 50%;
    animation: core-pulse 2s ease-in-out infinite;
}

.retail-environment {
    position: relative;
    width: 100px;
    height: 60px;
}

.store-front {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 30px;
    background: var(--primary-medium);
    border-radius: 5px 5px 0 0;
}

.shopper-flow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-accent);
    border-radius: 2px;
    animation: flow-pulse 3s ease-in-out infinite;
}

.climate-bubble {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 20px;
    background: var(--primary-light);
    border-radius: 15px;
    opacity: 0.5;
    animation: bubble-float 4s ease-in-out infinite;
}

.benefit-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.benefit-content p {
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 20px;
}

.benefit-stats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.stat {
    background: var(--primary-very-pale);
    color: var(--primary-dark);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* CTA Section */
.premium-cta {
    padding: 120px 0;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content > p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: var(--primary-pale);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-alert {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--primary-pale);
    font-weight: 600;
}

.cta-alert i {
    color: var(--primary-light);
}

/* Enhanced Animations */
@keyframes wing-appear {
    to {
        opacity: 1;
    }
}

@keyframes atrium-appear {
    to {
        opacity: 0.8;
    }
}

@keyframes shopper-walk {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(20px);
    }
}

@keyframes zone-pulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes airflow-circulation {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes status-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes shopper-move {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(20px) translateY(-10px);
    }
    50% {
        transform: translateX(40px) translateY(0);
    }
    75% {
        transform: translateX(20px) translateY(10px);
    }
}

@keyframes zone-breath {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.6;
    }
}

@keyframes flow-move {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.5;
    }
    50% {
        transform: translateX(10px);
        opacity: 1;
    }
}

@keyframes core-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes flow-pulse {
    0%, 100% {
        width: 60px;
        opacity: 0.7;
    }
    50% {
        width: 80px;
        opacity: 1;
    }
}

@keyframes bubble-float {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes orbit {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0; }
    50% { transform: scale(1.1); opacity: 0.5; }
    100% { transform: scale(1); opacity: 0; }
}

@keyframes progress {
    0% { stroke-dasharray: 0 100; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .critical-indicators {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .showcase-title,
    .section-header h2,
    .benefits-header h2,
    .performance-header h2,
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .hero-actions,
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .critical-indicators {
        flex-direction: column;
        align-items: center;
    }
    
    .indicator {
        width: 100%;
        max-width: 250px;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
}