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

:root {
    --primary-gold: #1e3a5f;
    --secondary-gold: #2c5282;
    --dark-bg: #0f172a;
    --light-bg: #f8fafc;
    --text-dark: #1e293b;
    --text-light: #ffffff;
    --accent-color: #b45309;
    --header-dark: #0f172a;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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


.header {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--header-dark) 100%);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar {
    background: rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    color: var(--text-light);
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-menu a:hover {
    color: var(--text-light);
}

.nav-menu a:hover::after {
    width: 100%;
    background: var(--text-light);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-menu span {
    width: 100%;
    height: 3px;
    background: var(--text-light);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}


.hero {
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.35)),
                url('../img/background.png') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-dark);
    margin-top: 70px;
    position: relative;
}



.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.2s both;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.4s both;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}


section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.section-text {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #666;
    line-height: 1.8;
}


.about {
    background: var(--light-bg);
}


.models {
    background: #ffffff;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .models-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

.model-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.model-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
    border-color: var(--primary-gold);
}


.model-slider {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    background: #000;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    background-color: transparent;
    color: var(--text-light);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: none;
    background-color: transparent;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 15px;
}

.slider-btn.next {
    right: 15px;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: var(--primary-gold);
    transform: scale(1.2);
}


.model-info {
    padding: 2rem;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.model-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--primary-gold);
    font-weight: 700;
}

.model-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.model-details p {
    font-size: 0.95rem;
    color: #555;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.model-details p:last-child {
    border-bottom: none;
}

.model-details strong {
    color: var(--text-dark);
    font-weight: 600;
    min-width: 120px;
    display: inline-block;
}

.btn-view-profile {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-view-profile:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}


.statistics {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--header-dark) 100%);
    padding: 60px 0;
    color: var(--text-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}


.services {
    background: var(--light-bg);
    padding: 80px 0;
}

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

.service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    border-color: var(--primary-gold);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.8;
}


.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    text-align: left;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}


.why-choose {
    background: #ffffff;
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--text-light);
    font-weight: bold;
}

.feature-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-item p {
    color: #666;
    line-height: 1.8;
}


.testimonials {
    background: var(--light-bg);
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.testimonial-text {
    margin-bottom: 1.5rem;
}

.testimonial-text p {
    font-size: 1.1rem;
    color: #555;
    font-style: italic;
    line-height: 1.8;
    position: relative;
    padding-left: 2rem;
}

.testimonial-text p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: var(--primary-gold);
    font-family: 'Playfair Display', serif;
    opacity: 0.3;
}

.testimonial-author {
    border-top: 2px solid var(--primary-gold);
    padding-top: 1rem;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}


.gallery {
    background: #ffffff;
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 1 / 1;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

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


.contact {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--header-dark) 100%);
    color: var(--text-light);
}

.contact .section-title {
    color: var(--text-light);
}

.contact .section-title::after {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-info strong {
    color: var(--text-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.15);
}

.contact-form .btn-primary {
    align-self: flex-start;
}


.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}


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


