/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Disable animations on mobile for performance */
@media (max-width: 768px) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    will-change: auto !important;
    }
}

/* Lucida Calligraphy: self-hosted webfont - optimized loading */
@font-face {
    font-family: 'lucida-calligraphy-regular';
    src:
        url('/static/fonts/lucida-calligraphy-regular.woff2') format('woff2'),
        url('/static/fonts/lucida-calligraphy-regular.ttf') format('truetype');
    font-display: swap;
    font-weight: normal;
    font-style: normal;
}

/* Ensure all Lucinda Calligraphy elements use the self-hosted font */
h1, h2, h3, .hero-text h1, .services-overview h2, .why-choose-us h2, 
.footer-section h3, .page-hero h1, .artist-main-info h1, 
.booking-content h2, .quick-contact-content h2, .intro-content h2,
.services-column h2, .why-choose-column h2, .cta-content h2 {
    font-family: 'lucida-calligraphy-regular', 'Great Vibes', 'Allura', 'Lucida Handwriting', 'Apple Chancery', 'Brush Script MT', cursive !important;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: #05070D;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(58, 107, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(150, 0, 200, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 50, 120, 0.2) 0%, transparent 50%);
    background-attachment: fixed;
    background-size: 100% 100%;
    min-height: 100vh;
    color: #333;
    overflow-x: hidden;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Language Toggle */
.language-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    gap: 10px;
}

/* Navigation Language Selector */
.nav-language {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 0;
    height: 100%;
}

.nav-lang-btn {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 25px;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    position: relative;
}

.nav-lang-btn:hover {
    background: #3A6BFF;
}

.nav-lang-btn.active {
    border-color: #3A6BFF;
    background: rgba(58, 107, 255, 0.2);
}

.nav-lang-btn img {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    display: block; /* removes baseline whitespace and aligns perfectly in flex */
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    text-decoration: none;
    border-radius: 50%;
    overflow: hidden;
}

.lang-btn img {
    width: 30px;
    height: 20px;
    object-fit: cover;
    border-radius: 3px;
}

.lang-btn:hover,
.lang-btn.active {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px) scale(1.05);
}

/* Login Button */
.login-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    font-size: 20px;
}

.login-btn:hover {
    background: #3A6BFF;
    transform: translateY(-2px) scale(1.05);
}

/* Global container styles */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 0;
    max-width: 100%;
    margin: 0;
    width: 100%;
}

/* Logo */
.logo-container {
    margin-bottom: 25px;
}

.logo {
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

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

/* Content */
.content {
    max-width: 100%;
    color: white;
}

h1 {
    font-family: 'Lucida Calligraphy', cursive;
    font-size: 3rem;
    font-weight: normal;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #3A6BFF, #9600C8, #96DCFF, #FF3278);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

/* Gradient animation for h1 elements */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Performance optimizations - remove expensive containment */
.hero-section, .services-overview, .why-choose-us {
    contain: layout;
}

.logo {
    will-change: auto;
}

h1 {
    will-change: auto;
}

.lang-btn, .login-btn, .feature, .whatsapp-btn, .social-media a {
    will-change: transform;
}

.subtitle {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 300;
    opacity: 0.9;
}

.description {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 25px;
    opacity: 0.8;
}

/* Features */
.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    min-width: 130px;
}

.feature:hover {
    background: rgba(255, 255, 255, 0.08);
}

.feature i {
    font-size: 2rem;
    color: #FF3278;
    transition: all 0.3s ease;
}

.feature i:hover {
    color: #ff5c96;
    transform: translateY(-3px);
}

.feature span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Contact Info */
.contact-info {
    margin-bottom: 20px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
}

.whatsapp-btn:hover {
    background: #128C7E;
}

/* Artists Page Styles */
.artists-showcase-clean {
    padding: 40px 0 20px 0;
}

.artists-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.artist-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: center;
}

.artist-card:hover {
    background: rgba(255, 255, 255, 0.08);
}

.artist-image {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, #3A6BFF, #9600C8);
}

.artist-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.artist-content {
    padding: 20px 0;
}

.artist-name {
    font-family: 'Lucinda Calligraphy', cursive;
    font-size: 2.5rem;
    color: #FF3278;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.artist-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.service-tagline {
    font-style: italic;
    color: #9600C8;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 15px;
}

