/* Fenix Secret - Agencia de Acompañantes de Lujo */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --gold: #C9A351;
    --gold-light: #D4B366;
    --gold-dark: #A88A3D;
    --ember: #C77D46;
    --ember-dark: #8A4A24;
    --black: #0A0A0A;
    --black-light: #111111;
    --black-lighter: #1A1A1A;
    --gray-dark: #2A2A2A;
    --gray: #666666;
    --gray-light: #999999;
    --white: #FFFFFF;
    --white-off: #F5F5F5;
    --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-sans: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

html {
    background-color: var(--black);
}

body {
    font-family: var(--font-sans);
    background-color: transparent;
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background:
        radial-gradient(ellipse 70% 55% at 18% 22%, rgba(199, 125, 70, 0.11), transparent 65%),
        radial-gradient(ellipse 60% 45% at 85% 78%, rgba(199, 125, 70, 0.08), transparent 65%);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

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

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: padding 0.4s ease, background 0.4s ease;
    background: transparent;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    padding: 10px 0;
}

.header .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    position: relative;
    min-height: 56px;
}

.header > .container > nav {
    grid-column: 2;
    justify-self: center;
}

.header .container > .lang-switcher {
    grid-column: 3;
    justify-self: end;
}

.logo {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    line-height: 0;
    z-index: 2;
    transition: top 0.4s ease, transform 0.4s ease;
}

.logo picture,
.logo img {
    display: block;
}

.logo img {
    width: auto;
    height: 64px;
    max-height: 64px;
    transition: height 0.4s ease, filter 0.4s ease;
    filter: drop-shadow(0 0 14px rgba(199, 125, 70, 0.22));
}

/* Big hero logo — only home & gallery, before scrolling */
body.has-hero-logo .header:not(.scrolled) .logo {
    top: 0;
    transform: none;
}

body.has-hero-logo .header:not(.scrolled) .logo img {
    height: 225px;
    max-height: 225px;
    filter: drop-shadow(0 0 34px rgba(199, 125, 70, 0.32));
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 50px;
    list-style: none;
}

.nav-menu a {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    position: relative;
    padding: 5px 0;
}

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

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

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

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.nav-dropdown-arrow {
    transition: transform 0.3s ease;
    opacity: 0.6;
}

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

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 163, 81, 0.15);
    list-style: none;
    padding: 12px 0;
    margin-top: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 15px;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
}

.nav-dropdown-menu li {
    padding: 0;
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 25px !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase;
    color: var(--gray-light) !important;
    white-space: nowrap;
    transition: all 0.3s ease;
}

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

.nav-dropdown-menu a:hover {
    color: var(--gold) !important;
    padding-left: 30px !important;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-link {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--gray-light);
    padding: 4px 2px;
    transition: color 0.3s ease;
    text-transform: none;
}

.lang-link:hover {
    color: var(--white);
}

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

.lang-sep {
    color: var(--gray-dark);
    font-size: 14px;
    user-select: none;
}

/* Hide mobile lang inside nav-menu on desktop */
.nav-menu-lang {
    display: none;
}

@media (max-width: 992px) {
    .nav-menu-lang {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-top: 20px;
    }

    .nav-menu-lang .lang-link {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .nav-menu-lang .lang-sep {
        font-size: 13px;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--gold-light);
    box-shadow: 0 0 24px rgba(199, 125, 70, 0.35);
}

.btn-dark {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--gray-dark);
}

.btn-dark:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 28px;
    height: 1px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 60% 50% at 18% 40%, rgba(199, 125, 70, 0.18), transparent 70%),
        linear-gradient(to right, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.7) 40%, rgba(10,10,10,0.2) 100%);
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
    padding: 0;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 62px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.hero-title span {
    color: var(--gold);
    display: block;
    font-style: italic;
}

.hero-subtitle {
    font-size: 15px;
    color: var(--gray-light);
    margin-bottom: 50px;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

.hero .btn {
    padding: 16px 50px;
    font-size: 11px;
    letter-spacing: 3px;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
    background: var(--black);
    padding: 50px 0;
    border-top: 1px solid rgba(201, 163, 81, 0.15);
    border-bottom: 1px solid rgba(201, 163, 81, 0.15);
}

.stats .container {
    display: flex;
    justify-content: center;
    gap: 100px;
}

.stat-item {
    text-align: center;
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--gold);
}