@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, var(--dark-bg) 0%, var(--header-dark) 100%);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 2rem 0;
        gap: 2rem;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        font-size: 1.2rem;
        width: 100%;
    }

    .logo h1 {
        font-size: 1.4rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .models-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .model-card {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .model-slider {
        height: 400px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

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

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

    .about-content {
        grid-template-columns: 1fr;
    }

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

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

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 15px;
    }

    .hero {
        height: 80vh;
        padding: 2rem 0;
    }

    .model-page-content {
        flex-direction: column;
    }

    .model-page-gallery,
    .model-page-info {
        width: 100%;
    }

    .booking-form-container {
        padding: 1.5rem;
    }

    .payment-container {
        padding: 1.5rem;
    }

    .support-chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
    }

    .model-page {
        padding-top: 100px;
    }

    .price-calculation {
        padding: 1rem;
    }

    .btn-primary {
        width: 100%;
        padding: 12px 20px;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-content {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .models-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .model-card {
        width: 100%;
        max-width: 100%;
    }

    .header {
        padding: 0.8rem 0;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .burger-menu {
        width: 25px;
        height: 25px;
    }

    .nav-menu {
        top: 60px;
        height: calc(100vh - 60px);
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 10px;
    }

    .booking-form-container {
        padding: 1rem;
    }

    .payment-container {
        padding: 1rem;
    }

    .model-slider {
        height: 300px;
    }

    .support-chat-button {
        width: 50px;
        height: 50px;
        bottom: 10px;
        right: 10px;
    }

    .support-chat-widget {
        bottom: 70px;
        max-height: 80vh;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-section h3 {
        font-size: 1rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }

    .model-page-details {
        padding: 1rem;
    }

    .model-bio,
    .model-portfolio {
        padding: 1rem;
    }

    .custom-calendar {
        padding: 15px;
    }

    .calendar-day {
        font-size: 0.8rem;
        padding: 5px;
    }

    .calendar-nav-btn {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
}

@media (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }

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

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

@media (min-width: 769px) and (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }

    .nav-menu a {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .model-slider {
        height: 350px;
    }

    .model-info {
        padding: 1.5rem;
    }

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

    .stat-number {
        font-size: 2.5rem;
    }

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


.booking-form-container {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

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

.form-group textarea {
    resize: vertical;
}


.payment-page {
    background: #f5f5f5;
}

.payment-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.payment-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-align: center;
}

.invoice-number {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.invoice-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e0e0e0;
}

.invoice-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.detail-item strong {
    color: var(--text-dark);
    font-weight: 600;
}

.detail-item span {
    color: #666;
    text-align: right;
}

.payment-summary {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.payment-summary h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    color: #666;
}

.summary-row.total {
    border-top: 2px solid var(--primary-gold);
    padding-top: 1rem;
    margin-top: 0.5rem;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.crypto-payment {
    margin-bottom: 2rem;
}

.crypto-payment h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.payment-note {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.crypto-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.crypto-option {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
}

.crypto-option h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.crypto-address {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    background: #ffffff;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.crypto-address code {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--text-dark);
    word-break: break-all;
}

.copy-btn {
    padding: 8px 20px;
    background: var(--primary-gold);
    color: var(--text-light);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

.crypto-amount {
    color: #666;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.crypto-amount strong {
    color: var(--text-dark);
    font-size: 1.1rem;
}

.payment-instructions {
    background: #fff9e6;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-gold);
    margin-bottom: 1.5rem;
}

.payment-instructions h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.payment-instructions ol {
    margin-left: 1.5rem;
    color: #666;
    line-height: 1.8;
}

.payment-instructions li {
    margin-bottom: 0.5rem;
}

.warning {
    background: #fff3cd;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
    color: #856404;
    font-weight: 500;
}

.payment-status {
    background: #e7f3ff;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    color: #666;
}

.invoice-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background: #6c757d;
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .invoice-details {
        grid-template-columns: 1fr;
    }
    
    .payment-container {
        padding: 2rem 1.5rem;
    }
    
    .crypto-address {
        flex-direction: column;
        align-items: stretch;
    }
    
    .copy-btn {
        width: 100%;
    }
    
    .invoice-actions {
        flex-direction: column;
    }
}


.model-page-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.model-page-gallery {
    position: sticky;
    top: 90px;
}

.model-page-info {
    padding: 2rem 0;
}

.model-page-name {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 2rem;
    text-align: center;
}

.model-page-details {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.detail-row strong {
    color: var(--text-dark);
    font-weight: 600;
}

.detail-row span {
    color: #666;
    text-align: right;
}

.model-bio {
    margin-bottom: 2rem;
}

.model-bio h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.model-bio p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.model-portfolio {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.model-portfolio h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.model-portfolio ul {
    list-style: none;
    padding: 0;
}

.model-portfolio ul li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.model-portfolio ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}


.legal-page {
    background: #ffffff;
}

.legal-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1rem;
}

.legal-updated {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-gold);
}

.legal-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    color: #555;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
}

.legal-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

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

    .model-page-gallery {
        position: static;
    }

    .model-page-name {
        font-size: 2rem;
    }

    .legal-title {
        font-size: 2.5rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }

    .legal-content h3 {
        font-size: 1.2rem;
    }
}

.support-chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #b45309, #92400e);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 24px;
    color: white;
}

.support-chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.support-chat-button.active {
    background: #dc3545;
}

.support-chat-widget {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 350px;
    max-width: calc(100vw - 40px);
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    display: none;
    flex-direction: column;
    max-height: 600px;
    animation: slideUp 0.3s ease;
}

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

.support-chat-widget.active {
    display: flex;
}

.support-chat-header {
    background: linear-gradient(135deg, #b45309, #92400e);
    color: white;
    padding: 15px 20px;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.support-chat-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.support-chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.support-chat-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.support-chat-body {
    padding: 20px;
    flex: 1;
    overflow-y: auto;
}

.support-chat-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.support-chat-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.support-chat-form label {
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
}

.support-chat-form input,
.support-chat-form select,
.support-chat-form textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s;
    background-color: #fff;
}

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

input[type="date"],
input[type="time"] {
    width: 100%;
    box-sizing: border-box;
}

.support-chat-form input[type="date"],
.support-chat-form input[type="time"] {
    cursor: pointer;
    position: relative;
    color: #333;
}

.support-chat-form input[type="date"]::-webkit-calendar-picker-indicator,
.support-chat-form input[type="time"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    background-color: #b45309;
    border-radius: 4px;
    padding: 4px;
    margin-left: 5px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.support-chat-form input[type="date"]::-webkit-calendar-picker-indicator:hover,
.support-chat-form input[type="time"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

.support-chat-form input[type="date"]::-webkit-datetime-edit-text,
.support-chat-form input[type="date"]::-webkit-datetime-edit-month-field,
.support-chat-form input[type="date"]::-webkit-datetime-edit-day-field,
.support-chat-form input[type="date"]::-webkit-datetime-edit-year-field {
    padding: 2px;
    color: #333;
}

.support-chat-form input[type="date"]::-webkit-datetime-edit-text:focus,
.support-chat-form input[type="date"]::-webkit-datetime-edit-month-field:focus,
.support-chat-form input[type="date"]::-webkit-datetime-edit-day-field:focus,
.support-chat-form input[type="date"]::-webkit-datetime-edit-year-field:focus {
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 3px;
    outline: none;
}

.support-chat-form input[type="date"]:invalid {
    border-color: #ff6b6b;
}

.support-chat-form input[type="date"]:valid {
    border-color: #51cf66;
}

.support-chat-form input[type="date"]::-moz-placeholder,
.support-chat-form input[type="time"]::-moz-placeholder {
    color: #999;
    opacity: 1;
}

.support-chat-form input[type="date"]::-webkit-input-placeholder,
.support-chat-form input[type="time"]::-webkit-input-placeholder {
    color: #999;
}

.support-chat-form input[type="date"]:-ms-input-placeholder,
.support-chat-form input[type="time"]:-ms-input-placeholder {
    color: #999;
}

.support-chat-form input[type="date"]::-ms-expand,
.support-chat-form input[type="time"]::-ms-expand {
    display: none;
}

.support-chat-form input[type="date"]:disabled,
.support-chat-form input[type="time"]:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .support-chat-form input[type="date"],
    .support-chat-form input[type="time"] {
        font-size: 16px;
    }
}

.support-chat-form textarea {
    resize: vertical;
    min-height: 80px;
}

.support-chat-form button {
    background: linear-gradient(135deg, #b45309, #92400e);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.support-chat-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.support-chat-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.support-chat-message {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    text-align: center;
}

.support-chat-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.support-chat-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 768px) {
    .support-chat-widget {
        width: calc(100vw - 40px);
        right: 20px;
        left: 20px;
    }
    
    .support-chat-button {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }
}

.manager-notification {
    animation: fadeInUp 0.5s ease;
}

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

.manager-notification h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .manager-notification {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .manager-notification h3 {
        font-size: 1rem;
    }
    
    .manager-notification p {
        font-size: 0.9rem;
    }
}

.custom-calendar-wrapper {
    position: relative;
    width: 100%;
}

.custom-calendar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 20px;
    margin-top: 5px;
    width: 100%;
    box-sizing: border-box;
    animation: fadeInDown 0.3s ease;
}

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

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.calendar-nav-btn {
    background: linear-gradient(135deg, #b45309, #92400e);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-weight: bold;
}

.calendar-nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.calendar-month-year {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    text-transform: capitalize;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 10px;
}

.calendar-weekdays > div {
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: #666;
    padding: 8px 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.2s;
    background: #f8f9fa;
    color: #333;
    font-weight: 500;
}

.calendar-day:hover:not(.disabled):not(.selected) {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

.calendar-day.today {
    background: linear-gradient(135deg, #b45309, #92400e);
    color: white;
    font-weight: 700;
}

.calendar-day.selected {
    background: linear-gradient(135deg, #b45309, #92400e);
    color: white;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.calendar-day.disabled {
    background: #e9ecef;
    color: #adb5bd;
    cursor: not-allowed;
    opacity: 0.5;
}

.calendar-day.empty {
    background: transparent;
    cursor: default;
}

@media (max-width: 768px) {
    .custom-calendar {
        padding: 15px;
    }
    
    .calendar-day {
        font-size: 0.85rem;
    }
    
    .calendar-month-year {
        font-size: 1rem;
    }
}

