
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f5f7fa;
    --bg-gradient-start: #f5f7fa;
    --bg-gradient-end: #c3cfe2;
    --text-primary: #2d3748;
    --text-secondary: #4a5568;
    --text-tertiary: #718096;
    --border-color: rgba(0, 0, 0, 0.08);
    --card-bg: rgba(255, 255, 255, 0.98);
    --card-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --hover-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    --accent-primary: #667eea;
    --accent-secondary: #764ba2;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --error-color: #e74c3c;
    --chevron-color: #667eea;
}

[data-theme="dark"] {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-gradient-start: #0f172a;
    --bg-gradient-end: #1e293b;
    --text-primary: #f1f5f9;
    --text-secondary: #e2e8f0;
    --text-tertiary: #cbd5e1;
    --border-color: rgba(255, 255, 255, 0.1);
    --card-bg: rgba(30, 41, 59, 0.95);
    --card-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    --hover-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
    --chevron-color: #8b9eff;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg-primary);
    background-image: linear-gradient(
            135deg,
            var(--bg-gradient-start) 0%,
            var(--bg-gradient-end) 100%
    );
    color: var(--text-primary);
    line-height: 1.4;
    font-size: 15px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.theme-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 9999;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.theme-switcher:hover {
    transform: scale(1.1);
    box-shadow: var(--hover-shadow);
}

.theme-switcher i {
    transition: transform 0.3s ease;
}

.theme-switcher:hover i {
    transform: rotate(20deg);
}

.profile-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.breadcrumbs {
    background: var(--card-bg);
    backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 20px;
    margin-bottom: 15px;
    font-size: 13px;
}

.breadcrumbs a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumbs a:hover {
    color: #764ba2;
}

.breadcrumbs span {
    color: var(--text-tertiary);
    margin: 0 8px;
}

.profile-hero {
    text-align: center;
    margin-bottom: 15px;
    background: var(--card-bg);
    backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px 20px;
}

.profile-name {
    font-size: 72px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 -10px 0;
    letter-spacing: -0.003em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.hero-script {
    font-family: "Allison", cursive;
    font-size: 72px;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 0 5px #8a2be2, 0 0 10px #9932cc, 0 0 15px #9932cc,
    0 0 20px #7b68ee;
    transition: text-shadow 0.3s ease;
}

.hero-script:hover {
    text-shadow: 0 0 15px #8a2be2, 0 0 30px #9932cc, 0 0 45px #9932cc,
    0 0 60px #7b68ee;
}

.hero-subtitle {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-tertiary);
    margin: 0 0 -10px 0;
}

.basic-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 15px 0 10px 0;
    font-size: 16px;
    font-weight: 500;
    flex-wrap: wrap;
    color: var(--text-secondary);
}

.country-flag {
    width: 25px;
    height: auto;
    margin: 0 0 -15px 0;
    border-radius: 2px;
}

.last-update {
    font-size: 11px;
    color: var(--text-tertiary);
    opacity: 0.8;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.status-badge.consult {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
}

.status-badge.unavailable {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.status-badge.error {
    background: linear-gradient(135deg, #9e9e9e 0%, #757575 100%);
}

.status-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(0.95);
    }
}

.availability-legend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 12px 0 8px 0;
    font-size: 11px;
    color: var(--text-tertiary);
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.legend-dot.available {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
}

.legend-dot.consult {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
}

.legend-dot.unavailable {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0 0 0;
}

.main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.left-column,
.right-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
}

.profile-section {
    background: var(--card-bg);
    backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
}

.section-heading {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 15px 0;
    text-align: center;
    border-bottom: 0.5px solid #764ba2;
    padding-bottom: 12px;
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    gap: 10px;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
}

.gallery-nav-buttons {
    display: flex;
    gap: 8px;
}

.gallery-nav-btn {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.gallery-nav-btn:hover {
    background: linear-gradient(
            135deg,
            var(--accent-primary) 0%,
            var(--accent-secondary) 100%
    );
    color: white;
    transform: translateY(-1px);
}

.filter-btn {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: linear-gradient(
            135deg,
            var(--accent-primary) 0%,
            var(--accent-secondary) 100%
    );
    color: white;
    transform: translateY(-1px);
}

.filter-btn.active {
    background: linear-gradient(
            135deg,
            var(--accent-primary) 0%,
            var(--accent-secondary) 100%
    );
    color: white;
}

.gallery-container {
    position: relative;
}

.gallery-book {
    display: none;
}

.gallery-book.active {
    display: block;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.gallery-item {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-secondary);
    border-radius: 4px;
}

.gallery-item img,
.gallery-item video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.05);
}

