@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Inter:wght@300;400;500&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
    /* Color System */
    --bg-base: #05060a;
    --bg-section: #0b0f1a;
    --bg-layer: #111827;
    
    --grad-blue: linear-gradient(135deg, #2563eb, #22d3ee);
    --grad-pink: linear-gradient(135deg, #ec4899, #f43f5e);
    --grad-violet: linear-gradient(135deg, #7c3aed, #a78bfa);
    
    --glow-blue: rgba(34, 211, 238, 0.5);
    --glow-pink: rgba(244, 63, 94, 0.5);
    
    --text-primary: #f9fafb;
    --text-secondary: #cbd5f5;
    --text-muted: #94a3b8;
    
    /* Glass UI */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-bg-hover: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.08);
    
    /* Layout */
    --sidebar-w: 80px;
    --sidebar-expand: 260px;
    --bottom-nav-h: 70px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Typography Utilities */
.text-grad-blue { background: var(--grad-blue); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.text-grad-pink { background: var(--grad-pink); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.text-grad-violet { background: var(--grad-violet); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-glow {
    background: var(--grad-blue);
    color: #fff;
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.4);
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.7);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--glass-bg-hover);
    border-color: #fff;
}

/* Glass Card */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.glass-panel:hover {
    background: var(--glass-bg-hover);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.15);
}

/* --- SIDEBAR NAVIGATION --- */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: var(--sidebar-w);
    background: rgba(11, 15, 26, 0.8);
    backdrop-filter: blur(20px);
    border-right: 1px solid var(--glass-border);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
    white-space: nowrap;
}

.sidebar:hover {
    width: var(--sidebar-expand);
    box-shadow: 20px 0 50px rgba(0,0,0,0.5);
}

.sidebar-header {
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 25px;
}

.brand-icon {
    font-size: 1.8rem;
    background: var(--grad-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    min-width: 30px;
}

.brand-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    margin-left: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #fff;
}

.sidebar:hover .brand-text { opacity: 1; }

.nav-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    padding-left: 28px;
    color: var(--text-muted);
    transition: all 0.3s ease;
    position: relative;
}

.nav-item i {
    font-size: 1.2rem;
    min-width: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.nav-text {
    margin-left: 20px;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar:hover .nav-text { opacity: 1; }

.nav-item:hover, .nav-item.active {
    color: #fff;
    background: linear-gradient(90deg, rgba(34, 211, 238, 0.1) 0%, transparent 100%);
}

.nav-item:hover i, .nav-item.active i {
    color: #22d3ee;
    text-shadow: 0 0 10px var(--glow-blue);
}

.nav-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--grad-blue);
    box-shadow: 0 0 10px var(--glow-blue);
}

.sidebar-footer {
    padding: 30px 15px;
}

.sidebar-footer .btn {
    width: 100%;
    padding: 12px 0;
    border-radius: 12px;
}

.sidebar-footer .btn span {
    opacity: 0;
    transition: opacity 0.3s ease;
    display: inline-block;
    width: 0;
}

.sidebar:hover .sidebar-footer .btn span {
    opacity: 1;
    width: auto;
    margin-left: 10px;
}

/* --- MAIN CONTENT --- */
.main-wrapper {
    margin-left: var(--sidebar-w);
    min-height: 100vh;
    transition: margin-left 0.4s ease;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/photo-1566737236500-c8ac43014a67.png') center/cover no-repeat;
    z-index: -2;
    filter: brightness(0.4) saturate(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5,6,10,0.9) 0%, rgba(11,15,26,0.6) 50%, rgba(5,6,10,0.9) 100%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 10;
}

.hero-text h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-ctas {
    display: flex;
    gap: 15px;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f43f5e;
}

.stat-text h4 { font-size: 1.2rem; color: #fff; }
.stat-text p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-card {
    position: absolute;
    background: rgba(17, 24, 39, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    animation: float 6s ease-in-out infinite;
}

.card-1 { top: 10%; right: 10%; animation-delay: 0s; border-left: 3px solid #22d3ee; }
.card-2 { bottom: 20%; left: 0; animation-delay: 2s; border-left: 3px solid #f43f5e; }
.card-3 { bottom: 10%; right: 20%; animation-delay: 4s; border-left: 3px solid #a78bfa; }

.fc-img { width: 60px; height: 60px; border-radius: 10px; object-fit: cover; }
.fc-info h5 { font-size: 1rem; color: #fff; margin-bottom: 3px;}
.fc-info p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

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

/* --- SECTIONS --- */
.section {
    padding: 100px 5%;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* --- HOTEL GRID --- */
.hotel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.hotel-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    group;
}

.hotel-img-wrapper {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.hotel-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hotel-card:hover .hotel-img-wrapper img {
    transform: scale(1.05);
}

.hotel-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--grad-pink);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.hotel-info {
    padding: 25px;
    background: var(--bg-layer);
    border: 1px solid var(--glass-border);
    border-top: none;
    border-radius: 0 0 20px 20px;
    position: relative;
}

.hotel-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.hotel-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hotel-meta i {
    color: #22d3ee;
    margin-right: 5px;
}

/* --- EXPERIENCE LIST --- */
.exp-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
}

.exp-row:nth-child(even) {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.exp-row:nth-child(even) > * {
    direction: ltr;
}

.exp-img {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.exp-img::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.5);
}

.exp-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* --- PAGE HEADERS --- */
.page-header {
    padding: 150px 5% 80px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg-base) 100%);
    border-bottom: 1px solid var(--glass-border);
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

/* --- FORMS --- */
.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #22d3ee;
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.2);
    background: rgba(255,255,255,0.05);
}

textarea.form-control {
    height: 150px;
    resize: vertical;
}

/* --- FOOTER --- */
footer {
    background: var(--bg-section);
    padding: 60px 5% 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 40px;
}

.footer-brand h2 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 300px;
}

.footer-links h4 {
    margin-bottom: 20px;
    color: #fff;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #22d3ee;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- ANIMATIONS (JS Reveal) --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESPONSIVENESS --- */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-text p { margin: 0 auto 2.5rem; }
    .hero-ctas, .hero-stats { justify-content: center; }
    .hero-visual { display: none; /* Hide floating cards on smaller screens for cleaner look */ }
    .exp-row, .exp-row:nth-child(even) { grid-template-columns: 1fr; direction: ltr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    /* Transform Sidebar to Bottom Nav */
    .sidebar {
        width: 100%;
        height: var(--bottom-nav-h);
        top: auto;
        bottom: 0;
        flex-direction: row;
        border-right: none;
        border-top: 1px solid var(--glass-border);
    }
    
    .sidebar:hover { width: 100%; box-shadow: none; }
    .sidebar-header { display: none; }
    .sidebar-footer { display: none; }
    
    .nav-links {
        flex-direction: row;
        justify-content: space-around;
        padding: 0;
        align-items: center;
    }
    
    .nav-item { padding: 0; justify-content: center; }
    .nav-item i { font-size: 1.5rem; }
    .nav-text { display: none; }
    .nav-item.active::before {
        top: auto; bottom: 0; left: 50%; transform: translateX(-50%); width: 20px; height: 3px;
    }
    
    .main-wrapper { margin-left: 0; margin-bottom: var(--bottom-nav-h); }
    
    .hero-text h1 { font-size: 2.5rem; }
    .hero-stats { flex-direction: column; gap: 1rem; align-items: center;}
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-brand p { margin: 0 auto; }
}