.stat-content h3 {
    font-size: 28px;
    color: var(--gold);
    font-family: var(--font-serif);
    font-weight: 400;
    letter-spacing: 1px;
}

.stat-content p {
    font-size: 10px;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
    padding: 100px 0;
}

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

.section-title {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.section-title span {
    color: var(--gold);
    font-style: italic;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ember) 50%, transparent);
    margin: 20px auto 0;
}

/* ============================================
   MODEL CARDS - PHOTO-CENTRIC DESIGN
   ============================================ */
.featured-models {
    background: var(--black);
}

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

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

.model-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(201, 163, 81, 0.06);
    transition: border-color 0.5s ease, box-shadow 0.5s ease, transform 0.5s ease;
}

.model-card:hover {
    border-color: rgba(201, 163, 81, 0.35);
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(201, 163, 81, 0.12);
    transform: translateY(-6px);
}

.model-card:hover .model-card-image img {
    transform: scale(1.08);
    filter: brightness(1.1) contrast(1.05);
}

.model-card-image {
    display: block;
    position: relative;
    aspect-ratio: 2/3;
    overflow: hidden;
    background: var(--black-lighter);
}

/* Gradient overlay bottom */
.model-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.6) 0%, rgba(10, 10, 10, 0) 100%);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.model-card:hover .model-card-image::after {
    opacity: 1;
}

/* Light sweep effect */
.model-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(201, 163, 81, 0.08) 40%, rgba(255, 255, 255, 0.12) 50%, rgba(201, 163, 81, 0.08) 60%, transparent 100%);
    z-index: 2;
    pointer-events: none;
    transition: none;
}

.model-card:hover .model-card-image::before {
    left: 130%;
    transition: left 0.7s ease;
}

.model-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.7s ease;
}

/* Remove the gold frame */
.model-card-frame {
    display: none;
}

/* Model Badge */
.model-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 2;
    pointer-events: none;
}

.model-badge--nueva {
    background: var(--gold);
    color: var(--black);
}

.model-badge--vip {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
}

.model-badge--disponible {
    background: rgba(40, 167, 69, 0.9);
    color: #fff;
}

.model-badge--vacaciones {
    background: rgba(255, 193, 7, 0.9);
    color: var(--black);
}

