/* ==========================================================================
   Atlanta Escort Service - Exact Reference Replica Design System
   ========================================================================== */

:root {
    --bg-dark: #07080a;
    --bg-surface: #0a0b0e;
    --bg-card: #121318;
    --bg-card-hover: #181920;
    
    --gold-button: #dfba61;
    --gold-primary: #d4af37;
    --gold-tag: #c8a951;
    --gold-light: #ebd082;
    
    --text-white: #ffffff;
    --text-body: #d1d5db;
    --text-muted: #828894;
    
    --border-gold: 1px solid rgba(212, 175, 55, 0.4);
    --border-gold-subtle: 1px solid rgba(212, 175, 55, 0.2);
    --border-subtle: 1px solid rgba(255, 255, 255, 0.08);
    
    --font-serif: 'Playfair Display', 'Cinzel', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --transition-fast: all 0.25s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

img, video, iframe, svg, canvas {
    max-width: 100%;
    height: auto;
    display: block;
}

.container,
.hero-container,
.hero-content,
.main-content,
section,
header,
footer,
div,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    max-width: 100%;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Section Typography & Header Titles --- */
.section-tag {
    color: var(--gold-tag);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 34px;
    font-weight: 400;
    color: var(--text-white);
    line-height: 1.25;
    letter-spacing: 0.5px;
}

.section-tag-header {
    margin-bottom: 32px;
}

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

.section-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
}

/* --- Buttons --- */
.btn-primary {
    background: var(--gold-button);
    color: #000000;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 12px 24px;
    border-radius: 3px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.btn-primary:hover {
    background: var(--gold-light);
    box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 12px 24px;
    border-radius: 3px;
    border: var(--border-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.btn-outline-small {
    background: transparent;
    color: var(--text-white);
    border: var(--border-gold);
    padding: 7px 14px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.2px;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.btn-outline-small span {
    color: var(--gold-primary);
}

.btn-outline-small:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

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

/* --- Header Component --- */
header {
    background-color: rgba(7, 8, 10, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
}

.header-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styling */
.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-decoration: none;
    width: 165px;
}

.logo-title {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 700;
    color: #dfba61;
    letter-spacing: 3.5px;
    margin-bottom: 3px;
    text-transform: uppercase;
}

.logo-subtitle-row {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 4px;
}

.logo-line {
    flex: 1;
    height: 1px;
    background-color: #dfba61;
    opacity: 0.9;
}

.logo-subtitle {
    font-family: var(--font-sans);
    font-size: 7px;
    font-weight: 600;
    color: #dfba61;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0.95;
}

.mobile-nav-book {
    display: none;
}

nav ul {
    display: flex;
    gap: 32px;
    align-items: center;
}

nav a {
    color: #f0f0f0;
    font-family: var(--font-sans);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 4px 0;
    transition: var(--transition-fast);
}

nav a:hover,
nav a.active {
    color: #dfba61;
}

.book-now-btn {
    background: #dfba61;
    color: #000000;
    padding: 10px 22px;
    border: none;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.book-now-btn svg,
.book-now-btn .calendar-icon {
    stroke: #000000;
    color: #000000;
}

.book-now-btn:hover {
    background: #ebd082;
    box-shadow: 0 4px 18px rgba(223, 186, 97, 0.35);
}

.book-now-btn:hover {
    background: var(--gold-light);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 38px;
    height: 38px;
    padding: 9px 8px;
    background: rgba(223, 186, 97, 0.1);
    border: 1px solid rgba(223, 186, 97, 0.4);
    border-radius: 4px;
    cursor: pointer;
    z-index: 1002;
    transition: var(--transition-fast);
}

.mobile-menu-toggle:hover {
    background: rgba(223, 186, 97, 0.2);
    border-color: #dfba61;
}

.hamburger-bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #dfba61;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    z-index: 998;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.mobile-nav-open {
    overflow: hidden;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 600px;
    padding-top: 140px;
    padding-bottom: 80px;
    background-color: #07080a;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 54%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    z-index: 1;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #07080a 0%, #07080a 46%, rgba(7, 8, 10, 0.65) 62%, rgba(7, 8, 10, 0.05) 100%);
    pointer-events: none;
    z-index: 2;
}

.hero-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
    position: relative;
    z-index: 3;
}

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

.hero-subtitle {
    color: #dfba61;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3.5px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 54px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 1px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.title-white {
    color: #ffffff;
}

.title-gold {
    color: #dfba61;
}

.hero-description {
    font-size: 14.5px;
    color: #d1d5db;
    max-width: 520px;
    margin-bottom: 38px;
    line-height: 1.65;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 42px;
}

.hero-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(223, 186, 97, 0.4);
    background: rgba(223, 186, 97, 0.06);
    color: #dfba61;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-feature span {
    font-size: 11.5px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.35;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* --- Section Spacing --- */
section {
    padding: 80px 0;
}

/* --- Featured Models Section --- */
.featured-models {
    background-color: #08090c;
    padding: 45px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.carousel-nav-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.slider-arrow {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    background: transparent;
    border: 1px solid rgba(223, 186, 97, 0.5);
    color: #dfba61;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.slider-arrow:hover {
    background: #dfba61;
    color: #000000;
}

.models-grid-wrapper {
    position: relative;
    width: 100%;
}

.models-grid {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0 16px;
    scrollbar-width: none;
}

.models-grid::-webkit-scrollbar {
    display: none;
}

.model-card {
    flex: 0 0 calc(20% - 14.4px);
    min-width: 225px;
    scroll-snap-align: start;
    border: 1px solid rgba(223, 186, 97, 0.45);
    border-radius: 6px;
    overflow: hidden;
    background: #0f1015;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.model-card:hover {
    transform: translateY(-5px);
    border-color: #dfba61;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.model-card-inner {
    position: relative;
    width: 100%;
    height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.model-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.model-card:hover .model-image {
    transform: scale(1.04);
}

.model-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 16, 21, 0.1) 0%, rgba(15, 16, 21, 0.4) 40%, rgba(15, 16, 21, 0.95) 80%, #0f1015 100%);
    pointer-events: none;
    z-index: 1;
}

.favorite-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(15, 16, 21, 0.6);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(223, 186, 97, 0.5);
    color: #dfba61;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.2s ease;
}

.favorite-btn:hover {
    background: rgba(223, 186, 97, 0.25);
    transform: scale(1.1);
}

.heart-icon {
    width: 14px;
    height: 14px;
}

.model-content {
    position: relative;
    z-index: 2;
    padding: 16px;
}

.model-name {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 4px;
}

.model-details {
    font-size: 11.5px;
    color: #d1d5db;
    margin-bottom: 8px;
}

.model-rating-row {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11.5px;
    margin-bottom: 6px;
}

.star-icon {
    color: #dfba61;
    font-size: 12px;
}

.rating-value {
    color: #dfba61;
    font-weight: 700;
}

.rating-count {
    color: #999999;
}

.model-price {
    font-size: 12px;
    color: #ffffff;
    margin-bottom: 14px;
}

.price-val {
    color: #dfba61;
    font-weight: 600;
}

.btn-card-action {
    display: block;
    width: 100%;
    padding: 9px 0;
    text-align: center;
    background: rgba(15, 16, 21, 0.7);
    border: 1px solid rgba(223, 186, 97, 0.55);
    border-radius: 4px;
    color: #dfba61;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: all 0.25s ease;
}

.btn-card-action:hover,
.model-card:hover .btn-card-action {
    background: #dfba61;
    color: #000000;
    border-color: #dfba61;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
}

.indicator {
    width: 32px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.indicator.active {
    background: #dfba61;
}

/* --- Why Choose Us Section --- */
.why-choose-us {
    background-color: #07080a;
    padding: 45px 0 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.why-features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
}

.why-feature-item {
    text-align: center;
    padding: 0 8px;
    transition: transform 0.3s ease;
}

.why-feature-item:hover {
    transform: translateY(-4px);
}

.why-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    width: 48px;
    height: 48px;
}

.why-feature-heading {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    color: #dfba61;
    margin-bottom: 10px;
    letter-spacing: 0.4px;
}

.why-feature-chevron {
    display: none;
}

.why-feature-desc {
    font-size: 13px;
    color: #d1d5db;
    line-height: 1.55;
    max-width: 215px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.feature-item {
    text-align: center;
    padding: 28px 16px;
    background: var(--bg-card);
    border: var(--border-gold);
    border-radius: 5px;
    transition: var(--transition-fast);
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold-button);
    background: var(--bg-card-hover);
}

.feature-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.06);
    color: var(--gold-button);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.feature-item h3 {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.55;
}

/* --- Client Reviews Section --- */
.client-reviews {
    position: relative;
    background-color: var(--bg-surface);
    border-top: var(--border-subtle);
    border-bottom: var(--border-subtle);
    padding: 60px 0 55px;
    overflow: hidden;
}

.reviews-bg-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 48%;
    z-index: 1;
    overflow: hidden;
}

