/*
Theme Name: Bianca Vink Beauty Lounge
Theme URI: https://biancavinkbeautylounge.nl
Author: Bianca Vink
Author URI: https://biancavinkbeautylounge.nl
Description: Luxe beauty lounge theme met sparkle effecten, perfect voor salons en beauty bedrijven. Pink, glamoureus en celebrity-worthy.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bianca-vink
Tags: beauty, salon, pink, glamour, luxury, responsive, custom-menu
*/

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-white { color: #fff; }
.text-pink { color: #ec4899; }
.text-gray { color: #6b7280; }

.bg-white { background: #fff; }
.bg-pink-gradient { background: linear-gradient(135deg, #ec4899, #f43f5e); }
.bg-dark { background: linear-gradient(180deg, #111827, #1f1020, #000); }

.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }

/* Grid System */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-6 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .grid-6 { grid-template-columns: repeat(2, 1fr); }
}

/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, #831843, #9f1239, #831843);
    color: #fff;
    padding: 0.5rem 0;
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.top-bar a {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.top-bar a:hover {
    color: #fbcfe8;
}

.top-bar-center {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* Main Navigation */
.main-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.5s ease;
}

.main-nav.scrolled {
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.15);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 56px;
    transition: transform 0.3s ease;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ec4899, #f43f5e);
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ec4899;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(90deg, #ec4899, #f43f5e);
    color: #fff;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.875rem;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    box-shadow: 0 6px 25px rgba(236, 72, 153, 0.5);
    transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #374151;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .nav-menu, .nav-cta-wrapper {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(131, 24, 67, 0.7), rgba(157, 23, 77, 0.5), transparent);
}

.hero-overlay-bottom {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(131, 24, 67, 0.6), transparent, rgba(131, 24, 67, 0.3));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero h1 {
    font-size: 3.5rem;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero h1 .highlight {
    color: #fbcfe8;
}

.hero p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    text-shadow: 0 1px 10px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(90deg, #ec4899, #f43f5e);
    color: #fff;
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 6px 30px rgba(236, 72, 153, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.btn-outline {
    background: transparent;
    color: #ec4899;
    border: 2px solid #ec4899;
}

.btn-outline:hover {
    background: #ec4899;
    color: #fff;
}

.btn-gold {
    background: linear-gradient(90deg, #f59e0b, #ec4899);
    color: #fff;
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.3);
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #fce7f3;
    border-radius: 9999px;
    color: #be185d;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 1rem;
}

.section-title .gradient {
    background: linear-gradient(90deg, #ec4899, #f43f5e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Service Cards */
.service-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.1);
    transition: all 0.5s ease;
    overflow: hidden;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 8rem;
    height: 8rem;
    background: linear-gradient(to bottom left, #fce7f3, transparent);
    border-radius: 0 0 0 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(236, 72, 153, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #fce7f3, #ffe4e6);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: #ec4899;
}

.service-card h3 {
    font-size: 1.25rem;
    color: #111827;
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Team Grid */
.team-card {
    background: #fff;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.2);
}

.team-card-image {
    aspect-ratio: 1;
    overflow: hidden;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-card-image img {
    transform: scale(1.1);
}

.team-card-content {
    padding: 0.75rem;
}

.team-card h4 {
    font-size: 0.875rem;
    color: #111827;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.team-card p {
    font-size: 0.75rem;
    color: #ec4899;
}

/* Testimonials */
.testimonials-section {
    background: linear-gradient(135deg, #ec4899, #f43f5e, #be185d);
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card blockquote {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #fbcfe8, #fda4af);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
}

.testimonial-author h4 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.testimonial-author span {
    color: #fbcfe8;
    font-size: 0.875rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 0.75rem;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(131, 24, 67, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: #fff;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #111827, #1f1020, #000);
    color: #fff;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(255,182,193,0.1)'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.footer-brand p {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.7;
    margin: 1.5rem 0;
}

.footer h4 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #9ca3af;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f9a8d4;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ec4899;
    transform: scale(1.1);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Contact Info */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(236, 72, 153, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 1rem;
    height: 1rem;
    color: #f9a8d4;
}

.contact-item span {
    font-size: 0.75rem;
    color: #6b7280;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-item a,
.contact-item p {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* TV Programs */
.tv-program-card {
    background: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.tv-program-card:hover {
    border-color: rgba(236, 72, 153, 0.5);
    transform: translateY(-8px);
}

.tv-program-card .icon {
    width: 3rem;
    height: 3rem;
    color: #f9a8d4;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tv-program-card .icon svg {
    width: 2rem;
    height: 2rem;
}

.tv-program-card h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.tv-program-card .meta {
    font-size: 0.75rem;
    color: #f9a8d4;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.tv-program-card p {
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.6;
}

/* Celebrity Cards */
.celebrity-category {
    margin-bottom: 3rem;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.category-header .line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.5), transparent);
}

.category-header h3 {
    color: #fff;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.celebrity-card {
    background: rgba(31, 41, 55, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.celebrity-card:hover {
    border-color: rgba(236, 72, 153, 0.3);
}

.celebrity-card-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.celebrity-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(245, 158, 11, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-weight: 700;
    font-size: 1.125rem;
}

.celebrity-info {
    flex: 1;
    min-width: 0;
}

.celebrity-info h4 {
    color: #fff;
    font-size: 0.875rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.celebrity-info .role {
    color: #f9a8d4;
    font-size: 0.75rem;
}

.celebrity-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

.celebrity-tag {
    padding: 0.125rem 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 9999px;
    color: #9ca3af;
    font-size: 0.625rem;
}

.celebrity-stars {
    display: flex;
    color: #f59e0b;
}

.celebrity-stars svg {
    width: 0.625rem;
    height: 0.625rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ec4899;
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Price Cards */
.price-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.1);
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(236, 72, 153, 0.2);
}

.price-card-header {
    height: 4px;
    background: linear-gradient(90deg, #ec4899, #f43f5e);
}

.price-card-content {
    padding: 1.5rem;
}

.price-card h3 {
    font-size: 1.125rem;
    color: #111827;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.price-card p {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.price-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ec4899;
}

/* Sparkle Animation */
@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    animation: sparkle 2s ease-in-out infinite;
    box-shadow: 0 0 6px 2px rgba(255, 182, 193, 0.6);
}

/* Marquee */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-container {
    overflow: hidden;
    background: linear-gradient(90deg, #ec4899, #f43f5e);
    padding: 0.75rem 0;
}

.marquee-content {
    display: flex;
    gap: 2rem;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #fce7f3;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ec4899, #f43f5e);
    border-radius: 4px;
}

/* Selection */
::selection {
    background: rgba(236, 72, 153, 0.3);
    color: #831843;
}

/* FAQ Accordion */
.faq-item {
    background: linear-gradient(180deg, #fdf2f8, #fff);
    border-radius: 0.75rem;
    border: 1px solid #fce7f3;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question h3 {
    font-size: 1rem;
    color: #111827;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.faq-answer {
    padding: 0 1.5rem 1rem;
    color: #6b7280;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}


/* ========================================
   MOBILE RESPONSIVE STYLES
   ======================================== */

/* Mobile Container */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* Top Bar Mobile */
@media (max-width: 768px) {
    .top-bar {
        padding: 0.5rem 0;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .top-bar-left {
        flex-direction: column !important;
        gap: 0.25rem !important;
    }
    
    .top-bar a {
        font-size: 0.75rem;
        justify-content: center;
    }
    
    .top-bar-center {
        font-size: 0.75rem;
    }
    
    .top-bar svg {
        width: 14px;
        height: 14px;
    }
}

/* Navigation Mobile */
@media (max-width: 768px) {
    .nav-content {
        height: 60px;
    }
    
    .logo img {
        height: 40px;
    }
}

/* Hero Section Mobile */
@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .hero-content {
        padding: 0 0.5rem;
        max-width: 100%;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
}

/* Section Titles Mobile */
@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-badge {
        font-size: 0.75rem;
    }
}

/* Buttons Mobile */
@media (max-width: 768px) {
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .btn-gold {
        padding: 1rem 1.5rem !important;
        font-size: 1rem !important;
    }
}

/* Two Column Layouts Mobile */
@media (max-width: 768px) {
    [style*="grid-template-columns: 1fr 1fr"],
    [style*="grid-template-columns: repeat(2, 1fr)"] {
        display: block !important;
    }
    
    [style*="grid-template-columns: 1fr 1fr"] > *,
    [style*="grid-template-columns: repeat(2, 1fr)"] > * {
        margin-bottom: 2rem;
    }
}

/* Contact Section Mobile */
@media (max-width: 768px) {
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
}

/* TV Stars Page Mobile */
@media (max-width: 768px) {
    /* Hero Stats Row */
    [style*="display: flex"][style*="flex-wrap: wrap"][style*="justify-content: center"] {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem !important;
    }
    
    /* TV Program Cards */
    .tv-program-card {
        padding: 1rem;
    }
    
    .tv-program-card h3 {
        font-size: 1rem;
    }
    
    .tv-program-card p {
        font-size: 0.8rem;
    }
    
    /* Celebrity Cards */
    .celebrity-card-content {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .celebrity-avatar {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
    
    .celebrity-info h4 {
        font-size: 0.8rem;
        white-space: normal;
    }
    
    .celebrity-tags {
        justify-content: flex-start;
    }
    
    .celebrity-stars {
        margin-top: 0.5rem;
    }
    
    /* Category Headers */
    .category-header h3 {
        font-size: 1rem;
        text-align: center;
        flex-wrap: wrap;
    }
    
    /* Bianca Story Section */
    [style*="grid-template-columns: 1fr 1fr"][style*="gap: 4rem"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }
    
    /* Stats Grid */
    [style*="grid-template-columns: repeat(2, 1fr)"][style*="gap: 1rem"] {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Price Cards Mobile */
@media (max-width: 768px) {
    .price-card-content {
        padding: 1rem;
    }
    
    .price-card h3 {
        font-size: 1rem;
    }
    
    .price-card p {
        font-size: 0.8rem;
    }
    
    .price-card .price {
        font-size: 1.25rem;
    }
}

/* Service Cards Mobile */
@media (max-width: 768px) {
    .service-card {
        padding: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.8rem;
    }
    
    .service-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .service-icon svg {
        width: 1.25rem;
        height: 1.25rem;
    }
}

/* Testimonials Mobile */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-card blockquote {
        font-size: 1rem;
    }
    
    .testimonial-avatar {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
}

/* Team Cards Mobile */
@media (max-width: 768px) {
    .team-card-content {
        padding: 0.5rem;
    }
    
    .team-card h4 {
        font-size: 0.75rem;
    }
    
    .team-card p {
        font-size: 0.625rem;
    }
}

/* Footer Mobile */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand p {
        font-size: 0.8rem;
    }
    
    .footer h4 {
        font-size: 1rem;
        justify-content: center;
    }
    
    .footer-links a {
        font-size: 0.8rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
    }
}

/* Gallery Mobile */
@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: 1fr !important;
    }
}

/* FAQ Mobile */
@media (max-width: 768px) {
    .faq-question {
        padding: 0.75rem 1rem;
    }
    
    .faq-question h3 {
        font-size: 0.875rem;
    }
    
    .faq-answer {
        padding: 0 1rem 0.75rem;
        font-size: 0.8rem;
    }
}

/* Forms Mobile */
@media (max-width: 768px) {
    .form-group label {
        font-size: 0.8rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.625rem 0.875rem;
        font-size: 0.875rem;
    }
}

/* Inline Styles Override Mobile */
@media (max-width: 768px) {
    /* Override font sizes set inline */
    [style*="font-size: 4.5rem"],
    [style*="font-size: 4rem"] {
        font-size: 2rem !important;
    }
    
    [style*="font-size: 3rem"] {
        font-size: 1.75rem !important;
    }
    
    [style*="font-size: 2.5rem"] {
        font-size: 1.5rem !important;
    }
    
    [style*="font-size: 2rem"] {
        font-size: 1.25rem !important;
    }
    
    [style*="font-size: 1.75rem"] {
        font-size: 1.125rem !important;
    }
    
    [style*="font-size: 1.25rem"] {
        font-size: 1rem !important;
    }
    
    [style*="font-size: 1.125rem"] {
        font-size: 0.9rem !important;
    }
    
    /* Override padding */
    [style*="padding: 3rem"] {
        padding: 1.5rem !important;
    }
    
    [style*="padding: 2rem"] {
        padding: 1rem !important;
    }
    
    /* Override margins */
    [style*="margin-bottom: 3rem"] {
        margin-bottom: 1.5rem !important;
    }
    
    /* Override gaps */
    [style*="gap: 4rem"] {
        gap: 2rem !important;
    }
    
    [style*="gap: 2.5rem"] {
        gap: 1.5rem !important;
    }
    
    /* Hero min-heights */
    [style*="min-height: 80vh"],
    [style*="min-height: 70vh"] {
        min-height: 60vh !important;
    }
    
    [style*="min-height: 60vh"] {
        min-height: 50vh !important;
    }
}

/* Image Grid Mobile (Bianca Story) */
@media (max-width: 768px) {
    [style*="display: grid"][style*="grid-template-columns: repeat(2, 1fr)"][style*="gap: 1rem"] {
        display: flex !important;
        flex-direction: column !important;
    }
    
    [style*="padding-top: 2rem"] {
        padding-top: 0 !important;
    }
    
    [style*="height: 12rem"],
    [style*="height: 16rem"] {
        height: auto !important;
        aspect-ratio: 16/9;
    }
}

/* Glass Cards Mobile */
@media (max-width: 768px) {
    [style*="backdrop-filter: blur"] {
        padding: 1rem !important;
    }
}

/* Why Choose Us Cards Mobile */
@media (max-width: 768px) {
    [style*="background: rgba(255,255,255,0.1)"][style*="backdrop-filter"] {
        padding: 1.25rem !important;
    }
    
    [style*="width: 4rem"][style*="height: 4rem"] {
        width: 3rem !important;
        height: 3rem !important;
    }
}

/* CTA Sections Mobile */
@media (max-width: 768px) {
    [style*="max-width: 600px"],
    [style*="max-width: 800px"],
    [style*="max-width: 900px"] {
        max-width: 100% !important;
        padding: 0 1rem;
    }
}

/* TV Sterren Page Specific Mobile Fixes */
@media (max-width: 768px) {
    /* Hero badges and inline flex items */
    [style*="display: inline-flex"][style*="padding: 0.75rem 1.5rem"] {
        padding: 0.5rem 1rem !important;
        font-size: 0.75rem;
    }
    
    /* Quote section */
    blockquote[style*="font-size: 2rem"] {
        font-size: 1.125rem !important;
        line-height: 1.6 !important;
    }
    
    /* Stats in hero */
    [style*="display: flex"][style*="align-items: center"][style*="gap: 0.5rem"] span {
        font-size: 0.8rem;
    }
}

/* Ensure no horizontal scroll */
html, body {
    overflow-x: hidden;
}

@media (max-width: 768px) {
    * {
        max-width: 100vw;
    }
}
