:root {
    --primary: #c29a62;
    --primary-dark: #a68152;
    --secondary: #1a1a1a;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #999999;
    --bg-light: #f5f5f5;
    --bg-dark: #0d0d0d;
    --card-bg: rgba(255, 255, 255, 0.05);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --border-color: rgba(0, 0, 0, 0.1);
    --border-light: rgba(255, 255, 255, 0.15);
    --transition: all 0.3s ease;
    --container-max: 1200px;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.5;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 2px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(194, 154, 99, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
}

.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--secondary);
    transform: translateY(-2px);
}

.section-padding {
    padding: 65px 0;
}

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

.section-subtitle {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 36px;
    margin-bottom: 20px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
    color: var(--text-light);
    transition: var(--transition);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent !important;
}

/* Nav - fully transparent */
.nav-menu {
    background: transparent !important;
    background-color: transparent !important;
}

.nav-menu ul {
    display: flex;
    gap: 35px;
    background: transparent !important;
    background-color: transparent !important;
}

.nav-menu li {
    background: transparent !important;
}

.nav-menu a {
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    color: var(--text-light);
    opacity: 0.9;
    transition: var(--transition);
    background: transparent !important;
    position: relative;
    padding-bottom: 4px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
    opacity: 1;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* ===== PACKAGES NAV DROPDOWN ===== */
.nav-has-dropdown {
    position: relative;
}

.nav-arrow {
    font-size: 9px;
    margin-left: 5px;
    transition: transform 0.3s ease;
    display: inline-block;
    vertical-align: middle;
}

.nav-has-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}

/* Suppress underline on the parent link arrow */
.nav-has-dropdown > a::after {
    display: none !important;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 280px;
    background: rgba(18, 18, 18, 0.65);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.05);
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px !important;
    /* Hidden by default */
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(-10px);
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

/* Invisible bridge to prevent hover loss */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
}

.nav-has-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

