* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

:root {
    --primary-color: #997105;
    --accent-color: #997105;
    --text-dark: #2C3333;
    --text-light: #585858;
    --bg-body: #F9F9F9;
    --bg-card: #FFFFFF;
    --bg-light: #F0EFEB;
    --border-color: #E6E6E6;
    --shadow-color: rgba(0, 0, 0, 0.06);
    --filter-bg: #FFFFFF;
    --top-bar-bg: #1A1A1A;
    --top-bar-text: #D4AF37
}

[data-theme="dark"] {
    --primary-color: #D4AF37;
    --accent-color: #D4AF37;
    --text-dark: #E0E0E0;
    --text-light: #B0B0B0;
    --bg-body: #121212;
    --bg-card: #1E1E1E;
    --bg-light: #252525;
    --border-color: #333333;
    --shadow-color: rgba(0, 0, 0, 0.5);
    --filter-bg: #1E1E1E;
    --top-bar-bg: #000000;
    --top-bar-text: #D4AF37
}

body {
    background-color: var(--bg-body);
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s
}

ul {
    list-style: none
}

button {
    cursor: pointer
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px
}

.icon {
    width: 1em;
    height: 1em;
    fill: currentColor;
    vertical-align: -0.125em;
    display: inline-block
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto', sans-serif;
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: 1em;
    font-weight: 700
}

h1 {
    font-size: 2.8em;
    letter-spacing: -0.5px
}

h2 {
    font-size: 2.2em;
    letter-spacing: -0.3px
}

h3 {
    font-size: 1.75em
}

h4 {
    font-size: 1.35em
}

@media (max-width:768px) {
    h1 {
        font-size: 2.2em
    }

    h2 {
        font-size: 1.8em
    }

    h3 {
        font-size: 1.5em
    }

    h4 {
        font-size: 1.25em
    }
}

.section-title {
    font-size: 2em;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700
}

.section-desc {
    text-align: center;
    margin-bottom: 45px;
    color: var(--text-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7
}

.top-bar {
    background-color: var(--top-bar-bg);
    color: var(--top-bar-text);
    padding: 10px 0;
    font-size: 0.85em;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3)
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.top-bar-controls {
    display: flex;
    gap: 15px;
    align-items: center
}

.hero-heading {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 0.5em;
    font-weight: 700;
    font-size: 2.2em;
    letter-spacing: -0.3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9)
}

@media (max-width:768px) {
    .hero-heading {
        font-size: 1.8em
    }
}

.control-btn {
    background: none;
    border: 1px solid #ffffff;
    color: #ffffff;
    border-radius: 4px;
    padding: 3px 10px;
    font-size: 0.8em;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 1
}

.control-btn:hover {
    background: var(--accent-color);
    color: #000;
    opacity: 1
}

.contact-info span {
    margin-left: 20px;
    cursor: pointer;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px
}

header {
    padding: 20px 0;
    background: var(--bg-card);
    box-shadow: 0 4px 20px var(--shadow-color);
    position: relative;
    z-index: 100;
    border-bottom: 1px solid var(--border-color)
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.logo {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
    font-family: 'Roboto', sans-serif;
    color: var(--primary-color);
    line-height: 1
}

.logo span {
    color: var(--accent-color)
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--primary-color);
    padding: 5px
}

.main-nav>ul {
    display: flex;
    align-items: center
}

.main-nav>ul>li {
    position: relative;
    margin-left: 30px
}

.main-nav a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.93em;
    text-transform: uppercase;
    padding: 10px 0;
    display: block;
    letter-spacing: 1px
}

.main-nav a:hover {
    color: var(--primary-color)
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: -15px;
    background-color: var(--bg-card);
    min-width: 240px;
    box-shadow: 0 8px 20px var(--shadow-color);
    border-top: 3px solid var(--primary-color);
    z-index: 999;
    padding: 10px 0;
    border-radius: 0 0 4px 4px;
    max-height: 500px;
    overflow-y: auto
}

.dropdown-menu::-webkit-scrollbar {
    width: 6px
}

