/* Jima Models Agency - Complete Styles */

/* Base Styles */
:root {
    --primary-beige: #F5F0E6;
    --soft-beige: #FAF7F2;
    --warm-beige: #E8DFD0;
    --cream: #FBF9F5;
    --taupe: #C8B88B;
    --gold: #D4AF37;
    --light-gold: #E8DCC8;
    --text-dark: #2A2520;
    --text-medium: #5A5248;
    --text-light: #8B7F72;
    --white: #FFFFFF;
    --off-white: #FDFDFD;
    --shadow-light: rgba(42, 37, 32, 0.08);
    --shadow-medium: rgba(42, 37, 32, 0.12);
    --shadow-dark: rgba(42, 37, 32, 0.16);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background-color: var(--soft-beige);
    line-height: 1.7;
    font-size: 15px;
    font-weight: 300;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p {
    margin-bottom: 16px;
    color: var(--text-medium);
}

a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--warm-beige);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 32px;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

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

.nav-links a {
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

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

.cta-nav {
    background: var(--gold);
    color: var(--text-dark) !important;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-nav:hover {
    background: var(--text-dark);
    color: var(--gold) !important;
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

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

.mobile-nav-header {
    padding: 20px 40px;
    border-bottom: 1px solid var(--warm-beige);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
}

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

.mobile-nav-links a {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--soft-beige) 0%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?w=1920&h=1080&fit=crop&auto=format') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    margin-bottom: 24px;
    font-weight: 600;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--text-medium);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--text-dark);
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--shadow-medium);
}

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

.btn-secondary:hover {
    background: var(--gold);
    color: var(--text-dark);
    transform: translateY(-2px);
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--primary-beige);
}

.section-light {
    background: var(--cream);
}

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

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

.section-tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--gold);
    color: var(--text-dark);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-header h2 {
    margin-bottom: 20px;
    font-weight: 500;
}

.section-header p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Categories */
.categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.category-card {
    background: var(--white);
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px var(--shadow-light);
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px var(--shadow-medium);
}

.category-card h3 {
    margin-bottom: 16px;
    font-weight: 500;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Story Timeline */
.story-timeline {
    position: relative;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gold);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    flex: 0 0 120px;
    background: var(--gold);
    color: var(--text-dark);
    padding: 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 2rem;
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--gold);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gold);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.value-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--gold);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
}

.service-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.partner-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-5px);
}

.partner-logo {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.partner-item h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* Awards Timeline */
.awards-timeline {
    position: relative;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.award-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.award-year {
    flex: 0 0 100px;
    background: var(--gold);
    color: var(--text-dark);
    padding: 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.5rem;
    text-align: center;
}

.award-content {
    flex: 1;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.award-content h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.award-category {
    display: inline-block;
    background: var(--gold);
    color: var(--text-dark);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--gold);
}

.faq-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Models Grid */
.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.model-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
}

.model-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px var(--shadow-medium);
}

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

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

.model-info h4 {
    margin-bottom: 8px;
    font-weight: 500;
}

.model-info p {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

/* Portfolio Filters */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    background: var(--white);
    border: 2px solid var(--warm-beige);
    border-radius: 25px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--warm-beige);
    border-radius: 8px;
    background: var(--white);
    color: var(--text-dark);
    font-family: inherit;
    transition: all 0.3s ease;
}

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

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

/* Dark Mode Footer */
[data-theme="dark"] footer {
    background: #1A1814;
    color: #F5F0E6;
}

[data-theme="dark"] .footer-brand p {
    color: #C8B88B;
}

[data-theme="dark"] .footer-links h4 {
    color: #E8DCC8;
}

[data-theme="dark"] .footer-links a {
    color: #C8B88B;
}

[data-theme="dark"] .footer-links a:hover {
    color: #E8DCC8;
}

[data-theme="dark"] .footer-social a {
    background: #E8DCC8;
    color: #2A2520;
}

[data-theme="dark"] .footer-social a:hover {
    background: #F5F0E6;
    color: #2A2520;
}

[data-theme="dark"] .footer-bottom {
    border-top: 1px solid #3A3428;
}

[data-theme="dark"] .footer-legal a {
    color: #C8B88B;
}

[data-theme="dark"] .footer-legal a:hover {
    color: #E8DCC8;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid var(--warm-beige);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: var(--text-light);
    font-size: 14px;
    transition: color 0.3s ease;
}

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