.model-badge--exclusiva {
    background: linear-gradient(135deg, #8B5CF6, #6D28D9);
    color: #fff;
}

.model-badge--recomendada {
    background: rgba(220, 53, 69, 0.9);
    color: #fff;
}

.model-badge--available {
    background: rgba(40, 167, 69, 0.92);
    color: #fff;
    top: auto;
    bottom: 12px;
    left: 12px;
    right: auto;
    font-size: 9px;
    letter-spacing: 1.5px;
    padding: 6px 12px;
}

.model-card-content {
    padding: 18px 5px 10px;
    text-align: center;
    background: transparent;
}

.model-card-name {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
    color: var(--gold);
}

.model-card-name a {
    color: var(--gold);
    transition: color 0.3s ease;
}

.model-card-name a:hover {
    color: var(--gold-light);
}

.model-card-info {
    font-size: 11px;
    color: var(--gray-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 400;
}

.model-card .btn {
    display: none;
}

/* ============================================
   CASTINGS SECTION
   ============================================ */
.castings {
    background: var(--black-light);
}

.castings-list {
    border: 1px solid rgba(201, 163, 81, 0.15);
    overflow: hidden;
}

.casting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 35px;
    border-bottom: 1px solid rgba(201, 163, 81, 0.1);
    transition: background 0.3s ease;
}

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

.casting-item:hover {
    background: rgba(201, 163, 81, 0.03);
}

.casting-info h4 {
    font-family: var(--font-serif);
    font-size: 20px;
    margin-bottom: 4px;
    font-weight: 400;
}

.casting-info p {
    color: var(--gray-light);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.casting-date {
    color: var(--gold);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-right: 30px;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    background: var(--black);
}

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

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

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

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

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-slider {
    position: relative;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(10,10,10,0.6);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

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

.gallery-nav svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.gallery-nav:hover svg {
    fill: var(--black);
}

.gallery-nav.prev {
    left: -25px;
}

.gallery-nav.next {
    right: -25px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--black);
    padding: 60px 0 40px;
    border-top: 1px solid rgba(201, 163, 81, 0.15);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links a {
    font-size: 11px;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

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

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.footer-social svg {
    width: 16px;
    height: 16px;
    fill: var(--gray-light);
}

.footer-social a:hover svg {
    fill: var(--black);
}

.footer-bottom {
    text-align: center;
    color: var(--gray);
    font-size: 11px;
    letter-spacing: 1px;
}

/* ============================================
   MODELS GALLERY PAGE
   ============================================ */
.page-header {
    padding: 160px 0 60px;
    text-align: center;
    background: var(--black);
}

.page-title {
    font-family: var(--font-serif);
    font-size: 52px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.page-subtitle {
    color: var(--gray-light);
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 300;
}

.models-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 30px;
    background: transparent;
    border: 1px solid var(--gray-dark);
    color: var(--gray-light);
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

/* ============================================
   MODEL SEARCH BAR
   ============================================ */
.model-search {
    margin-bottom: 35px;
    padding: 25px 30px;
    background: var(--black-light);
    border: 1px solid rgba(201, 163, 81, 0.1);
}

.model-search-row {
    display: flex;
    gap: 15px;
    align-items: flex-end;
}

.model-search-field {
    flex: 1;
}

.model-search-field label {
    display: block;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 8px;
}

.model-search-field select {
    width: 100%;
    padding: 12px 30px 12px 12px;
    background: var(--black);
    border: 1px solid var(--gray-dark);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 300;
    outline: none;
    cursor: pointer;
    transition: border-color 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    border-radius: 0;
}

.model-search-field select:focus {
    border-color: var(--gold);
}

.model-search-field select option {
    background: #111;
    color: #fff;
}

.model-search-age-range {
    display: flex;
    align-items: center;
    gap: 8px;
}

.model-search-age-range input {
    width: 100%;
    flex: 1;
    padding: 12px;
    background: var(--black);
    border: 1px solid var(--gray-dark);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s ease;
    border-radius: 0;
    text-align: center;
    -moz-appearance: textfield;
}

.model-search-age-range input::-webkit-outer-spin-button,
.model-search-age-range input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.model-search-age-range input:focus {
    border-color: var(--gold);
}

.model-search-age-range input::placeholder {
    color: var(--gray);
}

.model-search-age-sep {
    color: var(--gray);
    font-size: 14px;
    flex-shrink: 0;
}

.model-search-field--btn {
    flex: 0 0 auto;
}

.model-search-field--btn .btn {
    padding: 12px 35px;
    font-size: 11px;
    letter-spacing: 2px;
    white-space: nowrap;
}

.search-no-results {
    text-align: center;
    padding: 50px 20px;
    color: var(--gray-light);
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .model-search-row {
        flex-wrap: wrap;
    }

    .model-search-field {
        flex: 1 1 calc(50% - 8px);
    }

    .model-search-field--btn {
        flex: 1 1 100%;
    }

    .model-search-field--btn .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .model-search {
        padding: 20px;
    }

    .model-search-field {
        flex: 1 1 100%;
    }
}

/* Center Filters */
.center-filters {
    margin-top: 0;
    padding-top: 15px;
    border-top: 1px solid rgba(201, 163, 81, 0.1);
}

.center-filter-btn {
    padding: 8px 22px;
    background: transparent;
    border: 1px solid rgba(201, 163, 81, 0.25);
    color: var(--gray-light);
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 400;
}

.center-filter-btn:hover {
    border-color: var(--gold);
    color: var(--white);
}

.center-filter-btn.active {
    background: transparent;
    border-color: var(--gold);
    color: var(--gold);
}

.models-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding-bottom: 60px;
}

/* ============================================
   MODEL PROFILE PAGE
   ============================================ */
.model-profile {
    padding: 120px 0 80px;
}

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

.model-main-image {
    position: relative;
    overflow: hidden;
}

.model-main-image img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
}

.model-main-image::before {
    display: none;
}

.model-info {
    padding-top: 40px;
}

.model-name {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.model-location {
    color: var(--gold);
    font-size: 12px;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
}

.model-bio {
    color: var(--gray-light);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 45px;
    font-weight: 300;
}

.model-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.model-stat {
    background: transparent;
    padding: 25px 20px;
    text-align: center;
    border: 1px solid rgba(201, 163, 81, 0.2);
}

.model-stat-value {
    font-family: var(--font-serif);
    font-size: 26px;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 8px;
}

.model-stat-label {
    font-size: 9px;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.model-details {
    background: transparent;
    padding: 35px 0;
    border-top: 1px solid rgba(201, 163, 81, 0.15);
}

.model-details h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--gold);
    font-weight: 400;
    letter-spacing: 1px;
}

.model-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 30px;
}

.model-detail-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.model-detail-label {
    color: var(--gray-light);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.model-detail-value {
    font-weight: 400;
    font-size: 14px;
    color: var(--white);
}

/* Model Tags (languages, services) */
.model-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 5px;
}

.model-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 400;
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    letter-spacing: 0.3px;
}

.model-tag small {
    font-size: 10px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.model-tag--service {
    border-color: rgba(201, 163, 81, 0.2);
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 0.5px;
}

.model-gallery {
    margin-top: 100px;
}

.model-gallery h3 {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: 1px;
    text-align: center;
}

.model-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.model-gallery-item {
    aspect-ratio: 2/3;
    overflow: hidden;
    cursor: pointer;
}

.model-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.model-gallery-item:hover img {
    transform: scale(1.04);
}

/* Contact Button */
.contact-actions {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.contact-actions .btn {
    padding: 16px 40px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    color: var(--gray-light);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 16px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--gray-dark);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 300;
    transition: border-color 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-bottom-color: var(--gold);
}

.form-input::placeholder {
    color: var(--gray);
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.97);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 80%;
    max-height: 90%;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox-counter {
    margin-top: 20px;
    color: var(--gray-light);
    font-size: 12px;
    letter-spacing: 2px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 30px;
    line-height: 50px;
    text-align: center;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    font-weight: 300;
    z-index: 2010;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

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

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

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

.lightbox-nav svg {
    width: 22px;
    height: 22px;
    fill: var(--white);
}

.lightbox-nav:hover svg {
    fill: var(--black);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
.nav-menu.active {
    display: flex;
}

/* ============================================
   LUXURY LIFESTYLE STRIP
   ============================================ */
.luxury-strip {
    padding: 0;
    overflow: hidden;
}

.luxury-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.luxury-strip-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}

.luxury-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    filter: brightness(0.85);
}

.luxury-strip-item:hover img {
    transform: scale(1.05);
    filter: brightness(1);
}

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

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

    .luxury-strip-item {
        aspect-ratio: 1;
    }
}

/* ============================================
   SECTION CTA (centered button)
   ============================================ */
.section-cta {
    text-align: center;
    margin-top: 60px;
}

.section-cta .btn {
    padding: 16px 50px;
    letter-spacing: 3px;
}

/* ============================================
   ABOUT SECTION (Home - Editorial blocks)
   ============================================ */
.about-section {
    background: var(--black-light);
    padding: 120px 0;
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 90px;
}

.about-intro h2 {
    font-family: var(--font-serif);
    font-size: 40px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-intro p {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.9;
    font-weight: 300;
}

.about-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.about-block:last-of-type {
    margin-bottom: 0;
}

.about-block--reverse {
    direction: rtl;
}

.about-block--reverse > * {
    direction: ltr;
}

.about-block-image {
    overflow: hidden;
}

.about-block-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-block-image:hover img {
    transform: scale(1.03);
}

.about-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--black-lighter) 0%, var(--gray-dark) 100%);
    border: 1px solid rgba(201, 163, 81, 0.1);
}