/* Dropdown items */
.nav-dropdown-menu li {
    background: transparent !important;
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    color: rgba(255,255,255,0.7) !important;
    font-weight: 400;
    opacity: 1 !important;
    background: transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-dropdown-menu a::after {
    display: none !important;
}

.nav-dropdown-menu a:hover {
    background: rgba(201, 168, 76, 0.12) !important;
    color: #fff !important;
    transform: translateX(4px);
}

.nav-dd-icon {
    width: 42px;
    height: 42px;
    background: rgba(201, 168, 76, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-dd-icon i {
    color: #c9a84c;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-dropdown-menu a:hover .nav-dd-icon {
    background: #c9a84c !important;
    transform: scale(1.05);
}

.nav-dropdown-menu a:hover .nav-dd-icon i {
    color: #111;
}

.nav-dd-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.nav-dd-text strong {
    display: block;
    font-size: 14.5px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.nav-dropdown-menu a:hover .nav-dd-text strong {
    color: #c9a84c;
}

.nav-dd-text small {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-dropdown-menu a:hover .nav-dd-text small {
    color: rgba(255,255,255,0.75);
}


.logo img {
    height: 80px;
    width: auto;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.header-cta-call {
    color: var(--primary);
    border: 1px solid rgba(255,255,255,0.25);
}

.header-cta-wa {
    color: #fff;
    background: #25D366;
    border: 1px solid #25D366;
}

.header-cta:hover {
    transform: translateY(-2px);
    opacity: 1;
}

.mobile-toggle {
    display: none;
    font-size: 28px;
    color: var(--text-light);
    cursor: pointer;
}

.mobile-menu-header {
    display: none;
}

/* Hero */
.hero {
    height: 100vh;
    min-height: 700px;
    background-size: cover;
    background-position: center right;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    color: var(--text-light);
    background-color: var(--bg-dark);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    z-index: 1;
}

.hero .container {
    width: 100%;
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 650px;
    text-align: left;
    margin-left: 0;
}

.hero-content h1 {
    font-size: 82px;
    line-height: 1;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -2px;
}

.hero-content .highlight {
    color: #c29a62 !important;
    display: inline-block;
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 45px;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.5;
    color: #f0f0f0;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
}

.hero-contact i {
    font-size: 20px;
}

/* Categories Grid */
.cat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.cat-card {
    position: relative;
    height: 380px;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.cat-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 35px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    color: var(--text-light);
}

.cat-overlay h3 {
    color: var(--text-light);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.cat-overlay i {
    color: var(--primary);
    margin-right: 10px;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background-color: #111111;
    color: var(--text-light);
    padding: 60px 0;
    border-radius: 4px;
    margin-top: -50px;
    position: relative;
    z-index: 20;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
}

.feature-item {
    padding: 0 30px;
    position: relative;
}

.feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.15);
}

.feature-item i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 25px;
    display: inline-block;
}

.feature-icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 25px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.feature-icon-placeholder {
    width: 60px;
    height: 60px;
    border: 2px dashed var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    opacity: 0.5;
}

.feature-icon-placeholder::after {
    content: '+';
    font-size: 30px;
    color: var(--primary);
}

.feature-item h4 {
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.feature-item p {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.6;
    max-width: 200px;
    margin: 0 auto;
}

/* Hotel/Cruise Grid */
.items-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cruise-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.item-card {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    height: 320px;
    transition: var(--transition);
}

.cruise-card {
    height: auto;
    width: 100%;
    aspect-ratio: 16/9;
}

.item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

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

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

.item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: #ffffff;
}

.item-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
}

/* Testimonials */
.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

#about .section-title {
    color: #1a1a1b;
}

.test-card {
    background: var(--text-light);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.test-quote-container {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-grow: 1;
}

.test-quote-icon {
    color: #c29a62;
    font-size: 24px;
    opacity: 0.6;
    margin-top: 5px;
}

.test-quote {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin: 0;
    font-style: normal;
}

.test-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.test-user img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.test-user-info h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1b;
}

.test-user-info span {
    font-size: 14px;
    color: #888;
}

/* CTA Banner */
.cta-banner {
    background-color: #1e1b18;
    color: var(--text-light);
    padding: 70px 0;
    text-align: center;
}

.cta-banner-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 0;
}

.cta-banner-inner h2 {
    font-size: 36px;
    margin-bottom: 8px;
}

/* Footer */
footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 90px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
    gap: 35px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 25px;
    line-height: 1.6;
    padding-right: 30px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

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

.footer-col h5 {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col a {
    font-size: 14px;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-col a:hover {
    opacity: 1;
    color: var(--primary);
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
    padding: 14px 20px;
    color: var(--text-light);
    border-radius: 2px 0 0 2px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
}

.newsletter-form input::placeholder {
    color: var(--primary);
    opacity: 0.8;
}

.newsletter-form button {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: #fff;
    padding: 0 25px;
    border-radius: 0 2px 2px 0;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
    font-size: 13px;
    opacity: 0.5;
}

/* Page Template */
.page-content {
    padding: 0;
    margin: 0;
}

.site-main,
.entry-content,
#content,
#primary,
main {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
}

.page-title {
    font-size: 48px;
    margin-bottom: 30px;
    color: var(--secondary);
}

.page-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.page-body p {
    margin-bottom: 20px;
}

.page-body h2 {
    font-size: 32px;
    margin: 30px 0 15px;
}

.page-body h3 {
    font-size: 24px;
    margin: 25px 0 12px;
}

/* Logo size fix */
.custom-logo {
    max-height: 80px !important;
    width: auto !important;
}

.custom-logo-link {
    display: flex;
    align-items: center;
}

.logo .custom-logo-link img,
.logo .custom-logo-link img.custom-logo {
    height: 80px !important;
    width: auto !important;
    max-width: none !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-content h1 {
        font-size: 58px;
    }

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

    .items-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cruise-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        gap: 30px;
        padding: 40px 25px;
        margin-top: -30px;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--bg-dark) !important;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        z-index: 999;
    }

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

    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-header img {
        height: 40px;
        width: auto;
    }

    .menu-close {
        background: none;
        border: none;
        color: var(--text-light);
        font-size: 24px;
        cursor: pointer;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 20px;
        background: transparent !important;
    }

    .nav-menu a {
        font-size: 16px;
        color: var(--text-light);
    }

    /* Mobile: Packages dropdown as accordion */
    .nav-has-dropdown > a .nav-arrow {
        float: right;
        margin-top: 3px;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none !important;
        opacity: 1;
        pointer-events: all;
        background: rgba(255,255,255,0.04);
        border: none;
        border-left: 2px solid rgba(201,168,76,0.4);
        border-radius: 0;
        box-shadow: none;
        backdrop-filter: none;
        padding: 8px 0 8px 12px;
        margin-top: 8px;
        display: none;
        flex-direction: column;
        gap: 0;
    }

    .nav-dropdown-menu::before { display: none; }

    .nav-has-dropdown.mobile-open .nav-dropdown-menu {
        display: flex;
    }

    .nav-dropdown-menu a {
        padding: 10px 10px;
        border-radius: 8px;
    }

    .nav-dd-icon {
        width: 30px;
        height: 30px;
    }

    .header-cta span {
        display: none;
    }

    .header-cta {
        min-height: 38px;
        padding: 10px;
        border-radius: 5px;
        font-size: 14px;
    }

    .header-cta i {
        margin: 0;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 20px;
        gap: 25px;
        margin-top: 0;
        margin-bottom: 40px;
    }

    .feature-item i {
        font-size: 32px;
    }

    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .cat-card {
        height: 180px;
    }

    .cat-overlay {
        padding: 15px;
    }

    .cat-overlay h3 {
        font-size: 18px;
    }

    .items-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .item-card {
        height: 220px;
    }

    .test-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .cruise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .cruise-card {
        height: auto;
        width: 100%;
        aspect-ratio: 16/9;
    }

    .section-padding {
        padding: 40px 0;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 20px;
        text-align: center;
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: 36px;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .hero-contact {
        justify-content: center;
        font-size: 13px;
    }

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

    .container {
        padding: 0 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .cat-overlay h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 30px;
        line-height: 1.2;
    }

    .hero-content h1 br {
        display: block;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.5;
    }

    .hero-btns {
        gap: 12px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 12px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 40px;
    }

    .feature-item:not(:last-child)::after {
        display: none;
    }

    .items-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .cruise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .cruise-card {
        height: auto;
        width: 100%;
        aspect-ratio: 16/9;
    }

    .item-card {
        height: 180px;
    }

    .cta-banner-inner h2 {
        font-size: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-logo img {
        height: 50px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-radius: 2px;
        margin-bottom: 10px;
    }

    .newsletter-form button {
        border-radius: 2px;
        padding: 12px;
    }

    .cta-banner-inner {
        padding: 30px 20px;
    }

    .cta-banner-inner h2 {
        font-size: 28px;
    }

    .test-card {
        padding: 30px 20px;
    }

    .test-quote-container {
        flex-direction: column;
        gap: 10px;
    }

    .test-quote-icon {
        margin-top: 0;
    }

    .test-quote {
        font-size: 15px;
    }

    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .cat-card {
        height: 140px;
    }

    .cat-overlay {
        padding: 12px;
    }

    .cat-overlay h3 {
        font-size: 14px;
    }

    .cat-overlay i {
        font-size: 12px;
        margin-right: 5px;
    }

    .item-info {
        padding: 15px;
    }

    .item-info h4 {
        font-size: 14px;
    }

    h1, h2, h3, h4, h5, h6, p, span {
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
}

/* ===== UNIFIED HERO CAROUSEL ===== */
.shared-hero {
  position: relative;
  height: 88vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  width: 100%;
  padding-top: 140px;
  padding-bottom: 80px; /* added padding to shift content up and prevent overlap with dots */
}

.shared-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease, transform 7s ease;
  transform: scale(1.06);
  z-index: 0;
}
.shared-slide.active { opacity: 1; transform: scale(1); z-index: 1; }

.shared-hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to bottom, rgba(5,3,2,0.6) 0%, rgba(5,3,2,0.45) 40%, rgba(5,3,2,0.75) 80%, rgba(5,3,2,0.9) 100%);
}

.shared-hero-content {
  position: relative; z-index: 3;
  max-width: 860px; padding: 0 28px;
  animation: sharedFadeUp 1s ease both;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

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

.shared-hero-label {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold, #c9a84c);
  border: none; padding: 0; margin-bottom: 24px;
  line-height: 1.6;
}
.shared-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem); font-weight: 700; color: #f5f0e8;
  line-height: 1.1; margin-bottom: 22px; letter-spacing: -0.01em;
  text-shadow: 0 2px 30px rgba(0,0,0,.45);
  text-align: center;
}
.shared-hero-title em { font-style: italic; color: var(--gold, #c9a84c); }
.shared-hero-sub {
  font-size: 15px; font-weight: 300;
  color: rgba(245,240,232,.75); letter-spacing: 0.04em; margin-bottom: 36px;
  max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.8;
  text-align: center;
}

.shared-hero-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 25px; }
.shared-hero-pills span {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; padding: 7px 18px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.6);
  text-transform: uppercase; background: rgba(255,255,255,0.08);
}

