/* ============================================================
   LUXURY YACHT RENTAL — Modern Premium Design System
   Koyu Lacivert + Altın — Ultra Modern & Clean
   ============================================================ */

:root {
    --navy-900: #0a1628;
    --navy-800: #0f1f36;
    --navy-700: #162d4f;
    --navy-600: #1e3a5f;
    --navy-500: #2a5192;
    --gold-500: #c9a84c;
    --gold-400: #d4b868;
    --gold-300: #e0ca8a;
    --gold-200: #f0e0b5;
    --white: #ffffff;
    --gray-50: #f8f9fb;
    --gray-100: #f0f2f5;
    --gray-200: #e4e7ec;
    --gray-300: #cdd3dc;
    --gray-400: #9aa3b0;
    --gray-500: #6b7585;
    --gray-600: #4a5568;
    --gray-700: #2d3748;
    --gray-800: #1a202c;
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 3px rgba(10,22,40,.06);
    --shadow-md: 0 4px 16px rgba(10,22,40,.08);
    --shadow-lg: 0 12px 40px rgba(10,22,40,.12);
    --shadow-xl: 0 24px 64px rgba(10,22,40,.16);
    --transition: .25s cubic-bezier(.4,0,.2,1);
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font-sans);
    background: var(--gray-50);
    color: var(--navy-800);
    line-height: 1.65;
    font-size: 15px;
    overflow-x: hidden;
}

a { color: var(--gold-500); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-400); }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--navy-800);
    line-height: 1.25;
    letter-spacing: -.01em;
}

p { color: var(--gray-600); margin: 0; }

/* --- Layout --- */
.container { width: min(1260px, 92%); margin: 0 auto; }
.section { padding: 4rem 0; }

/* --- Flex/Grid Utilities --- */
.row { display: flex; }
.between { justify-content: space-between; }
.center { align-items: center; }
.gap { gap: 1rem; }
.gap-sm { gap: .5rem; }
.wrap-row { flex-wrap: wrap; }
.grid { display: grid; gap: 1.5rem; }
.cards { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.two { grid-template-columns: 1.2fr 1fr; }

@media (max-width: 768px) {
    .two { grid-template-columns: 1fr; }
    .cards { grid-template-columns: 1fr; }
}

/* Legacy navigation/hero removed — active theme uses tk-* classes */

/* --- Glass Panels --- */
.glass {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.panel { padding: 1.5rem; }


/* --- Buttons --- */
.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .75rem 1.8rem;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--navy-900);
    font-weight: 700;
    font-size: .9rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 4px 16px rgba(201,168,76,.25);
    text-decoration: none;
    letter-spacing: .3px;
}

.btn-gold:hover {
    filter: brightness(1.1);
    box-shadow: 0 6px 24px rgba(201,168,76,.4);
    color: var(--navy-900);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .7rem 1.6rem;
    border-radius: var(--radius-sm);
    border: 2px solid var(--gray-300);
    background: transparent;
    color: var(--navy-700);
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    letter-spacing: .3px;
}

.btn-outline:hover {
    border-color: var(--gold-500);
    color: var(--gold-500);
    background: rgba(201,168,76,.05);
    box-shadow: 0 4px 12px rgba(201,168,76,.15);
}

.btn-sm { padding: .4rem .9rem; font-size: .8rem; }

/* --- Section Kickers & Heads --- */
.section-kicker {
    display: inline-block;
    margin-bottom: .4rem;
    padding: .25rem .7rem;
    border-radius: var(--radius-full);
    background: rgba(201,168,76,.08);
    color: var(--gold-500);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.section-head { margin-bottom: 2.5rem; }
.section-head h1, .section-head h2 { font-size: clamp(1.8rem, 2.6vw, 2.8rem); margin-bottom: .8rem; font-weight: 700; }
.section-head p { max-width: 600px; font-size: 1rem; color: var(--gray-600); line-height: 1.6; }

/* --- Cards --- */
.card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: all .35s cubic-bezier(.4,0,.2,1);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--gray-300);
}