.dropdown-menu::-webkit-scrollbar-track {
    background: var(--bg-light)
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background-color: var(--accent-color);
    border-radius: 3px
}

@media (min-width:769px) {
    .main-nav li:hover .dropdown-menu {
        display: block
    }
}

.dropdown-menu li {
    margin: 0
}

.dropdown-menu a {
    padding: 10px 20px;
    text-transform: none;
    font-weight: 400;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.93em;
    letter-spacing: normal
}

.dropdown-menu a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
    padding-left: 25px
}

.hero-banner {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://ik.imagekit.io/jedosetuattelegdoteu/asiapari-escort-services.webp');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-bottom: 20px
}

.hero-content {
    z-index: 2;
    padding: 20px
}

.hero-content h2 {
    font-size: 3.5em;
    margin-bottom: 15px;
    color: #f8f8f8;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    font-family: 'Roboto', sans-serif
}

.hero-content p {
    font-size: 1.3em;
    max-width: 700px;
    margin: 0 auto;
    color: var(--accent-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9);
    font-weight: 400;
    letter-spacing: 0.5px
}

.page-intro {
    padding: 50px 0 40px 0;
    text-align: center;
    background: var(--bg-card);
    margin-bottom: 30px;
    box-shadow: 0 2px 10px var(--shadow-color);
    border-radius: 8px
}

.page-intro h1 {
    font-size: 2.4em;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--primary-color)
}

.page-intro p {
    color: var(--text-light);
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8
}

.main-layout {
    display: flex;
    margin-top: 20px;
    gap: 40px
}

.sidebar {
    width: 240px;
    flex-shrink: 0
}

.filter-group {
    border-top: 1px solid var(--border-color);
    padding: 20px 0
}

.filter-group:first-child {
    border-top: none
}

.filter-group h3 {
    font-size: 1.1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    user-select: none
}

.filter-group h3 .arrow {
    transition: transform 0.3s ease;
    font-size: 0.8em
}

.filter-group.collapsed h3 .arrow {
    transform: rotate(180deg)
}

.filter-group.collapsed .filter-options {
    display: none
}

.filter-group label {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 0.95em;
    color: var(--text-light);
    transition: 0.2s
}

.filter-group label:hover {
    color: var(--primary-color)
}

.filter-group input {
    margin-right: 12px;
    accent-color: var(--primary-color);
    transform: scale(1.1)
}

.more-link {
    display: block;
    margin-top: 10px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9em
}

.content-grid {
    flex-grow: 1
}

.controls {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px
}

.controls button {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    transition: 0.2s
}

.controls button:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: var(--bg-light)
}

.controls select {
    border: 1px solid var(--border-color);
    padding: 8px 10px;
    border-radius: 4px;
    font-weight: 500;
    color: var(--text-light);
    background-color: var(--bg-card);
    outline: none;
    cursor: pointer;
    transition: 0.2s
}

.controls select:hover {
    border-color: var(--primary-color)
}

.grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    row-gap: 40px
}

.card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-card);
    box-shadow: 0 5px 15px var(--shadow-color);
    border: 1px solid var(--border-color);
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease-out, transform 0.6s ease-out
}

.card.visible {
    opacity: 1;
    transform: translateY(0)
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-color);
    border-color: var(--accent-color)
}

.card.hidden {
    display: none
}

.card-image-link {
    display: block;
    width: 100%;
    text-decoration: none;
    color: inherit
}

.image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #e0e0e0
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease
}

.card:hover .image-wrapper img {
    transform: scale(1.05)
}

.badges {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: flex;
    gap: 6px
}

.badge {
    background: rgba(255, 255, 255, 0.95);
    color: #000;
    padding: 5px 10px;
    font-size: 0.75em;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1)
}

.badge.gold {
    background: var(--accent-color);
    color: #fff
}

.details {
    padding: 18px;
    text-align: left
}

.status {
    font-weight: 600;
    font-size: 1.2em;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    color: var(--primary-color)
}

.seo-content {
    padding: 70px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-top: 60px
}

