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

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

.nav-social a {
    margin-right: 1rem;
    font-size: 1.2rem;
    text-decoration: none;
    color: #e91e63;
    transition: opacity 0.3s ease;
}

.nav-social a:hover {
    opacity: 0.7;
}

.nav-social svg {
    fill: #e91e63;
}

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

.logo-link {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-image {
    height: 60px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e91e63;
    margin: 0;
}

.logo-text p {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}

/* Responsive logo sizing */
@media (max-width: 768px) {
    .logo-image {
        height: 50px;
        max-width: 80px;
    }

    .logo-text h1 {
        font-size: 1.2rem;
    }

    .logo-text p {
        font-size: 0.7rem;
    }

    .logo-link {
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 40px;
        max-width: 60px;
    }

    .logo-text h1 {
        font-size: 1rem;
    }

    .logo-text p {
        font-size: 0.6rem;
    }

    .logo-link {
        gap: 0.3rem;
    }
}

/* Center Where We Serve Section */
.service-areas {
    text-align: center;
}

.service-areas .areas-content {
    display: flex;
    justify-content: center;
}

.service-areas .areas-text {
    max-width: 800px;
    text-align: center;
}

.service-areas .areas-list {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.service-areas .area-column {
    text-align: center;
    min-width: 250px;
}

@media (max-width: 768px) {
    .service-areas .areas-list {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
}

/* Center Why Choose Us Section */
.why-choose-us {
    text-align: center;
}

.why-choose-us .benefits-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-us .benefit-item {
    text-align: center;
    max-width: 300px;
    flex: 1;
    min-width: 250px;
}

@media (max-width: 768px) {
    .why-choose-us .benefits-grid {
        flex-direction: column;
        align-items: center;
    }

    .why-choose-us .benefit-item {
        max-width: 400px;
    }
}

/* Contact Page Layout */
.form-and-discount-row {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.contact-form-container {
    flex: 1;
    min-width: 0;
}

.early-bird-container {
    flex: 0 0 350px;
    background: linear-gradient(135deg, #fce4ec, #f8bbd9);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.15);
    border: 2px solid #e91e63;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.early-bird-container .early-bird-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.early-bird-container .early-bird-content h2 {
    color: #e91e63;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-align: center;
}

.early-bird-container .early-bird-content p {
    color: #666;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.6;
}

.early-bird-container .offer-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.past-events-section {
    margin-top: auto;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 2px dashed #e91e63;
}

.past-events-section h3 {
    color: #e91e63;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.past-events-section p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.btn-outline {
    background: transparent;
    color: #e91e63;
    border: 2px solid #e91e63;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: #e91e63;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.contact-info-below {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 12px;
}

.contact-info-below h2 {
    color: #e91e63;
    margin-bottom: 1rem;
}

.contact-info-below .contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info-below .contact-item {
    text-align: center;
}

.contact-info-below .contact-item h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .form-and-discount-row {
        flex-direction: column;
        gap: 2rem;
    }

    .early-bird-container {
        flex: none;
    }

    .contact-info-below .contact-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}



.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e91e63;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-list a:hover {
    color: #e91e63;
}

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

/* Hero Section */
.hero {
    margin-top: 100px;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio (9 / 16 = 0.5625) */
    position: relative;
    overflow: hidden;
    background-image: url('https://pub-995974bbbb62450fb7e81753600881ec.r2.dev/images/hero.JPG');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #000;
}

/* Mobile adjustments for hero */
@media (max-width: 768px) {
    .hero {
        margin-top: 80px;
        padding-bottom: 75%; /* Taller on mobile for better visibility */
    }
}

@media (max-width: 480px) {
    .hero {
        margin-top: 70px;
        padding-bottom: 100%; /* More square on small phones */
    }
}

/* Hero Content Section - Below Images */
.hero-content-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content {
    text-align: center;
}

/* Mobile responsive for hero content */
@media (max-width: 768px) {
    .hero-content-section {
        padding: 3rem 0;
    }

    .hero-container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content-section {
        padding: 2rem 0;
    }

    .hero-container {
        padding: 0 1rem;
    }

    .hero-description {
        font-size: 1rem;
    }
}

.hero-year {
    font-size: 4rem;
    font-weight: bold;
    color: #e91e63;
    margin-bottom: 0.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-offers {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.offer-box {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    min-width: 200px;
}

.offer-box h3 {
    color: #e91e63;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.discount {
    background: #e91e63;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin-top: 0.5rem;
}

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

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    will-change: transform;
}

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

.btn-primary:hover {
    background: #c2185b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.2);
}

.btn-secondary {
    background: transparent;
    color: #e91e63;
    border: 2px solid #e91e63;
}

.btn-secondary:hover {
    background: #e91e63;
    color: white;
}

/* Services Section */
.services {
    padding: 4rem 0;
    background: #f5f5f5;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.services-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

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

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    padding: 1.5rem;
    text-align: center;
    color: #333;
    font-size: 1.2rem;
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    background: white;
}

.cta-banner {
    text-align: center;
    margin-bottom: 3rem;
}

.cta-banner h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

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

.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.gallery img:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.exciting-news {
    text-align: center;
    background: #fce4ec;
    padding: 2rem;
    border-radius: 15px;
}

.exciting-news h3 {
    color: #e91e63;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.feature-highlight {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    color: #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-highlight:hover {
    transform: translateY(-2px);
}

.cta-banner p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: #333;
    color: #ccc;
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    margin: 0.5rem 0;
}

.footer a {
    color: #e91e63;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #ff4081;
    text-decoration: underline;
}

/* Reduce motion for users with vestibular motion disorders */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        display: none;
    }

    .nav-list.active {
        display: flex;
    }

    .nav-container {
        flex-wrap: wrap;
        padding: 1rem;
    }

    .hero-year {
        font-size: 3rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-offers {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

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

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

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid #000;
    }

    .nav-list a {
        font-weight: 700;
    }
}

/* Contact Page Styles */
.nav-list a.active {
    color: #e91e63;
    font-weight: 600;
}

.contact-hero {
    margin-top: 100px;
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%);
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-section {
    padding: 4rem 0;
    background: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.contact-details {
    display: grid;
    gap: 1.5rem;
}

.contact-item h3 {
    color: #e91e63;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #555;
    font-size: 1rem;
    margin: 0;
}

.contact-form-container {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e91e63;
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.75rem;
    transform: scale(1.2);
}

/* Cloudflare Turnstile Styling */
.cf-turnstile {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
    transform-origin: center;
}

@media (max-width: 768px) {
    .cf-turnstile {
        transform: scale(0.85);
        transform-origin: 0 0;
    }
}

.submit-btn {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.early-bird-section {
    background: linear-gradient(135deg, #e91e63, #c2185b);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.early-bird-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.early-bird-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.offer-highlight {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.discount-badge {
    background: white;
    color: #e91e63;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
}

.offer-text {
    font-size: 1.3rem;
    font-weight: 600;
}

.faq-section {
    padding: 4rem 0;
    background: #f5f5f5;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #e91e63;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Contact Page Mobile Styles */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .contact-form-container {
        padding: 1.5rem;
    }

    .early-bird-content h2 {
        font-size: 2rem;
    }

    .offer-highlight {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .contact-form-container {
        padding: 1rem;
    }

    .early-bird-content h2 {
        font-size: 1.8rem;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #1a1a1a;
        color: #e0e0e0;
    }

    .navbar {
        background: #2d2d2d;
    }

    .service-card,
    .offer-box,
    .contact-form-container,
    .faq-item {
        background: #2d2d2d;
        color: #e0e0e0;
    }

    .services,
    .faq-section {
        background: #1a1a1a;
    }

    .contact-form-section {
        background: #1a1a1a;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        background: #333;
        color: #e0e0e0;
        border-color: #555;
    }

    .footer {
        background: #0d0d0d;
    }
}

/* About Page Styles */
.about-hero {
    margin-top: 100px;
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%);
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1rem;
}

.hero-tagline {
    font-size: 1.3rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
}

.our-story {
    padding: 4rem 0;
    background: #fff;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1.4fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
}

.story-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #e91e63;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.story-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Story Slideshow Styles */
.story-slideshow-link {
    display: block;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.story-slideshow-link:hover {
    transform: scale(1.02);
}

.story-slideshow {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.story-slideshow .slide {
    display: none;
    width: 100%;
    height: auto;
    border-radius: 15px;
    animation: fadeIn 1s ease-in-out;
}

.story-slideshow .slide.active {
    display: block;
}

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

.mission-values {
    padding: 4rem 0;
    background: #f5f5f5;
}

.mission-values h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: #e91e63;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

.what-makes-special {
    padding: 4rem 0;
    background: white;
}

.what-makes-special h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.feature-item {
    padding: 2rem;
    border-left: 4px solid #e91e63;
    background: #fafafa;
    border-radius: 0 10px 10px 0;
}

.feature-item h3 {
    color: #e91e63;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

.service-areas {
    padding: 4rem 0;
    background: #f5f5f5;
}

.service-areas h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.areas-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.areas-text h3 {
    color: #e91e63;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.areas-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.areas-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.area-column h4 {
    color: #333;
    margin-bottom: 1rem;
}

.area-column ul {
    list-style: none;
}

.area-column li {
    color: #666;
    padding: 0.3rem 0;
    padding-left: 1rem;
    position: relative;
}

.area-column li::before {
    content: '📍';
    position: absolute;
    left: 0;
}

.areas-note {
    font-style: italic;
    color: #888;
    font-size: 0.95rem;
}

.areas-map {
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    width: 100%;
}

.map-placeholder h4 {
    color: #e91e63;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: #666;
    line-height: 1.6;
}

.about-cta {
    background: linear-gradient(135deg, #e91e63, #c2185b);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #e91e63;
}

/* About Page Mobile Styles */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-text h2 {
        font-size: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

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

    .areas-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .areas-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .story-text h2,
    .mission-values h2,
    .what-makes-special h2,
    .service-areas h2 {
        font-size: 1.8rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .value-card,
    .feature-item {
        padding: 1.5rem;
    }
}

/* Setup Page Styles */
.setup-hero {
    margin-top: 100px;
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%);
    text-align: center;
}

.setup-hero h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1rem;
}

.setup-overview {
    padding: 4rem 0;
    background: #fff;
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1.4fr;
    gap: 4rem;
    align-items: center;
}

.overview-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
}

.overview-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #e91e63;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.overview-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.setup-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #e91e63;
}

.highlight-icon {
    font-size: 1.5rem;
}

.highlight-text {
    font-weight: 500;
    color: #333;
}

.overview-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Overview Video Styles */
.overview-video {
    position: relative;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    overflow: hidden;
}

.overview-video video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    background: #000;
}

/* Instagram Reel (Vertical Video) Styles */
.overview-video.instagram-reel {
    max-width: 304px;
    margin: 0 auto;
}

.overview-video.instagram-reel video {
    width: 100%;
    height: auto;
    max-height: 540px;
    object-fit: contain;
    cursor: pointer;
}

.overview-video video::-webkit-media-controls-panel {
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}

.setup-gallery {
    padding: 4rem 0;
    background: #f5f5f5;
}

.setup-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.gallery-section {
    margin-bottom: 4rem;
}

.gallery-section:last-child {
    margin-bottom: 0;
}

.gallery-section h3 {
    font-size: 2rem;
    color: #e91e63;
    margin-bottom: 1rem;
    text-align: center;
}

.gallery-section p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item.large {
    grid-column: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

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

.gallery-item.large img,
.gallery-item.wide img {
    height: 300px;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.7) 60%, transparent);
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ff4081;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    font-weight: 600;
}

.gallery-overlay p {
    font-size: 0.9rem;
    margin: 0;
    color: #ffffff;
    text-align: left;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    line-height: 1.4;
}

/* Bartending Layout Styles */
.bartending-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.bartending-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.bartending-images .gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bartending-images .gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.bartending-images .gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bartending-video {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.bartending-video-container {
    width: 100%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bartending-video-container video {
    width: 90%;
    height: 90%;
    max-height: 90%;
    object-fit: cover;
    cursor: pointer;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.setup-features {
    padding: 4rem 0;
    background: white;
}

.setup-features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.feature-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e0e0e0;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    border-color: #e91e63;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    color: #e91e63;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.tech-specs {
    padding: 4rem 0;
    background: #f5f5f5;
}

.tech-specs h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.spec-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.spec-category h3 {
    color: #e91e63;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #fce4ec;
}

.spec-category ul {
    list-style: none;
    padding: 0;
}

.spec-category li {
    color: #666;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.spec-category li:last-child {
    border-bottom: none;
}

.spec-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e91e63;
    font-weight: bold;
}

.setup-cta {
    background: linear-gradient(135deg, #e91e63, #c2185b);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.setup-cta .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.setup-cta .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Setup Page Mobile Styles */
@media (max-width: 768px) {
    .setup-hero h1 {
        font-size: 2.5rem;
    }

    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .overview-video.instagram-reel {
        max-width: 100%;
    }

    .overview-video.instagram-reel video {
        max-height: 405px;
    }

    .overview-text h2 {
        font-size: 2rem;
    }

    .setup-highlights {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.large,
    .gallery-item.wide {
        grid-column: span 1;
    }

    .bartending-layout {
        grid-template-columns: 1fr;
    }

    .bartending-video {
        min-height: 400px;
    }

    .bartending-video-container video {
        width: 100%;
        max-height: 400px;
        object-fit: contain;
    }

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

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .gallery-section h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .setup-hero h1 {
        font-size: 2rem;
    }

    .setup-gallery h2,
    .setup-features h2,
    .tech-specs h2 {
        font-size: 2rem;
    }

    .setup-cta .cta-content h2 {
        font-size: 2rem;
    }

    .feature-card,
    .spec-category {
        padding: 1.5rem;
    }

    .gallery-overlay {
        padding: 1.5rem 1rem 1rem;
    }

    .gallery-modal-content {
        max-width: 95vw !important;
        max-height: 95vh !important;
    }

    .gallery-modal-content img {
        max-height: 60vh !important;
    }

    .gallery-modal-content .modal-info {
        padding: 1rem !important;
    }

    .gallery-modal-content h3 {
        font-size: 1.2rem !important;
    }
}

/* Touch-friendly improvements for mobile */
@media (hover: none) and (pointer: coarse) {
    .gallery-overlay {
        transform: translateY(0) !important;
        background: linear-gradient(transparent, rgba(0,0,0,0.9));
        opacity: 0.9;
    }

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

    .filter-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 48px;
        min-width: 48px;
    }

    .feature-card,
    .spec-category {
        padding: 1.5rem;
    }
}

/* Landscape mobile optimization */
@media screen and (max-width: 768px) and (orientation: landscape) {
    .setup-hero {
        padding: 2rem 0 1rem;
    }

    .setup-hero h1 {
        font-size: 2rem;
    }

    .gallery-modal-content img {
        max-height: 50vh !important;
    }
}

/* Services Page Styles */
.services-hero {
    margin-top: 100px;
    padding: 4rem 0;
    background: #fce4ec;
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1rem;
}

.services-hero .hero-tagline {
    max-width: 900px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.service-packages {
    padding: 4rem 0;
    background: #fff;
}

.service-packages h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.packages-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

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

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

.package-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.package-card.platinum {
    border: 3px solid #9c27b0;
}

.package-card.gold {
    border: 3px solid #ff9800;
}

.package-card.silver {
    border: 3px solid #607d8b;
}

.package-card.trailer {
    border: 3px solid #e91e63;
}

.package-card.no-trailer {
    border: 3px solid #9c27b0;
}

/* Background Image Header Styles */
.package-header.has-background {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 3rem 2rem;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-header.has-background .package-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.package-header.has-background .header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.package-header.has-background h3 {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.package-header.has-background .package-subtitle {
    color: #fce4ec;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.package-header.has-background .package-icon {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.package-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-style: italic;
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ff9800;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: bold;
    z-index: 10;
}

.package-header {
    padding: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #fafafa, #f5f5f5);
}

.package-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.package-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.package-card.platinum h3 {
    color: #9c27b0;
}

.package-card.gold h3 {
    color: #ff9800;
}

.package-card.silver h3 {
    color: #607d8b;
}

.package-subtitle {
    color: #666;
    font-style: italic;
    margin: 0;
}

.package-content {
    padding: 1.5rem;
}

.package-features h4 {
    color: #333;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.package-features li {
    padding: 0.35rem 0;
    color: #666;
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
}

.package-features li:last-child {
    border-bottom: none;
}

.feature-category {
    margin-bottom: 1.25rem;
}

.feature-category h5 {
    color: #e91e63;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-category ul {
    margin-bottom: 0;
}

.feature-category:last-of-type {
    margin-bottom: 1.25rem;
}

.package-ideal {
    background: #f9f9f9;
    padding: 0.85rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #555;
    border-left: 4px solid #e91e63;
    line-height: 1.5;
}

.package-footer {
    padding: 2rem;
    text-align: center;
    background: #fafafa;
}

.package-btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Alcohol Policy Notice */
.alcohol-policy-notice {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 3px solid #ff9800;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.2);
}

.notice-icon {
    font-size: 3rem;
    flex-shrink: 0;
    line-height: 1;
}

.notice-content h3 {
    color: #e65100;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.notice-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.notice-content strong {
    color: #d84315;
}

.addons-section {
    padding: 4rem 0;
    background: #f5f5f5;
}

.addons-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.addons-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

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

.addon-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.addon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.addon-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.addon-card h3 {
    color: #e91e63;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.addon-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.addon-price {
    background: #e91e63;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    display: inline-block;
}

.event-types {
    padding: 4rem 0;
    background: white;
}

.event-types h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.events-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.event-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 450px;
    display: flex;
    align-items: flex-end;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.75) 100%);
    z-index: 1;
    transition: background 0.3s ease;
}

.event-card:hover .event-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.85) 100%);
}

.event-image {
    display: none;
}

.event-image img {
    display: none;
}

.event-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

.event-content h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    font-weight: 700;
}

.event-content p {
    color: #f5f5f5;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.event-features {
    list-style: none;
    padding: 0;
}

.event-features li {
    color: #ffffff;
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.event-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.service-areas-section {
    padding: 4rem 0;
    background: #f5f5f5;
}

.service-areas-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.service-areas-section h3 {
    color: #e91e63;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-areas-section p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.areas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.area-group h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.area-group ul {
    list-style: none;
    padding: 0;
}

.area-group li {
    color: #666;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.area-group li:last-child {
    border-bottom: none;
}

.areas-note {
    color: #888;
    font-size: 0.95rem;
    text-align: center;
    margin-top: 2rem;
}

.why-choose-us {
    padding: 4rem 0;
    background: white;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: #fafafa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    color: #e91e63;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

.services-cta {
    background: linear-gradient(135deg, #e91e63, #c2185b);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.services-cta .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-cta .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.early-bird-reminder {
    background: rgba(255,255,255,0.1);
    padding: 1rem 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.early-bird-reminder p {
    margin: 0;
    font-size: 1rem;
}

/* Services Page Mobile Styles */
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.5rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .packages-grid-two {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .event-card {
        min-height: 380px;
    }

    .event-content {
        padding: 1.5rem;
    }

    .event-content h3 {
        font-size: 1.5rem;
    }

    .event-content p {
        font-size: 0.95rem;
    }
}

/* Medium screens - improve readability for 2-column layout */
@media (max-width: 1024px) and (min-width: 769px) {
    .packages-grid-two {
        gap: 2rem;
    }

    .package-card {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .service-packages h2,
    .addons-section h2,
    .event-types h2,
    .service-areas-section h2,
    .why-choose-us h2 {
        font-size: 2rem;
    }

    .services-cta .cta-content h2 {
        font-size: 2rem;
    }

    .package-content,
    .package-footer {
        padding: 1.5rem;
    }

    .alcohol-policy-notice {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }

    .notice-icon {
        font-size: 2.5rem;
    }

    .notice-content h3 {
        font-size: 1.1rem;
    }

    .notice-content p {
        font-size: 0.95rem;
    }

    .addon-card,
    .benefit-item {
        padding: 1.5rem;
    }

    .early-bird-reminder {
        padding: 1rem;
    }
}

/* FAQ Page Styles */
.faq-hero {
    margin-top: 100px;
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%);
    text-align: center;
}

.faq-hero h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1rem;
}

.hero-tagline a {
    color: #e91e63;
    text-decoration: none;
    font-weight: 600;
}

.hero-tagline a:hover {
    text-decoration: underline;
}

.faq-categories {
    padding: 2rem 0;
    background: white;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 100px;
    z-index: 100;
}

.faq-categories h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.categories-grid {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e91e63;
    background: transparent;
    color: #e91e63;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-btn.active,
.category-btn:hover {
    background: #e91e63;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.faq-content {
    padding: 4rem 0;
    background: #f5f5f5;
}

.faq-section {
    margin-bottom: 4rem;
}

.faq-section:last-of-type {
    margin-bottom: 2rem;
}

.faq-section h2 {
    font-size: 2rem;
    color: #e91e63;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #e91e63;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-question h3 {
    color: #333;
    font-size: 1.2rem;
    margin: 0;
    flex-grow: 1;
    padding-right: 1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #e91e63;
    font-weight: bold;
    transition: transform 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fce4ec;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: #e91e63;
    color: white;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
    opacity: 1;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.faq-answer strong {
    color: #e91e63;
}

.still-questions {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.still-questions h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.still-questions p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.question-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.quick-tips {
    padding: 4rem 0;
    background: white;
}

.quick-tips h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.tip-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border-left: 4px solid #e91e63;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.tip-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tip-card h3 {
    color: #e91e63;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.tip-card p {
    color: #666;
    line-height: 1.6;
}

/* FAQ Page Mobile Styles */
@media (max-width: 768px) {
    .faq-hero h1 {
        font-size: 2.5rem;
    }

    .faq-categories {
        position: static;
        padding: 2rem 0;
    }

    .categories-grid {
        gap: 0.5rem;
    }

    .category-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .faq-section h2 {
        font-size: 1.8rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: 1.1rem;
        padding-right: 0.5rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .question-actions {
        flex-direction: column;
        align-items: center;
    }

    .question-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .faq-hero h1 {
        font-size: 2rem;
    }

    .quick-tips h2 {
        font-size: 2rem;
    }

    .still-questions {
        padding: 2rem;
    }

    .tip-card {
        padding: 1.5rem;
    }

    .categories-grid {
        justify-content: center;
    }

    .category-btn {
        flex: 1;
        min-width: 120px;
    }
}