.card img { width: 100%; height: 220px; object-fit: cover; }

.card-body {
    padding: 1.2rem 1.4rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: .45rem;
}

.card-body h3 { font-size: 1.1rem; font-family: var(--font-display); color: var(--navy-800); }
.card-body p { font-size: .85rem; color: var(--gray-500); }
.card-body strong { font-size: 1.1rem; color: var(--gold-500); font-family: var(--font-display); }

/* --- Meta Row --- */
.meta-row { display: flex; flex-wrap: wrap; gap: .35rem; }

.meta-row span {
    padding: .2rem .55rem;
    border-radius: var(--radius-full);
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: .72rem;
    font-weight: 500;
}

/* --- Trust Strip --- */
.trust-strip {
    padding: 1.2rem 1.5rem;
    background: var(--white);
    border-color: var(--gray-200);
    display: flex;
    justify-content: center;
}

.trust-strip span {
    padding: .35rem .8rem;
    border-radius: var(--radius-full);
    background: rgba(201,168,76,.06);
    color: var(--gold-500);
    font-size: .78rem;
    font-weight: 600;
}

/* Legacy home-signature/smart-picks/compare removed */

/* --- Blog --- */
.blog-page .section-head h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); }

.blog-featured-hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    overflow: hidden;
    margin-bottom: 2rem;
}

.blog-featured-media {
    min-height: 320px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.blog-featured-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .6rem;
}

.blog-featured-body h2 { font-size: 1.5rem; font-family: var(--font-display); }
.blog-featured-body p { font-size: .9rem; }

@media (max-width: 768px) {
    .blog-featured-hero { grid-template-columns: 1fr; }
    .blog-featured-media { min-height: 200px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
}

.blog-chip {
    display: inline-flex;
    padding: .2rem .55rem;
    border-radius: var(--radius-full);
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: .7rem;
    font-weight: 600;
}

.blog-meta-row { display: flex; flex-wrap: wrap; gap: .3rem; }

.blog-category-strip {
    margin-bottom: 1.5rem;
    padding: .8rem;
    border-radius: var(--radius-md);
    background: var(--gray-100);
}

.blog-card-advanced { overflow: hidden; }
.blog-card-advanced img { height: 200px; object-fit: cover; }

/* Blog Detail */
.blog-detail-layout { display: grid; grid-template-columns: 2.2fr 1fr; gap: 1.5rem; }

@media (max-width: 900px) { .blog-detail-layout { grid-template-columns: 1fr; } }

.blog-detail-hero { overflow: hidden; }
.blog-detail-cover { width: 100%; height: 360px; object-fit: cover; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.blog-detail-header { padding: 1.5rem; }
.blog-detail-header h1 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin: .5rem 0; }
.blog-tag-row { margin-top: .3rem; }

.article-content { padding: 0 1.5rem 1.5rem; line-height: 1.85; font-size: .95rem; color: var(--gray-700); }
.article-panel { padding: 0; }
.article-panel .row { padding: 0 1.5rem 1.5rem; }

.blog-detail-sidebar h3 { font-size: 1rem; margin-bottom: .8rem; }
.blog-sidebar-list { display: flex; flex-direction: column; gap: .6rem; }

.blog-sidebar-item {
    display: flex;
    gap: .6rem;
    align-items: center;
    padding: .5rem;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.blog-sidebar-item:hover { background: var(--gray-100); }
.blog-sidebar-item img { width: 56px; height: 56px; border-radius: var(--radius-xs); object-fit: cover; }
.blog-sidebar-item strong { display: block; font-size: .82rem; color: var(--navy-800); }
.blog-sidebar-item small { font-size: .72rem; color: var(--gray-400); }

/* Legacy yacht-listing/yacht-detail showcase removed */

.detail-gallery-grid, .upload-preview-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: .4rem; }
.detail-gallery-grid img, .upload-preview-grid img { width: 100%; height: 72px; object-fit: cover; border-radius: var(--radius-xs); cursor: pointer; transition: opacity var(--transition); }
.detail-gallery-grid img:hover { opacity: .8; }

/* Specs Panel */
.detail-specs-panel h3 { font-size: 1rem; margin-bottom: 1rem; }

.spec-list p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .55rem 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: .85rem;
}

