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

:root {
--primary-gold: #D4AF37;
--deep-blue: #1e3a5f;
--luxury-purple: #6B46C1;
--warm-white: #FAF9F6;
--charcoal: #2D3748;
--accent-rose: #F56565;
--gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
--gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
--gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: var(--charcoal);
background: var(--warm-white);
overflow-x: hidden;
}

/* AI Chat Assistant */
.ai-assistant {
position: fixed;
bottom: 30px;
right: 30px;
z-index: 1000;
}

.ai-toggle {
width: 70px;
height: 70px;
border-radius: 50%;
background: var(--gradient-1);
border: none;
color: white;
font-size: 24px;
cursor: pointer;
box-shadow: 0 8px 32px rgba(0,0,0,0.2);
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
}

.ai-toggle:hover {
transform: scale(1.1);
box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.ai-chat {
position: absolute;
bottom: 80px;
right: 0;
width: 350px;
height: 450px;
background: rgba(255,255,255,0.95);
backdrop-filter: blur(20px);
border-radius: 20px;
border: 1px solid rgba(255,255,255,0.2);
display: none;
flex-direction: column;
box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.ai-header {
background: var(--gradient-1);
color: white;
padding: 20px;
border-radius: 20px 20px 0 0;
text-align: center;
font-weight: bold;
}

.ai-messages {
flex: 1;
padding: 20px;
overflow-y: auto;
}

.ai-message {
margin-bottom: 15px;
padding: 12px 16px;
border-radius: 18px;
max-width: 80%;
animation: messageSlide 0.3s ease;
}

.ai-message.user {
background: var(--primary-gold);
color: white;
margin-left: auto;
}

.ai-message.bot {
background: #f0f0f0;
color: var(--charcoal);
}

.ai-input-area {
padding: 20px;
border-top: 1px solid #eee;
display: flex;
gap: 10px;
}

.ai-input {
flex: 1;
padding: 12px 16px;
border: 1px solid #ddd;
border-radius: 25px;
outline: none;
font-size: 14px;
}

.ai-send {
padding: 12px 20px;
background: var(--gradient-1);
color: white;
border: none;
border-radius: 25px;
cursor: pointer;
transition: all 0.3s ease;
}

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

/* Navigation */
.navbar {
position: fixed;
top: 0;
width: 100%;
background: rgba(255,255,255,0.95);
backdrop-filter: blur(20px);
padding: 20px 0;
z-index: 999;
transition: all 0.3s ease;
}

.nav-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
font-size: 28px;
font-weight: bold;
background: var(--gradient-1);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.nav-links {
display: flex;
list-style: none;
gap: 30px;
}

.nav-links a {
text-decoration: none;
color: var(--charcoal);
font-weight: 500;
transition: all 0.3s ease;
position: relative;
}

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

.nav-links a::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: var(--primary-gold);
transition: width 0.3s ease;
}

.nav-links a:hover::after {
width: 100%;
}

.nav-right {
display: flex;
align-items: center;
gap: 20px;
}

.lang-toggle {
display: flex;
gap: 10px;
}

.lang-btn {
padding: 8px 16px;
border: 2px solid var(--primary-gold);
background: transparent;
color: var(--primary-gold);
border-radius: 25px;
cursor: pointer;
transition: all 0.3s ease;
font-weight: 500;
}

.lang-btn.active,
.lang-btn:hover {
background: var(--primary-gold);
color: white;
}

/* Hamburger Menu */
.hamburger {
display: none;
flex-direction: column;
justify-content: space-around;
width: 30px;
height: 30px;
background: transparent;
border: none;
cursor: pointer;
padding: 0;
z-index: 1001;
}

.hamburger span {
width: 25px;
height: 3px;
background: var(--charcoal);
border-radius: 2px;
transition: all 0.3s ease;
transform-origin: center;
}

.hamburger.active span:nth-child(1) {
transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
opacity: 0;
}

.hamburger.active span:nth-child(3) {
transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background: rgba(0, 0, 0, 0.5);
backdrop-filter: blur(5px);
z-index: 999;
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
}

.mobile-overlay.active {
opacity: 1;
visibility: visible;
}

/* Simple Professional Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 50%, #34495e 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding-top: 120px;
    padding-bottom: 20px;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    padding: 0 1rem;
    opacity: 1;
    visibility: visible;
}

/* Ensure hero elements are visible by default */
.hero-badge,
.hero-title,
.hero-subtitle,
.hero-description,
.hero-stats .stat-item,
.hero-actions .btn-primary,
.hero-actions .btn-secondary {
    opacity: 1;
    visibility: visible;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--primary-gold);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    color: var(--primary-gold);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero-badge i {
    font-size: 1rem;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    font-weight: 500;
}

.hero-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.4;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.hero-stats .stat-item {
    text-align: center;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 100px;
    flex: 1;
    max-width: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-stats .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.2rem;
    white-space: nowrap;
}

.hero-stats .stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.1;
    word-wrap: break-word;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #c9b037 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

/* Image styles removed for clean professional design */

/* Hero Responsive Design */
@media (max-width: 768px) {
    .hero {
        height: 100vh;
        min-height: 600px;
    }
    
    .hero .container {
        height: 100vh;
        padding-top: 120px;
        padding-bottom: 40px;
        padding-left: 1rem;
        padding-right: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 0.4rem;
        line-height: 1.0;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 0.8rem;
        margin-bottom: 1rem;
        line-height: 1.3;
        max-width: 100%;
    }
    
    .hero-stats {
        gap: 0.8rem;
        margin-bottom: 1.2rem;
        max-width: 320px;
    }
    
    .hero-stats .stat-item {
        padding: 0.4rem 0.5rem;
        min-width: 85px;
        max-width: 100px;
    }
    
    .hero-stats .stat-number {
        font-size: 1.2rem;
        margin-bottom: 0.1rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.6rem;
        line-height: 1.0;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 0.6rem;
        max-width: 260px;
        margin: 0 auto;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 100vh;
        min-height: 550px;
    }
    
    .hero .container {
        height: 100vh;
        padding-top: 100px;
        padding-bottom: 30px;
        padding-left: 0.8rem;
        padding-right: 0.8rem;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
        margin-bottom: 0.6rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
        line-height: 0.95;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 0.75rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
        padding: 0;
        max-width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 0.5rem;
        max-width: 160px;
        margin-bottom: 0.8rem;
    }
    
    .hero-stats .stat-item {
        padding: 0.4rem 0.6rem;
        min-width: auto;
        max-width: none;
        border-radius: 6px;
    }
    
    .hero-stats .stat-number {
        font-size: 1.1rem;
        margin-bottom: 0.1rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.55rem;
        line-height: 1.0;
    }
    
    .hero-actions {
        gap: 0.5rem;
        max-width: 220px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 360px) {
    .hero {
        min-height: 500px;
    }
    
    .hero .container {
        padding-top: 90px;
        padding-bottom: 20px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .hero-description {
        font-size: 0.7rem;
        margin-bottom: 0.6rem;
    }
    
    .hero-stats {
        max-width: 140px;
        margin-bottom: 0.6rem;
    }
    
    .hero-stats .stat-item {
        padding: 0.3rem 0.5rem;
    }
    
    .hero-stats .stat-number {
        font-size: 1rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.5rem;
    }
    
    .hero-actions {
        max-width: 200px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.45rem 0.8rem;
        font-size: 0.7rem;
    }
}

/* Section Backgrounds */
.intro-bg {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
}

.experience-bg {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.profile-bg {
    background: linear-gradient(135deg, #34495e 0%, #455a64 100%);
}

.credentials-bg {
    background: linear-gradient(135deg, #455a64 0%, #546e7a 100%);
}

/* Section 1: Introduction */
.intro-section .hero-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    margin: 0 auto;
}

.main-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 3rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border: 2px solid var(--primary-gold);
    border-left: none;
    border-top: none;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
    40% { transform: rotate(45deg) translateY(-10px); }
    60% { transform: rotate(45deg) translateY(-5px); }
}

/* Section 2: Experience Overview */
.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-gold);
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
}

.stat-label {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 500;
}

/* Section 3: Professional Profile */
.profile-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.profile-image-container {
    flex-shrink: 0;
}

.professional-photo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.professional-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.4);
}

