/*
Theme Name: Surf Template
Theme URI: https://github.com/zziane/surf-template
Author: Zakaria Ziane
Author URI: https://github.com/zziane
Description: A modern WordPress theme for surf hostels with booking management
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: surf-template
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');

:root {
    --primary-color: #2c2c2c;
    --secondary-color: #4a4a4a;
    --accent-color: #2c2c2c;
    --text-dark: #2c2c2c;
    --text-light: #5a5a5a;
    --text-lighter: #888;
    --bg-light: rgb(244, 241, 234);
    --bg-cream: rgb(244, 241, 234);
    --bg-white: #ffffff;
    --white: #ffffff;
    --border-color: #d8d4cc;
    --border-light: rgba(0, 0, 0, 0.08);
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --gradient-primary: #2c2c2c;
    --gradient-overlay: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Playfair Display', Georgia, serif;
}

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

body {
    font-family: var(--font-body);
    line-height: 1.8;
    color: var(--text-dark);
    background-color: rgb(244, 241, 234);
    font-size: 16px;
    font-weight: 400;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: 0.02em;
}

h1 { font-size: 2.5rem; font-weight: 400; }
h2 { font-size: 2rem; font-weight: 400; }
h3 { font-size: 1.5rem; font-weight: 400; }

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

a:hover {
    color: var(--text-light);
}

/* Buttons */
.button {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.button-primary {
    background-color: var(--primary-color);
    color: var(--white);
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
}

.button-primary:hover {
    background-color: #1a1a1a;
    color: var(--white);
}

.button-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
}

.button-secondary:hover {
    background-color: var(--text-dark);
    color: rgb(244, 241, 234);
}

.button-large {
    padding: 16px 40px;
    font-size: 18px;
}

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

/* Header (will be customized) */
.site-header {
    background-color: #fff;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    width: 100%;
}

.site-header.scrolled {
    padding: 15px 0;
    background-color: rgba(250, 249, 246, 0.98);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    transition: all 0.3s ease;
}

.site-branding img,
.site-branding .custom-logo {
    max-height: 60px;
    width: auto;
    height: auto;
}

.scrolled .site-branding {
    transform: scale(0.9);
}

.site-title {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 400;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
}

.site-title a {
    text-decoration: none;
    color: var(--text-dark);
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation .menu-header-menu-container {
    width: 100%;
    text-align: center;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.main-navigation li {
    margin: 0;
}

.main-navigation a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    transition: color 0.3s ease;
    padding: 10px 0;
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 0.03em;
}

.main-navigation a:hover,
.main-navigation a:focus {
    color: var(--text-light);
}

.main-navigation .current-menu-item a,
.main-navigation .current_page_item a {
    color: var(--text-dark);
    font-weight: 500;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s ease;
}

.burger-line {
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    border-radius: 1px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgb(244, 241, 234);
        transition: right 0.3s ease;
        padding-top: 80px;
        z-index: 1000;
        overflow-y: auto;
    }

    .main-navigation.active {
        right: 0;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .main-navigation li {
        width: 100%;
        position: relative;
    }

    .main-navigation li::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 30px;
        right: 30px;
        height: 1px;
        background-color: var(--border-light);
    }

    .main-navigation li:last-child::after {
        display: none;
    }

    .main-navigation a {
        padding: 15px 30px;
        width: 100%;
    }

    .main-navigation a:hover,
    .main-navigation a:focus {
        background: var(--bg-light);
    }

    /* Overlay when menu is open */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    body.menu-open {
        overflow: hidden;
    }
}

/* ===================================
   FOOTER
   =================================== */

.site-footer {
    position: relative;
    background-color: #1a1a1a;
    color: rgba(244, 241, 234, 0.7);
    padding: 6rem 1.5rem 4rem;
    overflow: hidden;
    font-family: var(--font-heading);
}

/* Footer Decorative Elements */
.footer-top-glow {
    position: absolute;
    top: -10rem;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 18rem;
    background: linear-gradient(to bottom, rgba(255,255,255,0.03), transparent);
    filter: blur(3rem);
    pointer-events: none;
}

.footer-divider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.15), transparent);
}

