/* ===================================
   BALLON-STUDIO NRW - Stylesheet
   Premium Ballondekorationen
   =================================== */

/* CSS Variables */
:root {
    --primary: #C9A86C;
    --primary-dark: #B8956A;
    --secondary: #1A1A2E;
    --accent: #E8D5B7;
    --white: #FFFFFF;
    --light-bg: #F9F7F4;
    --text-dark: #2D2D2D;
    --text-light: #666666;
    --gradient-gold: linear-gradient(135deg, #C9A86C 0%, #E8D5B7 50%, #C9A86C 100%);
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-hover: 0 20px 60px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

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

/* ===================================
   HEADER & NAVIGATION
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.header.scrolled {
    padding: 10px 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 65px;
    width: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.logo-img-footer {
    height: 180px;
    width: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    min-width: 220px;
    padding: 15px 0;
    border-radius: 12px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    margin-top: 10px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 5px;
}

.dropdown-menu a {
    display: block;
    padding: 10px 25px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.dropdown-menu a:hover {
    background: var(--light-bg);
    color: var(--primary);
}

/* Language Switcher */
.language-switcher {
    position: relative;
    margin-left: 15px;
}

/* Mobile language switcher - hidden on desktop */
.mobile-lang {
    display: none;
}

/* Desktop language switcher - shown on desktop */
.desktop-lang {
    display: block;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    background: var(--light-bg);
    font-size: 1.2rem;
    transition: var(--transition);
}

.lang-current:hover {
    background: var(--accent);
}

.lang-arrow {
    font-size: 0.6rem;
    color: var(--text-light);
    transition: var(--transition);
}

.language-switcher:hover .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    min-width: 160px;
    padding: 10px 0;
    border-radius: 12px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    margin-top: 10px;
    z-index: 100;
}

.language-switcher:hover .lang-dropdown,
.language-switcher.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    margin-top: 5px;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.lang-option:hover {
    background: var(--light-bg);
    color: var(--primary);
}

.lang-option.active {
    background: var(--accent);
    font-weight: 600;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 120px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(201,168,108,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--secondary);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--secondary);
    margin-bottom: 25px;
}

.hero h1 span {
    color: var(--primary);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.hero-feature svg {
    color: var(--primary);
    flex-shrink: 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    flex: 1;
    min-width: 300px;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow);
    object-fit: cover;
}

.hero-image-placeholder {
    background: var(--gradient-gold);
    border-radius: 30px;
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    box-shadow: var(--shadow);
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201,168,108,0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.btn-secondary:hover {
    background: var(--secondary);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--secondary);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ===================================
   MAIN CONTENT AREA
   =================================== */
main {
    min-height: calc(100vh - 300px);
}

/* Pages without hero need top padding for fixed header */
main.has-page-header {
    padding-top: 0;
}

/* Error pages and other content pages */
.page-header {
    margin-top: 0;
}

/* ===================================
   SECTION STYLES
   =================================== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ===================================
   SERVICES / LEISTUNGEN
   =================================== */
.services {
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    gap: 12px;
}

/* ===================================
   OCCASIONS / ANLÄSSE
   =================================== */
.occasions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.occasion-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.occasion-card-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.occasion-card-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.occasion-card:hover .occasion-card-image {
    transform: scale(1.05);
}

.occasion-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,46,0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    transition: var(--transition);
}

.occasion-card:hover .occasion-overlay {
    background: linear-gradient(to top, rgba(26,26,46,0.95) 0%, rgba(26,26,46,0.3) 100%);
}

.occasion-card h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.occasion-card p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.occasion-card:hover p {
    opacity: 1;
    transform: translateY(0);
}