.profile-details {
    text-align: left;
    max-width: 500px;
}

.profile-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.profile-description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Section 4: Credentials */
.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.credential-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.credential-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.credential-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.credential-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.credential-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.credential-info p {
    font-size: 1rem;
    color: var(--primary-gold);
    font-weight: 500;
}

.continue-journey {
    margin-top: 3rem;
}

.explore-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #b8860b 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.explore-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #ffd700 0%, var(--primary-gold) 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .profile-showcase {
        flex-direction: column;
        gap: 2rem;
    }
    
    .profile-details {
        text-align: center;
    }
    
    .professional-photo {
        width: 200px;
        height: 200px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .credentials-grid {
        grid-template-columns: 1fr;
    }
}

/* Old parallax styles removed to prevent conflicts */

/* Navbar scroll effect */
.navbar.scrolled {
    background: rgba(26, 37, 47, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .logo {
    color: var(--primary-gold);
}

/* Enhanced Scroll indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, #b8860b 50%, var(--primary-gold) 100%);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
    z-index: 9999;
    transition: width 0.1s ease-out;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Form focus states */
.form-group.focused .form-line {
    background: var(--primary-gold);
    transform: scaleX(1);
}

.form-group.focused label {
    color: var(--primary-gold);
    transform: translateY(-20px) scale(0.8);
}

/* AI Chat toggle */
.ai-chat.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

/* All old hotel-related CSS removed for clean professional design */

/* Clean slate - all old walkthrough styles removed */

/* Skip old hotel elements - clean slate */

.skyscraper {
    background: linear-gradient(180deg, 
        rgba(52, 73, 94, 0.9) 0%, 
        rgba(44, 62, 80, 0.95) 50%, 
        rgba(26, 37, 47, 1) 100%);
    position: relative;
    border-radius: 2px 2px 0 0;
    box-shadow: 
        inset -3px 0 15px rgba(0,0,0,0.4),
        -5px 0 20px rgba(0,0,0,0.3),
        0 0 50px rgba(0,0,0,0.2);
}

.tower-1 {
    width: 80px;
    height: 300px;
    background: linear-gradient(180deg, #34495e 0%, #2c3e50 70%, #1a252f 100%);
}

.tower-2 {
    width: 60px;
    height: 350px;
    background: linear-gradient(180deg, #455a74 0%, #34495e 60%, #2c3e50 100%);
}

.tower-3 {
    width: 90px;
    height: 280px;
    background: linear-gradient(180deg, #3d566e 0%, #34495e 50%, #1a252f 100%);
}

.office-building {
    background: linear-gradient(180deg, #2c3e50 0%, #1e2631 100%);
    border-radius: 2px 2px 0 0;
    box-shadow: inset -2px 0 10px rgba(0,0,0,0.3);
}

.low-1 {
    width: 100px;
    height: 150px;
}

.low-2 {
    width: 70px;
    height: 120px;
}

.luxury-hotel-building {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 80%;
    z-index: 3;
}

.hotel-tower {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        #d4af37 0%, 
        #c9b37a 20%, 
        #b8a169 40%, 
        #a08f58 70%, 
        #8b7d47 100%);
    border-radius: 5px 5px 0 0;
    box-shadow: 
        0 0 80px rgba(0,0,0,0.6),
        inset -20px 0 40px rgba(0,0,0,0.2),
        inset 20px 0 40px rgba(255,255,255,0.05);
    border: 2px solid rgba(212, 175, 55, 0.4);
}

.hotel-floor {
    position: relative;
    width: 100%;
    height: 25%;
    border-bottom: 1px solid rgba(139, 125, 71, 0.3);
}

.penthouse {
    background: linear-gradient(90deg, 
        rgba(212, 175, 55, 0.2) 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(212, 175, 55, 0.2) 100%);
}

.penthouse-terrace {
    position: absolute;
    top: -10px;
    left: 10%;
    right: 10%;
    height: 10px;
    background: linear-gradient(90deg, 
        var(--primary-gold) 0%, 
        #b8860b 50%, 
        var(--primary-gold) 100%);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.floor-windows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 5%;
    right: 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.luxury-window {
    width: 45px;
    height: 60px;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    border: 3px solid #8b7d47;
    border-radius: 6px;
    position: relative;
    box-shadow: 
        inset 0 0 15px rgba(0,0,0,0.8),
        0 0 20px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

.luxury-window::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border: 1px solid rgba(139, 125, 71, 0.4);
    border-radius: 3px;
}

.luxury-window.lit {
    background: 
        radial-gradient(ellipse at center, #fff4a3 0%, #ffd700 30%, #ffb700 70%, #ff8c00 100%);
    box-shadow: 
        0 0 50px rgba(255, 215, 0, 0.8),
        0 0 100px rgba(255, 140, 0, 0.4),
        inset 0 0 25px rgba(255, 255, 255, 0.3);
    border-color: var(--primary-gold);
}

.luxury-window.lit::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 90%;
    background: linear-gradient(180deg, 
        rgba(139, 125, 71, 0.8) 0%, 
        rgba(139, 125, 71, 0.2) 100%);
    box-shadow: 0 0 8px rgba(0,0,0,0.6);
}

.luxury-window.lit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 4px;
    background: linear-gradient(90deg, 
        rgba(139, 125, 71, 0.8) 0%, 
        rgba(139, 125, 71, 0.2) 50%, 
        rgba(139, 125, 71, 0.8) 100%);
    box-shadow: 0 0 8px rgba(0,0,0,0.6);
    z-index: 2;
}

.hotel-branding {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.brand-logo {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, 
        var(--primary-gold) 0%, 
        #b8860b 70%, 
        var(--primary-gold) 100%);
    border-radius: 50%;
    margin: 0 auto 15px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 0 30px rgba(212, 175, 55, 0.6),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    position: relative;
}

.brand-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(255, 255, 255, 0.6) 100%);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.hotel-name-sign {
    background: linear-gradient(145deg, 
        var(--primary-gold) 0%, 
        #b8860b 50%, 
        var(--primary-gold) 100%);
    padding: 12px 30px;
    border-radius: 8px;
    color: white;
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    box-shadow: 
        0 8px 25px rgba(212, 175, 55, 0.4),
        inset 0 2px 8px rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Scene 2: Grand Hotel Entrance */
.scene-approach {
    background: linear-gradient(180deg, #2c3e50 0%, #34495e 30%, #455a64 60%, #546e7a 100%);
}

.hotel-approach {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
}

.grand-entrance {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 90%;
}

.entrance-architecture {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(248, 248, 255, 0.95) 0%,
        rgba(245, 245, 245, 0.9) 30%,
        rgba(240, 240, 240, 0.85) 100%);
    border-radius: 8px 8px 0 0;
    box-shadow: 
        0 0 100px rgba(0,0,0,0.4),
        inset 0 0 50px rgba(255,255,255,0.3);
}

.marble-columns {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80%;
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
}

.column {
    width: 60px;
    height: 100%;
    background: linear-gradient(180deg, 
        #f8f8ff 0%, 
        #f0f0f0 50%, 
        #e8e8e8 100%);
    border-radius: 30px 30px 0 0;
    position: relative;
    box-shadow: 
        inset -5px 0 15px rgba(0,0,0,0.1),
        inset 5px 0 15px rgba(255,255,255,0.3),
        0 0 30px rgba(0,0,0,0.2);
}

.column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(90deg, 
        rgba(212, 175, 55, 0.3) 0%, 
        rgba(255, 255, 255, 0.5) 50%, 
        rgba(212, 175, 55, 0.3) 100%);
    border-radius: 30px 30px 20px 20px;
}

.entrance-canopy.luxury {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(145deg, 
        var(--primary-gold) 0%, 
        #b8860b 30%, 
        #8b6914 60%, 
        var(--primary-gold) 100%);
    border-radius: 40px;
    box-shadow: 
        0 20px 50px rgba(212, 175, 55, 0.5),
        0 0 80px rgba(212, 175, 55, 0.3),
        inset 0 8px 20px rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.canopy-lighting {
    position: absolute;
    bottom: -20px;
    left: 20%;
    right: 20%;
    height: 20px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 215, 0, 0.6) 20%, 
        rgba(255, 215, 0, 0.8) 50%, 
        rgba(255, 215, 0, 0.6) 80%, 
        transparent 100%);
    border-radius: 0 0 20px 20px;
    filter: blur(3px);
}

.entrance-doors.revolving {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
}

.door-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border: 6px solid var(--primary-gold);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 0 40px rgba(212, 175, 55, 0.6),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
}

.door-section {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, 
        rgba(139, 69, 19, 0.8) 0%, 
        rgba(101, 67, 33, 0.9) 100%);
    transform-origin: center center;
    border-radius: 5px;
}

.door-section.section-1 {
    transform: translate(-50%, -50%) rotate(0deg) translateY(-40px);
}

.door-section.section-2 {
    transform: translate(-50%, -50%) rotate(90deg) translateY(-40px);
}

.door-section.section-3 {
    transform: translate(-50%, -50%) rotate(180deg) translateY(-40px);
}

.door-section.section-4 {
    transform: translate(-50%, -50%) rotate(270deg) translateY(-40px);
}

.door-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, 
        var(--primary-gold) 0%, 
        #8b6914 100%);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

.entrance-pathway {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 80px;
}

.marble-steps {
    position: relative;
    width: 100%;
    height: 60px;
}

.step-level {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, 
        #f0f0f0 0%, 
        #f8f8f8 50%, 
        #f0f0f0 100%);
    border-radius: 5px;
    box-shadow: 
        0 4px 12px rgba(0,0,0,0.2),
        inset 0 2px 6px rgba(255,255,255,0.3);
}

.step-3 {
    width: 100%;
    height: 18px;
    bottom: 0;
}

.step-2 {
    width: 85%;
    height: 18px;
    bottom: 18px;
}

.step-1 {
    width: 70%;
    height: 18px;
    bottom: 36px;
}

.red-carpet {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 60px;
    background: linear-gradient(180deg, 
        #8B0000 0%, 
        #DC143C 50%, 
        #B22222 100%);
    border-radius: 0 0 10px 10px;
    box-shadow: 
        0 0 20px rgba(139, 0, 0, 0.4),
        inset 0 5px 15px rgba(255, 255, 255, 0.1);
    border: 2px solid var(--primary-gold);
}

.entrance-landscaping {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
}

.topiary-garden {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
}

.topiary {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, 
        #228B22 0%, 
        #006400 60%, 
        #2F4F2F 100%);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 20px rgba(34, 139, 34, 0.4);
}

.topiary::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(180deg, #8B4513 0%, #654321 100%);
    border-radius: 0 0 10px 10px;
}

.fountain-feature {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 60px;
}

.fountain-base {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 30px;
    background: linear-gradient(90deg, 
        #f0f0f0 0%, 
        #ffffff 50%, 
        #f0f0f0 100%);
    border-radius: 50%;
    box-shadow: 
        0 8px 20px rgba(0,0,0,0.2),
        inset 0 2px 8px rgba(255,255,255,0.4);
}

.water-spray {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(180deg, 
        rgba(173, 216, 230, 0.8) 0%, 
        rgba(135, 206, 235, 0.6) 50%, 
        transparent 100%);
    border-radius: 2px;
    animation: water-flow 2s ease-in-out infinite;
}

@keyframes water-flow {
    0%, 100% { 
        height: 30px; 
        opacity: 0.8; 
    }
    50% { 
        height: 40px; 
        opacity: 1; 
    }
}

/* Scene 3: Luxury Hotel Lobby Interior */
.scene-interior {
    background: linear-gradient(180deg, #455a64 0%, #546e7a 30%, #607d8b 60%, #78909c 100%);
}

.hotel-lobby {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(248, 248, 255, 0.95) 0%,
        rgba(245, 245, 245, 0.9) 50%,
        rgba(240, 240, 240, 0.85) 100%);
    z-index: 5;
}

.reception-area {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 60%;
}

.marble-reception-desk {
    position: relative;
    width: 100%;
    height: 70%;
    background: linear-gradient(180deg, 
        #f8f8ff 0%, 
        #f0f0f0 50%, 
        #e8e8e8 100%);
    border-radius: 20px 20px 0 0;
    box-shadow: 
        0 0 60px rgba(0,0,0,0.3),
        inset 0 10px 30px rgba(255,255,255,0.4);
}

.desk-surface {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(90deg, 
        rgba(212, 175, 55, 0.3) 0%, 
        rgba(255, 255, 255, 0.8) 50%, 
        rgba(212, 175, 55, 0.3) 100%);
    border-radius: 20px 20px 10px 10px;
    border: 2px solid rgba(212, 175, 55, 0.4);
}

.reception-lighting {
    position: absolute;
    top: -10px;
    left: 20%;
    right: 20%;
    height: 20px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 215, 0, 0.4) 50%, 
        transparent 100%);
    border-radius: 10px;
    filter: blur(3px);
}

.hotel-logo-desk {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, 
        var(--primary-gold) 0%, 
        #b8860b 100%);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.desk-front {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 30px;
    background: linear-gradient(180deg, 
        rgba(240, 240, 240, 0.9) 0%, 
        rgba(220, 220, 220, 0.95) 100%);
    border-radius: 0 0 20px 20px;
}

.marble-panel {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(45deg, 
        rgba(248, 248, 255, 0.8) 0%, 
        rgba(240, 240, 240, 0.9) 100%);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.gold-accents {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-gold) 50%, 
        transparent 100%);
    border-radius: 2px;
}

.reception-tech {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30%;
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
}

.pms-system {
    position: relative;
    width: 250px;
    height: 100%;
}

.monitor-array {
    position: relative;
    width: 100%;
    height: 80%;
    display: flex;
    gap: 10px;
}

.main-monitor {
    flex: 2;
    background: linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 4px solid #444;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 0 30px rgba(0,0,0,0.6);
}

.main-monitor.active {
    background: linear-gradient(180deg, #0a4d0a 0%, #1a5a1a 100%);
    border-color: #00ff00;
    box-shadow: 
        0 0 30px rgba(0,255,0,0.4),
        inset 0 0 20px rgba(0,255,0,0.1);
}

.main-monitor.active::before {
    content: 'PMS';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #00ff00;
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0,255,0,0.8);
}

.side-monitor {
    flex: 1;
    background: linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 3px solid #444;
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.keyboard-area {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 15%;
    background: linear-gradient(90deg, #333 0%, #444 50%, #333 100%);
    border-radius: 5px;
    border: 1px solid #555;
}

.communication-hub {
    position: relative;
    width: 150px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.phone-system {
    flex: 1;
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 8px;
    border: 2px solid #444;
    position: relative;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

.phone-system::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 15px;
    background: linear-gradient(90deg, #00ff00 0%, #00cc00 100%);
    border-radius: 3px;
    border: 1px solid #00aa00;
    box-shadow: 0 0 8px rgba(0, 255, 0, 0.4);
}

.tablet-station {
    flex: 1;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 10px;
    border: 3px solid #333;
    position: relative;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.lobby-ambiance {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.crystal-chandelier {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 300px;
}

.chandelier-chain {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 60px;
    background: linear-gradient(180deg, #8b7d47 0%, #d4af37 100%);
    border-radius: 2px;
}

.crystal-array {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 200px;
}

.crystal-tier {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(255, 255, 255, 0.6) 70%, 
        rgba(255, 255, 255, 0.3) 100%);
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 0 30px rgba(255, 255, 255, 0.6),
        inset 0 0 20px rgba(255, 255, 255, 0.4);
}

.tier-1 {
    top: 0;
    width: 120px;
    height: 60px;
}

.tier-2 {
    top: 70px;
    width: 80px;
    height: 40px;
}

.tier-3 {
    top: 120px;
    width: 50px;
    height: 25px;
}

.chandelier-lighting {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, 
        rgba(255, 215, 0, 0.3) 0%, 
        rgba(255, 215, 0, 0.1) 50%, 
        transparent 100%);
    border-radius: 50%;
    filter: blur(10px);
    animation: chandelier-glow 3s ease-in-out infinite;
}

@keyframes chandelier-glow {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.marble-flooring {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20%;
    background: linear-gradient(90deg, 
        rgba(248, 248, 255, 0.9) 0%, 
        rgba(255, 255, 255, 0.95) 50%, 
        rgba(248, 248, 255, 0.9) 100%);
}

.floor-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 40px,
            rgba(212, 175, 55, 0.1) 40px,
            rgba(212, 175, 55, 0.1) 42px
        );
}

.floor-shine {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.3) 0%, 
        transparent 50%);
    filter: blur(1px);
}

/* Scene 4: Professional Business Center */
.scene-professional {
    background: linear-gradient(180deg, #607d8b 0%, #78909c 30%, #90a4ae 60%, #b0bec5 100%);
}

.professional-setting {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(240, 240, 240, 0.95) 0%,
        rgba(230, 230, 230, 0.9) 50%,
        rgba(220, 220, 220, 0.85) 100%);
    z-index: 6;
}

.business-center {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 70%;
}

.executive-desk {
    position: relative;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, 
        rgba(139, 69, 19, 0.1) 0%, 
        rgba(101, 67, 33, 0.2) 100%);
    border-radius: 15px;
    box-shadow: 
        0 0 40px rgba(0,0,0,0.2),
        inset 0 5px 20px rgba(255,255,255,0.3);
}

.desk-surface.glass {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.8) 0%, 
        rgba(255, 255, 255, 0.95) 50%, 
        rgba(255, 255, 255, 0.8) 100%);
    border-radius: 15px 15px 10px 10px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

.office-equipment {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.laptop-setup {
    width: 200px;
    height: 120px;
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 10px 10px 5px 5px;
    border: 3px solid #444;
    position: relative;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.laptop-setup::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 40px;
    background: linear-gradient(180deg, #0a4d0a 0%, #1a5a1a 100%);
    border-radius: 5px;
    border: 1px solid #00ff00;
    box-shadow: inset 0 0 15px rgba(0,255,0,0.2);
}

.laptop-setup::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 20px;
    background: linear-gradient(90deg, #333 0%, #555 50%, #333 100%);
    border-radius: 5px;
}

.document-area {
    width: 150px;
    height: 100px;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(245, 245, 245, 0.95) 100%);
    border-radius: 8px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.document-area::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    height: 80%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 8px,
            rgba(0,0,0,0.1) 8px,
            rgba(0,0,0,0.1) 9px
        );
}

.executive-phone {
    width: 80px;
    height: 60px;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 10px;
    border: 2px solid #333;
    position: relative;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.executive-phone::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 20px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, #b8860b 100%);
    border-radius: 4px;
    border: 1px solid #8b6914;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.credential-display {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
}

.wall-mounted-display {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(248, 248, 255, 0.9) 0%, 
        rgba(240, 240, 240, 0.95) 100%);
    border-radius: 10px;
    border: 3px solid rgba(212, 175, 55, 0.4);
    box-shadow: 
        0 0 30px rgba(0,0,0,0.2),
        inset 0 5px 15px rgba(255,255,255,0.4);
}

.certificate-frames {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.frame {
    width: 180px;
    height: 140px;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 248, 255, 0.9) 100%);
    border: 4px solid var(--primary-gold);
    border-radius: 8px;
    position: relative;
    box-shadow: 
        0 8px 20px rgba(0,0,0,0.2),
        inset 0 2px 8px rgba(255,255,255,0.4);
}

.luxury-frame-1::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, 
        var(--primary-gold) 0%, 
        #b8860b 60%, 
        #8b6914 100%);
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.luxury-frame-2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 50px;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(240, 240, 240, 0.8) 100%);
    border-radius: 5px;
    border: 2px solid var(--primary-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.luxury-frame-3::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, 
        var(--primary-gold) 0%, 
        #ffd700 50%, 
        var(--primary-gold) 100%);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
}