.reviews-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.reviews-bg-gradient {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(90deg, var(--bg-surface) 0%, rgba(10, 11, 14, 0.4) 25%, transparent 55%, rgba(10, 11, 14, 0.7) 85%, var(--bg-surface) 100%),
        linear-gradient(180deg, rgba(10, 11, 14, 0.3) 0%, transparent 20%, transparent 80%, rgba(10, 11, 14, 0.5) 100%);
    z-index: 2;
}

.client-reviews .container {
    position: relative;
    z-index: 3;
}

.reviews-content-box {
    max-width: 780px;
}

.reviews-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.review-card {
    background: var(--bg-card);
    border: var(--border-gold);
    padding: 22px 18px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-stars {
    color: var(--gold-button);
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.review-text {
    font-size: 12.5px;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 18px;
    font-style: italic;
}

.review-author {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text-muted);
}

.reviews-footer {
    text-align: center;
}

.btn-see-all {
    color: var(--gold-button);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2px;
    border-bottom: 1px solid var(--gold-button);
    padding-bottom: 3px;
    display: inline-block;
}

.btn-see-all:hover {
    color: var(--gold-light);
    border-color: var(--gold-light);
}

/* --- Cities Section --- */
.cities-section {
    background-color: var(--bg-dark);
    padding: 55px 0 60px;
    border-bottom: var(--border-subtle);
}

.cities-layout {
    display: grid;
    grid-template-columns: 3.1fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.cities-main-content .section-tag-header {
    margin-bottom: 24px;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.city-card {
    position: relative;
    height: 250px;
    border-radius: 5px;
    overflow: hidden;
    border: var(--border-gold);
    cursor: pointer;
}

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

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

.city-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 8, 10, 0.1) 0%, rgba(7, 8, 10, 0.85) 100%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.city-name {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.city-link {
    color: var(--gold-button);
    font-size: 11.5px;
    font-weight: 600;
}

.other-cities-sidebar {
    background: var(--bg-card);
    border: var(--border-gold);
    border-radius: 5px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sidebar-title {
    font-family: var(--font-sans);
    font-size: 10.5px;
    font-weight: 700;
    color: var(--gold-tag);
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.other-cities-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.other-cities-list li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.other-city-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 12px;
    background: rgba(15, 16, 21, 0.7);
    border: 1px solid rgba(223, 186, 97, 0.25);
    border-radius: 6px;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.25s ease;
}

.other-city-link:hover {
    border-color: #dfba61;
    background: rgba(223, 186, 97, 0.08);
    transform: translateX(3px);
}

.other-city-name {
    color: #ffffff;
    font-weight: 600;
}

.other-city-action {
    color: #dfba61;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.sidebar-btn {
    display: block;
    width: 100%;
    padding: 11px 0;
    text-align: center;
    background: var(--gold-button);
    color: #000000;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.sidebar-btn:hover {
    background: var(--gold-light);
    color: #000000;
}

/* --- Blog Section --- */
.blog-section {
    background-color: var(--bg-surface);
    border-top: var(--border-subtle);
    border-bottom: var(--border-subtle);
    padding: 55px 0 60px;
}

.blog-layout {
    display: grid;
    grid-template-columns: 3.1fr 1fr;
    gap: 20px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.blog-card {
    background: var(--bg-card);
    border: var(--border-gold);
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-fast);
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-button);
}

.blog-image-wrapper {
    height: 150px;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.06);
}

.blog-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 9.5px;
    margin-bottom: 8px;
}

.blog-category {
    color: var(--gold-tag);
    font-weight: 700;
    letter-spacing: 1px;
}

.blog-date {
    color: var(--text-muted);
}

.blog-title {
    font-family: var(--font-sans);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.4;
    margin-bottom: 14px;
}

.blog-read-more {
    margin-top: auto;
    color: var(--gold-button);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1px;
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
}

.blog-sidebar-box {
    background: var(--bg-card);
    border: var(--border-gold);
    border-radius: 5px;
    padding: 24px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sidebar-box-title {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    color: var(--gold-tag);
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.sidebar-box-desc {
    font-size: 12.5px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.55;
}

/* --- Footer Component --- */
footer {
    background-color: #08090b;
    color: var(--text-body);
    padding: 60px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1.1fr 1.6fr;
    gap: 36px;
    margin-bottom: 45px;
    align-items: flex-start;
}

.footer-brand-col {
    padding-right: 20px;
}

.footer-logo {
    display: inline-flex;
    margin-bottom: 18px;
}

.footer-description {
    font-size: 12.5px;
    color: #a0a6b2;
    line-height: 1.65;
    margin-bottom: 22px;
    max-width: 320px;
}

.social-icons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-icon {
    color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-icon:hover {
    color: #dfba61;
}

.footer-section h4 {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1.8px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #a0a6b2;
    font-size: 13px;
    font-weight: 400;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: #dfba61;
    padding-left: 2px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #a0a6b2;
    font-size: 13px;
    margin-bottom: 14px;
}

.contact-info svg {
    color: #dfba61;
    flex-shrink: 0;
}

.footer-book-btn {
    margin-top: 18px;
    width: 100%;
    justify-content: center;
    padding: 11px 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 22px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #808692;
    letter-spacing: 0.5px;
}

/* --- Comprehensive Responsive Layout System --- */

/* Desktop & Laptop Tweaks (<= 1200px) */
@media (max-width: 1200px) {
    .container,
    .header-container,
    .hero-container,
    .footer-container {
        padding-left: 24px;
        padding-right: 24px;
    }

    nav ul {
        gap: 20px;
    }

    nav a {
        font-size: 11px;
    }

    .hero-title {
        font-size: 46px;
    }

    .model-card {
        flex: 0 0 calc(33.333% - 12px);
        min-width: 0;
    }

    .why-features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

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

    .footer-grid {
        grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
        gap: 28px;
    }
}

/* Tablet & Mobile Navigation Breakpoint (<= 900px) */
@media (max-width: 900px) {
    .header-actions .book-now-btn {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Mobile Drawer Navigation */
    #mainNav {
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(100%);
        width: 280px;
        max-width: 85vw;
        height: 100vh;
        background: #090a0e;
        border-left: 1px solid rgba(223, 186, 97, 0.3);
        padding: 95px 24px 40px;
        box-shadow: -10px 0 35px rgba(0, 0, 0, 0.85);
        z-index: 999;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s ease;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        visibility: hidden;
        pointer-events: none;
    }

    #mainNav.active {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }

    #mainNav ul {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
        width: 100%;
    }

    #mainNav ul li {
        width: 100%;
    }

    #mainNav a {
        font-size: 12.5px;
        letter-spacing: 2px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        width: 100%;
        display: block;
    }

    .mobile-nav-book {
        display: block;
        width: 100%;
        margin-top: auto;
        padding-top: 24px;
    }

    .mobile-nav-book .mobile-book-btn {
        width: 100%;
        justify-content: center;
        font-size: 11.5px;
        padding: 12px 18px;
    }

    /* Hero Section Tablet Adjustments */
    .hero {
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .hero-image-bg {
        width: 100%;
        opacity: 0.3;
        object-position: center top;
    }

    .hero-bg-overlay {
        background: linear-gradient(180deg, rgba(7, 8, 10, 0.88) 0%, rgba(7, 8, 10, 0.96) 100%);
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 38px;
        line-height: 1.15;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 14px;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .hero-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px 12px;
        margin-bottom: 32px;
    }

    .hero-feature {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 5px;
    }

    .feature-icon-box {
        width: 30px;
        height: 30px;
        flex-shrink: 0;
        margin: 0;
    }

    .hero-feature span {
        font-size: 11px;
        line-height: 1.2;
        margin: 0;
    }

    /* Featured Models Carousel */
    .model-card {
        flex: 0 0 calc(33.333% - 12px);
        min-width: 0;
    }

    .model-card-inner {
        height: 320px;
    }

    .model-content {
        padding: 12px;
    }

    /* Why Choose Us Accordion on Responsive */
    .why-features-grid {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .why-feature-item {
        background: #0f1015;
        border: 1px solid rgba(223, 186, 97, 0.25);
        border-radius: 6px;
        padding: 14px 18px;
        text-align: left;
        cursor: pointer;
        transform: none !important;
        transition: border-color 0.3s ease, background 0.3s ease;
        max-width: 100%;
        margin: 0;
    }

    .why-feature-item:hover,
    .why-feature-item.active {
        border-color: #dfba61;
        background: rgba(223, 186, 97, 0.05);
    }

    .why-feature-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        width: 100%;
    }

    .why-feature-icon {
        margin: 0;
        width: 38px;
        height: 38px;
        flex-shrink: 0;
    }

    .why-feature-icon svg {
        width: 26px;
        height: 26px;
    }

    .why-feature-heading {
        font-size: 15px;
        margin-bottom: 0;
        flex-grow: 1;
        color: #ffffff;
    }

    .why-feature-chevron {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        flex-shrink: 0;
    }

    .why-feature-item.active .why-feature-chevron {
        transform: rotate(180deg);
    }

    .why-feature-desc {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        margin: 0;
        max-width: 100%;
        transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, margin-top 0.35s ease, padding-top 0.35s ease;
        font-size: 13px;
        color: #d1d5db;
        line-height: 1.55;
    }

    .why-feature-item.active .why-feature-desc {
        max-height: 120px;
        opacity: 1;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    /* Reviews Section */
    .reviews-bg-wrapper {
        width: 100%;
        opacity: 0.12;
    }

    .reviews-content-box {
        max-width: 100%;
    }

    .reviews-cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Cities Layout */
    .cities-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .city-card {
        height: 210px;
    }

    .other-cities-sidebar {
        width: 100%;
        padding: 20px 18px;
    }

    .other-cities-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .other-city-link {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 10px 12px;
    }

    /* Blog Layout */
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

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

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

/* Mobile Screens (<= 640px) */
@media (max-width: 640px) {
    header {
        padding: 12px 0;
    }

    .header-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .logo {
        width: 135px;
    }

    .logo-title {
        font-size: 21px;
        letter-spacing: 2.5px;
    }

    .logo-subtitle {
        font-size: 6px;
        letter-spacing: 1.5px;
    }

    .book-now-btn {
        padding: 8px 14px;
        font-size: 10.5px;
    }

    /* Section Headers */
    .section-title {
        font-size: 26px;
    }

    .section-top-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 24px;
    }

    .carousel-nav-buttons {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .btn-outline-small {
        margin-left: auto;
    }

    /* Hero Mobile */
    .hero {
        padding-top: 80px;
        padding-bottom: 45px;
    }

    .hero-subtitle {
        font-size: 10px;
        letter-spacing: 2.5px;
        margin-bottom: 12px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-description {
        font-size: 13px;
        margin-bottom: 24px;
    }

    .hero-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 8px;
    }

    .hero-feature {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 4px;
    }

    .feature-icon-box {
        width: 28px;
        height: 28px;
        flex-shrink: 0;
        margin: 0;
    }

    .hero-feature span {
        font-size: 10.5px;
        line-height: 1.2;
        margin: 0;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
    }

    /* Models Grid */
    .model-card {
        flex: 0 0 calc(50% - 9px);
        min-width: 0;
    }

    .model-card-inner {
        height: 260px;
    }

    .model-content {
        padding: 10px 8px;
    }

    .model-name {
        font-size: 15px;
        margin-bottom: 2px;
    }

    .model-details {
        font-size: 10px;
        margin-bottom: 3px;
    }

    .model-rating-row {
        font-size: 10px;
        margin-bottom: 3px;
    }

    .model-price {
        font-size: 10.5px;
        margin-bottom: 6px;
    }

    .btn-card-action {
        padding: 6px 0;
        font-size: 9px;
        letter-spacing: 0.8px;
    }

    /* Client Reviews */
    .reviews-cards-container {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    /* Cities Grid & Layout */
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .city-card {
        height: 175px;
    }

    .city-overlay {
        padding: 12px 10px;
    }

    .city-name {
        font-size: 15px;
        margin-bottom: 2px;
    }

    .city-link {
        font-size: 10.5px;
    }

    .other-cities-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .other-city-link {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 9px 10px;
    }

    .other-city-name {
        font-size: 13px;
        line-height: 1.2;
    }

    .other-city-action {
        font-size: 10px;
    }

    /* Blog Grid */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-brand-col {
        padding-right: 0;
    }
}

/* Small Mobile Devices (<= 480px) */
@media (max-width: 480px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-features {
        gap: 10px 10px;
    }

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

    .city-card {
        height: 220px;
    }

    .model-card {
        flex: 0 0 calc(50% - 9px);
        min-width: 0;
    }

    .model-card-inner {
        height: 235px;
    }

    .favorite-btn {
        top: 8px;
        right: 8px;
        width: 24px;
        height: 24px;
    }

    .heart-icon {
        width: 12px;
        height: 12px;
    }

    .model-content {
        padding: 8px 6px;
    }

    .model-name {
        font-size: 13.5px;
        margin-bottom: 1px;
    }

    .model-details {
        font-size: 9px;
        margin-bottom: 2px;
    }

    .model-rating-row {
        font-size: 9.5px;
        margin-bottom: 2px;
    }

    .model-price {
        font-size: 10px;
        margin-bottom: 5px;
    }

    .btn-card-action {
        padding: 5px 0;
        font-size: 8.5px;
        letter-spacing: 0.5px;
    }

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

    .city-card {
        height: 155px;
    }

    .city-overlay {
        padding: 10px 8px;
    }

    .city-name {
        font-size: 14px;
        margin-bottom: 2px;
        letter-spacing: 0.5px;
    }

    .city-link {
        font-size: 9.5px;
    }

    .other-cities-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .other-city-link {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
        padding: 8px 10px;
    }

    .other-city-name {
        font-size: 12.5px;
        line-height: 1.25;
    }

    .other-city-action {
        font-size: 9.5px;
    }
}

/* ==========================================================
   Inner Page Hero Banner
   ========================================================== */
.page-hero {
    position: relative;
    min-height: 300px;
    padding: 130px 0 60px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #07080a 0%, #14161e 50%, #0a0b0e 100%);
    border-bottom: 1px solid rgba(223, 186, 97, 0.15);
}

.page-hero-content {
    text-align: center;
}

.page-breadcrumb {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #828894;
    margin-bottom: 12px;
}

.page-breadcrumb a {
    color: #dfba61;
    text-decoration: none;
}

.page-breadcrumb a:hover {
    text-decoration: underline;
}

.page-title {
    font-family: var(--font-serif);
    font-size: 44px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 15px;
    color: #d1d5db;
    max-width: 500px;
    margin: 0 auto;
}

/* ==========================================================
   Models Page — Full Grid
   ========================================================== */
.models-page-section {
    padding: 50px 0 80px;
}

.models-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.models-page-grid .model-card {
    flex: none;
    min-width: 0;
}

/* Models page responsive */
@media (max-width: 1024px) {
    .page-hero {
        min-height: auto;
        padding: 80px 0 45px;
    }

    .page-title {
        font-size: 34px;
    }

    .models-page-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 80px 0 35px;
    }

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

    .page-subtitle {
        font-size: 13.5px;
    }

    .models-page-section {
        padding: 30px 0 60px;
    }

    .models-page-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 10px;
    }
}

@media (max-width: 480px) {
    .models-page-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 8px;
    }
}

/* ==========================================================
   Pagination
   ========================================================== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid rgba(223, 186, 97, 0.3);
    border-radius: 4px;
    background: transparent;
    color: #d1d5db;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.page-link:hover {
    background: rgba(223, 186, 97, 0.12);
    border-color: #dfba61;
    color: #dfba61;
}

.page-link.active {
    background: #dfba61;
    border-color: #dfba61;
    color: #0a0b0e;
    cursor: default;
}

.page-prev,
.page-next {
    font-size: 13px;
    letter-spacing: 0.5px;
}

.page-dots {
    color: #666;
    font-size: 14px;
    padding: 0 4px;
    letter-spacing: 2px;
}

/* ==========================================================
   Model Profile Page Styling System
   ========================================================== */
.profile-hero-section {
    padding: 120px 0 60px;
    background: #07080a;
}

.profile-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.profile-hero-tag {
    color: #dfba61;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 4px;
}

.profile-title {
    font-family: var(--font-serif);
    font-size: 52px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1px;
    line-height: 1.1;
    margin-bottom: 12px;
}

.profile-hero-banner-card {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(223, 186, 97, 0.45);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    background-color: #07080a;
    display: flex;
    align-items: center;
    margin-top: 12px;
}

.hero-banner-image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
}

.hero-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

.hero-banner-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        rgba(7, 8, 10, 0) 0%, 
        rgba(7, 8, 10, 0.35) 22%, 
        rgba(7, 8, 10, 0.88) 42%, 
        #07080a 65%, 
        #07080a 100%
    );
    z-index: 2;
    pointer-events: none;
}