/* Alternating Layout for Artists */
.artist-card.right-aligned {
    grid-template-columns: 1fr 300px;
}

.artist-card.right-aligned .artist-image {
    order: 2;
}

.artist-card.right-aligned .artist-content {
    order: 1;
    text-align: right;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
}

.modal-content {
    background: #05070D;
    margin: 0 auto;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    position: relative;
    overflow: hidden;
    max-height: calc(100vh - 40px);
    min-height: 400px;
    top: 50%;
    transform: translateY(-50%);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 1001;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close:hover,
.close:focus {
    color: #3A6BFF;
    background: rgba(58, 107, 255, 0.2);
}

.modal-body {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    padding: 50px;
    align-items: start;
    max-height: calc(90vh - 100px);
    overflow-y: auto;
}

.modal-image {
    position: relative;
}

.modal-artist-photo {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-info {
    color: #e0e0e0;
}

.modal-artist-name {
    font-family: 'Lucinda Calligraphy', cursive;
    font-size: 2.5rem;
    color: #FF3278;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.modal-artist-details .artist-genre {
    font-size: 1.2rem;
    color: #9600C8;
    font-weight: 600;
    margin-bottom: 15px;
}

.modal-artist-details .artist-bio {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.artist-highlights {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #3A6BFF;
}

.artist-highlights h4 {
    color: #3A6BFF;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.artist-highlights ul {
    list-style: none;
    padding: 0;
}

.artist-highlights li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.artist-highlights li:before {
    content: "♪";
    color: #9600C8;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.modal-contact {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.modal-contact .btn {
    flex: 1;
    text-align: center;
}

/* Responsive Design for Artists */
@media (max-width: 768px) {
    .artist-card,
    .artist-card.right-aligned {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
        text-align: center;
    }
    
    .artist-card.right-aligned .artist-image {
        order: 0;
    }
    
    .artist-card.right-aligned .artist-content {
        order: 0;
        text-align: center;
    }
    
    .artist-image {
        height: 250px;
        margin: 0 auto;
        max-width: 250px;
    }
    
    .artist-name {
        font-size: 2rem;
    }
    
    .artist-description {
        font-size: 1rem;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 20px;
    }
    
    .modal-artist-photo {
        height: 250px;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .modal-artist-name {
        font-size: 2rem;
        text-align: center;
    }
    
    .modal-contact {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .artists-showcase {
        padding: 60px 0;
    }
    
    .artist-card {
        margin: 0 10px;
        padding: 25px 15px;
    }
    
    .artist-image {
        height: 200px;
        max-width: 200px;
    }
    
    .artist-name {
        font-size: 1.8rem;
    }
    
    .modal-content {
        width: 95%;
        max-height: calc(100vh - 40px);
        top: 50%;
        transform: translateY(-50%);
    }
    
    .modal-body {
        padding: 20px 15px;
    }
    
    .modal-artist-name {
        font-size: 1.8rem;
    }
}

/* Social Media */
.social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    font-size: 20px;
}

.social-media a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px) scale(1.1);
}

/* Footer */
.footer {
    text-align: center;
    padding: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin-top: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        overflow-y: auto;
        overflow-x: hidden;
        background-attachment: scroll;
    }
    
    .container {
        min-height: 100vh;
        height: auto;
    }
    
    .main-content {
        padding: 110px 15px 30px;
        min-height: calc(100vh - 100px);
    }
    
    .language-toggle {
        position: fixed;
        top: 15px;
        left: 15px;
        z-index: 1000;
    }
    
    .login-container {
        position: fixed;
        top: 15px;
        right: 15px;
        z-index: 1000;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .features {
        gap: 20px;
    }
    
    .feature {
        min-width: 120px;
        padding: 15px;
    }
    
    .logo {
        max-width: 180px;
    }
    
    .language-toggle,
    .login-container {
        top: 15px;
    }
    
    .lang-btn {
        width: 45px;
        height: 45px;
    }
    
    .lang-btn img {
        width: 28px;
        height: 18px;
    }
    
    .login-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    body {
        overflow-y: auto;
        overflow-x: hidden;
        min-height: 100vh;
        background-attachment: scroll;
    }
    
    .container {
        min-height: 100vh;
        height: auto;
    }
    
    .main-content {
        padding: 110px 15px 30px;
        min-height: calc(100vh - 100px);
    }
    
    .language-toggle {
        top: 10px;
        left: 10px;
    }
    
    .login-container {
        top: 10px;
        right: 10px;
    }
    
    h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .subtitle {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .feature {
        width: 100%;
        max-width: 200px;
        padding: 12px;
    }
    
    .contact-info {
        margin-bottom: 15px;
    }
    
    .whatsapp-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .social-media {
        margin-bottom: 20px;
    }
    
    .footer {
        padding: 15px;
        margin-top: 20px;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    body {
        overflow-y: auto;
        background-attachment: scroll;
    }
    
    .main-content {
        padding: 60px 15px 20px;
        justify-content: flex-start;
        min-height: auto;
    }
    
    .logo {
        max-width: 120px;
    }
    
    .logo-container {
        margin-bottom: 15px;
    }
    
    h1 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .subtitle {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .description {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .features {
        gap: 15px;
        margin-bottom: 12px;
    }
    
    .feature {
        padding: 8px;
        min-width: 90px;
    }
    
    .feature i {
        font-size: 1.5rem;
    }
    
    .contact-info {
        margin-bottom: 10px;
    }
    
    .whatsapp-btn {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
    
    .social-media {
        margin-bottom: 10px;
    }
    
    .footer {
        padding: 8px;
        font-size: 0.7rem;
    }
}

/* Navigation Styles */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(5, 7, 13, 0.95);
    z-index: 999;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.main-nav.scrolled {
    background: rgba(5, 7, 13, 0.98);
}

.main-nav.scrolled .nav-logo-img {
    height: 90px;
    max-width: 320px;
}

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

.nav-logo {
    flex-shrink: 0;
}

.nav-logo-img {
    height: 80px;
    width: auto;
    max-width: 280px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    align-items: center;
}

.nav-item {
    margin: 0;
    display: flex;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 25px;
    position: relative;
}

.nav-link.active {
    background: #3A6BFF;
    color: white;
}

.nav-link:hover {
    background: #3A6BFF;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Main Content with Navigation */
.main-content.with-nav {
    padding-top: 0px;
}

/* Open Sans: Preload for performance */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap&text=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789');

/* Hero Section */
.hero-section {
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 20px 20px 20px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    color: white;
}

.hero-text {
    margin-top: 0px;
}

.hero-text h1 {
    font-family: 'Lucida Calligraphy', cursive;
    font-size: 3.5rem;
    font-weight: normal;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #3A6BFF, #9600C8, #96DCFF, #FF3278);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.tagline {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #9600C8;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
}

.intro {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 100%;
    margin: 0;
    text-align: left;
}

/* Personal Introduction Section */
.personal-intro {
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(58, 107, 255, 0.05) 0%, rgba(150, 0, 200, 0.05) 100%);
}

.intro-content {
    max-width: 100%;
    margin: 0;
    text-align: center;
    color: white;
}

.intro-content h2 {
    font-family: 'Lucida Calligraphy', cursive;
    font-size: 2.2rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #3A6BFF, #9600C8);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-tagline {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #9600C8;
    font-style: italic;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    text-align: left;
    max-width: 100%;
    margin: 0;
}

/* Services and Why Choose Us Combined Section */
.services-why-combined {
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.02);
}

.combined-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 100%;
    margin: 0;
    padding: 0 40px;
    align-items: start;
}

.services-column h2,
.why-choose-column h2 {
    font-family: 'Lucida Calligraphy', cursive;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 15px;
    color: white;
}

.services-column h2 {
    background: linear-gradient(45deg, #3A6BFF, #9600C8);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-choose-column h2 {
    background: linear-gradient(45deg, #FF3278, #96DCFF);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-column .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.services-column .service-blocks {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.services-column .service-block {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    color: white;
}

.services-column .service-block:hover {
    background: rgba(255, 255, 255, 0.12);
}

.services-column .service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    text-align: center;
    color: white;
}

.services-column .service-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
    opacity: 0.9;
}

.services-column .service-content ul {
    list-style: none;
    padding: 0;
}

.services-column .service-content li {
    padding: 3px 0;
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
}

.services-column .service-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3A6BFF;
    font-weight: bold;
}

.why-choose-column .features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.why-choose-column .feature-item {
    text-align: center;
    padding: 20px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: white;
}

.why-choose-column .feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.why-choose-column .feature-icon {
    margin-bottom: 15px;
}

.why-choose-column .feature-icon i {
    font-size: 2rem;
    color: #FF3278;
    transition: all 0.3s ease;
}

.why-choose-column .feature-icon i:hover {
    color: #ff5c96;
    transform: translateY(-3px);
}

.why-choose-column .feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.why-choose-column .feature-item p {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.8;
}

/* Services Overview */
.services-overview {
    padding: 40px 0 20px 0;
    background: transparent;
}

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

.services-overview h2 {
    font-family: 'Lucida Calligraphy', cursive;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: white;
    background: linear-gradient(45deg, #3A6BFF, #9600C8);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
}

.service-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Travel page specific - 2 columns centered */
.travel-service-blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
}

@media (max-width: 1024px) {
    .service-blocks {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .travel-service-blocks {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .service-blocks {
        grid-template-columns: 1fr;
    }
    
    .travel-service-blocks {
        grid-template-columns: 1fr;
    }
}

.service-block {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    color: white;
}

.service-block:hover {
    background: rgba(255, 255, 255, 0.15);
}

.service-icon {
    text-align: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 3rem;
    color: #FF3278;
    transition: all 0.3s ease;
}

.service-icon i:hover {
    color: #ff5c96;
    transform: translateY(-3px);
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
    color: white;
}

.service-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.service-content ul {
    list-style: none;
    padding: 0;
}

.service-content li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.service-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3A6BFF;
    font-weight: bold;
}

.cta-section {
    padding: 40px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(58, 107, 255, 0.1) 0%, rgba(150, 0, 200, 0.1) 100%);
}

.cta-content h2 {
    font-family: 'Lucida Calligraphy', cursive;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
}

.btn-primary {
    background: #3A6BFF;
    color: white;
}

.btn-primary:hover {
    background: #2850e6;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

/* Service Tagline Styling */
.service-tagline {
    font-style: italic;
    font-size: 1.1rem;
    color: #9600C8;
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Important Note Styling */
.important-note {
    background: rgba(150, 0, 200, 0.1);
    border-left: 4px solid #9600C8;
    padding: 1rem;
    margin-top: 1.5rem;
    border-radius: 0 8px 8px 0;
    color: #e0e0e0;
}

.important-note strong {
    color: #9600C8;
}

/* Travel CTA Section */
.travel-cta {
    background: linear-gradient(135deg, #3A6BFF 0%, #9600C8 50%, #FF3278 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-family: 'Lucinda Calligraphy', cursive;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

/* Why Choose Us */
.why-choose-us {
    padding: 40px 0 20px 0;
    background: transparent;
}


.why-choose-us h2 {
    font-family: 'Lucida Calligraphy', cursive;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: white;
    background: linear-gradient(45deg, #FF3278, #96DCFF);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: none;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    color: white;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 2.5rem;
    color: #FF3278;
    transition: all 0.3s ease;
}

.feature-icon i:hover {
    color: #ff5c96;
    transform: translateY(-3px);
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.feature-item p {
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.8;
}

/* Footer Updates */
.footer {
    background: rgba(5, 7, 13, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 20px 20px;
    margin-top: 0;
}

/* Simple Footer for Index Page */
.footer-simple {
    text-align: center;
    padding: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin-top: auto;
}

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 15px;
}

.footer-section h3 {
    font-family: 'Lucida Calligraphy', cursive;
    font-size: 1.5rem;
}

.footer-section:first-child {
    text-align: left;
}

.footer-section:first-child h3,
.footer-section:first-child p {
    text-align: left;
    justify-content: flex-start;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section i {
    color: #3A6BFF;
    width: 20px;
}

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

.roxi-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.roxi-link:hover {
    color: #3A6BFF;
}

.roxi-logo {
    height: 40px;
    width: auto;
    filter: brightness(0.8);
}

.roxi-link:hover .roxi-logo {
    filter: brightness(1);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(5, 7, 13, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: background-color 0.15s ease, opacity 0.15s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 8px 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 12px 30px;
    }
    
    .nav-language {
        margin-left: 0;
        margin-top: 15px;
        justify-content: center;
    }
    
    .hero-section {
        padding: 120px 20px 20px 20px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.4rem;
    }
    
    .intro {
        font-size: 1.1rem;
        text-align: center;
    }
    
    /* Personal Introduction Mobile */
    .intro-content h2 {
        font-size: 1.8rem;
    }
    
    .intro-tagline {
        font-size: 1.1rem;
    }
    
    .intro-text {
        font-size: 1rem;
        text-align: center;
    }
    
    /* Services and Why Choose Us Mobile */
    .services-overview {
        padding: 40px 0;
    }
    
    .content-container {
        padding: 0 20px;
    }
    
    .service-blocks {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-choose-us {
        padding: 40px 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 110px 15px 20px 15px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .intro {
        font-size: 1rem;
    }
    
    .services-overview h2,
    .cta-content h2,
    .why-choose-us h2 {
        font-size: 2rem;
    }
    
    /* Personal Introduction Small Mobile */
    .personal-intro {
        padding: 40px 15px;
    }
    
    .intro-content h2 {
        font-size: 1.6rem;
    }
    
    .intro-tagline {
        font-size: 1rem;
    }
    
    .intro-text {
        font-size: 0.95rem;
    }
    
    /* Services and Why Choose Us Small Mobile */
    .services-overview {
        padding: 30px 0;
    }
    
    .content-container {
        padding: 0 15px;
    }
    
    .services-overview h2,
    .why-choose-us h2 {
        font-size: 1.6rem;
    }
    
    .service-block {
        padding: 18px;
    }
    
    .service-content h3 {
        font-size: 1.2rem;
    }
    
    .service-content p {
        font-size: 0.9rem;
    }
    
    .feature-item {
        padding: 18px 12px;
    }
    
    .why-choose-us {
        padding: 30px 0;
    }
    
    .service-block {
        padding: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Hero Styles */
.page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 20px 40px 20px;
    background: linear-gradient(135deg, rgba(58, 107, 255, 0.1) 0%, rgba(150, 0, 200, 0.1) 50%, rgba(255, 50, 120, 0.1) 100%);
}

.page-hero .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    color: white;
}

.page-hero h1 {
    font-family: 'Lucida Calligraphy', cursive;
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #3A6BFF, #9600C8, #96DCFF, #FF3278);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* Travel Page Styles */
.travel-services {
    padding: 80px 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.service-header {
    text-align: center;
    margin-bottom: 30px;
}

.service-header .service-icon i {
    font-size: 3.5rem;
    color: #FF3278;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-header .service-icon i:hover {
    color: #ff5c96;
    transform: translateY(-3px);
}

.service-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: white;
}

.service-subtitle {
    font-size: 1rem;
    opacity: 0.8;
    font-style: italic;
}

.service-content h3 {
    font-size: 1.3rem;
    margin: 25px 0 15px 0;
    color: #FFFFFF;
}

.service-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-content li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.service-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3A6BFF;
    font-weight: bold;
}

.destinations {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.destination-tag {
    background: #3A6BFF;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.travel-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.travel-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-align: center;
}

.travel-type i {
    font-size: 1.5rem;
    color: #FF3278;
    transition: all 0.3s ease;
}

.travel-type i:hover {
    color: #ff5c96;
    transform: translateY(-3px);
}

.travel-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(255, 50, 120, 0.1) 0%, rgba(150, 0, 200, 0.1) 100%);
}

.travel-gallery {
    padding: 80px 20px;
}

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

.gallery-item {
    aspect-ratio: 4/3;
    border-radius: 15px;
    overflow: hidden;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
}

.gallery-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* Services Page Styles */
.services-detailed {
    padding: 80px 20px;
}

.services-detailed .services-grid {
    grid-template-columns: 1fr;
    gap: 40px;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    margin: 5px;
    font-size: 0.9rem;
}

.feature-badge i {
    color: #3A6BFF;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.pricing-info {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.pricing-info h4 {
    color: #3A6BFF;
    margin-bottom: 15px;
}

.price-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-duration {
    font-weight: 500;
}

.price-amount {
    font-weight: 600;
    color: #3A6BFF;
    font-size: 1.1rem;
}

.services-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(58, 107, 255, 0.1) 0%, rgba(255, 50, 120, 0.1) 100%);
}

/* Artists Page Styles */
.artists-grid {
    padding: 80px 20px;
}

.artists-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.artist-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    color: white;
}

.artist-card:hover {
    background: rgba(255, 255, 255, 0.15);
}

.artist-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
}

.image-placeholder i {
    font-size: 4rem;
}

.artist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.artist-card:hover .artist-overlay {
    opacity: 1;
}

.artist-social {
    display: flex;
    gap: 15px;
}

.artist-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    text-decoration: none;
}

.artist-social a:hover {
    background: #3A6BFF;
}

.artist-info {
    padding: 25px;
}

.artist-info h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: white;
}

.artist-genre {
    color: #9600C8;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.artist-bio {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.8;
    margin-bottom: 15px;
}

.artist-stats {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    opacity: 0.7;
}

.artist-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.management-services {
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.02);
}

.management-services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.management-service {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    color: white;
}

.management-service .service-icon i {
    font-size: 2.5rem;
    color: #FF3278;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.management-service .service-icon i:hover {
    color: #ff5c96;
    transform: translateY(-3px);
}

.management-service h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
}

.artists-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(150, 0, 200, 0.1) 0%, rgba(255, 50, 120, 0.1) 100%);
}

/* Artist Detail Page Styles */
.artist-hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(58, 107, 255, 0.1) 0%, rgba(150, 0, 200, 0.1) 100%);
}

