* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", "Arial", sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
    padding-bottom: calc(90px + env(safe-area-inset-bottom));
}

.sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1100;
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 0.75rem 0 calc(0.75rem + env(safe-area-inset-bottom));
}

.sticky-cta .container {
    display: flex;
    justify-content: center;
}

.sticky-cta .cta-button {
    width: 100%;
    max-width: 520px;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: bold;
}

.logo a {
    color: white;
    text-decoration: none;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

nav a:hover,
nav a.active {
    background: rgba(255,255,255,0.2);
}

.hero, .page-hero {
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 50%, #673ab7 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h1, .page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p, .page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-button {
    display: inline-block;
    background: #ff4081;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,64,129,0.4);
    animation: pulse 2s infinite;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 4px 15px rgba(255,64,129,0.4); }
    50% { transform: scale(1.05); box-shadow: 0 6px 25px rgba(255,64,129,0.6); }
    100% { transform: scale(1); box-shadow: 0 4px 15px rgba(255,64,129,0.4); }
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.cta-button:hover {
    background: #f50057;
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(255,64,129,0.6);
    animation: none;
}

section {
    padding: 4rem 0;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.features-section, .services-section {
    background: white;
}

.features-grid, .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card, .service-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover, .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon, .service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3, .service-card h2 {
    margin-bottom: 0.5rem;
    color: #e91e63;
}

.gallery-section {
    background: #f8f9fa;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e91e63;
    background: white;
    color: #e91e63;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-btn:hover {
    background: #fce4ec;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #e91e63, #ff4081);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(233,30,99,0.4);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.profile-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.profile-image {
    height: 200px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

.profile-info {
    padding: 1.5rem;
}

.profile-info h2 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.profile-age {
    color: #666;
    margin-bottom: 0.5rem;
}

.profile-desc {
    font-size: 0.9rem;
    color: #555;
}

.online-badge {
    display: inline-block;
    background: #4caf50;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.testimonials-section {
    background: linear-gradient(135deg, #673ab7 0%, #9c27b0 100%);
    color: white;
}

.testimonials-section h2 {
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
}

.author {
    font-weight: 600;
}

.cta-section {
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.cta-section h2 {
    color: white;
}

.cta-section p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-section {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.contact-icon {
    font-size: 2rem;
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    color: #e91e63;
}

.faq-section {
    background: #f8f9fa;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h3 {
    color: #e91e63;
    margin-bottom: 0.5rem;
}

footer {
    background: #1a1a2e;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: #e91e63;
}

.footer-col ul {
    list-style: none;
}

.footer-col a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        gap: 1rem;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}

/* Cookie Consent Modal Styles */
.cookie-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.cookie-modal {
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
}

.cookie-modal-logo {
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
}

.cookie-reject-link {
    color: #e91e63;
    text-decoration: underline;
    font-size: 0.85rem;
    cursor: pointer;
}

.cookie-modal-content {
    padding: 25px;
}

.age-warning {
    color: #e91e63;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 15px;
    text-align: center;
}

.age-verification {
    color: #333;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

.exit-link {
    color: #e91e63;
    text-decoration: underline;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 25px;
}

.cookie-section h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.cookie-description {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.cookie-categories {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.cookie-category {
    border-bottom: 1px solid #ddd;
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f9f9f9;
}

.cookie-status {
    color: #4caf50;
    font-size: 0.85rem;
    font-weight: 500;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.cookie-toggle input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #e91e63;
}

.cookie-accept-btn {
    display: block;
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 15px;
    background: linear-gradient(135deg, #e91e63 0%, #ff4081 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept-btn:hover {
    background: linear-gradient(135deg, #c2185b 0%, #e91e63 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
}

@media (max-width: 480px) {
    .cookie-modal {
        margin: 10px;
        max-height: 95vh;
    }
    
    .cookie-modal-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .cookie-modal-content {
        padding: 20px;
    }
    
    .cookie-accept-btn {
        width: calc(100% - 40px);
        margin: 0 20px 20px;
    }
}