.hero-banner-text-content {
    position: relative;
    z-index: 3;
    margin-left: 38%;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-banner-title-white {
    font-family: var(--font-serif);
    font-size: 38px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 2px;
    line-height: 1.15;
    text-transform: uppercase;
}

.hero-banner-title-gold {
    font-family: var(--font-serif);
    font-size: 34px;
    font-weight: 500;
    color: #dfba61;
    letter-spacing: 2.5px;
    line-height: 1.15;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .profile-hero-banner-card {
        height: auto;
        min-height: 220px;
        flex-direction: column;
    }
    .hero-banner-image-wrap {
        position: relative;
        width: 100%;
        height: 180px;
    }
    .hero-banner-gradient-overlay {
        background: linear-gradient(180deg, rgba(7, 8, 10, 0) 0%, #07080a 90%);
    }
    .hero-banner-text-content {
        margin-left: 0;
        padding: 18px 16px;
        text-align: center;
    }
    .hero-banner-title-white { font-size: 20px; letter-spacing: 1px; }
    .hero-banner-title-gold { font-size: 18px; letter-spacing: 1.5px; }
}

@media (max-width: 640px) {
    .profile-hero-banner-card {
        min-height: 180px;
    }
    .hero-banner-image-wrap {
        height: 145px;
    }
    .hero-banner-text-content {
        padding: 14px 12px;
    }
    .hero-banner-title-white { font-size: 17px; letter-spacing: 0.8px; }
    .hero-banner-title-gold { font-size: 15px; letter-spacing: 1px; }
}

@media (max-width: 480px) {
    .profile-hero-banner-card {
        min-height: 150px;
    }
    .hero-banner-image-wrap {
        height: 125px;
    }
    .hero-banner-text-content {
        padding: 10px 8px;
    }
    .hero-banner-title-white { font-size: 15px; letter-spacing: 0.5px; }
    .hero-banner-title-gold { font-size: 13.5px; letter-spacing: 0.8px; }
}

/* ==========================================================
   3-Column Profile Details Section System (Matching model_profile_photo_gallery.jpg)
   ========================================================== */
.profile-details-section {
    padding: 40px 0 80px;
    background-color: #07080a;
}

.profile-3col-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1.05fr;
    gap: 24px;
    align-items: stretch;
}

.profile-card {
    background: #12141a;
    border: 1px solid rgba(223, 186, 97, 0.22);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
}

.card-header-title {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    color: #dfba61;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(223, 186, 97, 0.15);
}

/* Column 1: Professional Photo Gallery (Scrollable 3 images per row) */
.gallery-scroll-box {
    max-height: 420px;
    overflow-y: auto;
    padding-right: 6px;
    scrollbar-width: thin;
    scrollbar-color: #dfba61 rgba(255, 255, 255, 0.05);
}

.gallery-scroll-box::-webkit-scrollbar {
    width: 5px;
}
.gallery-scroll-box::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}
.gallery-scroll-box::-webkit-scrollbar-thumb {
    background: #dfba61;
    border-radius: 4px;
}