.display-lighting {
    position: absolute;
    top: -10px;
    left: 10%;
    right: 10%;
    height: 20px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 215, 0, 0.3) 50%, 
        transparent 100%);
    border-radius: 10px;
    filter: blur(5px);
}

.office-ambiance {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.executive-lighting {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 200px;
    background: radial-gradient(ellipse, 
        rgba(255, 215, 0, 0.2) 0%, 
        rgba(255, 215, 0, 0.1) 60%, 
        transparent 100%);
    filter: blur(15px);
    animation: office-ambiance 4s ease-in-out infinite;
}

@keyframes office-ambiance {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.9; }
}

.professional-plants {
    position: absolute;
    bottom: 10%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
}

.office-plant {
    width: 60px;
    height: 120px;
    background: linear-gradient(180deg, 
        #228B22 0%, 
        #006400 60%, 
        #2F4F2F 100%);
    border-radius: 30px 30px 60% 60%;
    position: relative;
    box-shadow: 0 0 20px rgba(34, 139, 34, 0.3);
}

.modern-1::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 30px;
    background: linear-gradient(180deg, #8B4513 0%, #654321 100%);
    border-radius: 10px;
}

.modern-2::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 30px;
    background: linear-gradient(180deg, #A0522D 0%, #8B4513 100%);
    border-radius: 10px;
}

/* Content Styling */
.hero-content {
    text-align: center;
    color: white;
    z-index: 100;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    margin: 0 auto;
}

.main-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 3rem;
    color: #ffffff !important;
    text-shadow: 
        0 2px 4px rgba(0,0,0,0.8),
        0 4px 8px rgba(0,0,0,0.4);
    letter-spacing: 1px;
}

