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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #F5F5F7;
    color: #1D1D1F;
    line-height: 1.6;
}

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

/* Header */
.header {
    background: white;
    border-bottom: 1px solid #E5E5E7;
    position: relative;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 600;
    color: #1D1D1F;
    cursor: pointer;
}

.logo svg {
    color: #FF6B7A;
}

.search-bar {
    display: flex;
    align-items: center;
    background: #F5F5F7;
    border-radius: 12px;
    padding: 10px 16px;
    flex: 1;
    max-width: 600px;
    gap: 10px;
}

.search-input {
    border: none;
    background: transparent;
    outline: none;
    flex: 1;
    font-size: 15px;
    color: #1D1D1F;
}

.search-input::placeholder {
    color: #86868B;
}

.search-button {
    background: #1D1D1F;
    border: none;
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.search-button:hover {
    background: #2D2D2F;
}

.menu-button {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-button span {
    width: 24px;
    height: 2px;
    background: #1D1D1F;
    border-radius: 2px;
    transition: all 0.3s;
}

.nav {
    display: flex;
    gap: 24px;
    padding: 12px 0;
    border-bottom: 1px solid #E5E5E7;
}

.nav-link {
    text-decoration: none;
    color: #1D1D1F;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-link:hover {
    color: #FF6B7A;
}

.location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #1D1D1F;
    font-size: 14px;
    padding: 16px 0;
}

/* Hero Slider */
.hero-slider {
    background: white;
    padding: 40px 0;
    margin-bottom: 40px;
}

.slider {
    position: relative;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.slider::-webkit-scrollbar {
    display: none;
}

.slide {
    flex: 0 0 auto;
    width: calc(33.333% - 14px);
    scroll-snap-align: start;
}

.slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D1D1D6;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #86868B;
}

.dot.active-main {
    background: #FF6B7A;
    width: 24px;
    border-radius: 4px;
}

/* Profiles Section */
.profiles {
    padding: 40px 0;
}

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

.profiles-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1D1D1F;
}

.online-count {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #86868B;
    font-size: 14px;
}

.online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #30D158;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
    align-items: start;
}

.profile-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.profile-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.profile-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    flex-shrink: 0;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.profile-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.profile-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1D1D1F;
}

.profile-location {
    font-size: 14px;
    color: #86868B;
}

.profile-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.profile-details span {
    font-size: 13px;
    padding: 4px 12px;
    border-radius: 6px;
}

.age, .bust, .weight, .height {
    background: #F5F5F7;
    color: #FF6B7A;
    font-weight: 500;
}

.tag {
    font-weight: 500;
}

.service-tag {
    background: #FFF0F1;
    color: #FF6B7A;
}

.individual-tag {
    background: #E8F5FF;
    color: #007AFF;
}

.escort-tag {
    background: #F0F0F5;
    color: #5856D6;
}

.profile-pricing {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
    margin-top: auto;
}

.price-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    padding: 12px 16px;
    background: #F5F5F7;
    border-radius: 12px;
    flex: 1;
    min-width: 100px;
}

.price-item svg {
    margin-bottom: 4px;
}

.price-item span {
    font-size: 12px;
    color: #86868B;
}

.price-item strong {
    font-size: 15px;
    color: #1D1D1F;
    font-weight: 600;
}

.book-button {
    width: 100%;
    padding: 14px;
    background: #2C2C3E;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.book-button:hover {
    background: #1D1D2E;
}

.view-all-button {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 16px;
    background: #FF6B7A;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.view-all-button:hover {
    background: #FF5566;
}

/* About Section */
.about {
    background: white;
    padding: 60px 0;
    margin: 40px 0;
}

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

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1D1D1F;
    margin-bottom: 24px;
}

.about-text p {
    font-size: 16px;
    color: #515154;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
}

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

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

.feature {
    text-align: center;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #FFF0F1;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.feature h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1D1D1F;
    margin-bottom: 12px;
}

.feature p {
    font-size: 14px;
    color: #86868B;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #2C2C3E;
    color: white;
    padding: 60px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 14px;
    color: #A8A8B0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.telegram-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #FF6B7A;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 20px;
}

.telegram-button:hover {
    background: #FF5566;
}

.copyright {
    font-size: 12px;
    color: #6E6E73;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

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

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

.footer-column ul li a {
    text-decoration: none;
    color: #A8A8B0;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: #FF6B7A;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .profiles-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }

    .slide {
        width: calc(50% - 10px);
    }

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

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

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

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

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }

    .menu-button {
        display: flex;
    }

    .search-bar {
        order: 3;
        width: 100%;
        max-width: 100%;
    }

    .nav {
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .nav::-webkit-scrollbar {
        display: none;
    }

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

    .slide {
        width: 100%;
    }

    .profile-pricing {
        flex-direction: column;
    }

    .price-item {
        flex-direction: row;
        justify-content: space-between;
    }

    .profiles-header h2 {
        font-size: 24px;
    }

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

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

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

    .logo {
        font-size: 18px;
    }

    .profiles-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .slide img {
        height: 300px;
    }
}