.about-block-text h3 {
    font-family: var(--font-serif);
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.3;
    color: var(--gold);
}

.about-block-text p {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.9;
    font-weight: 300;
}

.about-link {
    display: inline-block;
    margin-top: 25px;
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 1px;
    font-weight: 500;
    border-bottom: 1px solid rgba(201, 163, 81, 0.3);
    padding-bottom: 3px;
    transition: all 0.3s ease;
}

.about-link:hover {
    color: var(--gold-light);
    border-bottom-color: var(--gold-light);
}

.about-cta {
    text-align: center;
    margin-top: 100px;
    padding-top: 80px;
    border-top: 1px solid rgba(201, 163, 81, 0.1);
}

.about-cta p {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 35px;
    color: var(--white);
    letter-spacing: 1px;
}

.about-cta .btn {
    padding: 18px 55px;
    letter-spacing: 3px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-hero {
    position: relative;
    height: 45vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
}

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

.contact-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.85) 100%);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.contact-hero-title {
    font-family: var(--font-serif);
    font-size: 52px;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.contact-hero-subtitle {
    font-size: 15px;
    color: var(--gray-light);
    letter-spacing: 1px;
    font-weight: 300;
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: start;
}

.contact-form-wrap {
    background: var(--black-light);
    padding: 50px;
    border: 1px solid rgba(201,163,81,0.1);
}

.contact-form-title {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 35px;
}

.contact-form-wrap .form-group {
    margin-bottom: 22px;
}

.contact-form-wrap .form-input {
    width: 100%;
    padding: 14px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--gray-dark);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    transition: border-color 0.3s ease;
    outline: none;
}

