/* ============================================================
   VILLA LOPARIA — Minimalistic Luxury One-Page Site
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* ─── Custom Fonts ──────────────────────────────────────────
   Drop font files into the css/ folder and uncomment below.
   Organetto Light  →  css/organetto-light.woff2 (or .otf/.ttf)
   Trajan Pro       →  css/trajan-pro.woff2 (or .otf/.ttf)
   ──────────────────────────────────────────────────────── */
@font-face {
    font-family: 'Organetto';
    src: url('../fonts/O1.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Trajan Pro';
    src: url('../fonts/T2.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --cream: #f5f0ea;
    --sand: #e8ddd0;
    --gold: #b09060;
    --gold-lt: #c8a87a;
    --ink: #1a1612;
    --muted: #6b6560;
    --white: #ffffff;
    --dark: #0e0c0a;
    --ff-serif: 'Cormorant Garamond', Georgia, serif;
    --ff-sans: 'Jost', sans-serif;
    --ease: cubic-bezier(.25, .46, .45, .94);
    --dur: .6s;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff-sans);
    font-weight: 300;
    font-size: 15px;
    line-height: 1.8;
    color: var(--ink);
    background: var(--cream);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

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

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

/* ─── Scroll progress bar ──────────────────────────────── */
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: var(--gold);
    z-index: 9999;
    transition: width .1s linear;
}

/* ─── Navigation ───────────────────────────────────────── */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 28px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background var(--dur) var(--ease), padding var(--dur) var(--ease);
}

#nav.scrolled {
    background: rgba(14, 12, 10, .88);
    backdrop-filter: blur(12px);
    padding: 16px 60px;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 2px;
}

.nav-logo-title {
    font-family: 'Organetto', 'Cormorant Garamond', Georgia, serif;
    font-weight: 300;
    font-size: 1.5rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1;
}

.nav-logo-sub {
    font-family: 'Trajan Pro', 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    font-size: 0.55rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold-lt);
    line-height: 1;
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-family: var(--ff-sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .75);
    position: relative;
    transition: color .3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .35s var(--ease);
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ─── Hero ─────────────────────────────────────────────── */
#hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.6s var(--ease);
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(14, 12, 10, .25) 0%,
            rgba(14, 12, 10, .1) 50%,
            rgba(14, 12, 10, .6) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 24px;
}

.hero-eyebrow {
    font-family: var(--ff-sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--gold-lt);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp .9s var(--ease) .4s forwards;
}

.hero-title {
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp .9s var(--ease) .7s forwards;
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.hero-logo-img {
    width: clamp(100px, 14vw, 180px);
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 12px;
    filter: drop-shadow(0 4px 24px rgba(0,0,0,0.5)) brightness(1.08);
}

.hero-title-text {
    font-family: 'Organetto', 'Cormorant Garamond', Georgia, serif;
    font-weight: 300;
    font-size: clamp(2.4rem, 6vw, 5.2rem);
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.05;
    display: block;
    text-shadow: 0 2px 16px rgba(0,0,0,0.55);
}

.hero-title-sub {
    font-family: 'Trajan Pro', 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    font-size: clamp(0.7rem, 1.4vw, 1rem);
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--gold-lt);
    line-height: 1.4;
    display: block;
    text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

.hero-sub {
    font-family: var(--ff-sans);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp .9s var(--ease) 1s forwards;
}

.hero-cta {
    display: inline-block;
    padding: 14px 42px;
    border: 1px solid rgba(255, 255, 255, .55);
    font-family: var(--ff-sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--white);
    transition: background .4s, border-color .4s;
    opacity: 0;
    animation: fadeUp .9s var(--ease) 1.3s forwards;
}

.hero-cta:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.hero-arrows {
    position: absolute;
    bottom: 36px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 16px;
    z-index: 10;
}

.hero-arrow {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .4);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s, border-color .3s;
    font-size: 18px;
}

.hero-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
}