/* Footer Grid */
.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 4rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Footer Brand */
.footer-brand-logo {
    position: relative;
    width: fit-content;
    margin-bottom: 1rem;
}

.footer-brand-logo img,
.footer-brand-logo .custom-logo {
    max-width: 5rem;
    height: auto;
    filter: brightness(0) invert(1) drop-shadow(0 8px 20px rgba(0,0,0,0.3));
}

.footer-site-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.05em;
}

.footer-logo-glow {
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    filter: blur(2rem);
    opacity: 0.3;
}

.footer-brand-location {
    margin-top: 1rem;
    font-size: 0.625rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    opacity: 0.5;
    line-height: 1.8;
}

.footer-brand-desc {
    max-width: 18rem;
    font-size: 0.8rem;
    font-weight: 300;
    opacity: 0.5;
    line-height: 1.7;
    margin-top: 1rem;
}

/* Footer Headings */
.site-footer h5 {
    font-size: 0.625rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-family: var(--font-heading);
}

/* Footer Links */
.footer-nav ul,
.footer-connect ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li,
.footer-connect li {
    margin-bottom: 0.75rem;
}

.footer-nav a,
.footer-connect a {
    font-size: 0.8rem;
    font-weight: 300;
    text-decoration: none;
    color: rgba(244, 241, 234, 0.6);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-connect a:hover {
    color: #fff;
}

/* Nav Hover Line */
.footer-nav a span {
    width: 0.75rem;
    height: 1px;
    background: rgba(255,255,255,0.3);
    transition: width 0.3s ease;
}

.footer-nav a:hover span {
    width: 1.5rem;
}

/* Footer Map */
.footer-map-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    border: 1px solid rgba(255,255,255,0.08);
}

.footer-map-wrapper iframe {
    width: 100%;
    height: 10rem;
    border: 0;
    filter: grayscale(100%) contrast(120%);
}

.footer-map-label {
    position: absolute;
    bottom: 0.5rem;
    left: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 9999px;
    font-size: 0.5625rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 4rem;
    text-align: center;
}

.footer-bottom-line {
    width: 4rem;
    height: 1px;
    margin: 0 auto 1rem;
    background: rgba(255,255,255,0.15);
}

.footer-bottom p {
    font-size: 0.625rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(244, 241, 234, 0.35);
    margin: 0;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .site-footer {
        padding: 4rem 1.25rem 3rem;
    }
    
    .footer-grid {
        gap: 3rem;
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Room & Package Cards */
.room-card,
.package-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    margin-bottom: 30px;
}

.room-card:hover,
.package-card:hover {
    border-color: var(--border-color);
}

.room-thumbnail,
.package-thumbnail {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.room-thumbnail img,
.package-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.room-card:hover .room-thumbnail img,
.package-card:hover .package-thumbnail img {
    transform: scale(1.05);
}

.room-badge,
.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    padding: 6px 14px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
}

.room-badge.private {
    background: rgba(255, 255, 255, 0.95);
}

.room-badge.shared {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
}

.room-card-content,
.package-card-content {
    padding: 20px;
}

.room-card-title,
.package-card-title {
    margin-bottom: 10px;
}

.room-card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.package-price {
    margin: 15px 0;
    font-size: 22px;
    font-weight: 500;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

.from-label {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
}

/* Archive Grid */
.surf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

/* Single Room/Package */
.surf-room,
.surf-package {
    max-width: 1000px;
    margin: 0px auto 40px auto;
}

.room-header,
.package-header {
    text-align: center;
    margin-bottom: 30px;
}

.room-meta,
.package-duration {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    color: var(--text-light);
}

.room-gallery,
.package-gallery {
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
}

/* ===================================
   BREADCRUMBS
   =================================== */

.gallery-breadcrumbs {
    background: rgb(244, 241, 234);
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 13px;
    font-family: var(--font-heading);
}

.breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    background: transparent;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    color: var(--text-light);
}

.breadcrumb-list li:not(:last-child)::after {
    content: "/";
    margin-left: 8px;
    color: var(--text-lighter);
    opacity: 0.5;
}

.breadcrumb-list li a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-list li a:hover {
    color: var(--text-dark);
}

.breadcrumb-list li.active {
    color: var(--text-dark);
    font-weight: 500;
}

@media (max-width: 768px) {
    .gallery-breadcrumbs {
        padding: 12px 0;
        font-size: 13px;
    }
    
    .breadcrumb-list {
        gap: 6px;
    }
    
    .breadcrumb-list li:not(:last-child)::after {
        margin-left: 6px;
    }
}

/* ===================================
   GALLERY LAYOUTS
   =================================== */

/* Carousel styles - Clean minimal */
.surf-carousel {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 4px;
    background: #f0ede6;
}

/* Multi-Banner Grid Layout */
.surf-multi-banner {
    position: relative;
    width: 100%;
    display: grid;
    gap: 8px;
    border-radius: 0;
    overflow: hidden;
    padding: 0;
    margin: 0 0 30px 0;
}

/* 2 images layout */
.surf-multi-banner.banner-count-2 {
    grid-template-columns: repeat(2, 1fr);
    height: 500px;
    gap: 8px;
}

.surf-multi-banner.banner-count-2 .banner-image {
    height: 500px;
    padding: 0;
}

/* 3 images layout - one large, two small */
.surf-multi-banner.banner-count-3 {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 600px;
    gap: 8px;
}

.surf-multi-banner.banner-count-3 .banner-image {
    padding: 0;
}

.surf-multi-banner.banner-count-3 .banner-image:first-child {
    grid-row: 1 / 3;
    height: 600px;
}

.surf-multi-banner.banner-count-3 .banner-image:nth-child(2),
.surf-multi-banner.banner-count-3 .banner-image:nth-child(3) {
    height: 296px;
}

/* 4 images layout - grid */
.surf-multi-banner.banner-count-4 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    height: 600px;
    gap: 8px;
}