.gallery-3col-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gallery-thumb-item {
    position: relative;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(223, 186, 97, 0.2);
    cursor: pointer;
    background-color: #07080a;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.gallery-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-thumb-item:hover {
    transform: scale(1.04);
    border-color: #dfba61;
}

/* Column 2: About Text */
.about-content {
    flex: 1;
    color: #b5b7c0;
    font-size: 14.5px;
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 14px;
}

/* Column 3: Physical Attributes 2-Column Grid */
.attributes-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
}

.attr-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.attr-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(223, 186, 97, 0.08);
    border: 1px solid rgba(223, 186, 97, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dfba61;
    flex-shrink: 0;
}

.attr-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.attr-label {
    font-size: 11px;
    color: #828894;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.attr-value {
    font-size: 13.5px;
    color: #ffffff;
    font-weight: 700;
}

.no-data-msg {
    color: #828894;
    font-size: 14px;
    padding: 20px 0;
}

/* Responsive 3-Column Grid */
@media (max-width: 1024px) {
    .profile-3col-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================
   Portfolio Videos Section System (Matching model_profile_portfolio videos.jpg)
   ========================================================== */
.portfolio-videos-section {
    padding: 0 0 70px;
    background-color: #07080a;
}

.portfolio-videos-card {
    background: #12141a;
    border: 1px solid rgba(223, 186, 97, 0.22);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.portfolio-videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.portfolio-video-card {
    position: relative;
    width: 100%;
    height: 280px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(223, 186, 97, 0.35);
    background-color: #000000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.portfolio-video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

/* Center Big Play Button */
.video-play-center-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(10, 11, 14, 0.65);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.portfolio-video-card:hover .video-play-center-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(223, 186, 97, 0.9);
    border-color: #dfba61;
}

.video-play-center-btn svg {
    margin-left: 2px;
}

/* Bottom Player Control Bar */
.video-player-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 42px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(7, 8, 10, 0.95) 100%);
    display: flex;
    align-items: center;
    padding: 0 14px;
    gap: 12px;
    z-index: 5;
}