.artist-detail-header {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
    max-width: 100%;
    margin: 0;
    padding: 0 40px;
}

.artist-main-image {
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
}

.image-placeholder-large {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
}

.image-placeholder-large i {
    font-size: 6rem;
}

.artist-main-info {
    color: white;
}

.artist-main-info h1 {
    font-family: 'Lucida Calligraphy', cursive;
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #3A6BFF, #9600C8);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.artist-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.artist-social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 25px;
}

.social-link:hover {
    background: #3A6BFF;
}

.artist-media {
    padding: 80px 20px;
}

.media-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.media-section h3 {
    color: #3A6BFF;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 15px;
}

.video-placeholder i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #FF0000;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.photo-placeholder {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
}

.photo-placeholder i {
    font-size: 2rem;
}

.promo-materials {
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.02);
}

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

.promo-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: white;
}

.promo-icon i {
    font-size: 3rem;
    color: #FF3278;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.promo-icon i:hover {
    color: #ff5c96;
    transform: translateY(-3px);
}

.promo-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #3A6BFF;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 15px;
}

.download-btn:hover {
    background: #2850e6;
}

.booking-info {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 50, 120, 0.1) 0%, rgba(150, 0, 200, 0.1) 100%);
}

.booking-content h2 {
    font-family: 'Lucida Calligraphy', cursive;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.booking-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.back-navigation {
    padding: 40px 20px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
}

.back-link:hover {
    color: #3A6BFF;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 100%;
    margin: 0;
    padding: 0 40px;
}

.contact-form-container,
.contact-info-container {
    color: white;
}

.contact-form-container h2,
.contact-info-container h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
}