/* ─── Section commons ──────────────────────────────────── */
section {
    padding: 100px 0;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-eyebrow {
    font-family: var(--ff-sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--ff-serif);
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 300;
    letter-spacing: .04em;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 24px;
}

.section-divider {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin: 0 0 40px;
}

.section-divider.center {
    margin: 0 auto 40px;
}

/* ─── About / Intro ────────────────────────────────────── */
#about {
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-text p {
    color: var(--muted);
    margin-bottom: 18px;
    line-height: 1.9;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

.stat-item {
    border-top: 1px solid var(--sand);
    padding-top: 20px;
}

.stat-number {
    font-family: var(--ff-serif);
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: .04em;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-family: var(--ff-sans);
    font-size: 10px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--muted);
}

.about-image-wrap {
    position: relative;
}

.about-image-wrap img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    filter: brightness(.97);
}

.about-image-accent {
    position: absolute;
    bottom: -32px;
    left: -32px;
    width: 160px;
    height: 160px;
    border: 1px solid var(--gold);
    pointer-events: none;
}

/* ─── Features (Highlights) ────────────────────────────── */
#highlights {
    background: var(--ink);
    color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, .07);
    margin-top: 60px;
}

.feature-item {
    background: var(--ink);
    padding: 44px 28px;
    text-align: center;
    transition: background var(--dur) var(--ease);
}

.feature-item:hover {
    background: #1e1a16;
}

.feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    color: var(--gold);
    transition: transform .4s var(--ease), color .4s var(--ease);
}

.feature-item:hover .feature-icon {
    transform: translateY(-4px);
    color: var(--gold-lt);
}

.feature-name {
    font-family: var(--ff-sans);
    font-size: 10px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold-lt);
}

/* ─── Details (Info lists) ─────────────────────────────── */
#details {
    background: var(--cream);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 64px;
}

.details-col h3 {
    font-family: var(--ff-serif);
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: .06em;
    color: var(--ink);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--sand);
}

.details-col ul {
    list-style: none;
}

.details-col ul li {
    font-family: var(--ff-sans);
    font-size: 13px;
    font-weight: 300;
    color: var(--muted);
    padding: 6px 0;
    border-bottom: 1px solid rgba(24, 18, 8, .06);
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.details-col ul li::before {
    content: '—';
    color: var(--gold);
    font-size: 11px;
    flex-shrink: 0;
}

/* ─── Destination (Lopar & Rab) ────────────────────────── */
#destination {
    background: var(--ink);
    color: var(--white);
    padding: 100px 0;
}

#destination .section-eyebrow {
    color: var(--gold-lt);
}

#destination .section-title {
    color: var(--white);
}

.dest-intro {
    max-width: 740px;
    margin: 0 auto 64px;
    text-align: center;
    color: rgba(255,255,255,.65);
    font-size: 15px;
    line-height: 1.9;
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.06);
}

.dest-card {
    background: var(--ink);
    padding: 44px 36px;
    transition: background var(--dur) var(--ease), transform .4s var(--ease);
    position: relative;
}

.dest-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 36px;
    right: 36px;
    height: 1px;
    background: rgba(255,255,255,.06);
}

.dest-card:hover {
    background: #1e1a16;
    transform: translateY(-3px);
    z-index: 1;
}

.dest-image {
    width: 100%;
    height: 180px;
    margin-bottom: 24px;
    overflow: hidden;
    background: #1a1612;
    border-radius: 2px;
}

.dest-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform .6s var(--ease), opacity .6s var(--ease);
}

.dest-card:hover .dest-image img {
    transform: scale(1.05);
    opacity: 1;
}

.dest-card-title {
    font-family: var(--ff-serif);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: .04em;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.3;
}

.dest-card-text {
    font-family: var(--ff-sans);
    font-size: 13.5px;
    font-weight: 300;
    color: rgba(255,255,255,.60);
    line-height: 1.85;
}

.dest-card-text strong {
    color: var(--gold-lt);
    font-weight: 400;
}

.dest-card-text em {
    color: rgba(255,255,255,.80);
    font-style: italic;
}

@media (max-width: 900px) {
    .dest-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .dest-grid {
        grid-template-columns: 1fr;
    }
    .dest-card {
        padding: 36px 24px;
    }
}