/* Loading Screen */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

#loader.hidden {
    opacity: 0;
    pointer-events: none;
}

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

.loader-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--text-dark);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Preview Cards Section */
.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.preview-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--taupe));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px var(--shadow-medium);
}

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

.preview-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--taupe));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 32px;
    color: var(--white);
}

.preview-card h3 {
    font-size: clamp(24px, 3vw, 28px);
    margin-bottom: 16px;
    color: var(--text-dark);
}

.preview-card p {
    color: var(--text-medium);
    margin-bottom: 24px;
    line-height: 1.6;
}

.preview-stats {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.preview-stats .stat {
    background: var(--soft-beige);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.preview-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.preview-link:hover {
    color: var(--taupe);
    transform: translateX(4px);
}

/* Featured Models Section */
.featured-models {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.featured-model-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px var(--shadow-light);
    transition: all 0.3s ease;
    cursor: pointer;
}

.featured-model-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px var(--shadow-medium);
}

.featured-model-card .model-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

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

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

.featured-model-card .status-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-available {
    background: #10b981;
    color: white;
}

.status-busy {
    background: #f59e0b;
    color: white;
}

.status-exclusive {
    background: #8b5cf6;
    color: white;
}

.featured-model-card .model-info {
    padding: 24px;
}

.featured-model-card .model-info h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.featured-model-card .model-stats {
    color: var(--text-medium);
    font-size: 14px;
    margin-bottom: 8px;
}

.featured-model-card .model-location {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 0;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 24px var(--shadow-light);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px var(--shadow-medium);
}

.stat-number {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
    font-family: 'Cormorant Garamond', serif;
}

.stat-label {
    font-size: 14px;
    color: var(--text-medium);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

/* Dark Mode Adjustments */
[data-theme="dark"] .preview-card {
    background: var(--warm-beige);
}

[data-theme="dark"] .preview-icon {
    background: linear-gradient(135deg, var(--gold), var(--taupe));
}

[data-theme="dark"] .preview-card h3 {
    color: var(--text-dark);
}

[data-theme="dark"] .preview-stats .stat {
    background: var(--primary-beige);
    color: var(--text-dark);
}

[data-theme="dark"] .featured-model-card {
    background: var(--warm-beige);
}

[data-theme="dark"] .featured-model-card .model-info h4 {
    color: var(--text-dark);
}

[data-theme="dark"] .stat-item {
    background: var(--warm-beige);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .categories,
    .models-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .portfolio-filters {
        gap: 12px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 11px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 11px;
    }
    
    .category-card {
        padding: 40px 20px;
    }
}

/* Light/Dark Mode Theme System */
[data-theme="dark"] {
    --primary-beige: #2A2520;
    --soft-beige: #1A1814;
    --warm-beige: #3A3428;
    --cream: #24201A;
    --taupe: #8B7F72;
    --gold: #E8DCC8;
    --light-gold: #F5F0E6;
    --text-dark: #F5F0E6;
    --text-medium: #D4AF37;
    --text-light: #E8DCC8;
    --white: #1A1814;
    --off-white: #24201A;
    --shadow-light: rgba(0, 0, 0, 0.3);
    --shadow-medium: rgba(0, 0, 0, 0.5);
    --shadow-dark: rgba(0, 0, 0, 0.7);
}


/* Dark Mode Specific Adjustments */
[data-theme="dark"] body {
    background-color: var(--soft-beige);
    color: var(--text-dark);
}

[data-theme="dark"] nav {
    background: rgba(26, 24, 20, 0.95);
    border-bottom: 1px solid var(--warm-beige);
}

[data-theme="dark"] .section-dark {
    background: var(--primary-beige);
}

[data-theme="dark"] .section-light {
    background: var(--cream);
}

[data-theme="dark"] .model-card-enhanced {
    background: var(--warm-beige);
}

[data-theme="dark"] .discovery-controls,
[data-theme="dark"] .discovery-stats {
    background: var(--cream);
}

/* About Page Styles */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.philosophy-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 24px var(--shadow-light);
    transition: all 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px var(--shadow-medium);
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--text-dark);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.team-member {
    display: flex;
    gap: 30px;
    padding: 40px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 24px var(--shadow-light);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px var(--shadow-medium);
}

.member-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info h3 {
    margin-bottom: 8px;
    color: var(--text-dark);
}

.member-title {
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 16px;
}

.member-bio {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.6;
}

.member-social {
    display: flex;
    gap: 16px;
}

.member-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--warm-beige);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: var(--gold);
    color: var(--white);
}