.contact-form-wrap .form-input:focus {
    border-bottom-color: var(--gold);
}

.contact-form-wrap .form-input::placeholder {
    color: var(--gray);
}

.contact-form-wrap select.form-input,
.casting-form select.form-input,
.contact-madrid-form select.form-input {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") no-repeat right 2px center;
    padding-right: 20px;
}

.contact-form-wrap select.form-input option,
.casting-form select.form-input option,
.contact-madrid-form select.form-input option {
    background: #111;
    color: #fff;
}

.contact-form-wrap textarea.form-input {
    resize: vertical;
    min-height: 100px;
}

.contact-form-wrap .form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--gray-light);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

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

.contact-alert {
    padding: 18px 25px;
    margin-bottom: 30px;
    text-align: center;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.contact-alert--success {
    border: 1px solid rgba(201,163,81,0.3);
    color: var(--gold);
}

.contact-alert--error {
    border: 1px solid rgba(220,53,69,0.4);
    color: #dc3545;
}

.contact-info {
    padding-top: 10px;
}

.contact-info-block {
    margin-bottom: 40px;
}

.contact-info-block h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 12px;
}

.contact-info-block p {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.8;
    font-weight: 300;
}

.contact-info-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 8px;
}

.contact-map {
    position: relative;
}

.contact-map iframe {
    display: block;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-hero-title {
        font-size: 38px;
    }

    .contact-form-wrap {
        padding: 35px 25px;
    }
}

@media (max-width: 480px) {
    .contact-form-wrap .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-hero {
        min-height: 280px;
    }

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

    .contact-map iframe {
        height: 300px;
    }
}

/* ============================================
   CONTACT + MADRID SECTION (Home)
   ============================================ */
.contact-madrid-section {
    padding: 0;
}

.contact-madrid-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
}

.contact-madrid-image {
    position: relative;
    overflow: hidden;
}

.contact-madrid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.contact-madrid-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, transparent 100%);
}

.contact-madrid-image-overlay span {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--gold);
}

.contact-madrid-form {
    background: var(--black-light);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-madrid-form h2 {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.contact-madrid-subtitle {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 40px;
}

.contact-madrid-form .form-group {
    margin-bottom: 20px;
}

.contact-madrid-form .form-input {
    width: 100%;
    padding: 14px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--gray-dark);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    transition: border-color 0.3s ease;
    outline: none;
}

.contact-madrid-form .form-input:focus {
    border-bottom-color: var(--gold);
}

.contact-madrid-form .form-input::placeholder {
    color: var(--gray);
}

.contact-madrid-form textarea.form-input {
    resize: vertical;
    min-height: 80px;
}

.contact-madrid-form .form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--gray-light);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

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

@media (max-width: 992px) {
    .contact-madrid-grid {
        grid-template-columns: 1fr;
    }

    .contact-madrid-image {
        min-height: 350px;
    }

    .contact-madrid-form {
        padding: 60px 30px;
    }
}

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-madrid-form {
        padding: 50px 20px;
    }

    .contact-madrid-form h2 {
        font-size: 28px;
    }
}

/* ============================================
   ESCORTS MADRID PAGE - SEO SECTIONS
   ============================================ */
.escorts-intro-section {
    background: var(--black);
}

.escorts-intro-h2 {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--gold);
}

.escorts-intro-text {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.9;
    font-weight: 300;
}

.escorts-seo-section {
    background: var(--black-light);
    padding: 100px 0;
}

.escorts-seo-h2 {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--white);
}

.escorts-seo-h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    color: var(--gold);
    margin-top: 45px;
    margin-bottom: 15px;
}