.spec-key { display: flex; align-items: center; gap: .4rem; color: var(--gray-500); }
.spec-row-icon { display: inline-flex; font-style: normal; font-size: .85rem; color: var(--gold-500); }
.spec-list strong { color: var(--navy-800); font-size: .88rem; }

/* Price Box */
.price-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .6rem;
    margin-top: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
}

.price-box div { text-align: center; }
.price-box small { display: block; color: var(--gray-400); font-size: .72rem; }
.price-box strong { font-size: 1.2rem; color: var(--gold-500); font-family: var(--font-display); }

/* Seasonal Box */
.seasonal-box {
    margin-top: .8rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: .8rem;
    background: var(--gray-50);
}

.seasonal-box h4 { margin: 0 0 .5rem; color: var(--gold-500); font-size: .88rem; }

.seasonal-row { padding: .5rem 0; border-top: 1px dashed var(--gray-200); }
.seasonal-row:first-of-type { border-top: 0; padding-top: 0; }

.seasonal-row summary {
    display: flex;
    justify-content: space-between;
    gap: .5rem;
    align-items: center;
    cursor: pointer;
    list-style: none;
}

.seasonal-row summary::-webkit-details-marker { display: none; }
.seasonal-row summary::after { content: '▾'; color: var(--gold-500); font-size: .8rem; }
.seasonal-row:not([open]) summary::after { content: '▸'; }
.seasonal-row summary span { color: var(--navy-700); font-weight: 700; }
.seasonal-row summary strong { color: var(--gold-500); font-size: .9rem; }
.seasonal-row small { display: block; margin-top: .3rem; color: var(--gray-400); font-size: .78rem; }

/* Detail Extras */
.detail-conversion-strip, .booking-conversion-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem;
    margin-top: 1.5rem;
    background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
    border-color: transparent;
    color: var(--white);
}

.detail-conversion-strip h3, .booking-conversion-strip h3 { color: var(--white); }
.detail-conversion-strip p, .booking-conversion-strip p { color: rgba(255,255,255,.65); }

.yacht-meta-panel { margin-top: 1rem; }
.yacht-meta-panel h3 { font-size: 1rem; margin-bottom: .6rem; }

.detail-bullet-list { list-style: none; padding: 0; }

.detail-bullet-list li {
    position: relative;
    padding: .3rem 0 .3rem 1.2rem;
    font-size: .85rem;
    color: var(--gray-600);
}

.detail-bullet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .65rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-500);
}

.detail-about-text { font-size: .9rem; line-height: 1.7; }

.detail-minmax-chip {
    display: inline-flex;
    padding: .3rem .7rem;
    border-radius: var(--radius-full);
    background: var(--gray-100);
    color: var(--navy-700);
    font-weight: 600;
    font-size: .85rem;
}

.detail-note { font-size: .8rem; color: var(--gray-400); font-style: italic; }
.detail-owner-location, .detail-owner-joined { font-size: .82rem; color: var(--gray-400); }
.detail-owner-bio { font-size: .88rem; line-height: 1.65; }
.detail-neighborhood-main { font-size: .9rem; line-height: 1.7; }
.detail-info-grid { gap: 1.5rem; }
.detail-similar-grid { margin-top: .5rem; }
.detail-similar-card img { height: 180px; }

/* --- Booking Page --- */
.booking-showcase-strip {
    padding: 1.8rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
    border-color: transparent;
    border-radius: var(--radius-lg);
    color: var(--white);
    box-shadow: 0 8px 32px rgba(10,22,40,.15);
}