.shared-hero-cta {
  display: inline-block;
  font-size: .82rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: #0a0806; background: var(--gold, #c9a84c);
  padding: 16px 48px; text-decoration: none;
  transition: all .25s; border-radius: 0;
}
.shared-hero-cta:hover { background: #fff; transform: translateY(-2px); color: #000; }

.shared-slider-dots {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 4; display: flex; gap: 8px;
}
.shared-dot {
  width: 28px; height: 3px; border-radius: 2px; background: rgba(255,255,255,0.3);
  cursor: pointer; transition: all 0.4s ease; border: none; padding: 0;
}
.shared-dot.active { background: var(--gold, #c9a84c); width: 44px; }

.shared-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3); background: rgba(13,13,13,0.4);
  backdrop-filter: blur(8px); color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); font-size: 18px; line-height: 1;
}
.shared-arrow:hover { border-color: var(--gold, #c9a84c); background: rgba(201,168,76,0.2); }
.shared-arrow-prev { left: 24px; }
.shared-arrow-next { right: 24px; }

@media (max-width: 768px) {
  .shared-hero { min-height: 100vh; height: 100vh; padding-top: 0; padding-bottom: 80px; }
  .shared-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    width: 100%;
  }
  .shared-hero-label { 
    border: none; 
    padding: 0; 
    font-size: 11px; 
    letter-spacing: 0.15em; 
    margin-bottom: 20px;
    text-align: center;
  }
  .shared-hero-title { 
    font-size: clamp(32px, 11vw, 46px); 
    line-height: 1.1; 
    margin-bottom: 24px;
    text-align: center;
  }
  .shared-hero-sub {
    font-size: 15px;
    line-height: 1.6;
    max-width: 95%;
    margin: 0 auto 36px auto;
    text-align: center;
  }
  .shared-hero-cta {
    border-radius: 0;
    font-size: 13px;
    padding: 16px 40px;
  }
  .shared-arrow { display: none; }
  
  .shared-slider-dots {
    bottom: 40px;
    gap: 10px;
  }
  .shared-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
  }
  .shared-dot.active {
    width: 8px;
  }
}