.surf-multi-banner.banner-count-4 .banner-image {
    height: 296px;
    padding: 0;
}

/* 5+ images layout - Pinterest style */
.surf-multi-banner.banner-count-5,
.surf-multi-banner.banner-count-many {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    height: 608px;
    gap: 8px;
}

.surf-multi-banner.banner-count-5 .banner-image,
.surf-multi-banner.banner-count-many .banner-image {
    padding: 0;
}

.surf-multi-banner.banner-count-5 .banner-image:first-child,
.surf-multi-banner.banner-count-many .banner-image:first-child {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    height: 608px;
}

.surf-multi-banner.banner-count-5 .banner-image:not(:first-child),
.surf-multi-banner.banner-count-many .banner-image:not(:first-child) {
    height: 300px;
}

/* Individual banner image */
.banner-image {
    position: relative;
    overflow: hidden;
    background: #000;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
    margin: 0;
    border: none;
}

.banner-image:hover {
    opacity: 0.9;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    padding: 0;
    margin: 0;
    border: none;
}

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

/* View All Photos Overlay (for 5+ images) */
.banner-view-more {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.banner-view-more:hover {
    background: rgba(0, 0, 0, 0.85);
}

.banner-view-more span {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Multi-banner with title overlay */
.surf-multi-banner .package-hero-title,
.surf-multi-banner .package-duration-badge {
    position: absolute;
    z-index: 10;
}

.surf-multi-banner .package-hero-title {
    bottom: 0;
    left: 0;
    right: 0;
}

/* Responsive Multi-Banner */
@media (max-width: 1024px) {
    .surf-multi-banner.banner-count-5,
    .surf-multi-banner.banner-count-many {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .surf-multi-banner.banner-count-2,
    .surf-multi-banner.banner-count-3,
    .surf-multi-banner.banner-count-4,
    .surf-multi-banner.banner-count-5,
    .surf-multi-banner.banner-count-many {
        display: block;
        position: relative;
        height: 400px;
        margin-bottom: 30px;
    }
    
    .surf-multi-banner .banner-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 400px !important;
        grid-column: unset;
        grid-row: unset;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }
    
    .surf-multi-banner .banner-image.active {
        opacity: 1;
        pointer-events: auto;
        z-index: 1;
    }
    
    .surf-multi-banner .banner-image:first-child {
        grid-column: unset;
        grid-row: unset;
    }
    
    /* Add carousel controls for mobile multi-banner */
    .surf-multi-banner .carousel-prev,
    .surf-multi-banner .carousel-next {
        display: flex;
    }
    
    .surf-multi-banner .carousel-indicators {
        display: flex;
    }
}

.gallery-slider {
    display: flex;
    position: relative;
    width: 100%;
    height: 550px;
    cursor: grab;
    user-select: none;
    will-change: transform;
    transition: none;
    background: #f0ede6;
}

.gallery-slider.animating {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-slider.dragging {
    cursor: grabbing;
    transition: none;
}

.gallery-slider img {
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.gallery-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0ede6;
    padding: 0;
    margin: 0;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    padding: 0;
    margin: 0;
    border: none;
}

/* Carousel navigation buttons - Clean minimal */
.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    border: 1px solid var(--border-light);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--white);
    border-color: var(--text-dark);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Carousel indicators - Clean minimal */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
    background: transparent;
    padding: 8px 12px;
}

.carousel-indicators .indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-indicators .indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

.carousel-indicators .indicator.active {
    background: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-slider {
        height: 300px;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
}

.room-content,
.package-content {
    margin: 40px 0;
}

.room-equipments ul,
.includes-list,
.excludes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.room-equipments li,
.includes-list li,
.excludes-list li {
    padding: 12px 0;
    padding-left: 35px;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
}

.room-equipments li:last-child,
.includes-list li:last-child,
.excludes-list li:last-child {
    border-bottom: none;
}

.includes-list li:before {
    content: "🗸";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 18px;
    top: 12px;
}

.excludes-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: 700;
    font-size: 18px;
    top: 12px;
}

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

.package-includes,
.package-excludes {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
}

.package-includes h2,
.package-excludes h2 {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-light);
    font-family: var(--font-heading);
}

