/* ========================================
   KIMHEI - Page Specific Styles
   Hero, About, Services, Membership, etc.
   ======================================== */

/* ========================================
   Hero Section (Full Screen)
   ======================================== */
.hero-fullscreen {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px var(--spacing-md);
    background: var(--gradient-rose);
    position: relative;
    overflow: hidden;
}

/* Floating Emojis */
.floating-emojis {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-emoji {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: floatEmoji 20s infinite ease-in-out;
}

.floating-emoji:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-emoji:nth-child(2) {
    top: 20%;
    right: 10%;
    animation-delay: 2s;
}

.floating-emoji:nth-child(3) {
    top: 60%;
    left: 8%;
    animation-delay: 4s;
}

.floating-emoji:nth-child(4) {
    top: 70%;
    right: 15%;
    animation-delay: 6s;
}

.floating-emoji:nth-child(5) {
    top: 30%;
    left: 15%;
    animation-delay: 8s;
}

.floating-emoji:nth-child(6) {
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

.floating-emoji:nth-child(7) {
    bottom: 30%;
    right: 8%;
    animation-delay: 12s;
}

.floating-emoji:nth-child(8) {
    top: 15%;
    left: 40%;
    animation-delay: 14s;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--primary-pink-light);
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    color: var(--primary-pink);
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease-out;
    box-shadow: var(--shadow-soft);
}

.hero-fullscreen h1 {
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-fullscreen h1 .highlight {
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto var(--spacing-md);
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 36px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 4px;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-contact-info {
    margin-top: var(--spacing-lg);
    display: flex;
    justify-content: center;
    gap: 32px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* ========================================
   About Section
   ======================================== */
.about-section {
    background: var(--primary-white);
    padding: var(--spacing-2xl) 0;
}

.story-content h2 {
    margin-bottom: var(--spacing-md);
}

.story-content h2 .name-pink {
    color: var(--primary-pink);
}

.story-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Heritage Timeline */
.heritage-timeline {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.heritage-item {
    text-align: center;
    max-width: 280px;
}

.heritage-photo {
    width: 180px;
    height: 220px;
    margin: 0 auto 20px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-dark);
}

.heritage-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.heritage-photo.border-gold {
    border: 4px solid var(--primary-gold);
}

.heritage-photo.border-silver {
    border: 4px solid #c0c0c0;
}

.heritage-photo.border-pink {
    border: 4px solid var(--primary-pink);
    box-shadow: var(--shadow-pink);
}

.heritage-photo.sepia img {
    filter: sepia(20%);
}

.heritage-info {
    padding: 20px;
    background: var(--gradient-rose);
    border-radius: var(--radius-md);
}

.heritage-info.highlight {
    background: var(--gradient-pink);
    color: white;
}

.heritage-info.highlight h3,
.heritage-info.highlight p {
    color: white;
}

.heritage-info h3 {
    margin-bottom: var(--spacing-xs);
}

.heritage-info p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.heritage-info .description {
    font-size: 0.85rem;
    margin-top: 12px;
}

.heritage-arrow {
    font-size: 2rem;
    color: var(--primary-pink);
    margin-bottom: 100px;
}

/* CEO Cards */
.ceo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.ceo-card {
    padding: var(--spacing-lg);
}

.ceo-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-soft);
}

.ceo-photo.highlight {
    box-shadow: var(--shadow-pink);
}

.ceo-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ceo-card h3 {
    font-size: 1.5rem;
}

.ceo-card .role {
    color: var(--primary-pink);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.ceo-card .bio {
    font-size: 0.95rem;
}

.ceo-tags {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.ceo-tag {
    padding: 6px 14px;
    background: rgba(255, 107, 157, 0.1);
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Expansion Cards */
.expansion-grid {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.expansion-card {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.expansion-card .status-open {
    color: var(--color-success);
}

.expansion-card .status-soon {
    color: var(--primary-pink);
}

/* ========================================
   Services Section
   ======================================== */
.services-section {
    background: var(--bg-cream);
    padding: var(--spacing-2xl) 0;
}

/* ========================================
   Membership Section
   ======================================== */
.membership-section {
    background: var(--primary-white);
    padding: var(--spacing-2xl) 0;
}

.membership-hero {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.membership-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--gradient-rose);
    border-radius: var(--radius-xl);
    padding: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-pink);
}

.membership-card::before {
    content: '💎';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 100px;
    opacity: 0.1;
}

.membership-badge {
    display: inline-block;
    padding: var(--spacing-xs) 20px;
    background: var(--gradient-pink);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.membership-card h3 {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-md);
}

.membership-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.price-original {
    font-size: 1.5rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.price-arrow {
    font-size: 1.5rem;
}

.price-new {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.membership-benefits {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.membership-benefits li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 107, 157, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

.membership-benefits li:last-child {
    border-bottom: none;
}

.benefit-icon {
    font-size: 1.3rem;
}

.membership-note {
    background: rgba(255, 71, 87, 0.1);
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--color-danger);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    background: var(--bg-cream);
    padding: var(--spacing-2xl) 0;
}

/* ========================================
   Careers Section
   ======================================== */
.careers-section {
    background: var(--primary-white);
    padding: var(--spacing-2xl) 0;
}

.careers-hero {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.now-hiring {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: var(--spacing-sm) 32px;
    background: var(--gradient-danger);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-md);
    animation: pulseGlow 2s infinite;
}

.hiring-dot-large {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    animation: blink 1s infinite;
}

/* ========================================
   Reviews Section
   ======================================== */
.reviews-section {
    background: var(--gradient-dark);
    color: var(--primary-white);
    padding: var(--spacing-2xl) 0;
}

.reviews-section .section-header h2 {
    color: var(--primary-white);
}

.reviews-section .section-header p {
    color: var(--text-white-muted);
}

/* ========================================
   Travel Section
   ======================================== */
.travel-section {
    background: var(--bg-cream);
    padding: var(--spacing-2xl) 0;
}

.pickup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.vehicle-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.vehicle-card {
    background: var(--primary-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-pink);
}

.vehicle-image {
    height: 200px;
    overflow: hidden;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicle-info {
    padding: var(--spacing-md);
}

/* ========================================
   CEO Message Section
   ======================================== */
.ceo-section {
    background: var(--primary-white);
    padding: var(--spacing-2xl) 0;
}

.interview-container {
    max-width: 800px;
    margin: 0 auto;
}

.interview-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.interviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.interviewer-avatar.ceo {
    background: var(--gradient-pink);
}

.interviewer-avatar.interviewer {
    background: var(--gradient-rose);
}

.speech-bubble {
    background: var(--gradient-rose);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    position: relative;
    flex: 1;
}

.speech-bubble::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 20px;
    border: 10px solid transparent;
    border-right-color: var(--primary-rose);
}

.speech-bubble.ceo-bubble {
    background: var(--gradient-pink);
    color: white;
}

.speech-bubble.ceo-bubble::before {
    border-right-color: var(--primary-pink);
}