.escorts-seo-text {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.9;
    font-weight: 300;
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 1200px) {
    .models-grid,
    .models-grid-8,
    .models-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats .container {
        gap: 60px;
    }

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

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

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

    .hero-image {
        width: 100%;
        opacity: 0.25;
    }

    .model-profile-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10,10,10,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        display: none;
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        font-size: 14px;
        letter-spacing: 4px;
    }

    /* Mobile dropdown */
    .nav-dropdown {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        min-width: auto;
        background: transparent;
        backdrop-filter: none;
        border: none;
        padding: 0;
        margin-top: 0;
        opacity: 1;
        visibility: visible;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

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

    .nav-dropdown.open .nav-dropdown-menu {
        max-height: 300px;
        margin-top: 10px;
    }

    .nav-dropdown-menu a {
        padding: 8px 0 !important;
        font-size: 12px !important;
        letter-spacing: 3px !important;
        text-align: center;
        color: var(--gray-light) !important;
    }

    .nav-dropdown-menu a:hover {
        padding-left: 0 !important;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
    }

    .logo {
        left: 25px;
    }

    .lang-switcher {
        display: none;
    }

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

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

    .about-block--reverse {
        direction: ltr;
    }

    .about-intro h2 {
        font-size: 32px;
    }

    .about-block-text h3 {
        font-size: 26px;
    }
}

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

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

    .stats .container {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

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

    .hero-subtitle {
        font-size: 14px;
    }

    .section {
        padding: 70px 0;
    }

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

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .model-name {
        font-size: 36px;
    }

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

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

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

    .lightbox-nav {
        display: none;
    }

    .lightbox-content {
        max-width: 100%;
        padding: 0 10px;
    }

    .lightbox-content img {
        max-height: 75vh;
        touch-action: pan-y;
        user-select: none;
        -webkit-user-select: none;
    }

    .lightbox-close {
        top: 12px;
        right: 12px;
    }

    .lightbox-counter {
        margin-top: 15px;
        font-size: 13px;
    }

    .contact-actions {
        flex-direction: column;
    }

    .about-section {
        padding: 80px 0;
    }

    .about-intro {
        margin-bottom: 60px;
    }

    .about-intro h2 {
        font-size: 28px;
    }

    .about-block {
        margin-bottom: 60px;
    }

    .about-block-text h3 {
        font-size: 24px;
    }

    .about-cta {
        margin-top: 60px;
        padding-top: 50px;
    }

    .about-cta p {
        font-size: 22px;
    }

    .escorts-seo-h2 {
        font-size: 26px;
    }

    .escorts-seo-h3 {
        font-size: 22px;
    }

    .escorts-intro-h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .models-grid,
    .models-grid-8,
    .models-gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

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

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

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

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

    .model-card-name {
        font-size: 16px;
    }

    .model-card-content {
        padding: 12px 3px 8px;
    }

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

    body.has-hero-logo .header:not(.scrolled) .logo img {
        height: 150px;
        max-height: 150px;
    }

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

/* ============================================
   ESCORTS HUB - CITIES GRID
   ============================================ */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.city-card {
    display: block;
    background: var(--black-light);
    border: 1px solid rgba(201, 163, 81, 0.1);
    padding: 50px 40px;
    text-align: center;
    transition: all 0.4s ease;
    text-decoration: none;
}

.city-card:hover {
    border-color: rgba(201, 163, 81, 0.4);
    transform: translateY(-4px);
}

.city-card-name {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.city-card:hover .city-card-name {
    color: var(--gold);
}

.city-card-country {
    font-size: 13px;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    margin-bottom: 20px;
}

.city-card-count {
    display: block;
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 25px;
    font-weight: 300;
}

.city-card-btn {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-light);
    border-bottom: 1px solid var(--gray-dark);
    padding-bottom: 3px;
    transition: all 0.3s ease;
}

.city-card:hover .city-card-btn {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

@media (max-width: 992px) {
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .cities-grid {
        grid-template-columns: 1fr;
    }

    .city-card {
        padding: 35px 25px;
    }

    .city-card-name {
        font-size: 28px;
    }
}

/* ============================================
   MODEL VIDEOS SECTION
   ============================================ */
.model-videos-section {
    margin-top: 60px;
}

.model-videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 25px;
}

.model-video-item {
    background: var(--black-light);
    border: 1px solid rgba(201, 163, 81, 0.1);
    overflow: hidden;
}

.model-video-item video {
    width: 100%;
    display: block;
    background: var(--black);
}

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

/* ============================================
   CASTING SECTION
   ============================================ */
.casting-intro {
    padding: 100px 0 60px;
}

.casting-section-title {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.casting-section-title span {
    color: var(--gold);
}

.casting-intro-text {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.9;
    font-weight: 300;
}

.casting-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.casting-benefit {
    background: var(--black-light);
    border: 1px solid rgba(201, 163, 81, 0.1);
    padding: 45px 40px;
    transition: border-color 0.4s ease;
}

.casting-benefit:hover {
    border-color: rgba(201, 163, 81, 0.3);
}

.casting-benefit-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 25px;
    color: var(--gold);
}

.casting-benefit-icon svg {
    width: 40px;
    height: 40px;
}

.casting-benefit h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.casting-benefit p {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.8;
    font-weight: 300;
}

/* Casting Form Section */
.casting-form-section {
    padding: 80px 0 100px;
    background: var(--black-lighter);
}

.casting-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--black-light);
    padding: 50px;
    border: 1px solid rgba(201, 163, 81, 0.1);
}