.seo-text {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
    text-align: center
}

.seo-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05em
}

.why-choose-section {
    margin-bottom: 40px
}

.seo-text.wide {
    text-align: left;
    max-width: 1000px
}

.seo-text h2.main-seo-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-size: 2em
}

.seo-text h2 {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--primary-color)
}

.seo-text h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700
}

.faq-section {
    padding: 60px 0;
    max-width: 900px;
    margin: 0 auto
}

.faq-item {
    border-bottom: 1px solid var(--border-color)
}

.faq-question {
    padding: 25px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1em;
    transition: color 0.2s
}

.faq-question:hover {
    color: var(--primary-color)
}

.faq-answer {
    display: none;
    padding-bottom: 25px;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05em
}

.faq-item.active .faq-answer {
    display: block
}

.faq-item.active .arrow {
    transform: rotate(180deg)
}

.testimonials {
    padding: 70px 0;
    background: var(--bg-card);
    text-align: center;
    border-top: 1px solid var(--border-color)
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px
}

.review-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 10px var(--shadow-color);
    transition: transform 0.3s
}

.review-card:hover {
    transform: translateY(-5px)
}

.stars {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.2em
}

.review-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1em;
    line-height: 1.6
}

.review-author {
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Roboto', sans-serif
}

.price-chart-section {
    padding: 70px 0;
    text-align: center;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color)
}

.price-table {
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 30px;
    box-shadow: 0 4px 10px var(--shadow-color);
    text-align: left
}

.price-row {
    display: flex;
    padding: 18px 25px;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-card);
    align-items: center
}

.price-row:last-child {
    border-bottom: none
}

.price-row.header {
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px
}

.price-col-1 {
    flex: 1.2;
    font-weight: 600;
    color: var(--text-dark)
}

.price-col-2 {
    flex: 1;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center
}

.price-col-3 {
    flex: 1.8;
    color: var(--text-light);
    font-size: 0.95em
}

.price-row.header .price-col-1,
.price-row.header .price-col-2,
.price-row.header .price-col-3 {
    color: #fff;
    font-weight: 600
}

.price-notes {
    max-width: 900px;
    margin: 25px auto 0;
    text-align: left;
    color: var(--text-light);
    font-size: 0.95em;
    padding: 0 15px;
    line-height: 1.6
}

.price-notes ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 15px
}

.price-notes li {
    margin-bottom: 5px
}

@media (max-width:768px) {
    .price-table {
        font-size: 12px
    }

    .price-row {
        padding: 12px
    }

    .price-col-1 {
        flex: 1
    }

    .price-col-2 {
        flex: 0.8
    }

    .price-col-3 {
        flex: 1.2
    }
}

footer {
    background-color: #1A1A1A;
    color: #fff !important;
    font-size: 0.95em;
    border-top: 4px solid var(--accent-color)
}

footer a {
    color: #ccc;
    transition: 0.3s
}

footer a:hover {
    color: var(--accent-color)
}

footer hr {
    border-color: #333;
    margin: 30px 0
}

.footer-copyright {
    padding-bottom: 30px;
    font-size: 0.9em;
    color: #888
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    padding: 60px 0 30px 0
}

.footer-col-lg-4,
.footer-col-lg-2 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-bottom: 30px
}

@media (min-width:992px) {
    .footer-col-lg-4 {
        width: 33.333333%
    }

    .footer-col-lg-2 {
        width: 16.666667%
    }
}

@media (max-width:991px) {
    .footer-col-lg-4 {
        width: 100%;
        text-align: center
    }

    .footer-col-lg-2 {
        width: 50%
    }
}

@media (max-width:576px) {
    .footer-col-lg-2 {
        width: 100%;
        text-align: center
    }
}

.footer-logo {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.5px;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    margin-bottom: 15px
}

.footer-logo a {
    text-decoration: none;
    color: #fff
}

.footer-logo a:hover {
    color: #fff
}

footer h3 {
    color: var(--accent-color);
    background: transparent;
    display: block;
    padding: 0;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.1em;
    letter-spacing: 1px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    width: fit-content
}