/* Auth Modal */
.auth-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.auth-modal-overlay.show {
    opacity: 1;
    pointer-events: auto;
}
.auth-modal-box {
    background: rgba(0, 0, 0, 0.65); /* dark tinted glass */
    width: 100%;
    max-width: 450px;
    padding: 40px 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15); /* subtle border */
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    backdrop-filter: blur(15px); /* The main glassmorphism effect */
    -webkit-backdrop-filter: blur(15px);
}
.auth-modal-overlay.show .auth-modal-box {
    transform: translateY(0);
}
.auth-modal-close {
    position: absolute;
    top: 20px; right: 20px;
    background: none; border: none;
    font-size: 18px; color: #fff; cursor: pointer;
    transition: opacity 0.3s;
}
.auth-modal-close:hover {
    opacity: 0.7;
}
.auth-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 700;
}
.auth-modal-subtitle {
    font-size: 14px; color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px; line-height: 1.5;
}
.auth-form-group {
    margin-bottom: 25px;
    text-align: left;
    position: relative;
}
.auth-form-group-header {
    display: flex; justify-content: space-between; align-items: baseline;
}
.auth-form-group label {
    display: block; font-size: 11px;
    font-weight: 600; letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 5px; text-transform: uppercase;
}
.auth-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: border-color 0.3s;
}
.auth-input-wrapper:focus-within {
    border-bottom-color: var(--primary);
}
.auth-input-wrapper i {
    color: #fff;
    font-size: 15px;
    margin-right: 12px;
    width: 20px;
    text-align: center;
}
.auth-form-group input {
    width: 100%;
    border: none;
    padding: 10px 0;
    font-size: 15px;
    color: #fff;
    background: transparent;
}
.auth-form-group input:-webkit-autofill,
.auth-form-group input:-webkit-autofill:hover, 
.auth-form-group input:-webkit-autofill:focus, 
.auth-form-group input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: #fff !important;
}
.auth-form-group input:focus {
    outline: none;
}
.auth-form-group input::placeholder { color: rgba(255,255,255,0.5); }
.auth-error-msg {
    display: block; color: #ff5e5e; font-size: 12px; margin-top: 5px;
}
.auth-terms {
    text-align: left;
    margin-bottom: 25px;
}
.terms-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}
.terms-label input {
    margin-top: 3px;
    accent-color: var(--primary);
}
.terms-text {
    font-size: 13px;
    color: #ccc;
    line-height: 1.5;
}
.terms-text a {
    color: var(--primary);
    text-decoration: none;
}
.terms-text a:hover {
    text-decoration: underline;
}
.auth-submit-btn {
    width: 100%;
    background: #000;
    color: #fff;
    border: 1px solid var(--primary);
    padding: 15px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 5px;
    margin-bottom: 25px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.auth-submit-btn:hover { 
    background: var(--primary); 
    color: #000;
}
.auth-switch {
    font-size: 13px; color: #ccc;
    text-align: center;
}
.auth-switch a {
    color: var(--primary); font-weight: 600; text-decoration: none;
}
.auth-switch a:hover { text-decoration: underline; }

@media (max-width: 600px) {
    .auth-modal-box { padding: 40px 30px; }
}

/* Header Dropdown */
.header-dropdown {
    position: relative;
    display: inline-block;
}
.header-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: #1a1a1a;
    border: 1px solid var(--primary);
    border-radius: 4px;
    min-width: 200px;
    z-index: 1000;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}