.player-btn {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    transition: color 0.2s ease;
}

.player-btn:hover {
    color: #dfba61;
}

.time-display {
    font-size: 11.5px;
    color: #d1d5db;
    font-weight: 500;
    font-family: monospace;
}

.player-progress-container {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.player-progress-bar {
    height: 100%;
    width: 0%;
    background: #dfba61;
    border-radius: 2px;
    transition: width 0.1s linear;
}

@media (max-width: 768px) {
    .portfolio-videos-grid {
        grid-template-columns: 1fr;
    }
    .portfolio-video-card {
        height: 220px;
    }
}

/* ==========================================================
   YOUR REQUEST Section System (Matching model_profile your request.jpg)
   ========================================================== */
.your-request-section {
    padding: 0 0 90px;
    background-color: #07080a;
}

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

.request-tag {
    display: block;
    color: #dfba61;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.request-title {
    font-family: var(--font-serif);
    font-size: clamp(20px, 3.5vw, 32px);
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.25;
}

.request-title span {
    color: #dfba61;
}

.request-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    align-items: stretch;
}

.request-card {
    background: #12141a;
    border: 1px solid rgba(223, 186, 97, 0.25);
    border-radius: 12px;
    padding: 32px 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Rates Card (Left) */
.rates-card-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
}

.rates-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    width: 100%;
}

.rates-list li {
    font-size: 17px;
    color: #d1d5db;
    font-family: var(--font-sans);
}

.rate-duration {
    font-weight: 600;
    color: #ffffff;
}

.rate-price {
    color: #dfba61;
    font-weight: 700;
}

.rates-action-box {
    margin-top: auto;
    width: 100%;
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(223, 186, 97, 0.45);
    color: #dfba61;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-break: break-word;
    text-align: center;
}

.btn-outline-gold:hover {
    background: rgba(223, 186, 97, 0.15);
    border-color: #dfba61;
    color: #ffffff;
}

/* Deposit Card (Right) */
.deposit-inner-box {
    width: 100%;
    border: 1px solid rgba(223, 186, 97, 0.4);
    border-radius: 8px;
    padding: 22px 16px;
    margin-bottom: 22px;
    background: rgba(7, 8, 10, 0.4);
}

.deposit-line-top,
.deposit-line-bottom {
    display: block;
    font-family: var(--font-serif);
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.deposit-line-main {
    font-family: var(--font-serif);
    font-size: 38px;
    font-weight: 700;
    color: #dfba61;
    letter-spacing: 3px;
    line-height: 1.1;
    margin: 6px 0;
}

.deposit-action-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}