/* ─── Gallery ──────────────────────────────────────────── */
#gallery {
    background: var(--dark);
    padding: 100px 0;
}

#gallery .section-title {
    color: var(--white);
}

#gallery .section-eyebrow {
    color: var(--gold-lt);
}

.gallery-header {
    text-align: center;
    padding: 0 40px;
    margin-bottom: 56px;
}

.gallery-header .section-divider {
    margin: 0 auto 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 4px;
    padding: 0 4px;
}

.gallery-item {
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery-item:nth-child(4n+1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:nth-child(7) {
    grid-column: span 2;
}

.gallery-item:nth-child(11) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease), filter .5s;
}

.gallery-item:hover img {
    transform: scale(1.06);
    filter: brightness(.85);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(14, 12, 10, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .4s;
}

.gallery-item:hover .gallery-item-overlay {
    background: rgba(14, 12, 10, .3);
}

.gallery-zoom-icon {
    color: var(--white);
    font-size: 28px;
    opacity: 0;
    transform: scale(.6);
    transition: opacity .4s, transform .4s;
}

.gallery-item:hover .gallery-zoom-icon {
    opacity: 1;
    transform: scale(1);
}

/* ─── Lightbox ─────────────────────────────────────────── */
#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, .92);
    align-items: center;
    justify-content: center;
}

#lightbox.open {
    display: flex;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    box-shadow: 0 40px 100px rgba(0, 0, 0, .7);
    margin-top: 40px;
    /* Space for the title */
}

.lightbox-title {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-family: var(--ff-serif);
    font-size: 1.4rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 300;
    pointer-events: none;
    z-index: 2010;
}

@media (max-width: 768px) {
    .lightbox-title {
        font-size: 1.1rem;
        top: 25px;
        width: 100%;
        text-align: center;
    }
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 32px;
    color: var(--white);
    cursor: pointer;
    line-height: 1;
    transition: color .3s;
    background: none;
    border: none;
}

.lightbox-close:hover {
    color: var(--gold);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 1px solid rgba(255, 255, 255, .3);
    color: var(--white);
    width: 50px;
    height: 50px;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s, border-color .3s;
}

.lightbox-nav:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.lightbox-nav.prev {
    left: 24px;
}

.lightbox-nav.next {
    right: 24px;
}

/* ─── Gallery Filter ────────────────────────────────────── */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 32px 0 48px;
    flex-wrap: wrap;
}

.filter-btn {
    background: none;
    border: none;
    font-family: var(--ff-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--muted);
    cursor: pointer;
    padding: 8px 4px;
    position: relative;
    transition: color .4s var(--ease);
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .4s var(--ease);
}

.filter-btn:hover {
    color: var(--ink);
}

.filter-btn.active {
    color: var(--gold);
}

.filter-btn.active::after {
    width: 100%;
}

.gallery-item {
    transition: opacity .5s var(--ease), transform .5s var(--ease), visibility .5s;
}

.gallery-item.hidden {
    display: none;
}

/* ─── Prices ───────────────────────────────────────────── */
#prices {
    background: var(--sand);
}

.prices-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 48px;
    font-family: var(--ff-sans);
    font-size: 13px;
}

.prices-table thead th {
    font-size: 10px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--gold);
}

.prices-table tbody tr {
    border-bottom: 1px solid rgba(24, 18, 8, .08);
    transition: background .2s;
}

.prices-table tbody tr:hover {
    background: rgba(176, 144, 96, .08);
}

.prices-table td {
    padding: 14px 16px;
    color: var(--muted);
}

.prices-table td:last-child {
    font-family: var(--ff-serif);
    font-size: 1.1rem;
    color: var(--ink);
}

.prices-table td del {
    font-family: var(--ff-sans);
    font-size: 11px;
    padding-right: 8px;
    color: var(--muted);
    text-decoration: line-through;
    opacity: .7;
}

.price-notes {
    margin-top: 32px;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.9;
    border-left: 2px solid var(--gold);
    padding-left: 20px;
}