/* CTA Card for "Other Occasion" */
.occasion-card-cta .occasion-cta-bg {
    background: linear-gradient(135deg, var(--secondary) 0%, #2a2a4e 100%);
}

.occasion-card-cta:hover .occasion-cta-bg {
    background: linear-gradient(135deg, #2a2a4e 0%, var(--secondary) 100%);
}

.occasion-card-cta .occasion-overlay {
    background: linear-gradient(to top, rgba(26,26,46,0.95) 0%, transparent 40%);
}

.occasion-card-cta h3 {
    color: var(--primary);
}

.occasion-card-cta p {
    opacity: 1;
    transform: translateY(0);
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 500;
}

/* ===================================
   FEATURES / USP
   =================================== */
.features {
    background: var(--secondary);
    color: var(--white);
}

.features .section-badge {
    color: var(--accent);
}

.features .section-header h2 {
    color: var(--white);
}

.features .section-header p {
    color: rgba(255,255,255,0.7);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(201,168,108,0.15);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.feature-item p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* ===================================
   GALLERY PREVIEW
   =================================== */
.gallery-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    cursor: pointer;
}

.gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
    font-size: 6rem;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26,26,46,0);
    transition: var(--transition);
}

.gallery-item:hover::after {
    background: rgba(26,26,46,0.3);
}

/* ===================================
   PROCESS / ABLAUF
   =================================== */
.process {
    background: var(--light-bg);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--primary);
    opacity: 0.3;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.process-step h4 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    box-shadow: var(--shadow);
}

.testimonial-stars {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 25px;
    letter-spacing: 5px;
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-info h5 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ===================================
   CTA SECTION
   =================================== */
.cta {
    background: var(--gradient-gold);
    text-align: center;
    padding: 80px 0;
}

.cta h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ===================================
   CONTACT
   =================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--light-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-item h5 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-item p, .contact-item a {
    font-size: 1rem;
    color: var(--secondary);
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--primary);
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 8px;
}

.form-group label .required {
    color: #e74c3c;
    margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--white);
    color: var(--text-dark);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

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

.form-submit {
    width: 100%;
    margin-top: 10px;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.footer h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--accent);
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    padding: 8px 0;
    transition: var(--transition);
    white-space: nowrap;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

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

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--primary);
}

/* ===================================
   PAGE HEADERS
   =================================== */