.btn-solid-gold {
    background-color: #dfba61;
    color: #07080a;
    font-family: var(--font-sans);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 1px;
    border: none;
    border-radius: 6px;
    padding: 12px 30px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.btn-solid-gold:hover {
    background-color: #f3cf7a;
    transform: translateY(-1px);
}

.deposit-note {
    font-size: 11.5px;
    color: #828894;
    margin-top: 2px;
}

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

/* ==========================================================
   GET IN TOUCH NOW Section System (Matching model_profile get in touch now.jpg)
   ========================================================== */
.get-in-touch-section {
    padding: 0 0 90px;
    background-color: #07080a;
}

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

.touch-title {
    font-family: var(--font-serif);
    font-size: clamp(18px, 3.2vw, 28px);
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1.25;
}

.touch-title span {
    color: #dfba61;
}

.touch-cards-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.3fr;
    gap: 28px;
    align-items: stretch;
}

.touch-card {
    height: 100%;
}

/* Direct Contact Card (Left) */
.contact-methods-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-method-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(223, 186, 97, 0.08);
    border: 1px solid rgba(223, 186, 97, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dfba61;
    flex-shrink: 0;
}

.contact-info-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-label {
    font-size: 11px;
    font-weight: 700;
    color: #828894;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.contact-value {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-value:hover {
    color: #dfba61;
}

/* Booking Request Form (Right) */
.touch-booking-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.form-group-item {
    width: 100%;
}

.full-width-item {
    grid-column: span 2;
}

.touch-input,
.touch-textarea {
    width: 100%;
    background: rgba(7, 8, 10, 0.6);
    border: 1px solid rgba(223, 186, 97, 0.3);
    border-radius: 6px;
    padding: 12px 16px;
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 13.5px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.touch-input:focus,
.touch-textarea:focus {
    border-color: #dfba61;
    outline: none;
    box-shadow: 0 0 10px rgba(223, 186, 97, 0.25);
}

.touch-input::placeholder,
.touch-textarea::placeholder {
    color: #6b7280;
}

.form-actions-flex {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 6px;
}

.touch-submit-btn {
    flex: 1;
    padding: 14px 20px;
    font-size: 13px;
    white-space: nowrap;
}

.deposit-notice-badge {
    border: 1px solid rgba(223, 186, 97, 0.45);
    background: rgba(223, 186, 97, 0.05);
    color: #ffffff;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 12px 16px;
    border-radius: 6px;
    text-align: center;
    white-space: nowrap;
}

@media (max-width: 992px) {
    .touch-cards-grid {
        grid-template-columns: 1fr;
    }
    .form-grid-2col {
        grid-template-columns: 1fr;
    }
    .full-width-item {
        grid-column: span 1;
    }
    .form-actions-flex {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ==========================================================
   Related Profiles Section System (Matching model_profile related profiles.jpg)
   ========================================================== */
.related-profiles-section {
    padding: 0 0 90px;
    background-color: #07080a;
}

.related-section-title {
    font-family: var(--font-serif);
    font-size: 30px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 24px;
}

.related-models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.related-model-card {
    display: block;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(223, 186, 97, 0.3);
    background-color: #12141a;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.related-model-card:hover {
    transform: translateY(-4px);
    border-color: #dfba61;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.related-card-img-box {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.related-card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.related-model-card:hover .related-card-img-box img {
    transform: scale(1.05);
}

.related-card-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(7, 8, 10, 0.95) 100%);
    z-index: 2;
}

/* Heart Badge (Top Right) */
.related-heart-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(10, 11, 14, 0.55);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.related-model-card:hover .related-heart-badge {
    background: rgba(223, 186, 97, 0.85);
    border-color: #dfba61;
    color: #07080a;
}

/* Bottom Card Info Overlay */
.related-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 18px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.related-model-name {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.related-model-meta {
    font-size: 13px;
    color: #d1d5db;
    font-weight: 400;
}

.related-model-price {
    font-size: 13.5px;
    color: #dfba61;
    font-weight: 600;
    margin-top: 2px;
}

.profile-accordion-chevron {
    display: none;
}

@media (max-width: 900px) {
    .profile-hero-section {
        padding: 80px 0 20px;
    }
    .profile-details-section {
        padding: 20px 0 40px;
    }
    .portfolio-videos-section,
    .your-request-section,
    .get-in-touch-section,
    .related-profiles-section {
        padding: 0 0 40px;
    }
    .profile-title {
        font-size: 36px;
        margin-bottom: 8px;
    }
    .profile-3col-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        width: 100%;
        max-width: 100%;
    }
    .profile-card {
        padding: 20px 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    /* Accordion Rules for Model Profile Cards */
    .profile-accordion-chevron {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        transition: transform 0.35s ease;
        flex-shrink: 0;
    }
    .collapsible-card.active .profile-accordion-chevron {
        transform: rotate(180deg);
    }
    .card-header-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        cursor: pointer;
        width: 100%;
        margin-bottom: 0;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(223, 186, 97, 0.2);
    }
    .card-header-wrapper .card-header-title {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
        border-bottom: none !important;
        flex: 1;
        min-width: 0;
        font-size: clamp(11px, 3.2vw, 13px);
        letter-spacing: 0.8px;
        line-height: 1.35;
        overflow-wrap: break-word;
        word-break: break-word;
        white-space: normal;
    }
    .card-header-wrapper .rates-card-title {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
        border-bottom: none !important;
        flex: 1;
        min-width: 0;
        font-size: 18px !important;
        letter-spacing: 1.5px;
        line-height: 1.3;
        color: #ffffff;
    }
    .profile-accordion-body {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        margin: 0;
        width: 100%;
        max-width: 100%;
        transition: max-height 0.35s ease, opacity 0.35s ease, margin-top 0.35s ease;
    }
    .collapsible-card.active .profile-accordion-body {
        max-height: 1200px;
        opacity: 1;
        margin-top: 14px;
    }
    .collapsible-card:hover, .collapsible-card.active {
        border-color: #dfba61;
    }
    
    /* Photo Gallery Grid Protection */
    .gallery-scroll-box {
        max-width: 100%;
        overflow-x: hidden;
        padding-right: 0;
    }
    .gallery-3col-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        width: 100%;
    }
    .gallery-thumb-item {
        height: 105px;
        min-width: 0;
        width: 100%;
    }

    .request-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        width: 100%;
        max-width: 100%;
    }
    .request-card {
        padding: 20px 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    .rates-list li {
        font-size: 15px;
    }

    .request-title {
        font-size: 22px;
        line-height: 1.3;
    }
    .touch-title {
        font-size: 20px;
        line-height: 1.3;
    }

    .related-models-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .related-card-img-box {
        height: 260px;
    }
}