.price-btn {
    display: inline-block;
    padding: 6px 16px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 9px;
    letter-spacing: .15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .3s var(--ease);
    white-space: nowrap;
}

.price-btn:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-1px);
}

/* ─── Contact ──────────────────────────────────────────── */
#contact {
    background: var(--ink);
    color: var(--white);
}

#contact .section-title {
    color: var(--white);
}

#contact .section-eyebrow {
    color: var(--gold-lt);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
}

.contact-info p {
    color: rgba(255, 255, 255, .6);
    margin-bottom: 32px;
    line-height: 1.9;
}

.contact-detail {
    margin-bottom: 20px;
}

.contact-detail-label {
    font-size: 10px;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.contact-detail-val {
    font-family: var(--ff-sans);
    font-size: 14px;
    color: rgba(255, 255, 255, .8);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .15);
    padding: 14px 18px;
    color: var(--white);
    font-family: var(--ff-sans);
    font-size: 13px;
    font-weight: 300;
    outline: none;
    transition: border-color .3s;
    resize: none;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color-scheme: dark;
}

/* Fix for iOS Safari date placeholders not showing */
input[type="date"] {
    position: relative;
    min-height: 48px; /* Ensure height matches other inputs */
}

input[type="date"]::-webkit-datetime-edit {
    color: var(--white);
}

input[type="date"]:invalid::-webkit-datetime-edit {
    color: transparent;
}

input[type="date"]:invalid::before {
    content: attr(placeholder);
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, .35);
    pointer-events: none;
}

.contact-form select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='rgba(255, 255, 255, 0.35)' stroke-width='1.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 48px;
}

.contact-form select:invalid {
    color: rgba(255, 255, 255, 0.35);
}

.contact-form select option {
    color: var(--white);
    background: #1a1612;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, .35);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
}

/* Calendar icon styling */
.contact-form .form-row input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23b09060' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 17px;
    transition: border-color .3s, background-size .2s var(--ease);
}

.contact-form #contactEmail {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23b09060' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='20' height='16' x='2' y='4' rx='2'/%3E%3Cpath d='m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 18px center !important;
    background-size: 17px !important;
}

.contact-form #contactPhone {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23b09060' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 18px center !important;
    background-size: 17px !important;
}

.contact-form #contactName {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23b09060' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 18px center !important;
    background-size: 17px !important;
}

.contact-form #contactCountry {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23b09060' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z'/%3E%3Cline x1='4' y1='22' x2='4' y2='15'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 18px center !important;
    background-size: 17px !important;
}

.contact-form .form-row input:active {
    background-size: 21px;
}

/* Ensure the native picker trigger covers the icon area */
.contact-form input::-webkit-calendar-picker-indicator {
    position: absolute;
    right: 0;
    top: 0;
    width: 45px;
    height: 100%;
    margin: 0;
    padding: 0;
    cursor: pointer;
    opacity: 0;
}

.contact-form button {
    align-self: flex-start;
    padding: 14px 48px;
    background: var(--gold);
    border: none;
    color: var(--white);
    font-family: var(--ff-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .24em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .35s, transform .2s;
}

.contact-form button:hover {
    background: var(--gold-lt);
    transform: translateY(-2px);
}

/* ─── Footer ───────────────────────────────────────────── */
footer {
    background: var(--dark);
    padding: 60px 40px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 24px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 4px;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-logo-img {
    width: 60px;
    height: auto;
    margin-bottom: 8px;
    opacity: 0.8;
    filter: brightness(1.1);
}

.footer-logo-text {
    font-family: 'Organetto', 'Cormorant Garamond', Georgia, serif;
    font-weight: 300;
    font-size: 1.6rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.1;
}

.footer-logo-sub {
    font-family: 'Trajan Pro', 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    font-size: 0.65rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold-lt);
    line-height: 1.2;
    opacity: 0.7;
}

.footer-copy {
    font-size: 11px;
    letter-spacing: .18em;
    color: rgba(255, 255, 255, .28);
}

/* Chat Icons */
.chat-icon.wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
    vertical-align: middle;
}