.booking-showcase-metrics span {
    padding: .45rem .85rem;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,.1);
    color: var(--gold-200);
    font-size: .85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.booking-layout { margin-top: 1rem; }

.booking-form, .booking-form-pro {
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.booking-field-grid { gap: 1.2rem; }

.booking-field-card label {
    display: block;
    font-size: .8rem;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: .5rem;
    letter-spacing: .3px;
}

.booking-input-wrap {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .75rem 1rem;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    background: var(--white);
    transition: all var(--transition);
    box-shadow: 0 2px 8px rgba(10,22,40,.04);
}

.booking-input-wrap:focus-within {
    border-color: var(--gold-500);
    box-shadow: 0 4px 16px rgba(201,168,76,.12);
    background: rgba(201,168,76,.02);
}

.booking-input-icon { display: inline-flex; font-size: .9rem; color: var(--gold-500); font-style: normal; }

.booking-input-wrap input, .booking-input-wrap select {
    flex: 1;
    border: none;
    outline: none;
    font-size: .9rem;
    background: transparent;
    color: var(--navy-800);
    font-weight: 500;
}

.booking-input-wrap input::placeholder { color: var(--gray-400); }

.booking-fieldset {
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    background: rgba(255,255,255,.5);
}

.booking-fieldset legend {
    font-weight: 700;
    font-size: .88rem;
    color: var(--navy-800);
    padding: 0 .6rem;
    letter-spacing: .3px;
}

.booking-check-card {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .7rem .8rem;
    border-radius: var(--radius-sm);
    font-size: .85rem;
    cursor: pointer;
    transition: all var(--transition);
    border: 1px solid transparent;
}

.booking-check-card:hover {
    background: rgba(201,168,76,.06);
    border-color: rgba(201,168,76,.2);
}
.booking-check-card input { accent-color: var(--gold-500); cursor: pointer; }
.booking-check-icon { font-style: normal; color: var(--gold-500); font-size: .9rem; }
.booking-help-text { display: block; font-size: .75rem; color: var(--gray-500); margin-top: .35rem; font-weight: 500; }

/* Price Estimator */
.booking-price-estimator {
    margin-top: 1.5rem;
    padding: 1.6rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--gray-50), var(--white));
    box-shadow: 0 2px 12px rgba(10,22,40,.04);
}

.booking-price-estimator h3 { font-size: 1.05rem; margin-bottom: 1rem; color: var(--navy-800); font-weight: 700; }

.booking-price-estimator p {
    display: flex;
    justify-content: space-between;
    padding: .5rem 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: .88rem;
    align-items: center;
}

.booking-price-estimator p span { color: var(--gray-600); font-weight: 500; }
.booking-price-estimator p strong { color: var(--navy-800); font-weight: 700; }

.booking-price-estimator .est-total {
    border-bottom: 2px solid var(--gold-500);
    font-size: 1.05rem;
    padding: .8rem 0;
    margin-top: .5rem;
}

.booking-price-estimator .est-total strong { color: var(--gold-500); font-size: 1.35rem; font-weight: 700; }

/* Booking Summary */
.booking-summary, .booking-summary-pro {
    padding: 2rem;
    height: fit-content;
    position: sticky;
    top: 80px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--white), rgba(255,255,255,.95));
    box-shadow: 0 8px 24px rgba(10,22,40,.08);
}
.booking-summary h3 { font-size: 1.1rem; margin-bottom: 1.2rem; font-weight: 700; color: var(--navy-900); }

.booking-summary p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .65rem 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: .88rem;
}

.booking-summary-key { display: flex; align-items: center; gap: .5rem; color: var(--gray-600); font-weight: 500; }
.booking-summary-icon { font-style: normal; color: var(--gold-500); font-size: .9rem; }
.booking-summary strong { color: var(--navy-900); font-weight: 700; }
.booking-summary small { display: block; margin-top: 1rem; font-size: .8rem; color: var(--gray-500); line-height: 1.5; }

