:root {
    /* Color System */
    --bg-primary: #1A0F0A;
    --bg-secondary: #2A140D;
    --accent-primary: linear-gradient(135deg, #FF7A18, #FFB347);
    --accent-secondary: linear-gradient(135deg, #DC2626, #7F1D1D);
    --highlight: #FDBA74;
    --text-primary: #F9FAFB;
    --text-secondary: #E5E7EB;
    --text-muted: #9CA3AF;
    
    /* Glass UI */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 122, 24, 0.2);
    --glass-blur: blur(18px);

    /* Layout */
    --sidebar-collapsed: 80px;
    --sidebar-expanded: 240px;
    --transition-speed: 0.3s;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

ul {
    list-style: none;
}

/* Typography Helpers */
.gradient-text {
    background: var(--accent-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-highlight { color: var(--highlight); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 48px;
    font-weight: 500;
    transition: all var(--transition-speed);
    cursor: pointer;
    text-align: center;
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--accent-primary);
    color: #1A0F0A;
}

.btn-primary:hover {
    background: var(--accent-secondary);
    color: var(--text-primary);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--highlight);
    border: 1px solid var(--highlight);
}

.btn-secondary:hover {
    background: var(--glass-bg);
    box-shadow: 0 0 15px rgba(255, 122, 24, 0.2);
}

.full-width {
    width: 100%;
}

/* Images */
.card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.rounded-img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.shadow-orange { box-shadow: 0 10px 30px rgba(255, 122, 24, 0.2); }
.shadow-red { box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2); }

/* Sidebar Navigation */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: var(--sidebar-collapsed);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-right: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    transition: width var(--transition-speed) ease, box-shadow var(--transition-speed);
    z-index: 100;
    overflow-x: hidden;
    white-space: nowrap;
}

.sidebar:hover {
    width: var(--sidebar-expanded);
    box-shadow: 5px 0 25px rgba(255, 122, 24, 0.15);
}

.logo {
    display: flex;
    align-items: center;
    height: 80px;
    color: var(--highlight);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 0;
}

.logo i {
    min-width: var(--sidebar-collapsed);
    text-align: center;
}

.logo span {
    opacity: 0;
    transition: opacity var(--transition-speed);
}

.sidebar:hover .logo span {
    opacity: 1;
}

.nav-links {
    flex-grow: 1;
    margin-top: 2rem;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    color: var(--text-secondary);
    transition: all var(--transition-speed);
    position: relative;
}

.nav-link i {
    min-width: var(--sidebar-collapsed);
    text-align: center;
    font-size: 1.2rem;
}

.nav-link span {
    opacity: 0;
    transition: opacity var(--transition-speed);
}

.sidebar:hover .nav-link span {
    opacity: 1;
}

.nav-link:hover, .nav-link.active {
    color: var(--highlight);
    background: rgba(255, 122, 24, 0.1);
}

.nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--accent-primary);
}

.sidebar-cta {
    padding: 2rem 0;
    display: flex;
    justify-content: center;
}

.sidebar-btn {
    width: 50px;
    height: 50px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-speed);
    overflow: hidden;
}

.sidebar-btn i {
    min-width: 50px;
    text-align: center;
}

.sidebar-btn span {
    display: none;
}

.sidebar:hover .sidebar-btn {
    width: calc(var(--sidebar-expanded) - 40px);
    border-radius: 48px;
    justify-content: flex-start;
}

.sidebar:hover .sidebar-btn i {
    min-width: 40px;
    margin-left: 10px;
}

.sidebar:hover .sidebar-btn span {
    display: inline;
    margin-left: 10px;
}

/* Mobile Header */
.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--bg-secondary);
    z-index: 1000;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid var(--glass-border);
}

.logo-mobile {
    color: var(--highlight);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
}

#mobile-toggle {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Main Content Layout */
.main-content {
    margin-left: var(--sidebar-collapsed);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Hero Sections */
.hero, .page-header {
    background-size: cover;
    background-position: center;
    padding: 100px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero {
    min-height: 100vh;
}

.page-header {
    min-height: 40vh;
    text-align: center;
    align-items: center;
}

.hero-content {
    max-width: 800px;
}

.hero h1, .page-header h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

.hero p, .page-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
}

.page-header p {
    margin: 0 auto;
}

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

/* Sections & Grids */
.features-section, .resorts-grid-section, .content-section, .resort-detail-content {
    padding: 80px 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

.grid-2-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.align-center {
    align-items: center;
}

/* Glass Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 122, 24, 0.1);
    border-color: rgba(255, 122, 24, 0.4);
}

/* Resort Cards */
.resort-card {
    padding: 0;
    overflow: hidden;
}

.resort-card-content {
    padding: 1.5rem;
}

.resort-card .card-img {
    margin-bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.resort-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.price-badge {
    background: var(--accent-primary);
    color: #1A0F0A;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.location {
    color: var(--highlight);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.amenities-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin: 1.5rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.amenities-list i {
    color: var(--highlight);
    width: 20px;
}

/* Detail Page */
.detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.highlight-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.highlight-list li:last-child {
    border-bottom: none;
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform var(--transition-speed);
}

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

/* Pricing Page */
.pricing-card {
    position: relative;
    padding: 3rem 2rem;
}

.featured-price {
    border-color: var(--highlight);
    transform: scale(1.05);
}

.featured-price:hover {
    transform: scale(1.05) translateY(-5px);
}

.badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--accent-primary);
    color: #1A0F0A;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.price-display {
    margin: 1.5rem 0;
}

.price-display .currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.price-display .amount {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--highlight);
}

.pricing-features li {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
}

.pricing-table th, .pricing-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.pricing-table th {
    color: var(--highlight);
    font-family: 'Playfair Display', serif;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--highlight);
    box-shadow: 0 0 10px rgba(255, 122, 24, 0.2);
}

.info-block {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-block i {
    font-size: 1.5rem;
    margin-top: 5px;
}

/* Footer */
.site-footer {
    background: #0d0705;
    padding: 3rem 5% 1.5rem;
    margin-top: auto;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 2rem;
}

.footer-brand h3 {
    color: var(--highlight);
    margin-bottom: 0.5rem;
}

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

.footer-links a:hover {
    color: var(--highlight);
}

/* Utilities & Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

.legal-card {
    max-width: 900px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .hero h1, .page-header h1 { font-size: 2.8rem; }
    .detail-grid { grid-template-columns: 1fr; }
    .featured-price { transform: scale(1); }
    .featured-price:hover { transform: translateY(-5px); }
}

@media (max-width: 768px) {
    .mobile-header { display: flex; }
    
    .sidebar {
        transform: translateX(-100%);
        width: var(--sidebar-expanded);
        z-index: 1001;
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .sidebar .logo span, .sidebar .nav-link span, .sidebar .sidebar-btn span {
        opacity: 1;
        display: inline;
    }

    .sidebar .sidebar-btn {
        width: calc(100% - 40px);
        border-radius: 48px;
        justify-content: flex-start;
    }

    .main-content {
        margin-left: 0;
        padding-top: 60px;
    }

    .grid-3, .grid-2, .grid-2-form {
        grid-template-columns: 1fr;
    }

    .order-2-mobile {
        order: 2;
    }

    .hero {
        text-align: center;
        align-items: center;
    }

    .hero p {
        margin: 0 auto 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-links a {
        margin: 0 10px;
    }
}