.chat-icon.wa:hover {
    transform: scale(1.15);
}

.chat-icon.wa:hover svg {
    fill: #25D366;
}

.chat-icon.vb {
    background-color: #c8a87a;
    padding: 5px 12px;
    border-radius: 20px;
    transition: transform 0.2s ease, opacity 0.2s ease, background 0.3s ease, color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 1;
    color: #0e0c0a !important;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    vertical-align: middle;
}

.chat-icon.vb:hover {
    transform: scale(1.05);
    background-color: #7360f2;
    color: #fff !important;
}

.chat-icon svg {
    display: block;
}

/* Address Buttons */
.addr-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid rgba(200, 168, 122, 0.4);
    color: #c8a87a; /* var(--gold) */
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.addr-btn:hover {
    background: #c8a87a;
    color: #fff;
    border-color: #c8a87a;
}

/* ─── Reveal animations ────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .85s var(--ease), transform .85s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: none;
    }
}



/* ─── Hero Dots ────────────────────────────────────────── */
.hero-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 20;
}

.hero-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .6);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background .35s, border-color .35s, transform .35s;
}

.hero-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.3);
}

.hero-dot:hover:not(.active) {
    background: rgba(255, 255, 255, .4);
}

/* ─── Hero Side Arrows ─────────────────────────────────── */
.hero-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: none;
    border: none;
    padding: 16px 18px;
    cursor: pointer;
    opacity: 0;
    transition: opacity .4s var(--ease);
    line-height: 0;
}

.hero-arrow-btn svg {
    display: block;
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, .5));
}

.hero-arrow-prev {
    left: 20px;
}

.hero-arrow-next {
    right: 20px;
}

#hero:hover .hero-arrow-btn {
    opacity: 1;
}

@media (max-width: 768px) {
    .hero-arrow-btn {
        top: 65%;
        opacity: 0.7;
    }
}

/* ─── Language Dropdown ────────────────────────────────── */
.nav-lang-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, .2);
    align-self: center;
    margin: 0 6px;
}

.nav-lang-dropdown {
    position: relative;
    list-style: none;
}

/* ─── Flag Icon (SVG) ──────────────────────────────────── */
.flag-icon {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .15);
}

.flag-icon svg {
    display: block;
}

.lang-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 4px;
    color: rgba(255, 255, 255, .8);
    font-family: var(--ff-sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: 5px 10px;
    cursor: pointer;
    transition: border-color .3s, color .3s, background .3s;
    white-space: nowrap;
}

.lang-trigger .flag {
    font-size: 15px;
    line-height: 1;
}

.lang-trigger:hover {
    border-color: var(--gold);
    color: var(--white);
    background: rgba(176, 144, 96, .1);
}

.lang-caret {
    transition: transform .3s var(--ease);
    flex-shrink: 0;
}

.nav-lang-dropdown.open .lang-caret {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 148px;
    background: rgba(18, 14, 10, .96);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 4px;
    list-style: none;
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
    z-index: 2000;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .45);
}

.nav-lang-dropdown.open .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-family: var(--ff-sans);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .65);
    transition: background .2s, color .2s;
    white-space: nowrap;
}

.lang-option:hover {
    background: rgba(176, 144, 96, .12);
    color: var(--white);
}

.lang-option.active {
    color: var(--gold-lt);
}

/* ─── Hamburger Button ─────────────────────────────────── */
@keyframes hamRotateCW {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes hamRotateCCW {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 52px;
    height: 52px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1100;
}

/* Outer Gold Dotted Circle (Thicker) */
.hamburger::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px dotted var(--gold);
    border-radius: 50%;
    animation: hamRotateCW 12s linear infinite;
    transition: opacity .3s var(--ease);
}

/* Inner Gold Dotted Circle (Counter-rotating) */
.hamburger::before {
    content: '';
    position: absolute;
    inset: 6px;
    border: 2px dotted var(--gold);
    border-radius: 50%;
    animation: hamRotateCCW 8s linear infinite;
    transition: opacity .3s var(--ease);
}

.hamburger.active::after,
.hamburger.active::before {
    opacity: 0;
}

