/* ==========================================
   JIMA MODELS AGENCY - PREMIUM PAGES DESIGN
   Perfektes Design für alle Unterseiten
   Version 2.0 - Luxury Edition
   ========================================== */

/* ============================================
   PREMIUM NAVIGATION / HEADER
   ============================================ */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 20px rgba(42, 37, 32, 0.04);
}

.main-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(42, 37, 32, 0.08);
}

.main-nav .nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.main-nav .logo:hover {
    transform: scale(1.02);
}

.main-nav .logo img {
    height: 42px;
    width: auto;
    transition: all 0.3s ease;
}

.main-nav .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav .nav-links a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-medium, #5A5248);
    text-decoration: none;
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.main-nav .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold, #D4AF37), #E8DCC8);
    transition: width 0.3s ease;
}

.main-nav .nav-links a:hover,
.main-nav .nav-links a.active {
    color: var(--text-dark, #2A2520);
}

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

.main-nav .cta-nav {
    background: linear-gradient(135deg, var(--gold, #D4AF37) 0%, #C9A227 100%);
    color: #000 !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.8px;
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.main-nav .cta-nav::after {
    display: none;
}

.main-nav .cta-nav:hover {
    background: linear-gradient(135deg, #2A2520 0%, #3A342F 100%);
    color: var(--gold, #D4AF37) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(42, 37, 32, 0.25);
}

.main-nav .mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark, #2A2520);
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s ease;
}

.main-nav .mobile-toggle:hover {
    color: var(--gold, #D4AF37);
}

/* Mobile Navigation Premium */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #FAF7F2 100%);
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-header {
    padding: 20px 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-dark, #2A2520);
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
}

.mobile-nav-close:hover {
    color: var(--gold, #D4AF37);
    transform: rotate(90deg);
}

.mobile-nav-links {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-links a {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-dark, #2A2520);
    text-decoration: none;
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: var(--gold, #D4AF37);
    padding-left: 15px;
}

/* ============================================
   PAGE HERO SECTION - PREMIUM
   ============================================ */
.page-hero {
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F5F0E6 0%, #FAF7F2 50%, #FBF9F5 100%);
    position: relative;
    padding: 140px 20px 80px;
    text-align: center;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    animation: heroFloat 25s ease-in-out infinite;
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 184, 139, 0.06) 0%, transparent 70%);
    animation: heroFloat 20s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-40px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-subtitle {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold, #D4AF37);
    margin-bottom: 24px;
    font-weight: 600;
    position: relative;
    padding: 0 30px;
}

.hero-subtitle::before,
.hero-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 1px;
    background: var(--gold, #D4AF37);
}

.hero-subtitle::before {
    left: 0;
}

.hero-subtitle::after {
    right: 0;
}

.page-hero h1 {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 300;
    margin-bottom: 24px;
    line-height: 1.15;
    color: var(--text-dark, #2A2520);
    font-family: 'Cormorant Garamond', Georgia, serif;
    letter-spacing: -0.02em;
}

.page-hero p {
    font-size: 18px;
    color: var(--text-medium, #5A5248);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
    font-weight: 300;
}

/* ============================================
   SECTION STYLING - PREMIUM
   ============================================ */
.section-padding {
    padding: 100px 0;
}

.bg-beige {
    background-color: var(--primary-beige, #F5F0E6);
}

.bg-white {
    background-color: var(--white, #FFFFFF);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

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

.section-header.text-center {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold, #D4AF37);
    margin-bottom: 16px;
    font-weight: 600;
    position: relative;
}

.section-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 300;
    margin-top: 8px;
    color: var(--text-dark, #2A2520);
    font-family: 'Cormorant Garamond', Georgia, serif;
    letter-spacing: -0.01em;
}

.section-header p {
    font-size: 17px;
    color: var(--text-medium, #5A5248);
    max-width: 700px;
    margin: 24px auto 0;
    line-height: 1.8;
}

/* ============================================
   PREMIUM FOOTER
   ============================================ */
footer {
    background: linear-gradient(180deg, #2A2520 0%, #1E1B18 100%);
    color: #FFFFFF;
    padding: 0;
    position: relative;
    overflow: visible;
    margin-top: 50px;
}

footer::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(42, 37, 32, 0.02) 40%,
        rgba(42, 37, 32, 0.08) 60%, 
        rgba(42, 37, 32, 0.2) 80%,
        rgba(42, 37, 32, 0.5) 80%,
        #2A2520 80%
    );
    pointer-events: none;
}

footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 0px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    padding-right: 80px;
}

.footer-brand img {
    height: 45px;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
    max-width: 320px;
}

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

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

.footer-social a:hover {
    background: var(--gold, #D4AF37);
    border-color: var(--gold, #D4AF37);
    color: #2A2520;
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold, #D4AF37);
    margin-bottom: 28px;
    font-family: 'Inter', sans-serif;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold, #D4AF37);
    transform: translateX(5px);
}

.footer-bottom {
    padding: 30px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0 5px;
}

.footer-bottom a:hover {
    color: var(--gold, #D4AF37);
}

/* ============================================
   CONTENT COMPONENTS - PREMIUM
   ============================================ */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.content-text h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-top: 12px;
    margin-bottom: 24px;
    font-weight: 300;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.content-text p {
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 20px;
    color: var(--text-medium, #5A5248);
}

.content-image {
    position: relative;
}

.image-placeholder {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #E8DFD0 0%, #FAF7F2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ============================================
   STATS & VALUES - PREMIUM
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 42px;
    font-weight: 300;
    color: var(--gold, #D4AF37);
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-medium, #5A5248);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 50px;
}

.value-card {
    padding: 45px 30px;
    background: var(--white, #FFFFFF);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold, #D4AF37), #E8DCC8);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold, #D4AF37) 0%, #C9A227 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 28px;
    color: white;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--text-dark, #2A2520);
    font-weight: 400;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.value-card p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-medium, #5A5248);
    margin: 0;
}

/* ============================================
   FILTER & BUTTONS - PREMIUM
   ============================================ */
.filter-section {
    margin-bottom: 60px;
}

.filter-bar {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 0;
}

.filter-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 14px 32px;
    background: transparent;
    border: 2px solid var(--warm-beige, #E8DFD0);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark, #2A2520);
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--gold, #D4AF37) 0%, #C9A227 100%);
    border-color: var(--gold, #D4AF37);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Premium Buttons */
.btn {
    display: inline-block;
    padding: 18px 42px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold, #D4AF37) 0%, #C9A227 100%);
    color: #000;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2A2520 0%, #3A342F 100%);
    color: var(--gold, #D4AF37);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(42, 37, 32, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark, #2A2520);
    border: 2px solid var(--text-dark, #2A2520);
}

.btn-secondary:hover {
    background: var(--text-dark, #2A2520);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(42, 37, 32, 0.2);
}

.btn-small {
    padding: 12px 28px;
    font-size: 11px;
}

.btn-large {
    padding: 20px 50px;
    font-size: 13px;
}

/* ============================================
   MODELS & CARDS GRID - PREMIUM
   ============================================ */
.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.model-card {
    background: var(--white, #FFFFFF);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.model-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.model-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

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

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

.badge-new {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--gold, #D4AF37) 0%, #C9A227 100%);
    color: #000;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.model-info {
    padding: 28px;
    text-align: center;
}

.model-info h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text-dark, #2A2520);
    font-weight: 400;
}

.model-stats {
    font-size: 13px;
    color: var(--text-medium, #5A5248);
    margin-bottom: 20px;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.category-card {
    background: var(--white, #FFFFFF);
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.category-card i {
    font-size: 36px;
    color: var(--gold, #D4AF37);
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 400;
}

.category-card p {
    font-size: 14px;
    color: var(--text-medium, #5A5248);
    margin: 0;
}

/* Coaching Grid */
.coaching-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 50px;
}

.coaching-card {
    background: var(--white, #FFFFFF);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.coaching-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.coaching-card-header {
    padding: 35px 28px;
    text-align: center;
    background: linear-gradient(135deg, #F5F0E6 0%, #FAF7F2 100%);
}

.coaching-card h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: var(--text-dark, #2A2520);
    font-weight: 400;
}

.price {
    font-size: 38px;
    font-weight: 300;
    color: var(--gold, #D4AF37);
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 8px;
}

.price-duration {
    font-size: 13px;
    color: var(--text-medium, #5A5248);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.coaching-card-body {
    padding: 35px;
}

.coaching-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.coaching-card li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    font-size: 15px;
    color: var(--text-medium, #5A5248);
}

.coaching-card li:last-child {
    border-bottom: none;
}

.coaching-card li i {
    color: var(--gold, #D4AF37);
    margin-right: 14px;
}

/* ============================================
   FORMS - PREMIUM
   ============================================ */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

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

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

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

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark, #2A2520);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 22px;
    border: 2px solid var(--warm-beige, #E8DFD0);
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: var(--white, #FFFFFF);
    color: var(--text-dark, #2A2520);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light, #8B7F72);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold, #D4AF37);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
}

.form-group textarea {
    min-height: 160px;
    resize: vertical;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-medium, #5A5248);
}

.checkbox-label input[type="checkbox"],
input[type="checkbox"] {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
    margin-top: 2px;
    accent-color: var(--gold, #D4AF37) !important;
    appearance: auto !important;
    -webkit-appearance: checkbox !important;
    background: #fff !important;
    border: 2px solid #D4AF37 !important;
    border-radius: 4px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked,
input[type="checkbox"]:checked {
    background: #D4AF37 !important;
}

.checkbox-label a {
    color: var(--gold, #D4AF37);
    text-decoration: underline;
}

/* Modal checkbox fix */
.booking-modal input[type="checkbox"],
.modal input[type="checkbox"],
form input[type="checkbox"] {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    appearance: auto !important;
    -webkit-appearance: checkbox !important;
    background: #fff !important;
    border: 2px solid #D4AF37 !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
}

/* Contact Form Container */
.contact-form-container,
.application-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white, #FFFFFF);
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
}

/* Contact Options Grid */
.contact-options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-option {
    background: var(--white, #FFFFFF);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.contact-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.option-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold, #D4AF37) 0%, #C9A227 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 26px;
    color: white;
}

.contact-option h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 500;
}

.contact-option p {
    font-size: 14px;
    color: var(--text-medium, #5A5248);
    margin-bottom: 16px;
}

.contact-option a {
    color: var(--gold, #D4AF37);
    font-weight: 500;
    font-size: 14px;
}

/* Offices Grid */
.offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.office-card {
    background: var(--white, #FFFFFF);
    padding: 45px 35px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: all 0.4s ease;
}

.office-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.office-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold, #D4AF37) 0%, #C9A227 100%);
    color: #000;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.office-icon {
    font-size: 40px;
    color: var(--gold, #D4AF37);
    margin-bottom: 24px;
}

.office-card h3 {
    font-size: 26px;
    margin-bottom: 24px;
    font-weight: 400;
}

.office-info p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--text-medium, #5A5248);
}

.office-info a {
    color: var(--gold, #D4AF37);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.social-icon {
    width: 60px;
    height: 60px;
    background: var(--white, #FFFFFF);
    border: 2px solid var(--warm-beige, #E8DFD0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--text-dark, #2A2520);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gold, #D4AF37);
    border-color: var(--gold, #D4AF37);
    color: white;
    transform: translateY(-5px);
}

/* ============================================
   CTA SECTION - PREMIUM
   ============================================ */
.cta-section {
    text-align: center;
    padding: 120px 40px;
    background: linear-gradient(135deg, #2A2520 0%, #1E1B18 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold, #D4AF37), transparent);
}

.cta-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: clamp(32px, 5vw, 48px);
    color: white;
    margin-bottom: 24px;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 45px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-section .btn-primary {
    background: linear-gradient(135deg, var(--gold, #D4AF37) 0%, #C9A227 100%);
    color: #000;
}

.cta-section .btn-primary:hover {
    background: white;
    color: #2A2520;
}

.cta-section .btn-secondary {
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

.cta-section .btn-secondary:hover {
    background: white;
    border-color: white;
    color: #2A2520;
}

/* ============================================
   PRESS PAGE COMPONENTS - PREMIUM
   ============================================ */
.press-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.press-article {
    background: var(--white, #FFFFFF);
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.press-article:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.press-date {
    background: linear-gradient(135deg, var(--gold, #D4AF37) 0%, #C9A227 100%);
    color: #000;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}

.press-date .day {
    font-size: 36px;
    font-weight: 300;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
}

.press-date .month {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.press-date .year {
    font-size: 12px;
    opacity: 0.7;
}

.press-content {
    padding: 30px;
    flex: 1;
}

.press-category {
    display: inline-block;
    background: var(--soft-beige, #FAF7F2);
    color: var(--gold, #D4AF37);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.press-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 400;
    color: var(--text-dark, #2A2520);
}

.press-content p {
    font-size: 14px;
    color: var(--text-medium, #5A5248);
    line-height: 1.7;
    margin-bottom: 16px;
}

.read-more {
    color: var(--gold, #D4AF37);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more:hover {
    gap: 12px;
}

/* Media Kit Grid */
.media-kit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.kit-card {
    background: var(--white, #FFFFFF);
    padding: 45px 35px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.kit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.kit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold, #D4AF37) 0%, #C9A227 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 32px;
    color: white;
}

.kit-card h3 {
    font-size: 24px;
    margin-bottom: 14px;
    font-weight: 400;
}

.kit-card p {
    font-size: 14px;
    color: var(--text-medium, #5A5248);
    margin-bottom: 28px;
    line-height: 1.7;
}

/* Press Contact Card */
.press-contact-card {
    background: var(--white, #FFFFFF);
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--soft-beige, #FAF7F2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--gold, #D4AF37);
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 14px;
    color: var(--text-dark, #2A2520);
    margin-bottom: 4px;
}

.contact-item span,
.contact-item a {
    font-size: 13px;
    color: var(--text-medium, #5A5248);
}

.contact-item a:hover {
    color: var(--gold, #D4AF37);
}

/* Media Logos */
.media-logos {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.media-logo {
    font-size: 28px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    color: var(--text-medium, #5A5248);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.media-logo:hover {
    opacity: 1;
}

/* ============================================
   BECOME MODEL / REQUIREMENTS - PREMIUM
   ============================================ */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .requirements-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

.requirement-card {
    background: #FFFFFF;
    padding: 28px 24px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #F0EBE3;
    position: relative;
    overflow: hidden;
}

.requirement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold, #D4AF37), #C9A227);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.requirement-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(212, 175, 55, 0.2);
}

.requirement-card:hover::before {
    opacity: 1;
}

.requirement-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.06));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 18px;
    color: var(--gold, #D4AF37);
}

.requirement-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark, #2A2520);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.requirement-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirement-list li {
    padding: 8px 0 8px 20px;
    font-size: 13px;
    color: var(--text-medium, #5A5248);
    position: relative;
    line-height: 1.6;
}

.requirement-list li::before {
    content: '•';
    position: absolute;
    left: -13px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold, #D4AF37);
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
}

.requirement-list li:last-child {
    padding-bottom: 0;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
    padding-left: 60px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--gold, #D4AF37), #E8DCC8);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    position: absolute;
    left: -60px;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold, #D4AF37) 0%, #C9A227 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

.timeline-content {
    background: var(--white, #FFFFFF);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    flex: 1;
}

.timeline-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 400;
    color: var(--text-dark, #2A2520);
}

.timeline-content p {
    font-size: 15px;
    color: var(--text-medium, #5A5248);
    margin: 0;
    line-height: 1.7;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white, #FFFFFF);
    padding: 35px 40px;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 14px;
    font-weight: 500;
    color: var(--text-dark, #2A2520);
    font-family: 'Inter', sans-serif;
}

.faq-item p {
    font-size: 15px;
    color: var(--text-medium, #5A5248);
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN - PREMIUM
   ============================================ */
@media (max-width: 1200px) {
    .main-nav .nav-container {
        padding: 16px 30px;
    }
    
    .main-nav .nav-links {
        gap: 24px;
    }
    
    .contact-options-grid,
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .main-nav .nav-links {
        display: none;
    }
    
    .main-nav .mobile-toggle {
        display: block;
    }
    
    .page-hero h1 {
        font-size: 48px;
    }
    
    .content-grid {
        gap: 60px;
    }
    
    .values-grid,
    .coaching-grid,
    .models-grid,
    .requirements-grid,
    .offices-grid,
    .media-kit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
        text-align: center;
    }
    
    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .press-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 50vh;
        padding: 120px 20px 60px;
    }
    
    .page-hero h1 {
        font-size: 36px;
    }
    
    .page-hero p {
        font-size: 16px;
    }
    
    .hero-subtitle {
        padding: 0 20px;
    }
    
    .hero-subtitle::before,
    .hero-subtitle::after {
        width: 15px;
    }
    
    .section-padding {
        padding: 70px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .section-header {
        margin-bottom: 45px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .values-grid,
    .coaching-grid,
    .models-grid,
    .requirements-grid,
    .offices-grid,
    .media-kit-grid,
    .categories-grid,
    .contact-options-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid,
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container,
    .application-form-container {
        padding: 35px 25px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-container {
        padding: 60px 20px 0;
    }
    
    .footer-links h4 {
        margin-bottom: 18px;
    }
    
    .cta-section {
        padding: 80px 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .process-timeline {
        padding-left: 50px;
    }
    
    .timeline-icon {
        left: -50px;
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .process-timeline::before {
        left: 18px;
    }
    
    .press-article {
        flex-direction: column;
    }
    
    .press-date {
        flex-direction: row;
        gap: 10px;
        min-width: auto;
        padding: 20px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .press-contact-card {
        padding: 35px 25px;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 110px 15px 50px;
    }
    
    .page-hero h1 {
        font-size: 28px;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .content-text h2 {
        font-size: 28px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .btn {
        padding: 16px 30px;
        font-size: 11px;
    }
    
    .value-card,
    .requirement-card,
    .coaching-card,
    .kit-card,
    .office-card {
        padding: 35px 25px;
    }
    
    .timeline-content {
        padding: 25px 20px;
    }
    
    .faq-item {
        padding: 28px 25px;
    }
    
    .main-nav .nav-container {
        padding: 14px 20px;
    }
    
    .main-nav .logo img {
        height: 36px;
    }
}

/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

/* Dark Mode Adjustments for Pages */
[data-theme="dark"] .page-hero {
    background: linear-gradient(135deg, #1E1B18 0%, #2A2520 50%, #1E1B18 100%);
}

[data-theme="dark"] .page-hero h1 {
    color: #F5F0E6;
}

[data-theme="dark"] .page-hero p {
    color: rgba(245, 240, 230, 0.7);
}

[data-theme="dark"] .section-header h2 {
    color: #F5F0E6;
}

[data-theme="dark"] .value-card,
[data-theme="dark"] .coaching-card,
[data-theme="dark"] .requirement-card,
[data-theme="dark"] .model-card,
[data-theme="dark"] .office-card,
[data-theme="dark"] .kit-card,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .contact-form-container,
[data-theme="dark"] .application-form-container,
[data-theme="dark"] .press-article,
[data-theme="dark"] .press-contact-card,
[data-theme="dark"] .timeline-content,
[data-theme="dark"] .contact-option,
[data-theme="dark"] .category-card {
    background: #2A2520;
}

[data-theme="dark"] .bg-beige {
    background: #1E1B18;
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
    background: #1E1B18;
    border-color: #3A3428;
    color: #F5F0E6;
}

[data-theme="dark"] .main-nav {
    background: rgba(26, 24, 20, 0.98);
    border-bottom-color: rgba(212, 175, 55, 0.15);
}