/* Pricing Table - Travel Monster Style */
.package-pricing {
    margin: 40px 0;
}

.pricing-option {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
}

.pricing-option .room-name {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-light);
    font-family: var(--font-heading);
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
}

.price-table th,
.price-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.price-table th {
    background: var(--bg-light);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-table tbody tr:last-child td {
    border-bottom: none;
}

.price-table tbody tr:hover {
    background: var(--bg-light);
}

.price-table .price {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

/* ===================================
   MODERN PACKAGE PAGE DESIGN
   =================================== */

.surf-package-modern {
    background: rgb(244, 241, 234);
}

/* Package Breadcrumbs */
.package-breadcrumbs {
    background: rgb(244, 241, 234);
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* Package Layout - Two Column */
.package-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

.package-main {
    min-width: 0;
}

/* Package Header Modern */
.package-header-modern {
    margin: 30px 0;
}

.package-header-content {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
}

.package-duration-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    height: 80px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    flex-shrink: 0;
}

.duration-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1;
}

.duration-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 4px;
}

.package-duration-tag svg {
    opacity: 0.7;
}

.package-title-modern {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 0;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-light);
}

.trust-item svg {
    color: #2a7d2a;
    flex-shrink: 0;
}

/* Package Sections */
.package-section {
    margin-bottom: 50px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.package-description-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.package-description-text p {
    margin-bottom: 1em;
}

/* Includes/Excludes Grid */
.includes-excludes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.includes-card,
.excludes-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.card-header.included {
    background: rgba(42, 125, 42, 0.06);
}

.card-header.included svg {
    color: #2a7d2a;
}

.card-header.excluded {
    background: rgba(180, 80, 80, 0.06);
}

.card-header.excluded svg {
    color: #b45050;
}

.card-header h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    color: var(--text-dark);
}

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

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 24px;
    font-size: 0.9rem;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

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

.feature-list.included li svg {
    color: #2a7d2a;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-list.excluded li svg {
    color: #b45050;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Pricing Cards */
.pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pricing-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 180px 1fr;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: rgba(0, 0, 0, 0.15);
}

.pricing-card-image {
    height: 100%;
    min-height: 160px;
}

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

.pricing-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.pricing-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    margin: 0 0 16px 0;
}