.casting-form .form-group {
    margin-bottom: 22px;
}

.casting-form .form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--gray-light);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.casting-form .form-input {
    width: 100%;
    padding: 14px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--gray-dark);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    transition: border-color 0.3s ease;
    outline: none;
}

.casting-form .form-input:focus {
    border-bottom-color: var(--gold);
}

.casting-form .form-input::placeholder {
    color: var(--gray);
}

.casting-form textarea.form-input {
    resize: vertical;
    min-height: 100px;
}

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

/* File Upload */
.casting-file-upload {
    position: relative;
}

.casting-file-input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    overflow: hidden;
}

.casting-file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    border: 2px dashed var(--gray-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    gap: 12px;
    color: var(--gray-light);
}

.casting-file-label:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.casting-file-text {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.casting-file-help {
    font-size: 12px;
    color: var(--gray);
    font-weight: 300;
}

.casting-preview {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.casting-preview-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 1px solid var(--gray-dark);
}

/* Privacy Checkbox */
.casting-privacy-group {
    margin-top: 10px;
}

.casting-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 13px;
    color: var(--gray-light);
    font-weight: 300;
    line-height: 1.6;
}

.casting-checkbox input[type="checkbox"] {
    display: none;
}

.casting-checkbox-mark {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 1px solid var(--gray-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.casting-checkbox input[type="checkbox"]:checked + .casting-checkbox-mark {
    border-color: var(--gold);
    background: var(--gold);
}

.casting-checkbox input[type="checkbox"]:checked + .casting-checkbox-mark::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid var(--black);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.casting-submit {
    width: 100%;
    padding: 18px;
    letter-spacing: 3px;
    margin-top: 15px;
}

/* Casting Responsive */
@media (max-width: 992px) {
    .casting-benefits {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .casting-section-title {
        font-size: 32px;
    }

    .casting-form-container {
        padding: 35px 25px;
    }

    .casting-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .casting-benefit {
        padding: 35px 30px;
    }
}

@media (max-width: 480px) {
    .casting-section-title {
        font-size: 28px;
    }

    .casting-intro-text {
        font-size: 14px;
    }
}

/* ============================================
   CENTERS INFO STRIP (above contact forms)
   ============================================ */
.centers-info-strip {
    padding: 60px 0;
    background: var(--black-lighter);
    border-bottom: 1px solid rgba(201, 163, 81, 0.08);
}

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

.centers-info-card {
    background: var(--black-light);
    border: 1px solid rgba(201, 163, 81, 0.08);
    padding: 24px;
    transition: border-color 0.3s ease;
}

.centers-info-card:hover {
    border-color: rgba(201, 163, 81, 0.25);
}

.centers-info-city-tag {
    display: inline-block;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 8px;
    padding: 3px 10px;
    border: 1px solid rgba(201, 163, 81, 0.2);
}

.centers-info-name {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.centers-info-schedule {
    display: block;
    font-size: 12px;
    color: var(--gray-light);
    font-weight: 300;
    margin-bottom: 14px;
}

.centers-info-name + .centers-info-links {
    margin-top: 14px;
}

.centers-info-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.centers-info-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 400;
    color: var(--gray-light);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.25s ease;
    text-decoration: none;
    letter-spacing: 0.3px;
}

.centers-info-link:hover {
    background: rgba(201, 163, 81, 0.08);
    border-color: rgba(201, 163, 81, 0.2);
    color: var(--white);
}

.centers-info-link--wa:hover {
    border-color: rgba(37, 211, 102, 0.3);
    color: #25d366;
}

.centers-info-link--tg:hover {
    border-color: rgba(0, 136, 204, 0.3);
    color: #0088cc;
}

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

@media (max-width: 576px) {
    .centers-info-strip {
        padding: 40px 0;
    }

    .centers-info-grid {
        grid-template-columns: 1fr;
    }

    .centers-info-card {
        padding: 20px;
    }

    .centers-info-links {
        flex-direction: column;
    }
}

/* ============================================
   FLOATING CONTACT BUTTON (FAB)
   ============================================ */
.fab-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border: none;
    cursor: pointer;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 25px rgba(201, 163, 81, 0.35);
    transition: all 0.3s ease;
    color: var(--black);
}

.fab-contact--shifted {
    right: 110px;
}

.fab-telegram {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #229ED9, #0088cc);
    border: none;
    cursor: pointer;
    z-index: 901;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 28px rgba(0, 136, 204, 0.45);
    transition: all 0.3s ease;
    color: #fff;
    text-decoration: none;
}

.fab-telegram svg {
    width: 26px;
    height: 26px;
}

.fab-telegram:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 36px rgba(0, 136, 204, 0.6);
    color: #fff;
}

.fab-telegram::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(0, 136, 204, 0.5);
    animation: fabTelegramPulse 2.2s ease-out infinite;
    pointer-events: none;
}