.scroll-hint {
    text-align: center;
    color: #ffffff !important;
    animation: float-vertical 3s ease-in-out infinite;
    margin-top: 1rem;
}

.scroll-hint span {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff !important;
    text-shadow: 
        0 2px 4px rgba(0,0,0,0.8),
        0 4px 8px rgba(0,0,0,0.4);
}

.scroll-arrow {
    width: 2px;
    height: 40px;
    background: var(--primary-gold);
    margin: 0 auto;
    position: relative;
    animation: arrow-bounce 2s ease-in-out infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--primary-gold);
    border-bottom: 2px solid var(--primary-gold);
    transform: rotate(45deg);
}

@keyframes float-vertical {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes arrow-bounce {
    0%, 100% { opacity: 0.7; transform: translateY(0px); }
    50% { opacity: 1; transform: translateY(10px); }
}

/* Experience Showcase */
.experience-showcase {
    text-align: center;
    color: white;
    z-index: 90;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin: 0 auto;
}

.experience-stats {
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: center;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    color: white;
    min-width: 150px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff !important;
    margin-bottom: 0.5rem;
    text-shadow: 
        0 2px 4px rgba(0,0,0,0.8),
        0 4px 8px rgba(0,0,0,0.6),
        0 0 15px rgba(212, 175, 55, 0.8);
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff !important;
    text-shadow: 
        0 2px 4px rgba(0,0,0,0.8),
        0 4px 8px rgba(0,0,0,0.4);
}



/* Profile Section */
.profile-section {
    text-align: center;
    color: white;
    z-index: 70;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    margin: 0 auto;
}

.profile-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 2rem;
    max-width: 400px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.profile-container:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.profile-image-container {
    margin-bottom: 1.5rem;
}

.professional-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--primary-gold);
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.professional-photo:hover {
    transform: scale(1.05);
}