.header-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.header-dropdown-menu a, .header-dropdown-menu button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-family: inherit;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}
.header-dropdown-menu a:hover, .header-dropdown-menu button:hover {
    background: rgba(255,255,255,0.1);
    color: var(--primary);
}
.header-dropdown-menu i {
    width: 20px;
    margin-right: 8px;
    text-align: center;
}

/* Profile Page */
.profile-hero {
    height: 450px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 160px;
}
.profile-hero-inner {
    text-align: center;
    position: relative;
    z-index: 2;
}
.profile-avatar-container {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 15px;
    padding: 3px;
    background: linear-gradient(135deg, var(--primary), #8a6922);
}
.profile-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #111;
}
.profile-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 500;
}
.profile-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: 20px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
}
.profile-content-section {
    background: #050505;
    padding: 60px 0 100px;
    min-height: 500px;
}
.profile-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}
.profile-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: #fff;
    margin-bottom: 30px;
    border-bottom: 1px solid #222;
    padding-bottom: 20px;
}
.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
@media (max-width: 768px) {
    .profile-grid {
        grid-template-columns: 1fr;
    }
}
.profile-card {
    background: #111111;
    border-radius: 8px;
    border: 1px solid #222;
    padding: 30px;
    display: flex;
    flex-direction: column;
}
.profile-card-header {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--primary);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}
.profile-card-body {
    flex-grow: 1;
}
.profile-field {
    margin-bottom: 25px;
}
.profile-field label {
    display: block;
    font-size: 10px;
    color: #777;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 600;
}
.profile-value {
    color: #fff;
    font-size: 15px;
}
.profile-value-bold {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 3px;
}
.profile-value-sub {
    color: #777;
    font-size: 13px;
}
.profile-action-btn {
    background: transparent;
    border: none;
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin-top: 10px;
    transition: opacity 0.3s;
}
.profile-action-btn:hover {
    opacity: 0.8;
}
.profile-field-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.profile-update-btn {
    background: var(--primary);
    color: #111;
    border: none;
    padding: 10px 24px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}