.ham-line {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--white);
    border-radius: 2px;
    opacity: 1;
    /* Always visible as requested */
    transition: transform .4s var(--ease),
        opacity .4s var(--ease),
        width .4s var(--ease);
    transform-origin: center;
}

/* Animated X when open */
.hamburger.active .ham-line {
    opacity: 1;
    width: 22px;
}

.hamburger.active .ham-line:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
}

.hamburger.active .ham-line:nth-child(2) {
    opacity: 0;
    width: 0;
}

.hamburger.active .ham-line:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
}

/* ─── Mobile Menu Overlay ──────────────────────────────── */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(4px);
    z-index: 1850;
    opacity: 0;
    transition: opacity .4s var(--ease);
}

.mobile-menu-overlay.open {
    display: block;
    opacity: 1;
    animation: fadeInOverlay .4s var(--ease) forwards;
}

@keyframes fadeInOverlay {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ─── Mobile Side Menu Panel ───────────────────────────── */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100dvh;
    background: var(--ink);
    z-index: 1900;
    display: flex;
    flex-direction: column;
    padding: 0;
    transition: right .45s cubic-bezier(.23, 1, .32, 1);
    box-shadow: -8px 0 40px rgba(0, 0, 0, .5);
    overflow-y: auto;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 18px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, .5);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: color .3s;
    z-index: 10;
}

.mobile-menu-close:hover {
    color: var(--gold);
}

.mobile-menu-branding {
    padding: 32px 32px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.mobile-menu-title {
    font-family: 'Organetto', 'Cormorant Garamond', Georgia, serif;
    font-weight: 300;
    font-size: 1.3rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.1;
}

.mobile-menu-sub {
    font-family: 'Trajan Pro', 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    font-size: 0.6rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold-lt);
    line-height: 1.2;
    opacity: 0.7;
}

.mobile-nav-links {
    list-style: none;
    padding: 20px 0;
    flex: 1;
}

.mobile-nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.mobile-nav-link {
    display: block;
    font-family: var(--ff-sans);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    padding: 18px 32px;
    transition: color .25s, padding-left .25s, background .25s;
}

.mobile-nav-link:hover {
    color: var(--gold-lt);
    padding-left: 40px;
    background: rgba(176, 144, 96, .06);
}

.mobile-menu-sign {
    display: flex;
    justify-content: center;
    padding: 24px 32px;
    margin-top: auto;
    opacity: 0.8;
}

.mobile-menu-sign img {
    width: 80px;
    height: auto;
    filter: brightness(1.5);
}

/* ─── Mobile Language Switcher ─────────────────────────── */
.mobile-lang {
    padding: 28px 32px 40px;
    border-top: 1px solid rgba(255, 255, 255, .07);
}

.mobile-lang-label {
    display: block;
    font-family: var(--ff-sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.mobile-lang-btns {
    display: flex;
    gap: 10px;
}

.mobile-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--ff-sans);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .12em;
    color: rgba(255, 255, 255, .5);
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 3px;
    transition: color .3s, border-color .3s, background .3s;
    text-transform: uppercase;
}

.mobile-lang-btn:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, .35);
}

.mobile-lang-btn.active {
    color: var(--gold-lt);
    border-color: var(--gold);
    background: rgba(176, 144, 96, .12);
}

.surroundings-box {
    background: #1a1612;
    color: #fff;
    padding: 56px 64px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

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

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

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

    .gallery-item:nth-child(4n+1) {
        grid-column: span 2;
        grid-row: span 2;
    }
}

