/* WOW Gallery Stuttgart - Main Styles */

/* CSS Variables */
:root {
    --primary-color: #8B5CF6;
    --secondary-color: #EC4899;
    --accent-color: #FCD34D;
    --dark-color: #1F2937;
    --light-color: #FAFAFA;
    --gray-light: #F3F4F6;
    --gray-medium: #9CA3AF;
    --gray-dark: #4B5563;
    
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
    --shadow-xl: 0 12px 48px rgba(0,0,0,0.3);
    
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
    margin-bottom: 1rem;
    color: var(--gray-dark);
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 20px;
}

.nav-brand .logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    object-position: center;
}

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

.nav-link {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background: #7C3AED;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-gradient {
    background: linear-gradient(135deg, #EC4899, #F472B6);
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(236, 72, 153, 0.6);
    background: linear-gradient(135deg, #F472B6, #EC4899);
}

.btn-outline {
    border: 2px solid white;
    color: white;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background: white;
    color: #EC4899;
    transform: translateY(-2px);
    border-color: white;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    overflow: hidden;
    padding-bottom: 40px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(252, 211, 77, 0.2), rgba(139, 92, 246, 0.3));
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(139, 92, 246, 0.15));
    border-radius: 30px;
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-title {
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 20px rgba(236, 72, 153, 0.8);
    font-weight: 900;
}

.hero-glow {
    color: white;
    font-weight: 900;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.9),
        0 0 40px rgba(236, 72, 153, 0.9),
        0 0 60px rgba(236, 72, 153, 0.7),
        2px 2px 8px rgba(0, 0, 0, 0.8),
        -1px -1px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
    color: white;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.7),
        2px 2px 6px rgba(0, 0, 0, 0.7),
        -1px -1px 3px rgba(0, 0, 0, 0.7);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s;
    animation-fill-mode: both;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #FCD34D;
    text-shadow: 0 0 10px rgba(252, 211, 77, 0.5);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: white;
    margin-top: 0.25rem;
}

/* Text Rotation Animation */
.text-rotate {
    display: inline-block;
    position: relative;
    height: 1.2em;
    overflow: hidden;
}

.text-rotate span {
    position: absolute;
    left: 0;
    animation: textRotate 9s infinite;
    opacity: 0;
}

.text-rotate span:nth-child(1) { animation-delay: 0s; }
.text-rotate span:nth-child(2) { animation-delay: 3s; }
.text-rotate span:nth-child(3) { animation-delay: 6s; }

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: white;
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

/* Sections */
section {
    padding: 80px 0;
}

/* Reduce padding for experience section when it follows hero */
.hero + .experience {
    padding-top: 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-medium);
}

/* Experience Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.feature-card h3 {
    margin-bottom: 1rem;
    min-height: 2.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    line-height: 1.3;
}

.feature-card p {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0;
    line-height: 1.6;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.gradient-bg {
    background: var(--gradient-primary);
}

/* Gallery Sets */
.sets {
    background: var(--gray-light);
}

.sets-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.set-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
}

.set-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 400px;
}

.set-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.set-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 2rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.set-overlay h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.set-overlay p {
    color: white;
    opacity: 0.9;
    margin: 0;
}

.set-card:hover .set-overlay {
    transform: translateY(0);
}

.sets-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

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

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 1rem 0;
}

.currency {
    font-size: 1.5rem;
    margin-right: 0.25rem;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    margin-left: 0.5rem;
    color: var(--gray-medium);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-light);
}

/* Events Section */
.events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.event-type {
    text-align: center;
    transition: var(--transition);
    background: white;
    border-radius: var(--border-radius);
    padding: 1rem;
    box-shadow: var(--shadow-sm);
}

.event-type:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.event-type img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