.profile-update-btn:hover {
    background: #e0be5b;
}
.profile-divider {
    height: 1px;
    background: #222;
    margin: 25px 0;
}

/* Custom Toggle Switch */
.profile-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}
.profile-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.profile-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #333;
    transition: .4s;
}
.profile-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: #888;
    transition: .4s;
}
input:checked + .profile-slider {
    background-color: rgba(201, 168, 76, 0.2);
}
input:checked + .profile-slider:before {
    transform: translateX(20px);
    background-color: var(--primary);
}
.profile-slider.round {
    border-radius: 24px;
}
.profile-slider.round:before {
    border-radius: 50%;
}

/* Dedicated Split-Screen Auth Page */
.auth-page-wrapper {
    display: flex;
    flex-direction: row-reverse;
    height: 100vh;
    overflow: hidden;
    width: 100%;
    background-color: #fff;
    font-family: 'Inter', sans-serif;
}

.auth-image-side {
    flex: 1;
    background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.auth-illustration {
    width: 100%;
    max-width: 450px;
    margin-bottom: 20px;
}

/* Animations for SVG elements */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

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

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

.svg-float {
    animation: float 6s ease-in-out infinite;
}

.svg-float-delayed {
    animation: float 7s ease-in-out infinite 2s;
}

.svg-float-reverse {
    animation: float-reverse 8s ease-in-out infinite 1s;
}

.svg-pulse {
    animation: pulse-glow 4s ease-in-out infinite;
}

.auth-image-content {
    max-width: 500px;
}

.auth-image-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}

.auth-image-content p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.auth-form-side {
    width: 100%;
    max-width: 550px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px 40px;
    position: relative;
    overflow-y: auto;
}

.auth-back-btn {
    position: absolute;
    top: 15px;
    right: 30px;
    color: #666;
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.auth-back-btn:hover {
    color: var(--primary);
}

.auth-form-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.auth-logo-center {
    display: block;
    margin: 0 auto 10px;
    height: 35px;
}

.auth-form-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: #111;
    margin-bottom: 2px;
    text-align: center;
    font-weight: 700;
}

.auth-form-container .auth-modal-subtitle {
    color: #666;
    text-align: center;
    margin-bottom: 15px;
    font-size: 14px;
}

.auth-form-container .auth-form-group {
    margin-bottom: 12px;
}

.auth-form-container .auth-form-group label {
    color: #333;
}

.auth-form-container .auth-input-wrapper {
    border-bottom: 1px solid #ddd;
}

.auth-form-container .auth-input-wrapper i {
    color: #999;
}

.auth-form-container .auth-form-group input {
    color: #111 !important;
    padding: 5px 0;
    font-size: 14px;
}

.auth-form-container .auth-form-group input:-webkit-autofill,
.auth-form-container .auth-form-group input:-webkit-autofill:hover, 
.auth-form-container .auth-form-group input:-webkit-autofill:focus, 
.auth-form-container .auth-form-group input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #ffffff inset !important;
    -webkit-text-fill-color: #111 !important;
    transition: background-color 5000s ease-in-out 0s;
}