.contact-form {
    margin-top: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: white;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3A6BFF;
    background: rgba(255, 255, 255, 0.15);
}

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

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.btn-full {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

.contact-methods {
    margin: 30px 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #3A6BFF;
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: white;
}

.contact-details h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: white;
}

.contact-details a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #3A6BFF;
}

.social-section {
    margin: 40px 0;
}

.social-section h3 {
    color: white;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.business-hours {
    margin-top: 40px;
}

.business-hours h3 {
    color: white;
    margin-bottom: 20px;
}

.hours-list {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hours-note {
    font-size: 0.9rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hours-note i {
    color: #3A6BFF;
}

.quick-contact {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(58, 107, 255, 0.1) 0%, rgba(150, 0, 200, 0.1) 100%);
    text-align: center;
}

.quick-contact-content h2 {
    font-family: 'Lucida Calligraphy', cursive;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.quick-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.quick-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 30px 25px;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    min-width: 120px;
}

.phone-btn {
    background: #3A6BFF;
}

.whatsapp-btn {
    background: #25D366;
}

.email-btn {
    background: #FF3278;
}

.quick-btn:hover {
    opacity: 0.8;
}

.quick-btn i {
    font-size: 2rem;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .artist-detail-header {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .artist-main-image {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .quick-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .quick-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .booking-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .booking-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    
    .roxi-logo {
        width: 20px;
        height: 20px;
        margin-right: 8px;
        vertical-align: middle;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 120px 25px 25px 25px;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .artist-main-info h1 {
        font-size: 2rem;
    }
    
    .destinations {
        justify-content: center;
    }
    
    .travel-types {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #3A6BFF;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #9600C8;
}

.back-to-top:active {
    transform: scale(0.95);
}

/* Contact Form Styles */
.contact-form {
    margin-top: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3A6BFF;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(58, 107, 255, 0.2);
}

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

/* Fix dropdown styling - ensure text is visible */
.form-group select {
    color: white !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

.form-group select option {
    background: #05070D !important;
    color: white !important;
    padding: 10px;
}

.form-group select option:hover,
.form-group select option:focus,
.form-group select option:checked {
    background: #3A6BFF !important;
    color: white !important;
}

/* Checkbox styling */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    accent-color: #3A6BFF;
}

.checkbox-label a {
    color: #3A6BFF;
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: #3A6BFF;
}

/* Contact Details Block */
.contact-details-block {
    margin-top: 20px;
}

.contact-person {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #3A6BFF;
}

.contact-person h4 {
    color: #3A6BFF;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-family: 'lucida-calligraphy-regular', cursive;
}

.contact-person p {
    margin-bottom: 8px;
    line-height: 1.5;
}

.contact-person strong {
    color: #9600C8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.1);
}

.contact-method i {
    color: #3A6BFF;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.contact-method a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.contact-method a:hover {
    color: #3A6BFF;
}

/* Social Links Compact */
.social-links-compact {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-link-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    font-size: 1.2rem;
}

.social-link-compact:hover {
    background: #3A6BFF;
    transform: translateY(-2px) scale(1.1);
}

/* Contact Grid Layout */
.contact-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

.contact-form-block,
.contact-info-block {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.contact-form-block:hover,
.contact-info-block:hover {
    background: rgba(255, 255, 255, 0.08);
}

.contact-form-block .service-icon,
.contact-info-block .service-icon {
    text-align: center;
    margin-bottom: 20px;
}

.contact-form-block .service-icon i,
.contact-info-block .service-icon i {
    font-size: 3rem;
    color: #FF3278;
    transition: all 0.3s ease;
}

.contact-form-block .service-icon i:hover,
.contact-info-block .service-icon i:hover {
    color: #ff5c96;
    transform: translateY(-3px);
}

.contact-form-block .service-content h3,
.contact-info-block .service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
    color: white;
}

/* Responsive Contact Form */
@media (max-width: 768px) {
    .contact-grid-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form-block,
    .contact-info-block {
        padding: 25px 15px;
    }
    
    .contact-person {
        padding: 15px;
    }
    
    .contact-method {
        padding: 8px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .social-links-compact {
        gap: 12px;
    }
    
    .social-link-compact {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Honeypot field - completely hidden from users */
.honeypot-field {
    display: none !important;
    visibility: hidden !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    overflow: hidden !important;
}

/* Flash Messages */
.flash-messages {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
}

.flash-message {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border-radius: 10px;
    animation: slideInRight 0.3s ease-out;
    position: relative;
}

.flash-success {
    background: rgba(40, 167, 69, 0.9);
    border-left: 4px solid #28a745;
    color: white;
}

.flash-error {
    background: rgba(220, 53, 69, 0.9);
    border-left: 4px solid #dc3545;
    color: white;
}

.flash-message i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.flash-message span {
    flex: 1;
    font-weight: 500;
    line-height: 1.4;
}

.flash-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
}

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

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

/* Auto-hide flash messages */
.flash-message {
    animation: slideInRight 0.3s ease-out, fadeOut 0.3s ease-out 4.7s forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

/* Responsive flash messages */
@media (max-width: 768px) {
    .flash-messages {
        top: 120px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .flash-message {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .flash-messages {
        top: 110px;
    }
}

/* Simplified animation for better performance */
.main-content {
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Teide Gallery Styles */
.teide-gallery {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

/* Mobile responsive - stack images vertically */
@media (max-width: 768px) {
    .teide-gallery {
        padding: 60px 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 20px;
    }
    
    .gallery-item img {
        height: 200px;
    }
}