.profile-info h3 {
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.profile-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Credentials Section */
.credentials-section {
    text-align: center;
    color: white;
    z-index: 60;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    margin: 0 auto;
}

.credentials-header {
    margin-bottom: 2rem;
}

.credentials-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.certificates-display {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.certificate-frame {
    position: relative;
    width: 200px;
    height: 140px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--primary-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.certificate-frame:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.certificate-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.explore-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #b8860b 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.explore-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #b8860b 0%, var(--primary-gold) 100%);
}



/* Responsive Design for Glass Containers */
@media (max-width: 768px) {
    .hero-content {
        padding: 2rem 1.5rem;
        max-width: 90%;
    }
    
    .experience-showcase {
        padding: 1.5rem;
        max-width: 95%;
    }
    
    .profile-section {
        padding: 1.5rem;
        max-width: 90%;
    }
    
    .credentials-section {
        padding: 1.5rem;
        max-width: 95%;
    }
    
    .main-title {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1.4rem;
    }
    
    .experience-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .certificates-display {
        flex-direction: column;
        align-items: center;
    }
}

/* Responsive Design for Cinematic Experience */
@media (max-width: 1024px) {
    .main-title {
        font-size: 3.5rem;
    }
    
    .subtitle {
        font-size: 1.5rem;
    }
    
    .experience-stats {
        gap: 2rem;
    }
    
    .front-desk-area {
        flex-direction: column;
        gap: 2rem;
    }
    
    .certificates-display {
        gap: 1.5rem;
    }
    
    .certificate-frame {
        width: 280px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .cinematic-hero {
        height: 500vh; /* Slightly shorter for mobile */
    }
    
    .main-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .subtitle {
        font-size: 1.3rem;
    }
    
    .experience-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-card {
        min-width: 120px;
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .doors-frame {
        width: 300px;
        height: 500px;
    }
    
    .door {
        width: 140px;
        height: 500px;
    }
    
    .entrance-text h2 {
        font-size: 2rem;
    }
    
    .welcome-message h2 {
        font-size: 2.2rem;
    }
    
    .welcome-message p {
        font-size: 1.1rem;
    }
    
    .front-desk-area {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .profile-container {
        max-width: 300px;
        padding: 1.5rem;
    }
    
    .professional-photo {
        width: 100px;
        height: 100px;
    }
    
    .profile-info h3 {
        font-size: 1.5rem;
    }
    
    .profile-info p {
        font-size: 1rem;
    }
    
    .credentials-header h2 {
        font-size: 2.2rem;
    }
    
    .credentials-header p {
        font-size: 1.1rem;
    }
    
    .certificates-display {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .certificate-frame {
        width: 300px;
        height: 200px;
    }
    
    .cinematic-progress {
        right: 15px;
    }
    
    .progress-bar {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .scroll-hint {
        bottom: -100px;
    }
    
    .scroll-hint span {
        font-size: 0.9rem;
    }
    
    .stat-card {
        min-width: 100px;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .doors-frame {
        width: 250px;
        height: 400px;
    }
    
    .door {
        width: 115px;
        height: 400px;
    }
    
    .entrance-text h2 {
        font-size: 1.6rem;
    }
    
    .welcome-message h2 {
        font-size: 1.8rem;
    }
    
    .welcome-message p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .desk-surface {
        padding: 1.5rem;
    }
    
    .monitor-screen {
        width: 150px;
        height: 90px;
    }
    
    .monitor-screen::after {
        font-size: 10px;
    }
    
    .profile-container {
        max-width: 280px;
        padding: 1rem;
    }
    
    .professional-photo {
        width: 80px;
        height: 80px;
    }
    
    .profile-info h3 {
        font-size: 1.3rem;
    }
    
    .profile-info p {
        font-size: 0.9rem;
    }
    
    .credentials-header h2 {
        font-size: 1.8rem;
    }
    
    .credentials-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .certificate-frame {
        width: 280px;
        height: 180px;
    }
    
    .cert-overlay h4 {
        font-size: 1rem;
    }
    
    .cert-overlay p {
        font-size: 0.8rem;
    }
    
    .explore-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .cinematic-progress {
        right: 10px;
        transform: translateY(-50%) scale(0.8);
    }
    
    .progress-bar {
        height: 120px;
        width: 3px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}







/* About Section */
.about {
padding: 100px 0;
background: var(--warm-white);
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.section-title {
text-align: center;
font-size: 3rem;
margin-bottom: 60px;
background: var(--gradient-1);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.about-content {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 60px;
align-items: center;
}

.about-image {
position: relative;
}

.profile-card {
background: white;
border-radius: 30px;
padding: 40px;
box-shadow: 0 20px 60px rgba(0,0,0,0.1);
transform: rotate(-5deg);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}

.profile-card::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: var(--gradient-1);
transform: rotate(45deg);
opacity: 0.05;
transition: all 0.5s ease;
}

.profile-card:hover {
transform: rotate(0deg) scale(1.05);
}

.profile-card:hover::before {
opacity: 0.1;
}

.profile-image {
width: 250px;
height: 250px;
border-radius: 50%;
margin: 0 auto 25px;
position: relative;
overflow: hidden;
border: 5px solid var(--primary-gold);
box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.profile-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: all 0.3s ease;
}

.profile-image:hover img {
transform: scale(1.1);
}

.profile-image::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.1) 50%, transparent 70%);
opacity: 0;
transition: opacity 0.3s ease;
}

.profile-image:hover::after {
opacity: 1;
}

.about-text {
font-size: 1.2rem;
line-height: 1.8;
}

.about-text h3 {
font-size: 2rem;
margin-bottom: 20px;
color: var(--deep-blue);
}

/* Skills Section */
.skills {
padding: 100px 0;
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.skills-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-top: 60px;
}

.skill-card {
background: white;
border-radius: 20px;
padding: 30px;
text-align: center;
box-shadow: 0 15px 40px rgba(0,0,0,0.1);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}

.skill-card::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: var(--gradient-1);
transition: all 0.5s ease;
opacity: 0.1;
}

.skill-card:hover::before {
left: 0;
}

.skill-card:hover {
transform: translateY(-10px);
box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.skill-icon {
font-size: 3rem;
margin-bottom: 20px;
background: var(--gradient-1);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.skill-card h3 {
font-size: 1.5rem;
margin-bottom: 15px;
color: var(--deep-blue);
}

/* Experience Timeline */
.experience {
padding: 100px 0;
background: var(--deep-blue);
color: white;
position: relative;
}

.timeline {
position: relative;
max-width: 1000px;
margin: 0 auto;
padding: 0 20px;
}

.timeline::before {
content: '';
position: absolute;
left: 50%;
top: 0;
bottom: 0;
width: 4px;
background: var(--primary-gold);
transform: translateX(-50%);
}

.timeline-item {
position: relative;
margin-bottom: 50px;
width: 50%;
}

.timeline-item:nth-child(odd) {
left: 0;
padding-right: 50px;
}

.timeline-item:nth-child(even) {
left: 50%;
padding-left: 50px;
}

.timeline-content {
background: rgba(255,255,255,0.1);
backdrop-filter: blur(20px);
border-radius: 20px;
padding: 30px;
position: relative;
border: 1px solid rgba(255,255,255,0.2);
}

.timeline-content::before {
content: '';
position: absolute;
top: 30px;
width: 0;
height: 0;
border: 15px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
right: -30px;
border-left-color: rgba(255,255,255,0.1);
}

.timeline-item:nth-child(even) .timeline-content::before {
left: -30px;
border-right-color: rgba(255,255,255,0.1);
}

.timeline-date {
position: absolute;
top: 15px;
width: 20px;
height: 20px;
background: var(--primary-gold);
border-radius: 50%;
left: 50%;
transform: translateX(-50%);
border: 4px solid var(--deep-blue);
}

.timeline-item:nth-child(odd) .timeline-date {
right: -60px;
left: auto;
}

.timeline-item:nth-child(even) .timeline-date {
left: -60px;
}

.timeline-content h3 {
color: var(--primary-gold);
font-size: 1.5rem;
margin-bottom: 10px;
}

.timeline-content .company {
font-weight: bold;
margin-bottom: 15px;
font-size: 1.1rem;
}

.timeline-content .period {
color: rgba(255,255,255,0.7);
font-size: 0.9rem;
margin-bottom: 15px;
}

/* Hotel Logo Styles */
.hotel-logo {
width: 80px;
height: 80px;
margin-bottom: 20px;
border-radius: 12px;
overflow: hidden;
background: rgba(255,255,255,0.1);
border: 2px solid rgba(255,255,255,0.2);
display: flex;
align-items: center;
justify-content: center;
}

.hotel-logo img {
width: 100%;
height: 100%;
object-fit: cover;
}

/* Department Styles */
.timeline-content .department {
color: var(--primary-gold);
font-weight: bold;
font-size: 1rem;
margin-bottom: 10px;
text-transform: uppercase;
letter-spacing: 1px;
}

/* Responsibilities List Styles */
.timeline-content .responsibilities {
list-style: none;
padding: 0;
margin-top: 20px;
}

.timeline-content .responsibilities li {
position: relative;
padding-left: 25px;
margin-bottom: 12px;
color: rgba(255,255,255,0.9);
line-height: 1.6;
}

.timeline-content .responsibilities li::before {
content: '•';
position: absolute;
left: 0;
color: var(--primary-gold);
font-size: 1.2rem;
font-weight: bold;
}

/* Certificates Section */
.certificates {
padding: 100px 0;
background: var(--warm-white);
}

.certificates-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 30px;
margin-top: 60px;
}

.certificate-card {
background: white;
border-radius: 20px;
padding: 25px;
box-shadow: 0 15px 40px rgba(0,0,0,0.1);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
border: 1px solid #f0f0f0;
}

.certificate-card::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: var(--gradient-3);
transform: rotate(45deg);
transition: all 0.5s ease;
opacity: 0;
}

.certificate-card:hover::before {
opacity: 0.1;
}

.certificate-card:hover {
transform: translateY(-10px);
box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.certificate-image {
width: 100%;
height: 200px;
margin-bottom: 20px;
border-radius: 15px;
overflow: hidden;
position: relative;
background: #f8f9fa;
border: 2px solid #e9ecef;
}

.certificate-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: all 0.3s ease;
}

.certificate-image:hover img {
transform: scale(1.05);
}

.certificate-image::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.1) 100%);
opacity: 0;
transition: opacity 0.3s ease;
}

.certificate-image:hover::after {
opacity: 1;
}

.certificate-link {
display: inline-block;
margin-top: 15px;
padding: 8px 16px;
background: var(--gradient-1);
color: white;
text-decoration: none;
border-radius: 20px;
font-size: 0.9rem;
font-weight: 500;
transition: all 0.3s ease;
position: relative;
z-index: 10;
}

.certificate-link:hover {
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(0,0,0,0.2);
color: white;
}

.certificate-link i {
margin-left: 8px;
}

.certificate-card h3 {
color: var(--deep-blue);
font-size: 1.3rem;
margin-bottom: 10px;
position: relative;
z-index: 2;
}

.certificate-card .institution {
color: var(--primary-gold);
font-weight: bold;
margin-bottom: 15px;
position: relative;
z-index: 2;
}

.certificate-card .date {
color: #666;
font-size: 0.9rem;
margin-bottom: 15px;
position: relative;
z-index: 2;
}

.skills-list {
display: flex;
flex-wrap: wrap;
gap: 8px;
position: relative;
z-index: 2;
}

.skill-tag {
background: var(--gradient-1);
color: white;
padding: 5px 12px;
border-radius: 15px;
font-size: 0.8rem;
}

/* Featured Certificate Styling */
.featured-certificate {
background: linear-gradient(135deg, #fff 0%, #fffdf7 100%);
border: 3px solid var(--primary-gold) !important;
box-shadow: 0 20px 50px rgba(212, 175, 55, 0.25) !important;
transform: scale(1.02);
position: relative;
overflow: hidden;
}

.featured-certificate::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.08) 50%, transparent 70%);
pointer-events: none;
animation: shimmer 4s ease-in-out infinite;
z-index: 1;
}

@keyframes shimmer {
0% { transform: translateX(-100%); }
50% { transform: translateX(100%); }
100% { transform: translateX(100%); }
}

.featured-certificate:hover {
transform: scale(1.02) translateY(-15px) !important;
box-shadow: 0 30px 70px rgba(212, 175, 55, 0.35) !important;
border-color: #b8860b !important;
}

.certificate-badge {
position: absolute;
top: -12px;
right: -12px;
background: linear-gradient(135deg, var(--primary-gold) 0%, #b8860b 100%);
color: white;
padding: 0.6rem 1.2rem;
border-radius: 25px;
font-size: 0.75rem;
font-weight: 700;
display: flex;
align-items: center;
gap: 0.4rem;
box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
z-index: 15;
text-transform: uppercase;
letter-spacing: 0.5px;
}

.certificate-badge i {
font-size: 0.8rem;
color: #fff;
animation: pulse 2s infinite;
}

@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.1); }
100% { transform: scale(1); }
}