@media (max-width:991px) {
    footer h3 {
        margin: 0 auto 20px auto
    }
}

footer ul li {
    margin-bottom: 10px
}

.text-center {
    text-align: center
}

.text-white {
    color: #fff !important
}

.list-unstyled {
    padding-left: 0;
    list-style: none
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 6px 12px;
    font-size: 12px;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 5px;
    border-radius: 4px;
    transition: 0.3s
}

.btn-primary:hover {
    background-color: #fff;
    color: var(--primary-color)
}

.call-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1)
}

.footer-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-decoration: none;
    transition: background-color 0.2s
}

.footer-btn:active {
    opacity: 0.9
}

.call-btn {
    background-color: var(--primary-color)
}

.whatsapp-btn {
    background-color: #25d366
}

.footer-btn .icon {
    width: 28px;
    height: 28px;
    fill: #fff
}

#backToTop {
    position: fixed;
    bottom: 60px;
    right: 20px;
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: transform 0.3s, background-color 0.3s
}

#backToTop:hover {
    transform: translateY(-5px);
    background-color: var(--primary-color)
}

@media (max-width:1024px) {
    .grid-wrapper {
        grid-template-columns: repeat(2, 1fr)
    }

    .review-grid {
        grid-template-columns: 1fr
    }
}

@media (max-width:768px) {
    .hero-banner {
        height: 300px;
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://ik.imagekit.io/jedosetuattelegdoteu/asiapari-escort-services-mobile.webp');
        background-size: cover;
        background-position: center
    }

    .hero-content h2 {
        font-size: 2.2em
    }

    .hero-content p {
        font-size: 1.1em
    }

    .main-layout {
        flex-direction: column
    }

    .sidebar {
        width: 100%;
        margin-bottom: 20px
    }

    .grid-wrapper {
        grid-template-columns: repeat(2, 1fr)
    }

    .nav-container {
        flex-direction: row;
        gap: 0
    }

    .logo {
        font-size: 24px
    }

    .top-bar .container {
        flex-direction: column-reverse;
        gap: 10px
    }

    .top-bar-controls {
        width: 100%;
        justify-content: space-between
    }

    .contact-info {
        width: 100%;
        display: flex;
        justify-content: space-between
    }

    .menu-toggle {
        display: block
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-card);
        box-shadow: 0 10px 20px var(--shadow-color);
        border-top: 1px solid var(--border-color)
    }

    .main-nav.active {
        display: block
    }

    .main-nav>ul {
        flex-direction: column;
        width: 100%;
        align-items: flex-start
    }

    .main-nav>ul>li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid var(--border-color)
    }

    .main-nav a {
        padding: 15px 20px;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding-left: 20px;
        background: var(--bg-light);
        min-width: 100%;
        max-height: none;
        overflow: visible
    }

    .main-nav li:hover .dropdown-menu {
        display: block
    }

    .call-footer {
        display: flex
    }

    body {
        padding-bottom: 60px
    }
}

@media (max-width:480px) {
    .grid-wrapper {
        grid-template-columns: 1fr
    }

    .contact-info span {
        font-size: 10px;
        margin-left: 5px
    }
}

.profile-container {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
    padding-left: 15px !important;
    padding-right: 15px !important
}

.seo-text {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 15px;
    font-size: 1.1em;
    line-height: 1.6;
    color: var(--text-dark)
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9em;
    color: var(--text-light)
}

.breadcrumb a {
    color: var(--primary-color);
    font-weight: 500
}

.profile-header {
    display: flex;
    gap: 40px;
    margin-bottom: 40px
}

.profile-image-col {
    flex: 0 0 400px
}

.profile-image-col img:not(.thumb) {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow-color);
    border: 1px solid var(--border-color)
}

.profile-details-col {
    flex: 1
}

.profile-name-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px
}

.profile-name {
    font-size: 2.5em;
    font-family: 'Roboto', sans-serif;
    color: var(--primary-color);
    margin: 0
}

