:root {
    --primary-color: #1a5f4a;
    --primary-light: #2d8a6e;
    --primary-dark: #0d3d2f;
    --secondary-color: #d4a574;
    --accent-color: #e8c4a0;
    --dark-color: #1a1a2e;
    --text-color: #2d2d44;
    --text-light: #6b6b80;
    --bg-cream: #faf7f2;
    --bg-warm: #f5efe6;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #1a5f4a 0%, #2d8a6e 100%);
    --gradient-warm: linear-gradient(135deg, #d4a574 0%, #e8c4a0 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-color);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 1rem 0;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

.navbar {
    padding: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.brand-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.brand-accent {
    color: var(--primary-color);
}

.site-header:not(.scrolled) .brand-text {
    color: var(--white);
}

.site-header:not(.scrolled) .brand-icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark-color);
    padding: 0.75rem 1.25rem;
    position: relative;
    transition: var(--transition);
}

.site-header:not(.scrolled) .navbar-nav .nav-link {
    color: var(--white);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 0.75rem;
    margin-top: 0.5rem;
}

.dropdown-item {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--bg-warm);
    color: var(--primary-color);
}

.burger-menu {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.burger-menu:hover {
    transform: scale(1.05);
}

.burger-line {
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu {
    background: var(--bg-cream);
    width: 320px;
}

.mobile-menu .offcanvas-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1.5rem;
}

.mobile-menu .offcanvas-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.mobile-menu .btn-close {
    filter: brightness(0) invert(1);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 10px;
    transition: var(--transition);
    font-weight: 500;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: var(--primary-color);
    color: var(--white);
}

.mobile-nav-section {
    margin: 1rem 0;
    padding: 0.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-nav-heading {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    padding: 0.5rem 1.25rem;
    margin-bottom: 0.25rem;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(26, 95, 74, 0.9) 0%, rgba(26, 26, 46, 0.85) 100%),
                url('https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Suria_KLCC%2C_Kuala_Lumpur_%28February_2007%29.jpg/1280px-Suria_KLCC%2C_Kuala_Lumpur_%28February_2007%29.jpg') center/cover no-repeat;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 6rem 0 4rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    color: var(--white);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-title span {
    color: var(--secondary-color);
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

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

.btn-primary-custom {
    background: var(--gradient-warm);
    color: var(--dark-color);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
    color: var(--dark-color);
}

.btn-secondary-custom {
    background: transparent;
    color: var(--white);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary-custom:hover {
    background: var(--white);
    color: var(--dark-color);
    border-color: var(--white);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: rotate(3deg);
}

.hero-image-main img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-floating-card {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-floating-card.card-1 {
    bottom: -20px;
    left: -40px;
    animation: float 4s ease-in-out infinite;
}

.hero-floating-card.card-2 {
    top: 40px;
    right: -30px;
    animation: float 4s ease-in-out infinite 1s;
}

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

.floating-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.floating-icon.green {
    background: rgba(26, 95, 74, 0.1);
    color: var(--primary-color);
}

.floating-icon.orange {
    background: rgba(212, 165, 116, 0.2);
    color: var(--secondary-color);
}

.floating-text strong {
    display: block;
    font-weight: 600;
    color: var(--dark-color);
}

.floating-text span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.section-padding {
    padding: 6rem 0;
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(26, 95, 74, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
}

.featured-hostels {
    background: var(--white);
    position: relative;
}

.featured-hostels::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: var(--gradient-dark);
    z-index: 0;
}

.featured-hostels .container {
    position: relative;
    z-index: 1;
}

.featured-hostels .section-badge {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.featured-hostels .section-title,
.featured-hostels .section-subtitle {
    color: var(--white);
}

.hostel-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hostel-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.hostel-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.hostel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.hostel-card:hover .hostel-image img {
    transform: scale(1.08);
}

.hostel-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.hostel-rating {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--white);
    color: var(--primary-color);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.hostel-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.hostel-location {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.hostel-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.hostel-name a {
    color: var(--dark-color);
    text-decoration: none;
    transition: var(--transition);
}

.hostel-name a:hover {
    color: var(--primary-color);
}

.hostel-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.hostel-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.amenity-tag {
    background: var(--bg-warm);
    color: var(--text-color);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.hostel-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.hostel-price {
    font-size: 0.85rem;
    color: var(--text-light);
}

.hostel-price strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--primary-color);
}

.btn-view {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.btn-view:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 95, 74, 0.35);
    color: var(--white);
}

.intro-section {
    background: var(--bg-warm);
    position: relative;
    overflow: hidden;
}

.intro-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    opacity: 0.05;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a5f4a' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.intro-content {
    position: relative;
    z-index: 1;
}

.intro-text {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--text-color);
}

.intro-text p {
    margin-bottom: 1.5rem;
}

.intro-highlight {
    background: var(--white);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem 2rem;
    border-radius: 0 12px 12px 0;
    margin: 2rem 0;
}

.intro-highlight p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-style: italic;
    color: var(--dark-color);
    margin-bottom: 0;
}

.intro-image {
    position: relative;
}

.intro-image img {
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.intro-image-badge {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.intro-image-badge strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.intro-image-badge span {
    font-size: 0.85rem;
    opacity: 0.9;
}

.tips-section {
    background: var(--white);
}

.tip-card {
    background: var(--bg-cream);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
    border: 1px solid transparent;
}

.tip-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.tip-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.tip-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.tip-text {
    color: var(--text-light);
    font-size: 0.95rem;
}

.cta-section {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='1' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.site-footer {
    background: var(--dark-color);
    color: rgba(255, 255, 255, 0.8);
    position: relative;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    width: 100%;
    height: 60px;
    fill: var(--white);
}

.footer-content {
    padding: 5rem 0 2rem;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.footer-contact i {
    color: var(--secondary-color);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-size: 0.85rem;
    margin-bottom: 0;
}

.footer-legal {
    text-align: right;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--secondary-color);
}

.footer-legal .separator {
    margin: 0 0.75rem;
    opacity: 0.5;
}

.update-info {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 1.5rem;
    animation: slideUp 0.4s ease-out;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-text h5 i {
    color: var(--primary-color);
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
    max-width: 700px;
}

.cookie-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-cookie-accept {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 95, 74, 0.35);
}

.btn-cookie-reject {
    background: transparent;
    color: var(--text-color);
    border: 2px solid rgba(0, 0, 0, 0.15);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-reject:hover {
    border-color: var(--text-color);
}

.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
}

.page-hero-bukit {
    background: linear-gradient(135deg, rgba(26, 95, 74, 0.9) 0%, rgba(26, 26, 46, 0.85) 100%),
                url('https://upload.wikimedia.org/wikipedia/commons/thumb/f/f6/1_Bukit_Bintang_Kuala_Lumpur.jpg/1280px-1_Bukit_Bintang_Kuala_Lumpur.jpg') center/cover no-repeat;
}

.page-hero-chinatown {
    background: linear-gradient(135deg, rgba(26, 95, 74, 0.9) 0%, rgba(26, 26, 46, 0.85) 100%),
                url('https://upload.wikimedia.org/wikipedia/commons/thumb/9/9f/Kuala_Lumpur_Chinatown%2C_Pair_of_dragons_ornamenting_a_Chinese_temple.jpg/1280px-Kuala_Lumpur_Chinatown%2C_Pair_of_dragons_ornamenting_a_Chinese_temple.jpg') center/cover no-repeat;
}

.page-hero-tips {
    background: linear-gradient(135deg, rgba(26, 95, 74, 0.9) 0%, rgba(26, 26, 46, 0.85) 100%),
                url('https://upload.wikimedia.org/wikipedia/commons/thumb/3/3e/KL_Sentral_station_%28Kuala_Lumpur_Monorail%29_%28exterior%29%2C_Kuala_Lumpur.jpg/1280px-KL_Sentral_station_%28Kuala_Lumpur_Monorail%29_%28exterior%29%2C_Kuala_Lumpur.jpg') center/cover no-repeat;
}

.page-hero-about {
    background: linear-gradient(135deg, rgba(26, 95, 74, 0.9) 0%, rgba(26, 26, 46, 0.85) 100%),
                url('https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/Kuala_Lumpur_at_night.jpg/1280px-Kuala_Lumpur_at_night.jpg') center/cover no-repeat;
}

.page-hero-contact {
    background: linear-gradient(135deg, rgba(26, 95, 74, 0.9) 0%, rgba(26, 26, 46, 0.85) 100%),
                url('https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/KL-Monorail.JPG/1280px-KL-Monorail.JPG') center/cover no-repeat;
}

.page-hero-privacy {
    background: var(--gradient-dark);
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.page-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.page-breadcrumb a:hover {
    color: var(--white);
}

.page-breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

.page-breadcrumb .current {
    color: var(--secondary-color);
}

.page-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
}

.article-content {
    background: var(--white);
}

.article-body {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.05rem;
    line-height: 1.9;
}

.article-body h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1.25rem;
    padding-top: 1rem;
}

.article-body h3 {
    font-size: 1.35rem;
    margin: 2rem 0 1rem;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body ul,
.article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-body li {
    margin-bottom: 0.75rem;
}

.article-image {
    margin: 2rem 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-image figcaption {
    background: var(--bg-cream);
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
}

.hostel-detail-card {
    background: var(--bg-cream);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
}

.hostel-detail-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.hostel-detail-card .rating {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hostel-detail-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.hostel-detail-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hostel-detail-card li:last-child {
    border-bottom: none;
}

.hostel-detail-card li i {
    color: var(--primary-color);
    width: 20px;
}

.article-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--bg-cream);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-widget h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
}

.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-links li {
    margin-bottom: 0.5rem;
}

.sidebar-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 0.9rem;
}

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

.sidebar-links a i {
    color: var(--primary-color);
}

.external-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.external-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

.external-link i {
    color: var(--primary-color);
}

.external-link:hover i {
    color: var(--white);
}

.about-section .about-content {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.05rem;
    line-height: 1.9;
}

.about-section .about-content p {
    margin-bottom: 1.5rem;
}

.team-card {
    background: var(--bg-cream);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--primary-color);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-form-section {
    background: var(--white);
}

.contact-form {
    background: var(--bg-cream);
    border-radius: 20px;
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.form-control {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(26, 95, 74, 0.1);
}

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

.btn-submit {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 95, 74, 0.35);
}

.contact-info-card {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 2.5rem;
    color: var(--white);
    height: 100%;
}

.contact-info-card h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-info-text h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--white);
}

.contact-info-text p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.contact-info-text a {
    color: var(--white);
    text-decoration: none;
}

.contact-info-text a:hover {
    text-decoration: underline;
}

.privacy-content {
    background: var(--white);
}

.privacy-body {
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    line-height: 1.85;
}

.privacy-body h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.privacy-body h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.75rem;
}

.privacy-body p {
    margin-bottom: 1.25rem;
}

.privacy-body ul {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.privacy-body li {
    margin-bottom: 0.5rem;
}

.image-credit {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    font-style: italic;
}

@media (max-width: 991px) {
    .hero-stats {
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .hero-image-wrapper {
        margin-top: 3rem;
    }
    
    .hero-floating-card.card-1,
    .hero-floating-card.card-2 {
        display: none;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 4rem 0;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
    
    .footer-legal {
        text-align: center;
        margin-top: 1rem;
    }
    
    .footer-bottom .row {
        text-align: center;
    }
    
    .article-sidebar {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 575px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-actions {
        flex-direction: column;
    }
    
    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }
}