.featured-certificate h3 {
color: #2c3e50 !important;
font-weight: 700 !important;
text-shadow: 0 2px 4px rgba(212, 175, 55, 0.1);
position: relative;
z-index: 10;
}

.featured-certificate .institution {
color: var(--primary-gold) !important;
font-weight: 700 !important;
position: relative;
z-index: 10;
}

.featured-certificate .date {
color: #b8860b !important;
font-weight: 600 !important;
position: relative;
z-index: 10;
}

.featured-certificate .skills-list {
position: relative;
z-index: 10;
}

.featured-certificate .skill-tag {
background: linear-gradient(135deg, var(--primary-gold) 0%, #b8860b 100%);
box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
font-weight: 600;
}

.featured-link {
background: linear-gradient(135deg, var(--primary-gold) 0%, #b8860b 100%) !important;
color: white !important;
box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4) !important;
font-weight: 600 !important;
padding: 10px 20px !important;
position: relative;
z-index: 10;
}

.featured-link:hover {
background: linear-gradient(135deg, #b8860b 0%, var(--primary-gold) 100%) !important;
transform: translateY(-3px) !important;
box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6) !important;
color: white !important;
}

/* Contact Section */
.contact {
padding: 100px 0;
background: var(--gradient-1);
color: white;
text-align: center;
position: relative;
overflow: hidden;
}

.contact-bg-animation {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 1;
}

.floating-shapes {
position: relative;
width: 100%;
height: 100%;
}

.shape {
position: absolute;
background: rgba(255, 255, 255, 0.05);
border-radius: 50%;
animation: floatShapes 20s infinite linear;
}

.shape-1 {
width: 100px;
height: 100px;
top: 10%;
left: 10%;
animation-delay: 0s;
}

.shape-2 {
width: 60px;
height: 60px;
top: 20%;
right: 15%;
animation-delay: -5s;
}

.shape-3 {
width: 80px;
height: 80px;
bottom: 30%;
left: 20%;
animation-delay: -10s;
}

.shape-4 {
width: 120px;
height: 120px;
bottom: 10%;
right: 10%;
animation-delay: -15s;
}

.shape-5 {
width: 40px;
height: 40px;
top: 50%;
left: 50%;
animation-delay: -8s;
}

@keyframes floatShapes {
0% { transform: translateY(0px) rotate(0deg); opacity: 0.1; }
25% { transform: translateY(-20px) rotate(90deg); opacity: 0.3; }
50% { transform: translateY(-40px) rotate(180deg); opacity: 0.1; }
75% { transform: translateY(-20px) rotate(270deg); opacity: 0.3; }
100% { transform: translateY(0px) rotate(360deg); opacity: 0.1; }
}

.contact-title {
position: relative;
z-index: 2;
margin-bottom: 20px;
}

.contact-subtitle {
font-size: 1.2rem;
color: rgba(255, 255, 255, 0.8);
margin-bottom: 60px;
max-width: 600px;
margin-left: auto;
margin-right: auto;
position: relative;
z-index: 2;
}

.contact-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: start;
position: relative;
z-index: 2;
}