/* Availability Board */
.availability-board {
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    box-shadow: 0 4px 16px rgba(10,22,40,.06);
}

.availability-board h3 { color: var(--navy-900); font-weight: 700; }

.availability-badge {
    padding: .4rem .85rem;
    border-radius: var(--radius-full);
    background: rgba(34,197,94,.1);
    color: #16a34a;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .3px;
}

.availability-legend { margin: 1.2rem 0; }

.dot { display: inline-block; width: 12px; height: 12px; border-radius: 50%; margin-right: .4rem; }
.dot-available { background: #22c55e; box-shadow: 0 0 8px rgba(34,197,94,.3); }
.dot-unavailable { background: #ef4444; }
.dot-selected { background: var(--gold-500); box-shadow: 0 0 8px rgba(201,168,76,.4); }

.availability-legend span { font-size: .8rem; color: var(--gray-600); display: inline-flex; align-items: center; font-weight: 500; }

.availability-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(36px, 1fr)); gap: 3px; }

.avail-cell {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-xs);
    font-size: .7rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    border: 1.5px solid transparent;
}

.avail-cell.available {
    background: rgba(34,197,94,.12);
    color: #16a34a;
    border-color: rgba(34,197,94,.2);
}
.avail-cell.available:hover {
    background: rgba(34,197,94,.25);
    transform: scale(1.05);
    border-color: rgba(34,197,94,.4);
}
.avail-cell.unavailable { background: rgba(239,68,68,.08); color: #dc2626; cursor: not-allowed; opacity: .5; }
.avail-cell.selected {
    background: rgba(201,168,76,.18);
    color: var(--gold-500);
    border-color: var(--gold-500);
    box-shadow: 0 0 12px rgba(201,168,76,.3);
}

.avail-cell.month-label {
    grid-column: 1 / -1;
    aspect-ratio: auto;
    font-weight: 700;
    font-size: .82rem;
    color: var(--navy-900);
    justify-content: flex-start;
    padding: .6rem 0;
    cursor: default;
    background: none;
    letter-spacing: .2px;
}

.availability-suggest {
    margin-top: 1.2rem;
    padding: 1rem 1.2rem;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(201,168,76,.08), rgba(201,168,76,.04));
    border: 1.5px solid rgba(201,168,76,.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.availability-suggest p {
    color: var(--navy-800);
    font-weight: 500;
    font-size: .88rem;
    margin: 0;
}

/* --- FAQ --- */
.faq-list { display: flex; flex-direction: column; gap: .6rem; }

.faq-list details { padding: 0; overflow: hidden; transition: all var(--transition); }

.faq-list summary {
    padding: 1rem 1.2rem;
    cursor: pointer;
    font-weight: 600;
    font-size: .9rem;
    color: var(--navy-800);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; font-size: 1.2rem; color: var(--gold-500); font-weight: 300; transition: transform var(--transition); }
.faq-list details[open] summary::after { content: '−'; }
.faq-list details p { padding: 0 1.2rem 1rem; font-size: .88rem; line-height: 1.7; }

/* Legacy route-cards/booking-steps/final-cta removed */

/* --- Footer --- */
.footer {
    background: var(--navy-900);
    color: rgba(255,255,255,.75);
    padding: 3rem 0 1.5rem;
    margin-top: 2rem;
}

.footer-main { background: transparent; border: none; }

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

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

.footer-col h3, .footer-col h4 { color: var(--white); font-family: var(--font-display); margin-bottom: .65rem; }
.footer-col h3 { font-size: 1.15rem; }
.footer-col h4 { font-size: .9rem; }
.footer-col p { font-size: .82rem; color: rgba(255,255,255,.55); margin-bottom: .5rem; }

.footer-col a {
    display: block;
    padding: .2rem 0;
    color: rgba(255,255,255,.6);
    font-size: .82rem;
    transition: color var(--transition);
}

.footer-col a:hover { color: var(--gold-400); }

.footer-badges { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .6rem; }

.footer-badges span {
    padding: .2rem .5rem;
    border-radius: var(--radius-full);
    background: rgba(201,168,76,.08);
    color: var(--gold-400);
    font-size: .68rem;
    font-weight: 600;
}

.footer-contact { font-size: .82rem; }

.wa-btn {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    margin-top: .5rem;
    padding: .4rem .85rem;
    border-radius: var(--radius-sm);
    background: #25d366;
    color: var(--white) !important;
    font-size: .78rem;
    font-weight: 700;
    transition: all var(--transition);
}

.wa-btn:hover { filter: brightness(1.1); color: var(--white) !important; }

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

.footer-bottom p { font-size: .75rem; color: rgba(255,255,255,.4); }
.footer-bottom-links a { color: rgba(255,255,255,.4); font-size: .75rem; }
.footer-bottom-links a:hover { color: var(--gold-400); }

/* --- Icon System --- */
.icon-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(201,168,76,.08);
    color: var(--gold-500);
    font-size: .92rem;
    flex-shrink: 0;
}

.icon-chip-sm { width: 28px; height: 28px; font-size: .78rem; }
.icon-title { display: flex; align-items: center; gap: .5rem; font-size: 1rem; }
.icon-title-main { display: flex; align-items: center; gap: .6rem; }

/* --- Flash Messages --- */
.success {
    padding: 1rem 1.2rem;
    border-radius: var(--radius-md);
    background: rgba(34,197,94,.07);
    border: 1.5px solid rgba(34,197,94,.2);
    color: #16a34a;
    font-size: .88rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: .6rem;
}

.error {
    padding: 1rem 1.2rem;
    border-radius: var(--radius-md);
    background: rgba(239,68,68,.07);
    border: 1.5px solid rgba(239,68,68,.2);
    color: #dc2626;
    font-size: .88rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: .6rem;
}

/* --- Animations --- */
.reveal-ready {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}

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

/* Admin layout handled by admin.css */
.admin-stat-card strong { font-size: 1.8rem; font-family: var(--font-display); color: var(--navy-800); }
.admin-stat-card span { font-size: .8rem; color: var(--gray-500); }

.admin-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    background: var(--white);
}