@media (max-width: 480px) {
    .profile-hero-section {
        padding: 80px 0 15px;
    }
    .profile-title {
        font-size: 28px;
    }
    .request-title {
        font-size: 17px;
        letter-spacing: 0.5px;
    }
    .touch-title {
        font-size: 16px;
        letter-spacing: 0.5px;
    }
    .card-header-wrapper .rates-card-title {
        font-size: 16px !important;
        letter-spacing: 1px;
    }
    .request-card {
        padding: 16px 12px;
    }
    .rates-list li {
        font-size: 13.5px;
    }
    .btn-outline-gold {
        padding: 9px 12px;
        font-size: 12px;
    }
    .profile-card {
        padding: 16px 12px;
    }
    .gallery-3col-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
    }
    .gallery-thumb-item {
        height: 90px;
    }
    .related-models-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .related-card-img-box {
        height: 220px;
    }
    .related-card-info {
        padding: 12px 10px;
    }
    .related-model-name {
        font-size: 16px;
    }
    .related-model-meta {
        font-size: 11px;
    }
    .related-model-price {
        font-size: 11.5px;
    }
}

.profile-hero-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-hero-tag {
    color: #dfba61;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.profile-title-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 16px;
}

.profile-name-row {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.profile-title {
    font-family: var(--font-serif);
    font-size: 46px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1px;
    line-height: 1;
}

.profile-status-badge {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #4ade80;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.profile-subtitle {
    color: #dfba61;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Alert Notifications */
.alert {
    padding: 16px 20px;
    border-radius: 6px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.alert-success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #86efac;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #fca5a5;
}

/* Profile Main Section */
.profile-main-section {
    padding: 48px 0 90px;
}

.profile-grid {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 50px;
}

/* Profile Left Column Gallery */
.profile-gallery-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.profile-main-image-container {
    position: relative;
    width: 100%;
    height: 620px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(223, 186, 97, 0.3);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
    background-color: #0d0e12;
}

.profile-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
}

.profile-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 65%, rgba(7,8,10,0.85) 100%);
    pointer-events: none;
}

.profile-fav-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(10, 11, 14, 0.7);
    backdrop-filter: blur(8px);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(223, 186, 97, 0.4);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
}

.profile-fav-btn:hover {
    background: rgba(223, 186, 97, 0.25);
    transform: scale(1.05);
}

.profile-fav-btn svg {
    stroke: #dfba61;
}

.image-verified-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: rgba(10, 11, 14, 0.85);
    backdrop-filter: blur(6px);
    color: #dfba61;
    border: 1px solid rgba(223, 186, 97, 0.4);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Gallery Thumbnails Grid */