.page-header {
    background: linear-gradient(135deg, var(--secondary) 0%, #2a2a4a 100%);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A86C' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.6);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span {
    color: var(--primary);
}

.page-header h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.page-header p {
    color: rgba(255,255,255,0.7);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   CONTENT PAGES
   =================================== */
.content-section {
    padding: 80px 0;
}

.content-section:nth-child(even) {
    background: var(--light-bg);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text h2 {
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.content-text p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.content-list {
    margin: 25px 0;
}

.content-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.content-list li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
}

.content-image {
    background: var(--gradient-gold);
    border-radius: 20px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    overflow: hidden;
}

.occasion-detail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.occasion-detail-icon {
    font-size: 5rem;
}

/* ===================================
   INDIVIDUAL PRICING
   =================================== */
.individual-pricing {
    background: var(--white);
    border-radius: 20px;
    padding: 60px 50px;
    text-align: center;
    box-shadow: var(--shadow);
}

.individual-pricing-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.individual-pricing h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.individual-pricing-text {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.individual-pricing-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.individual-feature {
    padding: 25px;
    background: var(--light-bg);
    border-radius: 15px;
}

.individual-feature-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 15px;
}

.individual-feature h4 {
    color: var(--secondary);
    margin-bottom: 10px;
}

.individual-feature p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.individual-pricing-cta {
    padding-top: 30px;
    border-top: 1px solid var(--light-bg);
}

.individual-pricing-cta p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .individual-pricing {
        padding: 40px 25px;
    }

    .individual-pricing-features {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   PRICE CARDS
   =================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.price-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.price-card.featured {
    border: 3px solid var(--primary);
    transform: scale(1.05);
}

.price-card.featured::before {
    content: 'Beliebt';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.price-size {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.price-card h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
}

.price-amount span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.price-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

.price-features {
    text-align: left;
    margin-bottom: 30px;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--light-bg);
    font-size: 0.95rem;
    color: var(--text-dark);
}

.price-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
}

/* ===================================
   FAQ
   =================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--secondary);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .services-grid,
    .features-grid,
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .occasions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .price-card.featured {
        transform: none;
    }

    .price-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: var(--shadow);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        background: var(--light-bg);
        margin-top: 10px;
        opacity: 1;
        visibility: visible;
    }

    /* Smaller logo on mobile */
    .logo {
        font-size: 1.1rem;
    }

    /* Hide desktop lang switcher, show mobile */
    .desktop-lang {
        display: none !important;
    }

    .mobile-lang {
        display: block;
        margin-left: auto;
        margin-right: 20px;
        z-index: 1001;
    }

    .mobile-lang .lang-current {
        padding: 10px 16px;
        font-size: 1.1rem;
        min-width: 60px;
        justify-content: center;
    }

    .mobile-lang .lang-dropdown {
        right: 0;
        left: auto;
        min-width: 180px;
        z-index: 1002;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-image {
        max-width: 100%;
        margin: 0 auto;
        border-radius: 15px;
    }

    .hero-image-placeholder {
        max-width: 300px;
        margin: 0 auto;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .services-grid,
    .features-grid,
    .process-steps,
    .occasions-grid {
        grid-template-columns: 1fr;
    }

    .process-steps::before {
        display: none;
    }

    .gallery-preview {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item:first-child {
        grid-column: span 2;
        grid-row: span 1;
    }

    .contact-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }

    .content-grid.reverse {
        direction: ltr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 60px 0;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .service-card,
    .testimonial,
    .contact-form {
        padding: 30px 20px;
    }
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===================================
   GALLERY & LIGHTBOX
   =================================== */
.gallery-section {
    padding: 80px 0;
}

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

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

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-zoom {
    color: white;
    font-size: 3rem;
    font-weight: 300;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    z-index: 10001;
    line-height: 1;
    transition: transform 0.2s ease;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 20px 15px;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.2);
}

.lightbox-prev {
    left: 20px;
    border-radius: 8px;
}

.lightbox-next {
    right: 20px;
    border-radius: 8px;
}

.lightbox-caption {
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 1rem;
}

.lightbox-counter {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

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

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(6) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .lightbox-prev,
    .lightbox-next {
        padding: 15px 10px;
        font-size: 1.5rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 2.5rem;
    }
}

/* ===================================
   SITE NOTICE (Adblocker-kompatibel)
   =================================== */
.site-notice {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.notice-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    max-height: 90vh;
    overflow-y: auto;
}

.notice-text h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.notice-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.notice-options {
    margin-bottom: 25px;
}

.notice-option {
    padding: 15px;
    background: var(--light-bg);
    border-radius: 10px;
    margin-bottom: 10px;
}

.notice-option small {
    display: block;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 5px;
    margin-left: 32px;
}

.pref-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
}

.pref-checkbox input {
    display: none;
}

.pref-checkbox .checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid var(--primary);
    border-radius: 5px;
    margin-right: 10px;
    position: relative;
    transition: all 0.2s ease;
}

.pref-checkbox input:checked + .checkmark {
    background: var(--primary);
}

.pref-checkbox input:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.pref-checkbox input:disabled + .checkmark {
    opacity: 0.6;
    cursor: not-allowed;
}

.notice-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.notice-btn {
    flex: 1;
    min-width: 150px;
    padding: 12px 20px;
    font-size: 0.9rem;
}

.notice-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--light-bg);
}

.notice-links a {
    color: var(--text-light);
    font-size: 0.85rem;
}

.notice-links a:hover {
    color: var(--primary);
}

@media (max-width: 480px) {
    .notice-content {
        padding: 20px;
    }

    .notice-buttons {
        flex-direction: column;
    }

    .notice-btn {
        min-width: 100%;
    }

    .notice-text h3 {
        font-size: 1.3rem;
    }
}

/* ===================================
   ERROR PAGES
   =================================== */
.error-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--light-bg) 0%, #fff 100%);
}