/* Event Placeholders */
.event-placeholder {
    width: 100%;
    height: 200px;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.event-jga {
    background: linear-gradient(135deg, #EC4899, #F472B6);
}

.event-birthday {
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
}

.event-team {
    background: linear-gradient(135deg, #3B82F6, #60A5FA);
}

.event-school {
    background: linear-gradient(135deg, #FCD34D, #FDE68A);
}

.placeholder-icon {
    font-size: 3.5rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
    animation: pulse 2s ease-in-out infinite;
}

.event-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.event-type h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.3rem;
    line-height: 1.4;
    min-height: 2em;
}

.event-type p {
    color: var(--gray-dark);
    line-height: 1.6;
    font-size: 0.95rem;
}

.event-type:hover img {
    transform: scale(1.05);
}

.cta-section {
    text-align: center;
    background: var(--gradient-primary);
    color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
}

.cta-section h3 {
    margin-bottom: 1rem;
    color: white;
}

.cta-section p {
    color: white;
    opacity: 0.95;
}

/* B2B Section */
.b2b-section {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(236, 72, 153, 0.05));
    padding: 100px 0;
}

.b2b-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.b2b-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.b2b-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.b2b-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.b2b-feature {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.b2b-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.b2b-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.b2b-feature h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.b2b-feature p {
    font-size: 0.95rem;
    color: var(--gray-dark);
    margin: 0;
}

.wow-box-options {
    margin-top: 2rem;
}

.box-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* Clean box design */
.box-option-clean {
    background: white;
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.box-option-clean:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.box-header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.box-header h4 {
    margin: 0;
    color: var(--dark-color);
    font-size: 1.3rem;
    font-weight: 600;
}

.box-size {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
}

.box-specs {
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
}

.spec-item {
    margin: 0;
    color: var(--gray-dark);
    font-size: 0.85rem;
    line-height: 1.3;
}

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

.spec-item strong {
    color: var(--dark-color);
    font-weight: 600;
}

.box-cta {
    display: block;
    text-align: center;
    padding: 0.75rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(236, 72, 153, 0.05));
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-top: 1px solid var(--gray-light);
}

.box-cta:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    color: var(--secondary-color);
}

.box-option ul {
    list-style: none;
    padding: 0;
}

.box-option ul li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
    color: var(--gray-medium);
    padding-left: 1.2rem;
    position: relative;
}

.box-option ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.b2b-right-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.b2b-benefits {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.b2b-benefits h4 {
    color: var(--dark-color);
    text-align: left;
    font-size: 1.3rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefit-item {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: var(--dark-color);
    font-weight: 500;
    border: 1px solid rgba(139, 92, 246, 0.2);
    display: block;
}

.b2b-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.btn-outline-dark:hover {
    background: var(--dark-color);
    color: white;
    transform: translateY(-2px);
}

.b2b-image {
    position: relative;
}

.b2b-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.b2b-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-weight: 600;
}

.trusted-by {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.trusted-by h4 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.brand-logos {
    color: var(--gray-medium);
    font-size: 1.1rem;
}

/* Social Proof */
.social-proof {
    background: var(--gray-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.stars {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-author {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-light);
}

.testimonial-author strong {
    display: block;
    color: var(--dark-color);
}

.testimonial-author span {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.review-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.google-badge {
    height: 80px;
}

/* Press Section */
.press-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.03), rgba(236, 72, 153, 0.03));
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.press-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
    border-left: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.press-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.05), transparent);
    transition: left 0.5s ease;
}

.press-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--secondary-color);
}

.press-card:hover::before {
    left: 100%;
}

.press-publication {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.press-headline {
    color: var(--dark-color);
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    font-weight: 600;
}

.press-quote {
    color: var(--gray-dark);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.press-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 2rem;
    color: var(--secondary-color);
    opacity: 0.3;
    font-weight: 700;
}

.press-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.press-card:hover .press-link {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    margin-bottom: 2rem;
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-map iframe {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

/* BookingKit Widget Styling */
bk-floating-widget {
    z-index: 9999 !important;
}

/* Custom styling for BookingKit widget button */
bk-floating-widget::part(button) {
    background: var(--gradient-primary) !important;
    border-radius: 50px !important;
    box-shadow: var(--shadow-lg) !important;
}

bk-floating-widget::part(button):hover {
    transform: scale(1.1) !important;
    box-shadow: var(--shadow-xl) !important;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-column a {
    display: block;
    color: var(--gray-light);
    text-decoration: none;
    padding: 0.25rem 0;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--gray-medium);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .b2b-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .box-options-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-list {
        flex-direction: column;
    }
    
    .benefit-item {
        text-align: center;
    }
    
    .b2b-image {
        order: -1;
    }
    
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .event-type {
        padding: 0.75rem;
    }
    
    .event-type h3 {
        font-size: 1.1rem;
    }
    
    .event-type p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .event-type img {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}