table { width: 100%; border-collapse: collapse; font-size: .85rem; }

th {
    text-align: left;
    padding: .8rem 1rem;
    background: var(--gray-50);
    color: var(--gray-500);
    font-weight: 600;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    border-bottom: 1px solid var(--gray-200);
}

td { padding: .65rem 1rem; border-bottom: 1px solid var(--gray-100); color: var(--navy-800); }
tr:hover td { background: var(--gray-50); }

.admin-form { display: flex; flex-direction: column; gap: 1rem; }

.admin-form label { display: block; font-size: .78rem; font-weight: 600; color: var(--navy-700); margin-bottom: .3rem; }

.admin-form input, .admin-form select, .admin-form textarea {
    width: 100%;
    padding: .6rem .85rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: .88rem;
    background: var(--white);
    color: var(--navy-800);
    transition: border-color var(--transition);
}

.admin-form input:focus, .admin-form select:focus, .admin-form textarea:focus { outline: none; border-color: var(--gold-500); }
.admin-form textarea { min-height: 120px; resize: vertical; }

.admin-login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
}

.admin-login-card {
    width: min(420px, 92%);
    padding: 2.5rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.admin-login-card h1 { font-size: 1.5rem; text-align: center; margin-bottom: 1.5rem; }

.admin-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .8rem;
    margin-bottom: 1.2rem;
}

.admin-toolbar-search { display: flex; align-items: center; gap: .5rem; }

.admin-toolbar-search input {
    padding: .5rem .8rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: .85rem;
}