.video-indicator {
    position: absolute;
    top: 8px;
    right: 8px;
    color: white;
    font-size: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.gallery-description {
    font-size: 11px;
    color: var(--text-tertiary);
    text-align: center;
    margin-top: 10px;
}

.media-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.media-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-media {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 36px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: background 0.3s ease;
    z-index: 10001;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

.modal-prev,
.modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 36px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: background 0.3s ease;
    z-index: 10001;
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

.modal-prev:hover,
.modal-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.modal-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.phone-display {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 20px 0;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-btn {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 18px 10px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-shadow: var(--card-shadow);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--hover-shadow);
}

.contact-icon {
    font-size: 24px;
}

.contact-label {
    font-size: 14px;
    font-weight: 500;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.social-btn {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px 8px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.social-icon {
    font-size: 20px;
}

.social-label {
    font-size: 11px;
    font-weight: 500;
}

.fa-instagram {
    background: linear-gradient(
            45deg,
            #f09433 0%,
            #e6683c 25%,
            #dc2743 50%,
            #cc2366 75%,
            #bc1888 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fa-twitter {
    color: #1da1f2;
}
.fa-telegram {
    color: #0088cc;
}
.fa-whatsapp {
    color: #25d366;
}
.fa-phone {
    color: #4285f4;
}
.fa-tiktok {
    color: #000000;
}
.fa-star {
    color: #ffd43b;
}
.fa-fire {
    color: #ff9800;
}

[data-theme="dark"] .fa-tiktok {
    color: #ffffff;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.schedule-item {
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    color: white;
    position: relative;
}

.schedule-title {
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-primary);
}

.location-item {
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    color: white;
    position: relative;
}

.location-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.location-address {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 10px;
    font-style: normal;
    line-height: 1.4;
    display: block;
}

.address-primary {
    font-weight: 600;
    font-size: 13px;
    display: inline;
}

.address-secondary {
    font-weight: 400;
    font-size: 13px;
    opacity: 0.85;
    display: inline;
}

.schedule-info {
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 10px;
    font-style: normal;
    line-height: 1.6;
}

.schedule-day {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 10px;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.schedule-day:last-child {
    border-bottom: none;
}

.day-name {
    font-weight: 600;
    text-align: left;
}

.day-hours {
    font-weight: 400;
    text-align: right;
}

.day-hours.closed {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.maps-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    color: white;
    padding: 8px 14px;
    font-size: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.maps-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.location-legend {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.2);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    margin-top: 5px;
}

[data-theme="dark"] .location-legend {
    background: rgba(231, 76, 60, 0.25);
    border: 1px solid rgba(231, 76, 60, 0.5);
}

.schedule-legend {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.2);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    margin-top: 5px;
}

[data-theme="dark"] .schedule-legend {
    background: rgba(231, 76, 60, 0.25);
    border: 1px solid rgba(231, 76, 60, 0.5);
}

.parking-title {
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-primary);
}

.pricing-amount {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 15px 0;
    text-align: center;
}

.pricing-options {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 15px;
    flex-wrap: nowrap;
}

.pricing-option {
    text-align: center;
    padding: 12px 15px;
    border-radius: 8px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 90px;
    max-width: 150px;
}

.pricing-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pricing-option.half {
    border-left: 3px solid #4caf50;
}

.pricing-option.half .pricing-option-amount {
    color: #4caf50;
}

.pricing-option.moment {
    border-left: 3px solid #2196f3;
}

.pricing-option.moment .pricing-option-amount {
    color: #2196f3;
}

.pricing-option.promo {
    border-left: 3px solid #ff9800;
    background: linear-gradient(
            135deg,
            rgba(255, 152, 0, 0.1),
            rgba(255, 152, 0, 0.05)
    );
}

.pricing-option.promo .pricing-option-amount {
    color: #ff9800;
    font-weight: 700;
}

.pricing-option.promo .pricing-option-label {
    color: #ff9800;
    font-weight: 600;
}

.pricing-option-amount {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 5px;
}

.pricing-option-label {
    font-size: 13px;
    color: var(--text-tertiary);
    font-weight: 500;
}

.toggle-header {
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
}

[data-theme="dark"] .toggle-header {
    background: rgba(102, 126, 234, 0.2);
    border: 1px solid rgba(102, 126, 234, 0.4);
}

.toggle-header:hover {
    background: rgba(102, 126, 234, 0.15);
}

[data-theme="dark"] .toggle-header:hover {
    background: rgba(102, 126, 234, 0.3);
}

.toggle-title {
    font-size: 14px;
    font-weight: 600;
    color: #667eea;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.toggle-title i.fa-chevron-down {
    color: var(--text-primary);
    transition: transform 0.3s ease;
}

.toggle-content {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 0;
    margin-top: 5px;
    display: none;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.toggle-content.show {
    display: block;
    max-height: 500px;
    opacity: 1;
    padding: 2px;
}

.payment-grid,
.amigas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 10px;
}

.payment-item,
.amiga-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 8px;
    text-align: center;
    font-size: 12px;
    color: var(--accent-primary);
    font-weight: 500;
}

.service-info {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
}

.service-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    font-size: 13px;
}

.service-option {
    text-align: center;
    padding: 8px 4px;
}

.service-option-label {
    color: var(--text-tertiary);
    font-weight: 500;
    margin-bottom: 3px;
}

.service-option-value {
    font-weight: 600;
    color: var(--accent-primary);
}

.description-content {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-primary);
}