.profile-age {
    font-size: 1.2em;
    color: var(--text-light);
    font-weight: 400;
    margin-left: 10px
}

.status {
    font-weight: 600;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark)
}

.dot {
    height: 10px;
    width: 10px;
    background-color: #4CAF50;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 5px #4CAF50
}

.profile-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px
}

.action-btn {
    flex: 1;
    padding: 12px;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1)
}

.btn-call {
    background-color: var(--primary-color)
}

.btn-whatsapp {
    background-color: #25d366
}

.action-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15)
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
    margin-bottom: 30px;
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border-color)
}

.info-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 8px
}

.info-label {
    font-weight: 600;
    color: var(--text-dark)
}

.info-value {
    color: var(--text-light)
}

.services-section {
    margin-bottom: 30px
}

.section-head {
    font-size: 1.3em;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
    border-left: 4px solid var(--accent-color);
    padding-left: 10px
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.service-tag {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    color: var(--text-light);
    transition: 0.2s;
    font-weight: 500;
    width: fit-content
}

.service-tag:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: var(--bg-light)
}

.about-section {
    margin-bottom: 30px;
    line-height: 1.8;
    color: var(--text-light);
    font-size: 1.05em
}

.about-section p {
    margin-bottom: 15px
}

.rates-section {
    margin-bottom: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden
}

.rates-header {
    background: var(--primary-color);
    color: #fff;
    padding: 15px 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px
}

.rate-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color)
}

.rate-row:last-child {
    border-bottom: none
}

.rate-time {
    font-weight: 600;
    color: var(--text-dark)
}

.rate-cost {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1em
}

@media (max-width:768px) {
    .profile-header {
        flex-direction: column;
        gap: 20px
    }

    .profile-image-col {
        flex: auto;
        width: 100%
    }

    .profile-name {
        font-size: 1.8em;
        font-family: 'Roboto', sans-serif;
        color: var(--primary-color);
        margin: 0
    }

    .profile-age {
        font-size: 1.2em;
        color: var(--text-light);
        font-weight: 400;
        margin-left: 10px
    }

    .status {
        font-weight: 600;
        font-size: 1.1em;
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--text-dark)
    }

    .dot {
        height: 10px;
        width: 10px;
        background-color: #4CAF50;
        border-radius: 50%;
        display: inline-block;
        box-shadow: 0 0 5px #4CAF50
    }

    .profile-actions {
        display: flex;
        gap: 15px;
        margin-bottom: 30px
    }

    .action-btn {
        flex: 1;
        padding: 12px;
        border-radius: 4px;
        text-align: center;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: 0.3s;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1)
    }

    .btn-call {
        background-color: var(--primary-color)
    }

    .btn-whatsapp {
        background-color: #25d366
    }

    .action-btn:hover {
        opacity: 0.9;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15)
    }

    .info-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px 30px;
        margin-bottom: 30px;
        background: var(--bg-light);
        padding: 25px;
        border-radius: 8px;
        border: 1px solid var(--border-color)
    }

    .info-item {
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding-bottom: 8px
    }

    .info-label {
        font-weight: 600;
        color: var(--text-dark)
    }

    .info-value {
        color: var(--text-light)
    }

    .services-section {
        margin-bottom: 30px
    }

    .section-head {
        font-size: 1.3em;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 15px;
        font-family: 'Roboto', sans-serif;
        border-left: 4px solid var(--accent-color);
        padding-left: 10px
    }

    .service-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 10px
    }

    .service-tag {
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 0.9em;
        color: var(--text-light);
        transition: 0.2s;
        font-weight: 500
    }

    .service-tag:hover {
        border-color: var(--primary-color);
        color: var(--primary-color);
        background: var(--bg-light)
    }

    .about-section {
        margin-bottom: 30px;
        line-height: 1.8;
        color: var(--text-light);
        font-size: 1.05em
    }

    .about-section p {
        margin-bottom: 15px
    }

    .rates-section {
        margin-bottom: 30px;
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        overflow: hidden
    }

    .rates-header {
        background: var(--primary-color);
        color: #fff;
        padding: 15px 20px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px
    }

    .rate-row {
        display: flex;
        justify-content: space-between;
        padding: 15px 20px;
        border-bottom: 1px solid var(--border-color)
    }

    .rate-row:last-child {
        border-bottom: none
    }

    .rate-time {
        font-weight: 600;
        color: var(--text-dark)
    }

    .rate-cost {
        font-weight: 700;
        color: var(--primary-color);
        font-size: 1.1em
    }
}