.error-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.error-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 2s ease infinite;
}

.error-code-large {
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-page h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.error-code {
    display: inline-block;
    background: var(--light-bg);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.error-message {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

.error-suggestions {
    background: var(--light-bg);
    padding: 25px 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: left;
}

.error-suggestions h3 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.error-suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.error-suggestions li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
}

.error-suggestions li:last-child {
    border-bottom: none;
}

.error-suggestions a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.error-suggestions a:hover {
    text-decoration: underline;
}

.error-info {
    background: rgba(255, 107, 129, 0.1);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.error-info p {
    color: var(--text);
    font-size: 0.95rem;
    margin: 0;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .error-content {
        padding: 40px 25px;
        margin: 0 15px;
    }

    .error-code-large {
        font-size: 5rem;
    }

    .error-page h1 {
        font-size: 1.5rem;
    }

    .error-actions {
        flex-direction: column;
    }

    .error-actions .btn {
        width: 100%;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.bg-light { background: var(--light-bg); }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }

/* ==========================================================================
   Impressum / Imprint Page
   ========================================================================== */

.imprint-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

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

.imprint-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.imprint-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.imprint-card-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.imprint-card h2 {
    font-size: 1.1rem;
    color: var(--primary-color, #e91e63);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color, #e91e63);
}

.imprint-card p {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: #555;
}

.imprint-card .company-name {
    font-weight: 600;
    color: #333;
    font-size: 1.05rem;
}

.imprint-card .vat-number {
    font-family: monospace;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    background: #f5f5f5;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    display: inline-block;
}

.imprint-card a {
    color: var(--primary-color, #e91e63);
    text-decoration: none;
}

.imprint-card a:hover {
    text-decoration: underline;
}

/* Legal Section */
.legal-section {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.legal-section > h2 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #ddd;
}

.legal-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
}

.legal-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.legal-item h3 {
    font-size: 1rem;
    color: #444;
    margin-bottom: 0.75rem;
}

.legal-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0.5rem;
}

.legal-item p:last-child {
    margin-bottom: 0;
}

.legal-item a {
    color: var(--primary-color, #e91e63);
    word-break: break-all;
}

/* ==========================================================================
   Privacy / Datenschutz Page
   ========================================================================== */

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

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

.privacy-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.privacy-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.privacy-card-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.privacy-card h2 {
    font-size: 1.1rem;
    color: var(--primary-color, #e91e63);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color, #e91e63);
}

.privacy-card p {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: #555;
}

.privacy-card a {
    color: var(--primary-color, #e91e63);
    text-decoration: none;
}

.privacy-card a:hover {
    text-decoration: underline;
}

.privacy-card .highlight-box {
    background: #f0f9ff;
    border-left: 3px solid #3b82f6;
    padding: 0.75rem 1rem;
    border-radius: 0 6px 6px 0;
    font-size: 0.9rem;
    color: #1e40af;
}

.privacy-card .btn-small {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    background: var(--primary-color, #e91e63);
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 0.5rem;
    transition: background 0.2s ease;
}

.privacy-card .btn-small:hover {
    background: #c2185b;
    text-decoration: none;
}

/* Privacy List */
.privacy-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.privacy-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #555;
}

.privacy-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color, #e91e63);
    font-weight: bold;
}

/* Info Box */
.info-box {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin: 1rem 0;
    border-left: 4px solid var(--primary-color, #e91e63);
}

.info-box p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.info-box p:last-child {
    margin-bottom: 0;
}

/* Rights Section */
.rights-section .intro-text {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

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

@media (max-width: 576px) {
    .rights-grid {
        grid-template-columns: 1fr;
    }
}

.right-item {
    background: #fff;
    border-radius: 10px;
    padding: 1.25rem;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.right-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.right-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.right-item h3 {
    font-size: 0.95rem;
    color: var(--primary-color, #e91e63);
    margin-bottom: 0.75rem;
}

.right-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}