.auth-form-container .auth-form-group input::placeholder {
    color: #999;
}

.auth-form-container .auth-submit-btn {
    background: var(--primary);
    color: #111;
    border: none;
    margin-top: 5px;
    margin-bottom: 10px;
    padding: 10px;
    font-weight: 600;
}

.auth-form-container .auth-submit-btn:hover {
    background: #111;
    color: #fff;
}

.auth-form-container .auth-switch {
    color: #666;
    margin-top: 10px;
}

/* Social Buttons */
.auth-social-divider {
    text-align: center;
    color: #999;
    font-size: 12px;
    margin: 10px 0;
    position: relative;
}
.auth-social-divider::before,
.auth-social-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #eee;
}
.auth-social-divider:not(:empty)::before {
    margin-right: 15px;
}
.auth-social-divider:not(:empty)::after {
    margin-left: 15px;
}

.auth-social-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.auth-social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid #eee;
    border-radius: 4px;
    background: #fff;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
}

.auth-social-btn:hover {
    background: #f9f9f9;
}

.auth-social-btn img {
    width: 18px;
    height: 18px;
}

@media (max-width: 900px) {
    .auth-page-wrapper {
        flex-direction: column;
        background-color: #f9f9f9;
    }
    .auth-image-side {
        min-height: 350px;
        flex: none;
        border-radius: 0 0 50% 50% / 0 0 40px 40px;
        padding: 20px;
        position: relative;
        z-index: 1;
    }
    .auth-form-side {
        max-width: 100%;
        padding: 0 20px 40px;
        background-color: transparent;
    }
    .auth-form-container {
        background: #fff;
        border-radius: 16px;
        padding: 30px 20px;
        margin-top: -40px;
        position: relative;
        z-index: 10;
        box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    }
    .auth-logo-center {
        height: 60px;
        margin-bottom: 30px;
        filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
    }
    .auth-form-container .auth-form-group input {
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 12px 15px;
        width: 100%;
        box-sizing: border-box;
        margin-top: 5px;
        background-color: #fafafa;
    }
    .auth-form-container .auth-input-wrapper {
        border-bottom: none;
    }
    .auth-form-container .auth-form-group-header label {
        font-size: 12px;
        color: #888;
    }
    .auth-form-container .auth-submit-btn {
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        padding: 14px;
        letter-spacing: 0.5px;
        margin-top: 15px;
    }
    .auth-social-btn {
        border-radius: 50%;
        width: 50px;
        height: 50px;
        flex: none;
        padding: 0;
        justify-content: center;
        margin: 0 auto;
        color: transparent;
    }
    .auth-social-btn img, .auth-social-btn i {
        color: initial;
    }
    .auth-social-buttons {
        justify-content: center;
        gap: 20px;
    }
    .auth-image-content h2 {
        font-size: 28px;
    }
    .auth-image-content p {
        font-size: 15px;
    }
    .auth-illustration {
        max-width: 250px;
    }
}

/* ==========================================================================
   BOOKING HISTORY / PROFILE
   ========================================================================== */

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

.history-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  margin-bottom: 3rem;
}

.history-section-title h2 {
  font-size: 28px;
  margin-bottom: 0;
  color: #fff;
  font-weight: 500;
  font-family: 'Cormorant Garamond', serif;
}
.history-section-title {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #222;
  padding-bottom: 15px;
}
.history-section-link {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  font-family: "Outfit", sans-serif;
  font-weight: 600;
}