.gallery-container {
    width: 100%
}

.main-image-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow-color);
    border: 1px solid var(--border-color)
}

.main-image-wrapper img {
    width: 100%;
    display: block;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: opacity 0.3s ease
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    font-size: 36px;
    padding: 15px 20px;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 10;
    border-radius: 0
}

.nav-btn:hover {
    background: rgba(0, 0, 0, 0.8)
}

.prev-btn {
    left: 10px
}

.next-btn {
    right: 10px
}

.thumbnails {
    display: flex;
    gap: 4px;
    justify-content: center;
    overflow-x: auto;
    padding-bottom: 5px;
    margin-top: 5px
}

.thumb {
    width: 40px;
    height: 53px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 2px;
    opacity: 0.6;
    transition: opacity 0.3s, border-color 0.3s;
    border: 2px solid transparent
}

.thumb:hover,
.thumb.active {
    opacity: 1;
    border-color: var(--primary-color)
}

.thumbnails::-webkit-scrollbar {
    height: 4px
}

.thumbnails::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 2px
}

.footer-row.centered {
    justify-content: center
}

.footer-address {
    line-height: 1.6
}

.footer-disclaimer {
    max-width: 800px;
    margin: 0 auto;
    color: #aaa;
    font-size: 0.9em;
    line-height: 1.6
}

.footer-logo-link {
    text-decoration: none
}

.footer-contact-info {
    margin-top: 8px
}

.footer-phone-link {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease
}

.footer-phone-link:hover {
    color: var(--accent-color)
}

.footer-phone-icon {
    width: 14px;
    height: 14px;
    fill: var(--accent-color);
    margin-right: 5px
}

.footer-row {
    display: flex;
    flex-wrap: wrap
}

@media (max-width:768px) {
    .footer-row.centered {
        flex-direction: column;
        align-items: center;
        text-align: center
    }

    .footer-col-lg-2 {
        width: 100%;
        margin-bottom: 30px;
        padding: 0 15px
    }

    .footer-col-lg-2:last-child {
        margin-bottom: 10px
    }
}

.dropdown-divider {
    border-top: 1px solid #eee;
    margin-top: 5px;
    padding-top: 5px
}

.view-all-link {
    color: #d4af37;
    font-weight: bold
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards
}

@media (max-width:768px) {

    .contact-info a,
    .contact-info span {
        font-size: 14px !important;
        padding: 6px 0;
        display: inline-flex;
        align-items: center
    }

    .contact-info svg.icon {
        width: 18px;
        height: 18px
    }
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1
}

.hero-banner {
    background: #000;
    width: 100%;
    height: auto !important
}

.hero-banner {
    aspect-ratio: 752 / 416
}

@media (max-width:768px) {
    .hero-banner {
        aspect-ratio: 480 / 640
    }
}

.video-desktop {
    display: block
}

.video-mobile {
    display: none
}

@media (max-width:768px) {
    .video-desktop {
        display: none
    }

    .video-mobile {
        display: block
    }
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin: 5px
}

.call-btn {
    background-color: var(--accent-color);
    color: #ffffff
}

.whatsapp-btn {
    background-color: #25D366;
    color: #000000
}

.footer-btn svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    fill: currentColor
}

.contact-info a,
.contact-info span,
.contact-info svg {
    color: #ffffff !important;
    fill: #ffffff !important
}

a.logo {
    text-decoration: none;
    display: inline-flex;
    align-items: center
}

body {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none
}

input,
textarea {
    -webkit-user-select: text;
    -ms-user-select: text;
    user-select: text
}