.description-content p {
    margin: 0 0 12px 0;
}

.experience-info {
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    text-align: center;
}

[data-theme="dark"] .experience-info {
    background: rgba(102, 126, 234, 0.25);
    border: 1px solid rgba(102, 126, 234, 0.5);
}

.service-info {
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    text-align: center;
}

[data-theme="dark"] .service-info {
    background: rgba(102, 126, 234, 0.25);
    border: 1px solid rgba(102, 126, 234, 0.5);
}

.extrapay-info {
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    text-align: center;
}

[data-theme="dark"] .extrapay-info {
    background: rgba(102, 126, 234, 0.25);
    border: 1px solid rgba(102, 126, 234, 0.5);
}

.experience-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.service-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.service-toggle i.fa-chevron-down,
.extrapay-toggle i.fa-chevron-down {
    color: var(--text-primary);
    transition: transform 0.3s ease;
}

.extrapay-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.experience-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-primary);
}

.service-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-primary);
}

.extrapay-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-primary);
}

.escort-specialty {
    color: #667eea;
    font-weight: 700;
    text-transform: lowercase;
}

.services-highlight {
    background: linear-gradient(
            135deg,
            rgba(102, 126, 234, 0.08),
            rgba(118, 75, 162, 0.08)
    );
    border: 1px solid rgba(102, 126, 234, 0.1);
    border-radius: 8px;
    padding: 0;
    margin: 15px 0;
    display: none;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

[data-theme="dark"] .services-highlight {
    background: linear-gradient(
            135deg,
            rgba(102, 126, 234, 0.15),
            rgba(118, 75, 162, 0.15)
    );
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.services-highlight.show {
    display: block;
    max-height: 500px;
    opacity: 1;
    padding: 15px;
}

.additional-services {
    background: linear-gradient(
            135deg,
            rgba(255, 152, 0, 0.08),
            rgba(255, 87, 34, 0.08)
    );
    border: 1px solid rgba(255, 152, 0, 0.1);
    border-radius: 8px;
    padding: 0;
    margin: 15px 0;
    display: none;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

[data-theme="dark"] .additional-services {
    background: linear-gradient(
            135deg,
            rgba(255, 152, 0, 0.15),
            rgba(255, 87, 34, 0.15)
    );
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.additional-services.show {
    display: block;
    max-height: 800px;
    opacity: 1;
    padding: 15px;
}

.services-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: var(--text-primary);
}

.premium-info {
    background: linear-gradient(
            135deg,
            rgba(102, 126, 234, 0.15),
            rgba(118, 75, 162, 0.15)
    );
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    margin: 20px 0;
}

[data-theme="dark"] .premium-info {
    background: linear-gradient(
            135deg,
            rgba(102, 126, 234, 0.25),
            rgba(118, 75, 162, 0.25)
    );
    border: 2px solid rgba(102, 126, 234, 0.5);
}

.premium-title {
    font-size: 14px;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 8px;
}

.premium-subtitle {
    font-size: 12px;
    color: var(--accent-primary);
}

.notice {
    margin-bottom: 15px;
    padding: 12px;
    background: var(--card-bg);
    border-left: 4px solid #667eea;
    border-radius: 8px;
}

.notice:last-child {
    margin-bottom: 0;
}

.notice-header {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
}

.notice.required {
    border-left: 4px solid var(--error-color);
    background: linear-gradient(
            135deg,
            rgba(231, 76, 60, 0.05),
            rgba(192, 57, 43, 0.05)
    );
}

[data-theme="dark"] .notice.required {
    background: linear-gradient(
            135deg,
            rgba(231, 76, 60, 0.15),
            rgba(192, 57, 43, 0.15)
    );
}

.notice-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    color: var(--text-secondary);
}

.notice-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 6px;
}

.notice-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-primary);
}