/* Upcoming Journey Card */
.journey-card {
  background: #111111;
  border: 1px solid #222;
  border-radius: 12px;
  display: flex;
  overflow: hidden;
  margin-bottom: 3rem;
}
.journey-img {
  width: 40%;
  object-fit: cover;
}
.journey-content {
  padding: 2.5rem;
  width: 60%;
  display: flex;
  flex-direction: column;
}
.journey-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 13px;
  color: var(--text-muted);
}
.status-badge {
  background: rgba(194, 154, 98, 0.15);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
}
.journey-content h3 {
  font-size: 28px;
  margin-bottom: 0.5rem;
  color: #fff;
  font-weight: 600;
}
.journey-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 2rem;
}
.journey-location svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.journey-btn {
  margin-top: auto;
  align-self: flex-start;
  background: var(--primary);
  color: #111;
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.journey-btn:hover {
  background: #fff;
}

/* Concierge List */
.concierge-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 3rem;
}
.concierge-item {
  display: flex;
  align-items: center;
  background: #111111;
  border: 1px solid #222;
  padding: 20px;
  border-radius: 8px;
  transition: border-color var(--transition);
}
.concierge-item:hover {
  border-color: rgba(194, 154, 98, 0.4);
}
.concierge-icon {
  width: 48px;
  height: 48px;
  background: rgba(194, 154, 98, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: var(--primary);
}
.concierge-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.concierge-info {
  display: flex;
  flex-direction: column;
}
.concierge-title {
  color: #fff;
  font-weight: 500;
  margin-bottom: 4px;
  font-size: 16px;
}
.concierge-desc {
  font-size: 13px;
  color: var(--text-muted);
}
.concierge-arrow {
  margin-left: auto;
  color: var(--text-muted);
  opacity: 0.5;
}

/* Past Journeys Grid */
.past-journeys-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.past-card {
  background: #111111;
  border: 1px solid #222;
  border-radius: 8px;
  overflow: hidden;
}
.past-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.past-content {
  padding: 20px;
}
.past-content h3 {
  color: #fff;
}

/* Saved Inspiration */
.inspiration-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 3rem;
}
.insp-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
}
.insp-img.large {
  grid-column: span 2;
  height: 160px;
  position: relative;
}
.insp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  border-radius: 6px;
  display: flex;
  align-items: flex-end;
  padding: 15px;
}
.insp-overlay span {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

/* Platinum Benefits */
.benefits-card {
  background: #111111;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 30px;
}
.benefits-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.benefit-item:last-child {
  margin-bottom: 0;
}
.benefit-icon {
  color: var(--primary);
  margin-top: 2px;
}
.benefit-title {
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 4px;
}
.benefit-desc {
  color: var(--text-muted);
  font-size: 13px;
}

/* Preferences */
.pref-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pref-card {
  background: #111111;
  border: 1px solid #222;
  padding: 25px;
  border-radius: 8px;
}
.pref-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ccc;
}
.pref-header svg {
  color: var(--primary);
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.pref-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pref-tag {
  background: var(--primary);
  color: #111;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

@media (max-width: 900px) {
  .history-grid {
    grid-template-columns: 1fr;
  }
  .journey-card {
    flex-direction: column;
  }
  .journey-img {
    width: 100%;
    height: 200px;
  }
  .journey-content {
    width: 100%;
    padding: 1.5rem;
  }
  .pref-grid, .past-journeys-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== GLOBAL TOAST ===== */
.tyt-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--secondary);
  color: #fff;
  padding: 16px 20px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border-left: 4px solid #27ae60;
  z-index: 9999;
  transform: translateX(150%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  max-width: 400px;
}
.tyt-toast.show {
  transform: translateX(0);
}
.tyt-toast-icon {
  font-size: 24px;
  color: #27ae60;
}
.tyt-toast-content {
  flex: 1;
}
.tyt-toast-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
  font-family: 'Playfair Display', serif;
  color: var(--primary);
}
.tyt-toast-message {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}
.tyt-toast-close {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 20px;
  cursor: pointer;
  transition: color 0.3s;
  padding: 0;
  line-height: 1;
}
.tyt-toast-close:hover {
  color: #fff;
}
@media (max-width: 768px) {
  .tyt-toast {
    bottom: 20px;
    right: 20px;
    left: 20px;
    max-width: none;
  }
}