.pricing-card-title a {
    color: var(--text-dark);
    text-decoration: none;
}

.pricing-card-title a:hover {
    color: var(--text-light);
}

.pricing-table-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.pricing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(244, 241, 234, 0.7);
    padding: 10px 16px;
    border-radius: 6px;
    flex: 1;
    min-width: 140px;
}

.persons-count {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.persons-count svg {
    opacity: 0.6;
}

.price-amount {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.select-room-btn {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: flex-start;
}

.select-room-btn:hover {
    background: var(--text-dark);
    color: rgb(244, 241, 234);
}

/* Sidebar */
.package-sidebar {
    position: sticky;
    top: 100px;
}

/* Booking Card */
.booking-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
}

.booking-card-header {
    padding: 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: #fafaf8;
}

.price-display {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-lighter);
}

.price-value {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--text-dark);
}

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

.booking-card-body {
    padding: 24px;
}

.booking-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.highlight-item svg {
    color: var(--text-light);
}

.highlight-item div {
    display: flex;
    flex-direction: column;
}

.highlight-item strong {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.highlight-item span {
    font-size: 0.75rem;
    color: var(--text-lighter);
}

.book-now-btn-modern {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--text-dark);
    color: rgb(244, 241, 234);
    border: none;
    padding: 16px 24px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

.book-now-btn-modern:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
}

.inquiry-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: var(--text-dark);
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 14px 24px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: var(--font-heading);
    text-decoration: none;
    transition: all 0.3s ease;
}

.inquiry-btn:hover {
    border-color: var(--text-dark);
    background: rgba(0, 0, 0, 0.02);
}

.booking-card-footer {
    padding: 16px 24px;
    background: rgba(42, 125, 42, 0.04);
    border-top: 1px solid rgba(42, 125, 42, 0.1);
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #2a7d2a;
}

/* Help Card */
.help-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.help-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0 0 8px 0;
    color: var(--text-dark);
}

.help-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0 0 16px 0;
    line-height: 1.6;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: #25D366;
    color: #fff;
    padding: 14px 24px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: var(--font-heading);
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #1fb855;
    color: #fff;
}

/* Package Page Responsive */
@media (max-width: 1024px) {
    .package-layout {
        grid-template-columns: 1fr;
    }
    
    .package-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .package-title-modern {
        font-size: 1.8rem;
    }
    
    .trust-indicators {
        gap: 16px;
    }
    
    .pricing-card {
        grid-template-columns: 1fr;
    }
    
    .pricing-card-image {
        height: 180px;
    }
    
    .package-sidebar {
        grid-template-columns: 1fr;
    }
    
    .price-value {
        font-size: 1.8rem;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: auto;
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
}

.modal-close:hover {
    color: var(--text-dark);
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-dark);
}

.message {
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    
    .surf-grid {
        grid-template-columns: 1fr;
    }
    
    .room-meta,
    .package-duration {
        flex-direction: column;
        gap: 10px;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 20px;
    }
}

.menu{
    display: flex;
    gap: 20px;
    list-style: none;
}

/* ===================================
   TRAVEL MONSTER INSPIRED DESIGN
   =================================== */

/* Single Package/Room Layout */
.single-package-layout,
.single-room-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

.package-main-content {
    min-width: 0;
}

/* Hero Section with Gallery */
.package-hero {
    position: relative;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.package-hero-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%);
    color: var(--white);
    z-index: 2;
}

.package-hero-title h1 {
    color: var(--white);
    margin: 0;
    font-size: 2.2rem;
    font-weight: 400;
    font-family: var(--font-heading);
}

.package-duration-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 2px;
    font-weight: 500;
    font-size: 12px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
}

/* Tabbed Navigation */
.package-tabs {
    position: sticky;
    top: 80px;
    background: rgb(244, 241, 234);
    z-index: 100;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 30px;
    overflow-x: auto;
}