/* Coaching Page Styles */
.coaching-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.coaching-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 24px var(--shadow-light);
    transition: all 0.3s ease;
}

.coaching-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px var(--shadow-medium);
}

.coaching-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.coaching-features {
    list-style: none;
    margin: 24px 0;
}

.coaching-features li {
    padding: 8px 0;
    color: var(--text-medium);
    position: relative;
    padding-left: 20px;
}

.coaching-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.coaching-details {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--warm-beige);
}

.duration, .level {
    padding: 6px 12px;
    background: var(--soft-beige);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-dark);
}

/* Process Timeline */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 auto 24px;
}

.step-content h3 {
    margin-bottom: 16px;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 24px var(--shadow-light);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px var(--shadow-medium);
}

.testimonial-content {
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 24px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin-bottom: 4px;
    color: var(--text-dark);
}

.testimonial-author p {
    color: var(--gold);
    font-size: 14px;
    margin: 0;
}

/* Become Model Page Styles */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.requirement-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 24px var(--shadow-light);
    transition: all 0.3s ease;
}

.requirement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px var(--shadow-medium);
}

.requirement-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.requirement-details {
    margin-top: 20px;
}

.requirement-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--warm-beige);
}

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

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

.requirement-list li {
    padding: 8px 0;
    color: var(--text-medium);
    position: relative;
    padding-left: 20px;
}

/* Punkt-Styling in pages-design.css */

/* Form Styles */
.booking-form-container,
.application-form-container,
.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 8px 24px var(--shadow-light);
}

.form-section {
    margin-bottom: 40px;
}

.form-section h3 {
    margin-bottom: 24px;
    color: var(--text-dark);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--warm-beige);
    border-radius: 8px;
    background: var(--white);
    color: var(--text-dark);
    font-family: inherit;
    transition: all 0.3s ease;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.photo-upload-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.upload-item {
    text-align: center;
    padding: 24px;
    border: 2px dashed var(--warm-beige);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.upload-item:hover {
    border-color: var(--gold);
    background: var(--soft-beige);
}

.upload-item small {
    display: block;
    margin-top: 8px;
    color: var(--text-light);
    font-size: 12px;
}

/* Press Page Styles */
.press-releases-grid {
    display: grid;
    gap: 32px;
    margin: 60px 0;
}

.press-release {
    display: flex;
    gap: 32px;
    padding: 40px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 24px var(--shadow-light);
    transition: all 0.3s ease;
}

.press-release:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px var(--shadow-medium);
}

.release-date {
    flex-shrink: 0;
    text-align: center;
    padding: 20px;
    background: var(--gold);
    border-radius: 8px;
    min-width: 100px;
}

.release-date .day {
    display: block;
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
}

.release-date .month {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.release-date .year {
    display: block;
    font-size: 12px;
    color: var(--text-dark);
}

.release-content h3 {
    margin-bottom: 16px;
    color: var(--text-dark);
}

.release-content p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.6;
}

.release-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category {
    padding: 6px 12px;
    background: var(--soft-beige);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-dark);
}

.read-more {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--text-dark);
}

.media-coverage-grid {
    display: grid;
    gap: 32px;
    margin: 60px 0;
}

.media-feature {
    display: flex;
    gap: 32px;
    padding: 40px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 24px var(--shadow-light);
    transition: all 0.3s ease;
}

.media-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px var(--shadow-medium);
}

.media-logo {
    flex-shrink: 0;
    width: 200px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
}

.media-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-content h4 {
    margin-bottom: 8px;
    color: var(--text-dark);
}

.media-publication {
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 16px;
}

.media-content p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.6;
}

.media-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.media-link:hover {
    color: var(--text-dark);
}

/* Contact Page Styles */
.contact-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.contact-option {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 24px var(--shadow-light);
    transition: all 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px var(--shadow-medium);
}

.contact-option .contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-dark);
    margin: 0 auto 24px;
}