@keyframes fabTelegramPulse {
    0%   { transform: scale(0.9); opacity: 0.8; }
    70%  { transform: scale(1.25); opacity: 0; }
    100% { transform: scale(1.25); opacity: 0; }
}

.fab-contact:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 35px rgba(201, 163, 81, 0.5);
}

.fab-contact.active {
    background: var(--black-lighter);
    border: 1px solid rgba(201, 163, 81, 0.3);
    color: var(--gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.fab-icon-close {
    display: none;
}

.fab-contact.active .fab-icon-open {
    display: none;
}

.fab-contact.active .fab-icon-close {
    display: block;
}

/* Panel */
.fab-panel {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 360px;
    max-height: 70vh;
    background: var(--black-light);
    border: 1px solid rgba(201, 163, 81, 0.15);
    z-index: 899;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.fab-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.fab-panel-header {
    padding: 28px 28px 20px;
    border-bottom: 1px solid rgba(201, 163, 81, 0.1);
}

.fab-panel-header h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.fab-panel-header p {
    font-size: 12px;
    color: var(--gray-light);
    line-height: 1.6;
    font-weight: 300;
}

.fab-panel-body {
    padding: 20px 28px 28px;
    overflow-y: auto;
    flex: 1;
}

.fab-panel-body::-webkit-scrollbar {
    width: 3px;
}

.fab-panel-body::-webkit-scrollbar-thumb {
    background: var(--gray-dark);
    border-radius: 3px;
}

.fab-city-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(201, 163, 81, 0.1);
}

.fab-city-label:not(:first-child) {
    margin-top: 22px;
}

.fab-center {
    margin-bottom: 18px;
}

.fab-center:last-child {
    margin-bottom: 0;
}

.fab-center-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 4px;
    letter-spacing: 0.3px;
}

.fab-center-schedule {
    font-size: 11px;
    color: var(--gray-light);
    margin-bottom: 10px;
    font-weight: 300;
}

.fab-center-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fab-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    font-size: 13px;
    font-weight: 400;
    color: var(--gray-light);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.25s ease;
    text-decoration: none;
    letter-spacing: 0.3px;
}

.fab-link:hover {
    background: rgba(201, 163, 81, 0.08);
    border-color: rgba(201, 163, 81, 0.2);
    color: var(--white);
}

.fab-link--whatsapp:hover {
    border-color: rgba(37, 211, 102, 0.3);
    color: #25d366;
}

.fab-link--telegram:hover {
    border-color: rgba(0, 136, 204, 0.3);
    color: #0088cc;
}

.fab-link--phone:hover svg,
.fab-link--email:hover svg {
    stroke: var(--gold);
}

/* FAB Responsive */
@media (max-width: 576px) {
    .fab-contact {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }

    .fab-contact--shifted {
        right: 90px;
    }

    .fab-telegram {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }

    .fab-telegram svg {
        width: 24px;
        height: 24px;
    }

    .fab-panel {
        bottom: 85px;
        right: 15px;
        left: 15px;
        width: auto;
        max-height: 65vh;
    }

    .fab-panel-header {
        padding: 22px 22px 16px;
    }

    .fab-panel-body {
        padding: 16px 22px 22px;
    }
}