.profile-thumbnails-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.thumb-item {
    height: 105px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: all 0.25s ease;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.thumb-item:hover,
.thumb-item.active {
    border-color: #dfba61;
    box-shadow: 0 0 12px rgba(223, 186, 97, 0.4);
}

/* Profile Right Column Overview */
.profile-info-wrapper {
    background: #101117;
    border: 1px solid rgba(223, 186, 97, 0.25);
    border-radius: 8px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.profile-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-tag {
    color: #dfba61;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2px;
}

.profile-display-name {
    font-family: var(--font-serif);
    font-size: 36px;
    color: #ffffff;
    margin: 4px 0 8px;
}

.profile-rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-rating-row .stars {
    display: flex;
    gap: 2px;
}

.profile-rating-row .star-icon {
    color: #dfba61;
    font-size: 15px;
}

.profile-rating-row .rating-value {
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
}

.profile-rating-row .rating-count {
    color: #828894;
    font-size: 13px;
}

.profile-price-badge {
    background: rgba(223, 186, 97, 0.1);
    border: 1px solid rgba(223, 186, 97, 0.35);
    padding: 12px 18px;
    border-radius: 6px;
    text-align: right;
}

.price-label {
    display: block;
    font-size: 9.5px;
    color: #828894;
    letter-spacing: 1.5px;
    margin-bottom: 2px;
}

.price-amount {
    color: #dfba61;
    font-size: 18px;
    font-weight: 700;
}

/* Specs Grid */
.profile-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.spec-box {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px 18px;
    border-radius: 6px;
}

.spec-label {
    display: block;
    font-size: 10px;
    color: #828894;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.spec-val {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
}

/* Quick Action Buttons */
.profile-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d1d5db;
    font-size: 13.5px;
}

.highlight-item svg {
    stroke: #dfba61;
    flex-shrink: 0;
}

/* Tabs System */
.profile-tabs-wrapper {
    margin-bottom: 60px;
}

.profile-tabs-nav {
    display: flex;
    border-bottom: 2px solid rgba(255, 255, 255, 0.08);
    gap: 8px;
    overflow-x: auto;
}

.tab-btn {
    background: transparent;
    border: none;
    color: #828894;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 16px 24px;
    cursor: pointer;
    position: relative;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.tab-btn:hover {
    color: #ffffff;
}

.tab-btn.active {
    color: #dfba61;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #dfba61;
    border-radius: 2px 2px 0 0;
}

.tab-content-container {
    background: #0d0e12;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 40px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.tab-section-title {
    font-family: var(--font-serif);
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 500;
}

.sub-section-title {
    font-size: 16px;
    color: #dfba61;
    margin-bottom: 12px;
    font-weight: 600;
}

.profile-bio-text {
    color: #d1d5db;
    font-size: 15.5px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.languages-box {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tags-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.lang-tag {
    background: rgba(223, 186, 97, 0.1);
    border: 1px solid rgba(223, 186, 97, 0.3);
    color: #dfba61;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12.5px;
    font-weight: 600;
}

/* Services Offered Grid */
.services-tags-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.service-chip {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 18px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.service-chip svg {
    stroke: #dfba61;
    flex-shrink: 0;
}

/* Rates Table */
.rates-table-wrapper {
    overflow-x: auto;
    margin-bottom: 24px;
}

.rates-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    overflow: hidden;
}

.rates-table th,
.rates-table td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 14px;
}

.rates-table th {
    background: rgba(223, 186, 97, 0.08);
    color: #dfba61;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.rates-table td {
    color: #d1d5db;
}

.gold-text {
    color: #dfba61;
    font-weight: 700;
}

.discretion-note-box {
    background: rgba(223, 186, 97, 0.06);
    border-left: 3px solid #dfba61;
    padding: 16px 20px;
    border-radius: 0 6px 6px 0;
    color: #d1d5db;
    font-size: 13.5px;
    line-height: 1.6;
}

/* Full Photo Portfolio Grid */
.full-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-card {
    position: relative;
    height: 280px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-card:hover img {
    transform: scale(1.06);
}

.gallery-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 11, 14, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card-overlay svg {
    stroke: #dfba61;
}

.gallery-card:hover .gallery-card-overlay {
    opacity: 1;
}

/* Reviews Styling */
.reviews-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sub-text {
    color: #828894;
    font-size: 14px;
}

.rating-overall-box {
    text-align: right;
}

.big-rating {
    font-family: var(--font-serif);
    font-size: 42px;
    color: #dfba61;
    font-weight: 700;
}

.out-of {
    color: #828894;
    font-size: 16px;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 40px;
}

.review-item-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 22px;
    border-radius: 6px;
}

.review-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.reviewer-name {
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
}

.verified-badge {
    color: #22c55e;
    font-size: 11px;
    font-weight: 600;
    margin-left: 8px;
}

.review-date {
    color: #828894;
    font-size: 12px;
}

.review-stars {
    color: #dfba61;
    font-size: 14px;
    margin-bottom: 10px;
}

.review-stars .dim {
    color: #444;
}

.review-text-content {
    color: #d1d5db;
    font-size: 14.5px;
    font-style: italic;
}

/* Write Review Form */
.write-review-card {
    background: rgba(223, 186, 97, 0.04);
    border: 1px solid rgba(223, 186, 97, 0.2);
    padding: 28px;
    border-radius: 6px;
}

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

.form-row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #d1d5db;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #07080a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    padding: 12px 16px;
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 14px;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #dfba61;
    outline: none;
    box-shadow: 0 0 10px rgba(223, 186, 97, 0.25);
}

/* Booking Section Card */
.profile-booking-section {
    margin-bottom: 70px;
}

.booking-card {
    background: linear-gradient(145deg, #101218 0%, #161822 100%);
    border: 1px solid rgba(223, 186, 97, 0.35);
    border-radius: 8px;
    padding: 46px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.booking-header {
    text-align: center;
    margin-bottom: 34px;
}

.booking-title {
    font-family: var(--font-serif);
    font-size: 34px;
    color: #ffffff;
    margin: 6px 0 8px;
}

.booking-subtitle {
    color: #d1d5db;
    font-size: 14.5px;
    max-width: 600px;
    margin: 0 auto;
}

.profile-booking-form .form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.form-group.full-width {
    grid-column: span 3;
}

.booking-submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 13px;
}

/* Other Models Section */
.other-models-section {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-modal img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    border: 1px solid rgba(223, 186, 97, 0.4);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 36px;
    color: #ffffff;
    font-size: 38px;
    font-weight: 300;
    cursor: pointer;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .profile-grid {
        grid-template-columns: 1fr;
    }

    .profile-main-image-container {
        height: 520px;
    }

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

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

    .form-group.full-width {
        grid-column: span 2;
    }

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

@media (max-width: 768px) {
    .profile-title {
        font-size: 34px;
    }

    .booking-card {
        padding: 28px 20px;
    }

    .profile-booking-form .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .services-tags-grid {
        grid-template-columns: 1fr;
    }

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

    .tab-content-container {
        padding: 24px 18px;
    }
}

/* Fix word wrapping & prevent unnatural word breaks */
.about-content,
.about-content p,
.attr-value,
.attr-details,
.profile-card,
.profile-details-section p,
.profile-details-section span {
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: normal;
    hyphens: auto;
}

/* Luxury Booking Success Modal */
.luxury-booking-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(7, 8, 10, 0.88);
    backdrop-filter: blur(8px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.luxury-booking-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.luxury-booking-modal-card {
    background: #12141a;
    border: 1px solid rgba(223, 186, 97, 0.45);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 30px rgba(223, 186, 97, 0.15);
    border-radius: 14px;
    padding: 40px 35px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    position: relative;
    color: #ffffff;
    transform: scale(0.92);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.luxury-booking-modal-overlay.active .luxury-booking-modal-card {
    transform: scale(1);
}

.modal-close-icon {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #828894;
    font-size: 26px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.modal-close-icon:hover {
    color: #dfba61;
}

.luxury-modal-badge {
    font-family: var(--font-sans, 'Montserrat', sans-serif);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #dfba61;
    text-transform: uppercase;
    margin-bottom: 18px;
    background: rgba(223, 186, 97, 0.1);
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid rgba(223, 186, 97, 0.3);
}

.luxury-modal-icon-ring {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(223, 186, 97, 0.08);
    border: 1.5px solid rgba(223, 186, 97, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 0 20px rgba(223, 186, 97, 0.2);
}

.luxury-modal-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    font-weight: 600;
    color: #dfba61;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.luxury-modal-subtext {
    font-size: 14px;
    color: #c0c5d0;
    line-height: 1.6;
    margin-bottom: 22px;
}

.luxury-res-details-box {
    background: #07080a;
    border: 1px solid rgba(223, 186, 97, 0.25);
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 25px;
    text-align: left;
}

.res-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    padding: 6px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

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

.res-label {
    color: #828894;
}

.res-val {
    color: #ffffff;
    font-weight: 600;
}

.res-status-badge {
    background: rgba(223, 186, 97, 0.15);
    color: #dfba61;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid rgba(223, 186, 97, 0.3);
}

.modal-done-btn {
    width: 100%;
    padding: 14px;
    font-size: 13px;
    letter-spacing: 1.5px;
}

/* Custom Dark Gold Flatpickr Theme Overrides */
.flatpickr-calendar {
    background: #12141a !important;
    border: 1px solid rgba(223, 186, 97, 0.5) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.95), 0 0 20px rgba(223, 186, 97, 0.15) !important;
    border-radius: 10px !important;
    font-family: var(--font-sans, 'Montserrat', sans-serif) !important;
}

.flatpickr-day.selected, 
.flatpickr-day.startRange, 
.flatpickr-day.endRange, 
.flatpickr-day.selected.inRange, 
.flatpickr-day.startRange.inRange, 
.flatpickr-day.endRange.inRange, 
.flatpickr-day.selected:focus, 
.flatpickr-day.startRange:focus, 
.flatpickr-day.endRange:focus, 
.flatpickr-day.selected:hover, 
.flatpickr-day.startRange:hover, 
.flatpickr-day.endRange:hover {
    background: #dfba61 !important;
    border-color: #dfba61 !important;
    color: #07080a !important;
    font-weight: 700 !important;
}

.flatpickr-day:hover {
    background: rgba(223, 186, 97, 0.25) !important;
    color: #dfba61 !important;
}

.flatpickr-months .flatpickr-month {
    color: #dfba61 !important;
    fill: #dfba61 !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    color: #dfba61 !important;
}

.flatpickr-time input:hover, 
.flatpickr-time .flatpickr-am-pm:hover, 
.flatpickr-time input:focus, 
.flatpickr-time .flatpickr-am-pm:focus {
    background: rgba(223, 186, 97, 0.15) !important;
}

.flatpickr-time input, 
.flatpickr-time .flatpickr-am-pm {
    color: #dfba61 !important;
    font-weight: 600 !important;
}