.badge { display: inline-flex; padding: .15rem .5rem; border-radius: var(--radius-full); font-size: .68rem; font-weight: 700; }
.badge-success { background: rgba(34,197,94,.1); color: #16a34a; }
.badge-warning { background: rgba(234,179,8,.1); color: #ca8a04; }
.badge-danger { background: rgba(239,68,68,.08); color: #dc2626; }
.badge-info { background: rgba(59,130,246,.08); color: #2563eb; }

.admin-tabs { display: flex; gap: .25rem; margin-bottom: 1.5rem; border-bottom: 1px solid var(--gray-200); }

.admin-tabs a, .admin-tabs button {
    padding: .6rem 1rem;
    border: none;
    background: none;
    color: var(--gray-500);
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all var(--transition);
}

.admin-tabs a:hover, .admin-tabs button:hover { color: var(--navy-700); }
.admin-tabs a.active, .admin-tabs button.active { color: var(--gold-500); border-bottom-color: var(--gold-500); }

.pagination { display: flex; align-items: center; gap: .3rem; margin-top: 1rem; justify-content: center; }

.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    border-radius: var(--radius-xs);
    border: 1px solid var(--gray-200);
    font-size: .82rem;
    font-weight: 600;
    color: var(--gray-600);
    transition: all var(--transition);
}

.pagination a:hover { border-color: var(--gold-500); color: var(--gold-500); }
.pagination .active { background: var(--gold-500); color: var(--white); border-color: var(--gold-500); }

/* Legacy site-modern variant removed */

/* --- Utilities --- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

main { min-height: calc(100vh - 128px); }

/* --- Responsive --- */
@media (max-width: 600px) {
    body { font-size: 14px; }
    .section { padding: 2.5rem 0; }
    .booking-form, .booking-form-pro { padding: 1.2rem; }
}

/* --- Booking Wizard --- */
.booking-steps-indicator {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
    padding: 0;
}

.booking-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    flex: 1;
    position: relative;
}

.booking-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 24px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--gray-300);
    transform: translateX(50%);
}

.booking-step-active:not(:last-child)::after { background: var(--gold-500); }

.booking-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--navy-700);
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid var(--gray-300);
    transition: all var(--transition);
}

.booking-step-active .booking-step-number {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--navy-900);
    border-color: var(--gold-500);
    box-shadow: 0 4px 12px rgba(201,168,76,.3);
}

.booking-step-label {
    font-size: .75rem;
    font-weight: 600;
    color: var(--gray-500);
    text-align: center;
}

.booking-step-active .booking-step-label { color: var(--navy-800); }

.booking-form-wizard { padding: 2.2rem; }

.booking-step-content {
    display: none;
    animation: fadeInSlide .3s ease;
}

.booking-step-content-active { display: block; }

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

.booking-step-content h2 {
    font-size: 1.4rem;
    margin-bottom: .5rem;
    font-weight: 700;
}

.booking-step-subtitle {
    font-size: .95rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.booking-step-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: space-between;
}

.booking-step-actions .btn-gold,
.booking-step-actions .btn-outline {
    flex: 1;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
}

.input-error {
    border-color: #dc2626 !important;
    background-color: rgba(239,68,68,.05) !important;
}

.booking-review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.booking-review-card {
    padding: 1.2rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
}

.booking-review-card h4 {
    font-size: .85rem;
    color: var(--gray-600);
    margin-bottom: .4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1px;
}

.booking-review-card p {
    font-size: 1rem;
    color: var(--navy-800);
    margin: 0;
}

.booking-review-card strong {
    color: var(--gold-500);
    font-weight: 700;
}

/* Wizard Summary Sidebar */
.booking-summary-wizard {
    padding: 2rem;
}

.booking-summary-section {
    margin-bottom: 1.2rem;
}