.notice.required .notice-list li::before {
    color: var(--error-color);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 15px 0;
}

.content-item {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 15px 10px;
}

.content-placeholder {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin: 0 auto 10px;
}

.content-type {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.content-description {
    font-size: 12px;
    color: var(--text-tertiary);
}

.action-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin: 10px 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.action-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.action-btn.danger {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.footer-disclaimer {
    font-size: 11px;
    color: var(--text-tertiary);
    text-align: center;
    margin-top: 20px;
    font-style: italic;
}

.faq-section {
    margin-top: 15px;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    user-select: none;
    color: var(--text-primary);
}

.faq-question i {
    color: var(--chevron-color);
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    display: none;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.show {
    display: block;
    max-height: 500px;
    opacity: 1;
    margin-top: 10px;
}

.location-tags {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin: 15px 0;
}

.location-tag {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    font-weight: 500;
    text-align: center;
}

.location-tag-label {
    color: white;
    margin-bottom: 4px;
}

.location-tag-value {
    color: white;
    font-weight: 700;
    font-size: 12px;
}

.location-tag-value.yes {
    color: #4caf50;
}

.location-tag-value.no {
    color: #e74c3c;
}

.service-tags {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin: 15px 0;
}

.service-tag {
    background: linear-gradient(
            135deg,
            rgba(102, 126, 234, 0.1),
            rgba(118, 75, 162, 0.1)
    );
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 8px;
    padding: 10px 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    font-weight: 500;
    text-align: center;
}

[data-theme="dark"] .service-tag {
    background: linear-gradient(
            135deg,
            rgba(102, 126, 234, 0.2),
            rgba(118, 75, 162, 0.2)
    );
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.service-tag-label {
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.service-tag-value {
    font-weight: 700;
    font-size: 13px;
}

.service-tag-value.yes {
    color: #4caf50;
}

.service-tag-value.no {
    color: #e74c3c;
}

@media (max-width: 768px) {
    .profile-container {
        padding: 15px;
    }

    .profile-name {
        font-size: 28px;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .hero-script {
        font-size: 56px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .basic-info {
        font-size: 14px;
    }

    .status-badge {
        font-size: 13px;
        padding: 8px 16px;
    }

    .availability-legend {
        gap: 15px;
        font-size: 10px;
        margin: 10px 0 6px 0;
    }

    .legend-dot {
        width: 7px;
        height: 7px;
    }

    .main-grid,
    .bottom-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .location-item {
        padding: 10px 5px;
    }

    .social-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .pricing-options {
        flex-wrap: nowrap;
        gap: 3px;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 5px;
    }

    .pricing-option {
        max-width: 100%;
        min-width: 90px;
        flex: 1 1 auto;
    }

    .service-options {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .payment-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .contact-btn,
    .social-btn {
        padding: 12px 8px;
    }

    .modal-prev {
        left: 10px;
    }

    .modal-next {
        right: 10px;
    }

    .modal-close {
        top: 10px;
        right: 10px;
    }

    .service-tags,
    .location-tags {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-header {
        flex-direction: column;
    }

    .gallery-filters {
        justify-content: center;
    }

    .gallery-nav-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .status-badge {
        font-size: 12px;
        padding: 7px 14px;
    }

    .availability-legend {
        gap: 12px;
        font-size: 10px;
    }

    .legend-dot {
        width: 6px;
        height: 6px;
    }

    .pricing-amount {
        font-size: 28px;
    }

    .pricing-options {
        gap: 3px;
    }

    .pricing-option {
        padding: 10px 8px;
        min-width: 85px;
    }

    .pricing-option-amount {
        font-size: 16px;
    }

    .pricing-option-label {
        font-size: 11px;
    }
}