.package-tabs-nav {
    display: flex;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-tabs-nav li {
    flex: 1;
    min-width: 120px;
}

.package-tabs-nav button {
    width: 100%;
    padding: 18px 25px;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
    text-align: center;
    font-family: var(--font-heading);
    letter-spacing: 0.03em;
}

.package-tabs-nav button:hover {
    color: var(--text-dark);
}

.package-tabs-nav button.active {
    color: var(--text-dark);
    border-bottom-color: var(--text-dark);
}

.package-tab-content {
    display: none;
    animation: fadeIn 0.4s ease-in;
}

.package-tab-content.active {
    display: block;
}

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

/* Overview Section */
.package-overview {
    padding: 30px 0;
}

.package-overview h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

.package-highlights {
    background: rgba(244, 241, 234, 0.5);
    padding: 25px;
    border-radius: 4px;
    margin: 25px 0;
}

.package-highlights h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.package-highlights ul {
    list-style: none;
    padding: 0;
}

.package-highlights ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.8;
}

.package-highlights ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 18px;
}

/* Itinerary / Day by Day */
.package-itinerary {
    padding: 30px 0;
}

.itinerary-day {
    margin-bottom: 30px;
    padding: 25px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-left: 3px solid var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.itinerary-day:hover {
    border-color: var(--border-color);
    border-left-color: var(--text-dark);
}

.itinerary-day-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.day-number {
    background: var(--text-dark);
    color: rgb(244, 241, 234);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 16px;
    flex-shrink: 0;
    font-family: var(--font-heading);
}

.day-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0;
    font-family: var(--font-heading);
}

.day-description {
    color: var(--text-light);
    line-height: 1.8;
    padding-left: 65px;
}

/* Cost Section */
.package-cost-section {
    padding: 30px 0;
}

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

.cost-box {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 25px;
    transition: var(--transition);
}

.cost-box:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.cost-box h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-light);
    font-family: var(--font-heading);
}

.cost-box ul {
    list-style: none;
    padding: 0;
}

.cost-box ul li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-dark);
}

.cost-box ul li:last-child {
    border-bottom: none;
}

.cost-includes ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 16px;
}

.cost-excludes ul li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: 700;
    font-size: 16px;
}

/* FAQ Section */
.package-faq {
    padding: 30px 0;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-card);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: var(--bg-white);
    border: none;
    text-align: left;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    font-family: var(--font-heading);
}

.faq-question:hover {
    background: rgba(244, 241, 234, 0.5);
}

.faq-question.active {
    background: var(--text-dark);
    color: rgb(244, 241, 234);
}

.faq-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--bg-white);
}

.faq-answer.active {
    max-height: 500px;
    padding: 20px;
    border-top: 1px solid var(--border-light);
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* Map Section */
.package-map {
    padding: 30px 0;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 20px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Sidebar */
.package-sidebar {
    position: sticky;
    top: 80px;
    height: fit-content;
}

/* Pricing Widget */
.pricing-widget {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 30px;
    margin-bottom: 30px;
}

.pricing-header {
    margin-bottom: 20px;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 15px 0;
}

.price-from {
    font-size: 14px;
    color: var(--text-light);
}

.price-original {
    font-size: 20px;
    color: var(--text-lighter);
    text-decoration: line-through;
}

.price-current {
    font-size: 28px;
    font-weight: 500;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

.price-unit {
    font-size: 14px;
    color: var(--text-light);
}

.discount-badge {
    display: inline-block;
    background: var(--text-dark);
    color: rgb(244, 241, 234);
    padding: 4px 10px;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 500;
    margin-left: 10px;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
}

.pricing-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.btn-primary-action {
    width: 100%;
    padding: 15px;
    background: var(--text-dark);
    color: rgb(244, 241, 234);
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
    display: block;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
}

.btn-primary-action:hover {
    background: #1a1a1a;
    color: rgb(244, 241, 234);
}

.btn-secondary-action {
    width: 100%;
    padding: 15px;
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
    display: block;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
}

.btn-secondary-action:hover {
    background: var(--text-dark);
    color: rgb(244, 241, 234);
}

/* Info Widget */
.info-widget {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 25px;
    margin-bottom: 30px;
}

.info-widget h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-light);
}

.info-item:last-child {
    border-bottom: none;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: rgb(244, 241, 234);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 18px;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

.info-label {
    font-size: 12px;
    color: var(--text-lighter);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.info-value {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
}

/* Enquiry Form Widget */
.enquiry-widget {
    background: rgb(244, 241, 234);
    border-radius: 4px;
    padding: 25px;
    margin-bottom: 30px;
}

.enquiry-widget h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

.enquiry-widget .form-group {
    margin-bottom: 15px;
}

.enquiry-widget input,
.enquiry-widget select,
.enquiry-widget textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    background: var(--bg-white);
}

.enquiry-widget textarea {
    min-height: 100px;
    resize: vertical;
}

.enquiry-widget .button {
    width: 100%;
}

/* Related Packages/Rooms Section */
.related-packages,
.featured-packages {
    margin: 60px 0;
    padding: 50px 0;
    background: rgb(244, 241, 234);
}

.related-packages h2,
.featured-packages h2 {
    font-size: 1.8rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Enhanced Package Cards */
.package-card-modern {
    background: var(--bg-white);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
}

.package-card-modern:hover {
    border-color: var(--border-color);
}

.package-card-modern .card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.package-card-modern .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-card-modern:hover .card-image img {
    transform: scale(1.1);
}

.package-card-modern .discount-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--text-dark);
    color: rgb(244, 241, 234);
    padding: 6px 12px;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 500;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
}

.package-card-modern .featured-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    padding: 6px 12px;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
}