.booking-summary-label {
    font-size: .75rem;
    color: var(--gray-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1px;
    margin-bottom: .3rem;
}

.booking-summary-section p:last-child {
    font-size: 1rem;
    color: var(--navy-800);
}

.booking-summary-section strong {
    color: var(--navy-900);
    font-weight: 700;
}

.booking-summary-total {
    padding-top: 1rem;
    border-top: 2px solid var(--gold-500);
}

.booking-summary-amount {
    font-size: 1.3rem !important;
    color: var(--gold-500) !important;
}

@media (max-width: 768px) {
    .booking-steps-indicator { margin-bottom: 2rem; }
    .booking-step-number { width: 40px; height: 40px; font-size: .9rem; }
    .booking-step-label { font-size: .7rem; }
    .booking-step:not(:last-child)::after { display: none; }
    .booking-step-actions { flex-direction: column; }
    .booking-layout { grid-template-columns: 1fr !important; }
    .grid.three { grid-template-columns: 1fr !important; }
    .booking-payment-options { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   PAYMENT FORM – STEP 4
   ═══════════════════════════════════════════════════════════ */

/* Payment Method Cards */
.booking-payment-methods { margin-bottom: 1.5rem; }
.booking-payment-method-label {
    font-size: .85rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: .75rem;
    display: block;
}
.booking-payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: .75rem;
}
.booking-payment-option {
    position: relative;
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 1rem 1.1rem;
    border-radius: 12px;
    border: 2px solid var(--gray-200);
    background: white;
    cursor: pointer;
    transition: all .2s ease;
}
.booking-payment-option:hover {
    border-color: var(--gold-400);
    background: rgba(234,179,8,.03);
}
.booking-payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0; height: 0;
}
.booking-payment-option input[type="radio"]:checked ~ .booking-payment-option-content {
    color: var(--gold-600);
}
.booking-payment-option:has(input:checked) {
    border-color: var(--gold-500);
    background: rgba(234,179,8,.06);
    box-shadow: 0 0 0 3px rgba(234,179,8,.12);
}
.booking-payment-option-content {
    display: flex;
    align-items: center;
    gap: .6rem;
    flex: 1;
}
.booking-payment-option-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: 8px;
    background: var(--gray-50);
    color: var(--navy-700);
    flex-shrink: 0;
}
.booking-payment-option:has(input:checked) .booking-payment-option-icon {
    background: rgba(234,179,8,.12);
    color: var(--gold-600);
}
.booking-payment-option-name {
    font-size: .84rem;
    font-weight: 600;
    color: var(--navy-800);
}
.booking-payment-option-check {
    display: none;
    color: var(--gold-500);
}
.booking-payment-option:has(input:checked) .booking-payment-option-check {
    display: flex;
}

/* Billing Section */
.booking-billing-section {
    margin-bottom: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--gray-100);
}
.booking-section-title {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .9rem;
    font-weight: 700;
    color: var(--navy-900);
    margin: 0 0 1rem;
}
.booking-section-title svg {
    color: var(--gold-500);
    flex-shrink: 0;
}

/* Three column grid */
.grid.three { grid-template-columns: repeat(3, 1fr); }

/* Textarea wrap */
.booking-textarea-wrap {
    padding: 0;
}
.booking-textarea-wrap textarea {
    width: 100%;
    padding: .75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-family: inherit;
    font-size: .88rem;
    color: var(--navy-900);
    background: white;
    resize: vertical;
    transition: border-color .2s ease;
}
.booking-textarea-wrap textarea:focus {
    outline: none;
    border-color: var(--gold-400);
    box-shadow: 0 0 0 3px rgba(234,179,8,.1);
}

/* Deposit Info Box */
.booking-deposit-info {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    background: rgba(99,102,241,.05);
    border: 1px solid rgba(99,102,241,.12);
    margin-top: 1.25rem;
}
.booking-deposit-info svg {
    flex-shrink: 0;
    color: #6366f1;
    margin-top: 2px;
}
.booking-deposit-info strong {
    display: block;
    font-size: .84rem;
    color: #4338ca;
    margin-bottom: 2px;
}
.booking-deposit-info p {
    font-size: .8rem;
    color: #6366f1;
    margin: 0;
    line-height: 1.5;
}

/* --- Print --- */
@media print {
    body { background: white; color: black; }
    .glass { background: white; border: 1px solid #ddd; box-shadow: none; }
}