@media (max-width: 768px) {
    #nav {
        padding: 20px 24px;
    }

    #nav.scrolled {
        padding: 14px 24px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .details-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .md-hide {
        display: none !important;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .gallery-item:nth-child(4n+1) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-item:nth-child(7) {
        grid-column: span 1;
    }

    .gallery-item:nth-child(11) {
        grid-column: span 2;
        grid-row: span 1;
    }


    @media (max-width: 991px) {
        .surroundings-box {
            grid-template-columns: 1fr;
            gap: 32px;
            padding: 40px 32px;
            text-align: center;
        }
    }

    .container {
        padding: 0 24px;
    }

    section {
        padding: 72px 0;
    }

    .table-responsive {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 20px;
    }

    .prices-table {
        font-size: 12px;
        min-width: 440px; /* Guarantees layout doesn't break when scrolling */
    }

    .prices-table th,
    .prices-table td {
        padding: 10px 6px;
    }

    .price-btn {
        white-space: normal;
        padding: 6px 8px;
        font-size: 8px;
        text-align: center;
        line-height: 1.2;
    }
}

/* ─── Flatpickr Custom Highlighting ─────────────────────── */
.min-stay-highlight {
    background: var(--gold-lt) !important;
    color: #fff !important;
    border-color: var(--gold-lt) !important;
}

.min-stay-highlight:hover {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
}

/* Custom additions for Pricing & Mobile Sticky Button */
.contact-cta-left {
    margin-bottom: 24px;
    font-family: var(--ff-serif);
    font-size: 1.6rem;
    color: var(--gold-lt);
    letter-spacing: .02em;
    line-height: 1.3;
}

.floating-sticky-btn {
    display: flex;
    position: fixed;
    bottom: 32px; /* Increased a bit for desktop */
    left: auto;
    right: 32px; /* Increased a bit for desktop */
    background: var(--gold);
    color: var(--white);
    text-align: center;
    padding: 14px 28px; /* Slightly larger for desktop */
    border-radius: 50px;
    font-family: var(--ff-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
    z-index: 1500;
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, background 0.3s ease, opacity 0.3s ease;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pulsating-dot {
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.floating-sticky-btn:hover {
    background: var(--gold-lt);
    transform: translateY(-5px);
}

.floating-sticky-btn.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

@media (max-width: 768px) {
    .floating-sticky-btn {
        bottom: 24px;
        right: 24px;
        padding: 12px 24px;
    }
}

/* Scroll adjustment for fixed header */
#contactForm input, 
#contactForm select, 
#contactForm textarea {
    scroll-margin-top: 120px;
}

/* ─── Bank Info Modal ──────────────────────────────────── */
.bank-info-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: transparent;
    border: 1px solid rgba(200, 168, 122, 0.4);
    color: #c8a87a;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 11px;
    font-family: var(--ff-sans);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.bank-info-btn:hover {
    background: #c8a87a;
    color: #fff;
    border-color: #c8a87a;
}

.bank-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    padding: 20px;
}

.bank-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.bank-modal {
    background: #1a1612;
    border: 1px solid rgba(200, 168, 122, 0.25);
    border-radius: 8px;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px 36px 36px;
    position: relative;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.35s ease;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.bank-modal-overlay.open .bank-modal {
    transform: translateY(0) scale(1);
}

.bank-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.45);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10;
}

.bank-modal-close:hover {
    color: #c8a87a;
}

.bank-modal-title {
    font-family: var(--ff-serif);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #fff;
    margin-bottom: 8px;
}

.bank-modal-subtitle {
    font-family: var(--ff-sans);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #c8a87a;
    margin-bottom: 28px;
}

.bank-option {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.bank-option:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.bank-option-title {
    font-family: var(--ff-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: #c8a87a;
    margin-bottom: 14px;
}

.bank-option-title .recommended {
    display: inline-block;
    background: rgba(200, 168, 122, 0.15);
    color: #c8a87a;
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 3px;
    margin-left: 8px;
    vertical-align: middle;
}

.bank-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 6px 0;
    gap: 16px;
}

.bank-detail-label {
    font-family: var(--ff-sans);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    flex-shrink: 0;
    min-width: 90px;
}

.bank-detail-value {
    font-family: var(--ff-sans);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    text-align: right;
    word-break: break-all;
}

@media (max-width: 480px) {
    .bank-modal {
        padding: 28px 20px 24px;
    }

    .bank-detail-row {
        flex-direction: column;
        gap: 2px;
    }

    .bank-detail-value {
        text-align: left;
    }

    .bank-modal-title {
        font-size: 1.3rem;
    }
}