.package-card-modern .card-body {
    padding: 20px;
}

.package-card-modern .card-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
}

.package-card-modern .card-title a {
    color: var(--text-dark);
    text-decoration: none;
}

.package-card-modern .card-title a:hover {
    color: var(--text-light);
}

.package-card-modern .card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-light);
}

.package-card-modern .card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.package-card-modern .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-light);
}

.package-card-modern .card-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.package-card-modern .price-old {
    font-size: 16px;
    color: var(--text-lighter);
    text-decoration: line-through;
}

.package-card-modern .price-new {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

.package-card-modern .card-activities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.package-card-modern .activity-tag {
    font-size: 11px;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-light);
    border-radius: 2px;
    font-family: var(--font-heading);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .single-package-layout,
    .single-room-layout {
        grid-template-columns: 1fr;
    }
    
    .package-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .package-hero-title h1 {
        font-size: 1.8rem;
    }
    
    .package-tabs {
        top: 60px;
    }
    
    .package-tabs-nav {
        overflow-x: scroll;
    }
    
    .package-tabs-nav button {
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .cost-grid {
        grid-template-columns: 1fr;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-widget,
    .info-widget,
    .enquiry-widget {
        margin-bottom: 20px;
    }
    
    .itinerary-day {
        padding: 20px;
    }
    
    .day-description {
        padding-left: 0;
        margin-top: 15px;
    }
}

/* ===================================
   GALLERY LIGHTBOX MODAL
   =================================== */

.gallery-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-lightbox.active {
    display: block;
    opacity: 1;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    z-index: 100001;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    z-index: 100001;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90vw;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    object-fit: contain;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    animation: lightboxZoomIn 0.3s ease;
}

@keyframes lightboxZoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.lightbox-thumbnails {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    max-width: 90vw;
    overflow-x: auto;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    z-index: 100001;
}

.lightbox-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.lightbox-thumbnails::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.lightbox-thumbnails::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.lightbox-thumbnails::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.lightbox-thumb {
    width: 80px;
    height: 60px;
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition);
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.lightbox-thumb:hover {
    opacity: 0.8;
}

.lightbox-thumb.active {
    opacity: 1;
    border-color: var(--white);
}

.lightbox-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Make gallery images clickable - show pointer cursor */
.surf-carousel .gallery-slide,
.surf-multi-banner .banner-image {
    cursor: pointer;
}

/* Responsive Lightbox */
@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 28px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-content {
        max-width: 95vw;
        max-height: 85vh;
    }

    .lightbox-image {
        max-height: 60vh;
    }

    .lightbox-thumbnails {
        bottom: 10px;
        max-width: 95vw;
        padding: 8px;
    }

    .lightbox-thumb {
        width: 60px;
        height: 45px;
    }

    .lightbox-counter {
        bottom: -35px;
        font-size: 12px;
        padding: 6px 15px;
    }
}