.contact-option h3 {
    margin-bottom: 16px;
    color: var(--text-dark);
}

.contact-option p {
    color: var(--text-medium);
    margin-bottom: 20px;
}

.contact-option a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-option a:hover {
    color: var(--text-dark);
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.office-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 24px var(--shadow-light);
    transition: all 0.3s ease;
}

.office-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px var(--shadow-medium);
}

.office-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.office-header h3 {
    color: var(--text-dark);
}

.office-badge {
    padding: 6px 12px;
    background: var(--gold);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-dark);
}

.office-address {
    margin-bottom: 24px;
    color: var(--text-medium);
    line-height: 1.6;
}

.office-details {
    margin-bottom: 32px;
}

.office-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-medium);
}

.office-detail i {
    color: var(--gold);
    width: 20px;
}

.office-actions {
    display: flex;
    gap: 16px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin: 60px 0;
}

.social-card {
    display: block;
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 24px var(--shadow-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px var(--shadow-medium);
}

.social-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-dark);
    margin: 0 auto 24px;
}

.social-card h4 {
    margin-bottom: 8px;
    color: var(--text-dark);
}

.social-card p {
    color: var(--text-medium);
    margin-bottom: 12px;
}

.social-stats {
    color: var(--gold);
    font-size: 14px;
    font-weight: 500;
}

/* FAQ Styles */
.faq-grid {
    display: grid;
    gap: 24px;
    margin: 60px 0;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px var(--shadow-light);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 48px var(--shadow-medium);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    cursor: pointer;
    background: var(--white);
    transition: all 0.3s ease;
}

.faq-question h4 {
    color: var(--text-dark);
    margin: 0;
}

.faq-question i {
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 32px 24px;
    color: var(--text-medium);
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Media Kit Styles */
.media-kit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.kit-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 24px var(--shadow-light);
    transition: all 0.3s ease;
}

.kit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px var(--shadow-medium);
}

.kit-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-dark);
    margin: 0 auto 24px;
}

.kit-item h3 {
    margin-bottom: 16px;
    color: var(--text-dark);
}

.kit-item p {
    color: var(--text-medium);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin: 60px 0;
    text-align: center;
}

.stat-item {
    padding: 40px 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 24px var(--shadow-light);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px var(--shadow-medium);
}

.stat-number {
    font-size: 48px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 12px;
}

.stat-label {
    color: var(--text-medium);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .philosophy-grid,
    .coaching-grid,
    .requirements-grid,
    .contact-options-grid,
    .media-kit-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .team-member,
    .media-feature,
    .press-release {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .member-image,
    .media-logo {
        align-self: center;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .booking-form-container,
    .application-form-container,
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .offices-grid {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .office-actions {
        flex-direction: column;
    }
    
    .release-date {
        min-width: 80px;
        padding: 16px;
    }
    
    .release-date .day {
        font-size: 24px;
    }
    
    .release-meta {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .theme-toggle {
        width: 40px;
        height: 40px;
        font-size: 16px;
        top: 15px;
        right: 15px;
    }
    
    .philosophy-card,
    .coaching-card,
    .requirement-card,
    .contact-option,
    .kit-item {
        padding: 30px 20px;
    }
    
    .team-member,
    .office-card {
        padding: 30px 20px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .press-release,
    .media-feature {
        padding: 30px 20px;
        gap: 20px;
    }
}

/* Animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===================================
   TABLET SPECIFIC STYLES
   =================================== */
@media (min-width: 481px) and (max-width: 1024px) {
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================================
   iOS/ANDROID SPECIFIC FIXES
   =================================== */
@supports (-webkit-touch-callout: none) {
    .page-hero,
    .hero {
        min-height: -webkit-fill-available;
    }
    
    input, textarea, select {
        font-size: 16px !important;
    }
}

/* Safe area for notched devices */
@supports (padding: max(0px)) {
    .main-nav {
        padding-top: max(20px, env(safe-area-inset-top));
    }
    
    footer {
        padding-bottom: max(40px, env(safe-area-inset-bottom));
    }
}

/* Better touch targets */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .nav-links a,
    .filter-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .mobile-toggle {
        min-width: 44px;
        min-height: 44px;
    }
}

/* Landscape phone adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 60px 0;
    }
    
    .page-hero {
        min-height: auto;
        padding: 40px 0;
    }
}