/* Contact Form */
.contact-form-wrapper {
background: rgba(255, 255, 255, 0.08);
backdrop-filter: blur(30px);
border-radius: 30px;
padding: 40px;
border: 1px solid rgba(255, 255, 255, 0.15);
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.form-title {
font-size: 2rem;
margin-bottom: 30px;
background: linear-gradient(135deg, #fff, var(--primary-gold));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.contact-form {
text-align: left;
}

.form-group {
position: relative;
margin-bottom: 30px;
}

.form-group label {
display: block;
margin-bottom: 8px;
font-weight: 500;
color: rgba(255, 255, 255, 0.9);
font-size: 0.9rem;
transition: all 0.3s ease;
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 15px 0;
background: transparent;
border: none;
border-bottom: 2px solid rgba(255, 255, 255, 0.2);
color: white;
font-size: 1rem;
outline: none;
transition: all 0.3s ease;
resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
border-bottom-color: var(--primary-gold);
}

.form-group input:focus + .form-line,
.form-group textarea:focus + .form-line {
transform: scaleX(1);
}

.form-line {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 2px;
background: var(--primary-gold);
transform: scaleX(0);
transition: transform 0.3s ease;
transform-origin: left;
}

.form-submit {
background: linear-gradient(135deg, var(--primary-gold), #f39c12);
border: none;
padding: 15px 40px;
border-radius: 50px;
color: white;
font-weight: bold;
font-size: 1rem;
cursor: pointer;
position: relative;
overflow: hidden;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 10px;
margin-top: 20px;
box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.form-submit:hover {
transform: translateY(-3px);
box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.form-submit::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;
}

.form-submit:hover::before {
left: 100%;
}

.btn-icon {
transition: transform 0.3s ease;
}

.form-submit:hover .btn-icon {
transform: translateX(5px);
}

/* Contact Info Wrapper */
.contact-info-wrapper {
display: flex;
flex-direction: column;
gap: 40px;
}

.contact-info {
display: grid;
gap: 20px;
}

.contact-item {
display: flex;
align-items: center;
gap: 20px;
padding: 25px;
background: rgba(255, 255, 255, 0.08);
backdrop-filter: blur(20px);
border-radius: 20px;
border: 1px solid rgba(255, 255, 255, 0.15);
transition: all 0.4s ease;
position: relative;
overflow: hidden;
cursor: pointer;
}

.contact-item:hover {
transform: translateY(-5px) scale(1.02);
background: rgba(255, 255, 255, 0.12);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-icon {
flex-shrink: 0;
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--primary-gold), #f39c12);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
position: relative;
z-index: 2;
}

.contact-icon i {
font-size: 1.5rem;
color: white;
}

.contact-details {
flex: 1;
text-align: left;
}

.contact-details h3 {
font-size: 1.1rem;
margin-bottom: 5px;
color: var(--primary-gold);
}

.contact-details a,
.contact-details p {
color: rgba(255, 255, 255, 0.9);
text-decoration: none;
transition: color 0.3s ease;
}

.contact-details a:hover {
color: var(--primary-gold);
}

.contact-glow {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(243, 156, 18, 0.1));
opacity: 0;
transition: opacity 0.3s ease;
border-radius: 20px;
}

.contact-item:hover .contact-glow {
opacity: 1;
}

/* Social Connect */
.social-connect {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(20px);
border-radius: 25px;
padding: 30px;
border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-connect h4 {
font-size: 1.3rem;
margin-bottom: 20px;
color: var(--primary-gold);
}

.social-links {
display: flex;
justify-content: center;
gap: 15px;
flex-wrap: wrap;
}

.social-link {
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}

.social-link.linkedin {
background: linear-gradient(135deg, #0077b5, #005885);
}

.social-link.email {
background: linear-gradient(135deg, #ea4335, #d33a2c);
}

.social-link.whatsapp {
background: linear-gradient(135deg, #25d366, #128c7e);
}

.social-link.phone {
background: linear-gradient(135deg, #007bff, #0056b3);
}

.social-link i {
color: white;
font-size: 1.2rem;
z-index: 2;
position: relative;
}

.social-link:hover {
transform: translateY(-3px) scale(1.1);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.social-link::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.2);
opacity: 0;
transition: opacity 0.3s ease;
}

.social-link:hover::before {
opacity: 1;
}

/* Responsive Design for Contact */
@media (max-width: 768px) {
.contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
}

.contact-form-wrapper {
    padding: 30px 20px;
}

.contact-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
}

.contact-details {
    text-align: center;
}

.social-links {
    gap: 10px;
}

.social-link {
    width: 45px;
    height: 45px;
}
}

/* Loading Animation */
.loading {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: var(--deep-blue);
display: flex;
align-items: center;
justify-content: center;
z-index: 9999;
transition: all 0.5s ease;
}

.loading.hidden {
opacity: 0;
pointer-events: none;
}

.loader {
width: 80px;
height: 80px;
border: 4px solid rgba(212, 175, 55, 0.3);
border-top: 4px solid var(--primary-gold);
border-radius: 50%;
animation: spin 1s linear infinite;
}

@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}

/* Scroll indicator */
.scroll-indicator {
position: fixed;
top: 0;
left: 0;
width: 0%;
height: 4px;
background: var(--gradient-2);
z-index: 1001;
transition: width 0.1s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
.hero h1 { font-size: 2.5rem; }
.hero p { font-size: 1.2rem; }

/* Mobile Navigation */
.hamburger {
    display: flex;
}

.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 100px;
    gap: 30px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-links.active {
    right: 0;
}

.nav-links li {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.3s ease;
}

.nav-links.active li {
    opacity: 1;
    transform: translateX(0);
}

.nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
.nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
.nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
.nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
.nav-links.active li:nth-child(5) { transition-delay: 0.5s; }
.nav-links.active li:nth-child(6) { transition-delay: 0.6s; }

.nav-links a {
    font-size: 1.2rem;
    color: var(--charcoal);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: var(--primary-gold);
    color: white;
}

.lang-toggle {
    gap: 8px;
}

.lang-btn {
    padding: 6px 12px;
    font-size: 0.9rem;
}

.about-content { grid-template-columns: 1fr; text-align: center; }
.timeline::before { left: 20px; }
.timeline-item { width: 100%; left: 0 !important; padding-left: 50px !important; padding-right: 0 !important; }
.timeline-date { left: 10px !important; right: auto !important; }
.timeline-content::before { left: -30px !important; border-right-color: rgba(255,255,255,0.1) !important; border-left-color: transparent !important; }

/* Mobile hotel logo styles */
.hotel-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.timeline-content .department {
    font-size: 0.9rem;
}

.timeline-content .responsibilities li {
    font-size: 0.9rem;
    padding-left: 20px;
}
.ai-chat { width: 300px; height: 400px; }

/* Mobile contact section */
.contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
}

.contact-form-wrapper {
    padding: 30px 20px;
}

.contact-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
}

.contact-details {
    text-align: center;
}

.social-links {
    gap: 10px;
}

.social-link {
    width: 45px;
    height: 45px;
}

.floating-shapes {
    display: none; /* Hide floating shapes on mobile for better performance */
}

.contact-subtitle {
    font-size: 1rem;
    padding: 0 15px;
}

.form-title {
    font-size: 1.5rem;
}
}

@media (max-width: 480px) {
.nav-links {
    width: 100%;
    right: -100%;
}

.hamburger span {
    width: 22px;
    height: 2px;
}

.lang-btn {
    padding: 5px 10px;
    font-size: 0.8rem;
}

.nav-container {
    padding: 0 15px;
}
}

/* ========================================
   MOBILE PLATFORM-SPECIFIC STYLES
   Hospitality-themed UI for iOS & Android
======================================== */

/* iOS Specific Styles - Elegant & Refined */
.ios-device .navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
}

.ios-device .hamburger {
    width: 28px;
    height: 28px;
}

.ios-device .hamburger span {
    width: 20px;
    height: 1.5px;
    background: var(--charcoal);
    border-radius: 1px;
}

.ios-device .nav-links {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-left: 0.5px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px 0 0 20px;
}

.ios-device .nav-links a {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 12px 24px;
    margin: 0 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 0.5px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ios-device .nav-links a:hover {
    background: var(--primary-gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.ios-device .lang-btn {
    padding: 6px 12px;
    font-size: 0.85rem;
    border-radius: 20px;
    border: 1px solid var(--primary-gold);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    font-weight: 500;
}

.ios-device .lang-btn.active {
    background: var(--primary-gold);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* iOS Contact Form */
.ios-device .form-group input,
.ios-device .form-group textarea {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 16px; /* Prevents zoom on iOS */
}

.ios-device .form-submit {
    background: var(--primary-gold);
    border: none;
    border-radius: 12px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

/* Android Specific Styles - Material Design with Hospitality Touch */
.android-device .navbar {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.android-device .hamburger {
    width: 32px;
    height: 32px;
}

.android-device .hamburger span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
}

.android-device .nav-links {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
    border-radius: 0;
}

.android-device .nav-links a {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 16px 24px;
    margin: 0 16px 8px;
    border-radius: 8px;
    background: transparent;
    transition: all 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.android-device .nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    z-index: -1;
}

.android-device .nav-links a:hover::before {
    transform: scaleX(1);
}

.android-device .nav-links a:hover {
    color: white;
    background: transparent;
}

/* Android Material Ripple Effect */
.android-device .nav-links a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.android-device .nav-links a:active::after {
    width: 200px;
    height: 200px;
}

.android-device .lang-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
    border-radius: 4px;
    border: 2px solid var(--primary-gold);
    background: transparent;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.android-device .lang-btn.active {
    background: var(--primary-gold);
    color: white;
    elevation: 4px;
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
}

/* Android Contact Form */
.android-device .form-group input,
.android-device .form-group textarea {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px 4px 0 0;
    padding: 16px 12px 8px;
    font-size: 16px;
}

.android-device .form-group input:focus,
.android-device .form-group textarea:focus {
    border-bottom-color: var(--primary-gold);
    background: white;
}

.android-device .form-submit {
    background: var(--primary-gold);
    border: none;
    border-radius: 4px;
    padding: 16px 32px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    elevation: 6px;
}

/* Enhanced Mobile Animations */
.mobile-device .nav-links.active li {
    animation: mobileSlideIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.ios-device .nav-links.active li {
    animation: iosSlideIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.android-device .nav-links.active li {
    animation: androidSlideIn 0.3s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

@keyframes mobileSlideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes iosSlideIn {
    from {
        opacity: 0;
        transform: translateX(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes androidSlideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Platform-specific AI Assistant */
.ios-device .ai-toggle {
    background: var(--gradient-1);
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.android-device .ai-toggle {
    background: var(--primary-gold);
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    elevation: 8px;
}

.ios-device .ai-chat {
    border-radius: 20px;
    backdrop-filter: blur(30px);
    border: 0.5px solid rgba(255, 255, 255, 0.2);
}

.android-device .ai-chat {
    border-radius: 8px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    elevation: 12px;
}

/* Hospitality-themed Contact Cards */
.mobile-device .contact-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 20px;
    margin-bottom: 16px;
}

.ios-device .contact-item {
    border-radius: 16px;
    border: 0.5px solid rgba(0, 0, 0, 0.1);
}

.android-device .contact-item {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    elevation: 4px;
}

/* Platform-specific button hover states */
.ios-device .nav-links a:active {
    transform: scale(0.98);
}

.android-device .nav-links a:active {
    transform: scale(0.96);
}

/* Safe area adjustments for iOS */
@supports (padding-top: env(safe-area-inset-top)) {
    .ios-device .navbar {
        padding-top: calc(20px + env(safe-area-inset-top));
    }
    
    .ios-device .nav-links {
        padding-top: calc(100px + env(safe-area-inset-top));
    }
}



/* Platform-specific opening animations */
.nav-links.ios-opening {
    animation: iosMenuOpen 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-links.android-opening {
    animation: androidMenuOpen 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

@keyframes iosMenuOpen {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    50% {
        transform: translateX(-10px);
        opacity: 0.8;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes androidMenuOpen {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Enhanced mobile touch feedback */
.mobile-device .nav-links a,
.mobile-device .lang-btn,
.mobile-device .form-submit,
.mobile-device .ai-toggle {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

/* Platform-specific status bar adjustments */
.ios-device {
    padding-top: env(safe-area-inset-top);
}

.android-device .navbar {
    padding-top: 24px; /* Android status bar */
}

/* Hospitality-themed loading states */
.mobile-device .nav-links a::before {
    transition: all 0.2s ease;
}

.ios-device .nav-links a:active {
    transform: scale(0.98) translateY(-1px);
}

.android-device .nav-links a:active {
    transform: scale(0.96);
}

/* Enhanced hospitality contact experience */
.mobile-device .contact-item:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

.ios-device .contact-item:active {
    background: rgba(255, 255, 255, 0.95);
}

.android-device .contact-item:active {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Mobile-first responsive improvements */
@media (max-width: 360px) {
    .ios-device .nav-links a {
        font-size: 1rem;
        padding: 10px 20px;
        margin: 0 12px;
    }
    
    .android-device .nav-links a {
        font-size: 1rem;
        padding: 14px 20px;
        margin: 0 12px 6px;
    }
    
    .mobile-device .lang-btn {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
} 