html { font-size: 93.75%; }
/* Additional Google Fonts for extended weights */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;800;900&family=Playfair+Display:wght@500;600;800;900&family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@400;600;700&display=swap');
/* CSS Variables for Common Values */
:root {
    --bounce-ease: cubic-bezier(0.34, 1.56, 0.64, 1);
    --smooth-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --primary-gradient: linear-gradient(135deg, #D31789 0%, #F06292 100%);
    --secondary-gradient: linear-gradient(135deg, #D31789, #ff6b9d);
    --primary-color: #D31789;
    --secondary-color: #ff6b9d;
    --accent-color: #F06292;
    --primary-shadow: rgba(211, 23, 137, 0.3);
    --transition-smooth: all 0.3s ease;
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 25px;
    --radius-xl: 30px;
}
/* Base Grid Utilities */
.grid-base { display: grid; gap: 1.5rem; }
.grid-responsive-280 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-responsive-260 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-responsive-250 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid-responsive-220 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid-responsive-200 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
/* Image Carousel Styles */
.gallery-container {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}
.image-gallery {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    flex: 1;
    scrollbar-width: none;
}
.image-gallery::-webkit-scrollbar {
    display: none;
}
.gallery-image {
    flex: 0 0 360px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    background: #f0f0f0;
}
.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.scroll-arrow {
    background: var(--secondary-color);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.scroll-arrow:hover {
    background: #ff5283;
    transform: scale(1.1);
}
.scroll-arrow:active {
    transform: scale(0.95);
}
/* Mobile Touch Optimization for Carousel */
@media (max-width: 768px) {
    .scroll-arrow {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }
    .gallery-image {
        flex: 0 0 280px;
        height: 240px;
    }
    .image-gallery {
        gap: 12px;
    }
}
@media (max-width: 480px) {
    .scroll-arrow {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    .gallery-image {
        flex: 0 0 220px;
        height: 200px;
    }
    .gallery-container {
        gap: 8px;
    }
}
/* Booking Button Enhancements */
.btn-primary, .btn-secondary {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    user-select: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.btn-primary:active, .btn-secondary:active {
    transform: translateY(1px);
}
.btn-primary.loading, .btn-secondary.loading {
    opacity: 0.7;
    pointer-events: none;
}
/* Mobile-only menu items */
.mobile-only {
    display: none;
}
@media (max-width: 768px) {
    .mobile-only {
        display: block !important;
        border-top: 1px solid #f0f0f0;
    }
    .mobile-book-btn {
        background: #FF6B35 !important;
        color: white !important;
        margin: 10px 20px !important;
        padding: 12px 20px !important;
        border-radius: 8px !important;
        text-align: center !important;
        font-weight: 600 !important;
    }
    .mobile-phone-btn {
        background: #4A90E2 !important;
        color: white !important;
        margin: 10px 20px !important;
        padding: 12px 20px !important;
        border-radius: 8px !important;
        text-align: center !important;
        font-weight: 600 !important;
    }
    .btn-primary, .btn-secondary, .btn-service {
        min-height: 48px;
        min-width: 48px;
        padding: 14px 20px !important;
        font-size: 16px;
        touch-action: manipulation;
    }
    .btn-large {
        min-height: 52px;
        padding: 16px 24px !important;
        font-size: 16px;
    }
    /* Improve touch targets for navigation */
    .nav-link {
        min-height: 48px;
        display: flex;
        align-items: center;
        padding: 16px 24px;
    }
}
@media (max-width: 480px) {
    .btn-primary, .btn-secondary, .btn-service {
        width: 100% !important;
        min-height: 48px;
        padding: 12px 20px !important;
        font-size: 15px !important;
    }
    .btn-large {
        width: 100% !important;
        min-height: 50px;
        padding: 14px 20px !important;
        font-size: 15px !important;
    }
}
/* Booking specific styles */
a[href*="tripworks"] {
    transition: all 0.3s ease;
}
a[href*="tripworks"]:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
/* Original Hawaii Fluid Art Fonts */
/* Original Site Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Oxygen-Sans', Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: #2d3748;
    margin-bottom: 0.8em;
}
h1 { font-size: 3rem; font-weight: 700; }
h2 { font-size: 2.25rem; font-weight: 700; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.3rem; font-weight: 600; }
h5 { font-size: 1.15rem; font-weight: 600; }
h6 { font-size: 1rem; font-weight: 600; }
/* Mobile Typography Scaling */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.35rem; }
    h4 { font-size: 1.15rem; }
    h5 { font-size: 1.05rem; }
    h6 { font-size: 0.95rem; }
}
@media (max-width: 480px) {
    h1 { font-size: 1.8rem; line-height: 1.2; }
    h2 { font-size: 1.5rem; line-height: 1.2; }
    h3 { font-size: 1.2rem; line-height: 1.3; }
    h4 { font-size: 1.05rem; }
    h5 { font-size: 1rem; }
    body {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    ul, ol {
        font-size: 0.95rem;
        margin-left: 1.5rem;
    }
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Oxygen-Sans', Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #3a3a3a;
    font-weight: 400;
}
p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}
ul, ol {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-left: 2rem;
}
ul li, ol li {
    margin-bottom: 0.8rem;
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}
/* Checkmarks only for content lists, not navigation */
.features ul li:before,
.benefits ul li:before,
.highlights ul li:before {
    content: '\2713';
    color: #D31789;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}
a {
    font-family: 'Poppins', sans-serif;
    color: #D31789;
    transition: color 0.3s ease;
}
a:hover {
    color: #4ecdc4;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.find-studio-btn {
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: white;
    padding: 10px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}
.find-studio-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f06292, #ff8fab);
    transition: left 0.3s ease;
    z-index: -1;
}
.find-studio-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.5);
    color: white;
    letter-spacing: 2px;
}
.find-studio-btn:hover::before {
    left: 0;
}
.nav-cta {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}
/* Glass Header and Navigation */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    margin: 15px 100px;
    position: fixed;
    width: calc(100% - 200px);
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.navbar {
    padding: 0;
}
.nav-container {
    max-width: none;
    margin: 0;
    padding: 12px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}
.nav-logo {
    flex: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo {
    height: 65px;
    width: auto;
    max-width: 250px;
}
.nav-menu-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    flex-wrap: nowrap;
}
.nav-item {
    position: relative;
}
.nav-link {
    text-decoration: none;
    color: #2d3748;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.nav-link:hover {
    color: #4ecdc4;
    transform: translateY(-1px);
}
.dropdown {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-radius: 6px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    list-style: none;
    padding: 6px 0;
    border: 1px solid #f1f5f9;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li {
    padding: 0;
}
.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: #2d3748;
    text-decoration: none;
    transition: all 0.15s ease;
    font-size: 15px;
    font-weight: 500;
    position: relative;
}
.dropdown-menu a:hover {
    background: linear-gradient(90deg, #4ecdc4, #44a08d);
    color: white;
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(78, 205, 196, 0.3);
}
/* Base Button Styles */
.btn-primary,
.btn-secondary,
.btn-service {
    color: white;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all 0.3s var(--bounce-ease);
    font-weight: 700;
    cursor: pointer;
    display: inline-block;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    padding: 0.75rem 1.5rem;
}
/* Primary Button - Larger, more prominent */
.btn-primary {
    background: var(--primary-gradient) !important;
    padding: 1rem 2rem !important;
    border-radius: var(--radius-xl) !important;
    font-size: 16px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 4px 15px var(--primary-shadow) !important;
}
/* Secondary & Service Buttons - Same styling */
.btn-secondary,
.btn-service {
    background: var(--secondary-gradient);
}
/* Full-width button for service cards */
.service-content .btn-primary {
    display: block !important;
    width: 100% !important;
    padding: 0.65rem 1.5rem !important;
    font-size: 14px !important;
    margin-top: auto;
}
/* Shared Button Hover Effects */
.btn-primary::before,
.btn-secondary::before,
.btn-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.3s ease;
    z-index: -1;
}
.btn-primary::before {
    background: linear-gradient(135deg, #ff6b9d, #D31789);
}
.btn-secondary::before,
.btn-service::before {
    background: linear-gradient(135deg, #ff6b9d, #D31789);
}
.btn-primary:hover {
    transform: translateY(-4px) scale(1.05) !important;
    box-shadow: 0 12px 40px rgba(211, 23, 137, 0.5) !important;
    letter-spacing: 1.5px !important;
}
.btn-secondary:hover,
.btn-service:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(211, 23, 137, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
}
.btn-primary:hover::before,
.btn-secondary:hover::before,
.btn-service:hover::before {
    left: 0;
}
/* Shared Button States */
.btn-primary:focus,
.btn-secondary:focus,
.btn-service:focus {
    outline: 2px solid rgba(211, 23, 137, 0.5);
    outline-offset: 2px;
}
.btn-primary:active,
.btn-secondary:active,
.btn-service:active {
    transform: translateY(-2px) scale(0.98) !important;
}
.btn-large {
    padding: 1.2rem 3rem !important;
    font-size: 17px !important;
    font-weight: 800 !important;
}
.btn-secondary:hover::before {
    left: 0;
}
/* Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}
.bar {
    width: 22px;
    height: 2px;
    background: #374151;
    margin: 3px 0;
    transition: 0.3s ease;
    border-radius: 1px;
}
/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    padding: 60px 20px 50px;
    margin-top: 70px;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1a4d 50%, #16213e 100%);
    background-attachment: fixed;
    color: white;
    position: relative;
    overflow: hidden;
    text-align: center;
}
@keyframes fluidFlow {
    0%, 100% { background-position: 0% 0%, 100% 100%, 50% 50%, 80% 20%, center; }
    25% { background-position: 20% 10%, 80% 90%, 30% 70%, 90% 10%, center; }
    50% { background-position: 10% 20%, 90% 80%, 70% 30%, 70% 30%, center; }
    75% { background-position: 30% 5%, 70% 95%, 40% 60%, 85% 15%, center; }
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}
.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
    text-align: center;
}
.hero h1 {
    font-size: 4.2rem;
    margin-bottom: 0.3rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.8);
    animation: fadeInUp 1s ease-out;
    letter-spacing: -0.01em;
}
.hero-main-title {
    font-size: 4.2rem;
    margin-top: 5rem;
    margin-bottom: 0.3rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.8);
    animation: fadeInUp 1s ease-out;
    letter-spacing: -0.5px;
    text-align: center;
}
.hero-accent {
    display: inline-block;
    margin: 0 12px;
    font-size: 3.5rem;
    animation: float 3s ease-in-out infinite;
}
.hero-accent:nth-child(3) {
    animation-delay: 0.5s;
}
.hero h2 {
    font-size: 3.8rem;
    margin-bottom: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #00e6cc;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    animation: fadeInUp 1s ease-out 0.2s both;
    letter-spacing: -0.01em;
}
.hero-subtitle-main {
    font-size: 3.8rem;
    margin-bottom: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #00e6cc;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    animation: fadeInUp 1s ease-out 0.2s both;
    letter-spacing: -0.01em;
}
.hero-swoop {
    width: 300px;
    height: auto;
    margin: 0 auto 1.5rem;
    display: block;
    animation: fadeInUp 1s ease-out 0.4s both;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-style: normal;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}
.hero-description {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}
.hero-image {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}
.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
/* Services Section */
.services {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, rgba(78, 205, 196, 0.05) 100%);
}
.services h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.5px;
}
.services-title {
    position: relative;
    padding-bottom: 15px;
}
/* Service Icon Styles for Pricing Tiers */
.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #D31789 0%, #ff6b9d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(211, 23, 137, 0.35);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.services .service-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(211, 23, 137, 0.1);
    position: relative;
}
.services .service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(211, 23, 137, 0.2);
    border-color: #D31789;
    background: linear-gradient(135deg, #ffffff 0%, #fff8fb 100%);
}
.services .service-card:hover .service-icon {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 10px 30px rgba(211, 23, 137, 0.5);
}
.services .service-card h3 {
    color: #D31789;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    font-family: 'Poppins', sans-serif;
}
.services .service-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}
/* CTA Section */
.cta-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #D31789 0%, #F06292 50%, #4ecdc4 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}
.cta-section h2 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}
.cta-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}
/* Footer */
.footer {
    background: linear-gradient(135deg, #0f1419 0%, #1a1f3a 25%, #16213e 50%, #0d2d4a 75%, #0a1f2e 100%);
    color: white;
    padding: 30px 20px 0;
    position: relative;
    overflow: visible;
    z-index: 100;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D31789 0%, #4ecdc4 50%, #D31789 100%);
}
.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #4ecdc4 50%, transparent);
}
.footer-content {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 1.2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
    align-items: stretch;
}
.footer-section {
    padding: 1.2rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(78, 205, 196, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}
.footer-section:hover {
    background: rgba(78, 205, 196, 0.1);
    border-color: rgba(78, 205, 196, 0.5);
    transform: translateY(-5px);
}
.footer-section h3 {
    margin-bottom: 1.8rem;
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-section h3 i {
    color: #4ecdc4;
    font-size: 1.3rem;
}
.footer-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #ccc;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.8rem;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.footer-logo {
    height: 60px;
    width: auto;
    max-width: 120px;
    display: block;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    object-fit: contain;
}
.seo-description {
    font-size: 0.95rem;
    color: #bbb;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-family: 'Poppins', sans-serif;
    max-width: 350px;
}
.footer-logo:hover {
    transform: scale(1.05);
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    background: rgba(78, 205, 196, 0.08);
    transition: all 0.3s ease;
    border-left: 3px solid #4ecdc4;
}
.contact-item:hover {
    background: rgba(78, 205, 196, 0.15);
    transform: translateX(5px);
}
.contact-item i {
    color: #4ecdc4;
    font-size: 1.3rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
}
.contact-item a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.6;
    transition: color 0.3s ease;
    font-weight: 500;
}
.contact-item a:hover {
    color: #4ecdc4;
}
.hours-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.4rem;
}
.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    background: transparent;
    font-size: 0.85rem;
    border-left: none;
    transition: all 0.3s ease;
}
.hour-item:hover {
    background: rgba(78, 205, 196, 0.15);
    transform: translateX(5px);
}
.hour-item .day {
    font-weight: 700;
    color: #4ecdc4;
    font-family: 'Poppins', sans-serif;
    min-width: 80px;
    font-size: 1rem;
}
.hour-item .time {
    color: #4ecdc4;
    font-size: 0.95rem;
    font-weight: 600;
}
/* Footer specific hours styling */
footer .hour-item {
    background: rgba(255, 255, 255, 0.08);
    border-left-color: #4ecdc4;
}
footer .hour-item .day {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    min-width: 35px;
}
footer .hour-item .time {
    color: #ccc;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    text-align: right;
}
.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #D31789, #4ecdc4);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}
.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(78, 205, 196, 0.3);
}
.social-link.tiktok {
    background: linear-gradient(135deg, #000000, #25f4ee);
}
.social-link.tiktok:hover {
    box-shadow: 0 8px 20px rgba(37, 244, 238, 0.3);
}
.footer-newsletter-mobile {
    display: none;
}
.footer-newsletter-desktop {
    padding: 2rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(78, 205, 196, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.3s ease;
}
.footer-newsletter-desktop:hover {
    background: rgba(78, 205, 196, 0.1);
    border-color: rgba(78, 205, 196, 0.5);
    transform: translateY(-5px);
}
.footer-newsletter-desktop h4,
.footer-newsletter-mobile h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.newsletter-form {
    display: flex;
    gap: 0.3rem;
    margin-top: 1rem;
    width: 100%;
    max-width: 280px;
}
.newsletter-form input {
    flex: 1;
    min-width: 0;
    padding: 0.6rem 0.8rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}
.newsletter-form input::placeholder {
    color: #aaa;
}
.newsletter-form input:focus {
    outline: none;
    border-color: #4ecdc4;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 10px rgba(78, 205, 196, 0.3);
}
.newsletter-form button {
    background: linear-gradient(135deg, #D31789, #4ecdc4);
    color: white;
    border: none;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    white-space: nowrap;
    height: fit-content;
}
.newsletter-btn {
    padding: 0.45rem 0.7rem !important;
    font-size: 0.7rem !important;
    min-width: fit-content !important;
}
.newsletter-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(211, 23, 137, 0.3);
}
.newsletter-form button:active {
    transform: translateY(-1px);
}
.newsletter-simple {
    display: flex;
    gap: 0.3rem;
    margin-top: 0.8rem;
    max-width: 200px;
}
.newsletter-input-simple {
    flex: 1;
    min-width: 0;
    padding: 0.4rem 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}
.newsletter-input-simple::placeholder {
    color: #999;
}
.newsletter-input-simple:focus {
    outline: none;
    border-color: #4ecdc4;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 8px rgba(78, 205, 196, 0.2);
}
.newsletter-btn-simple {
    background: linear-gradient(135deg, #D31789, #4ecdc4);
    color: white;
    border: none;
    padding: 0.4rem 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: fit-content;
}
.newsletter-btn-simple:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(211, 23, 137, 0.4);
}
.footer-bottom {
    text-align: center;
    padding: 3rem 2rem;
    border-top: 2px solid rgba(78, 205, 196, 0.3);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(78, 205, 196, 0.02);
}
.footer-bottom p {
    margin: 0;
    font-size: 1rem;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0.3px;
}
/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #D31789 0%, #F06292 50%, #4ecdc4 100%);
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(78,205,196,0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(211,23,137,0.15) 0%, transparent 50%);
    pointer-events: none;
}
.page-hero .container {
    position: relative;
    z-index: 1;
}
.page-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    animation: slideInDown 0.8s ease-out;
}
.page-hero p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 1;
    color: white;
    max-width: 600px;
    margin: 0 auto 1.5rem auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    animation: slideInUp 0.8s ease-out 0.2s both;
}
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Class Details */
.class-details {
    padding: 70px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, rgba(78, 205, 196, 0.08) 50%, rgba(211, 23, 137, 0.05) 100%);
    position: relative;
    overflow: hidden;
}
.class-details::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(78,205,196,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.class-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.class-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #D31789;
    font-family: 'Poppins', sans-serif;
    position: relative;
    padding-bottom: 15px;
}
.class-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #D31789, #4ecdc4);
    border-radius: 2px;
}
.class-info p {
    margin-bottom: 1.5rem;
    line-height: 1.85;
    color: #555;
    font-size: 1.05rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}
.class-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(211, 23, 137, 0.15);
}
.class-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}
.class-image:hover img {
    transform: scale(1.05);
}
.stacked-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.stacked-images img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(211, 23, 137, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}
.stacked-images img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(211, 23, 137, 0.3);
}
.pricing-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 5px solid #4ecdc4;
}
.pricing-box h3 {
    margin-bottom: 1rem;
    color: #333;
}
.price-items {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}
.price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.price-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}
.price-amount {
    font-size: 2rem;
    font-weight: bold;
    color: #4ecdc4;
}
.price-duration {
    font-size: 0.85rem;
    color: #999;
    margin-top: 0.3rem;
}
.duration {
    color: #666;
    font-style: italic;
}
.class-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, rgba(211, 23, 137, 0.05) 100%);
}
.faq-intro {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.faq-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #D31789, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.faq-intro p {
    font-size: 1.1rem;
    color: #555;
    font-weight: 500;
    line-height: 1.8;
}
.faq-container {
    max-width: 850px;
    margin: 0 auto;
}
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 4px solid #D31789;
}
.faq-item:hover {
    box-shadow: 0 8px 25px rgba(211, 23, 137, 0.15);
    transform: translateY(-2px);
}
.faq-question {
    width: 100%;
    padding: 1.8rem 1.5rem;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    font-size: 1.15rem;
    font-weight: 600;
    color: #333;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    text-align: left !important;
    line-height: 1.6;
}
.faq-question span {
    flex: 1;
}
.faq-question i:last-child {
    margin-left: auto;
}
.faq-question span {
    flex: 1;
}
.faq-question:hover {
    background: linear-gradient(to right, rgba(211, 23, 137, 0.03), transparent);
    color: #D31789;
}
.faq-question span {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex: 1;
    justify-content: flex-start;
}
.faq-question i:first-child {
    color: #D31789;
    font-size: 1.5rem;
    flex-shrink: 0;
    min-width: 25px;
    text-align: center;
}
.faq-question i:last-child {
    transition: transform 0.3s ease;
    color: #4ecdc4;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-left: auto;
}
.faq-question[aria-expanded="true"] i:last-child {
    transform: rotate(180deg);
}
.faq-answer {
    padding: 1.8rem;
    border-top: 1px solid #e8eef5;
    background: linear-gradient(to right, rgba(211, 23, 137, 0.02), white);
    color: #555;
    line-height: 1.85;
    font-size: 1.05rem;
    font-family: 'Poppins', sans-serif;
    animation: slideDown 0.3s ease;
}
.faq-answer a {
    color: #D31789;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}
.faq-answer a:hover {
    opacity: 0.8;
    text-decoration: underline;
}
/* FAQ Tabs */
.faq-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.faq-tab-btn {
    padding: 0.9rem 2rem;
    border: 2px solid #e8eef5;
    background: white;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}
.faq-tab-btn:hover {
    border-color: #D31789;
    color: #D31789;
    background: rgba(211, 23, 137, 0.05);
}
.faq-tab-btn.active {
    background: linear-gradient(135deg, #D31789, #4ecdc4);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(211, 23, 137, 0.3);
}
.faq-item[data-category] {
    display: none;
}
.faq-item[data-category].active-category {
    display: block;
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* Modern FAQ Section */
.faq-section-modern {
    padding: 30px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, rgba(211, 23, 137, 0.05) 100%);
}
.faq-header {
    text-align: center;
    margin-bottom: 3.5rem;
    padding: 0 20px;
}
.faq-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #D31789, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.faq-header p {
    font-size: 1.15rem;
    color: #666;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}
.faq-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #D31789;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}
.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(211, 23, 137, 0.15);
}
.faq-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.faq-card-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}
.faq-detail {
    border: 1px solid #e8eef5;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-detail:hover {
    border-color: #D31789;
    box-shadow: 0 3px 12px rgba(211, 23, 137, 0.1);
}
.faq-detail[open] {
    border-color: #D31789;
    background: linear-gradient(to right, rgba(211, 23, 137, 0.02), white);
}
.faq-summary {
    padding: 1.2rem 1.5rem;
    background: white;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Poppins', sans-serif;
    list-style: none;
    transition: all 0.3s ease;
}
.faq-summary::-webkit-details-marker {
    display: none;
}
.faq-summary::before {
    content: '▼';
    color: #D31789;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.faq-detail[open] .faq-summary::before {
    transform: rotate(180deg);
}
.faq-summary:hover {
    background: rgba(211, 23, 137, 0.03);
    color: #D31789;
}
.faq-detail p {
    padding: 1.2rem 1.5rem;
    color: #555;
    line-height: 1.8;
    font-size: 0.95rem;
    border-top: 1px solid #e8eef5;
    animation: slideDown 0.3s ease;
}
.faq-detail p a {
    color: #D31789;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.faq-detail p a:hover {
    text-decoration: underline;
    opacity: 0.8;
}
/* Tablet Layout (1024px) */
@media (max-width: 1024px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .faq-header h2 {
        font-size: 2rem;
    }
    .faq-accordion {
        min-height: auto;
    }
    .faq-item {
        overflow: hidden;
    }
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .faq-item.expanded .faq-answer {
        max-height: 1000px;
    }
}
.faq-gallery {
    margin-top: 6rem;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(211, 23, 137, 0.08) 0%, rgba(78, 205, 196, 0.08) 100%);
    border-radius: 16px;
}
.faq-gallery h2 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: #333;
    font-family: 'Poppins', sans-serif;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 280px;
}
.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.faq-item ul {
    padding-left: 1.5rem;
}
.faq-item li {
    margin-bottom: 0.5rem;
}
/* Contact Page */
.contact-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, rgba(78, 205, 196, 0.05) 100%);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}
.contact-item i {
    font-size: 1.5rem;
    color: #4ecdc4;
    margin-top: 0.25rem;
}
.contact-item h3 {
    margin-bottom: 0.5rem;
    color: #333;
}
.contact-item p {
    color: #666;
    margin: 0;
}
.contact-item a {
    color: #4ecdc4;
    text-decoration: none;
}
.hours-section {
    margin: 2rem 0;
}
.hours-section h3 {
    margin-bottom: 1rem;
    color: #333;
}
.hours-grid {
    display: grid;
    gap: 0.5rem;
}
.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}
.day {
    font-weight: 600;
    color: #333;
}
.time {
    color: #666;
}
.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.hours-table tbody tr {
    border-bottom: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}
.hours-table tbody tr:last-child {
    border-bottom: none;
}
.hours-table tbody tr:hover {
    background-color: #f0f5ff;
}
.hours-table td {
    padding: 1.2rem 1.5rem;
}
.hours-table .day {
    font-weight: 700;
    color: #1a1a1a;
    min-width: 100px;
    font-size: 1.05rem;
}
.hours-table .time {
    color: #ff6b9d;
    text-align: right;
    font-size: 1rem;
    font-weight: 600;
}
.hours-day {
    font-weight: 600;
    color: #333;
    min-width: 120px;
}
.hours-time {
    color: #666;
    text-align: right;
}
.day-cell {
    font-weight: 700;
    color: #2d3748;
    font-family: 'Poppins', sans-serif;
}
.time-cell {
    color: #ff6b9d;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}
.social-section h3 {
    margin-bottom: 1rem;
    color: #333;
}
.social-section .social-links {
    flex-direction: column;
    gap: 0.5rem;
}
.social-section .social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: auto;
    height: auto;
    background: none;
    color: #4ecdc4;
    border-radius: 0;
    text-decoration: none;
    padding: 0.5rem 0;
}
/* Contact Form */
.contact-form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}
.contact-form {
    display: grid;
    gap: 1.5rem;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    min-height: 44px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4ecdc4;
}
/* Mobile form input improvements */
@media (max-width: 768px) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 48px;
        font-size: 16px;
        padding: 12px;
    }
    .form-group label {
        margin-bottom: 0.75rem;
        font-size: 1rem;
    }
    .form-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }
}
/* Form Row Responsive */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
/* Newsletter Section */
.newsletter-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    text-align: center;
    color: white;
}
.newsletter-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.newsletter-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}
.newsletter-signup {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
}
.newsletter-signup input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}
.newsletter-signup button {
    padding: 1rem 2rem;
    white-space: nowrap;
}
/* Booking Widget Section */
.booking-widget-section {
    padding: 15px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, rgba(211, 23, 137, 0.05) 100%);
    color: #333;
}
.booking-header {
    text-align: center;
    margin-bottom: 2rem;
}
.booking-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}
.booking-accent {
    display: inline-block;
    margin: 0 12px;
    font-size: 2.2rem;
    animation: float 3s ease-in-out infinite;
    font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
    line-height: 1;
}
.booking-accent:nth-child(3) {
    animation-delay: 0.5s;
}
.booking-widget-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #1a1a2e;
}
.booking-subtitle {
    font-size: 1.3rem;
    color: #D31789;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}
.booking-description {
    text-align: center;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
    font-family: 'Poppins', sans-serif;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.booking-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.booking-category {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    padding: 1.2rem 1.2rem;
    border-radius: 18px;
    text-align: center;
    border: 2px solid rgba(211, 23, 137, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.booking-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D31789 0%, #4ecdc4 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.booking-category:hover::before {
    transform: scaleX(1);
}
.booking-category:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(211, 23, 137, 0.25);
    border-color: #D31789;
    background: linear-gradient(135deg, #ffffff 0%, #fff0f5 100%);
}
.booking-icon {
    font-size: 2.8rem;
    display: block;
    margin-bottom: 0.7rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.booking-category:hover .booking-icon {
    transform: scale(1.25) rotate(8deg);
}
.booking-category h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    color: #D31789;
    letter-spacing: 0.5px;
}
.booking-category p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    flex-grow: 1;
}
/* Booking Category Button Variant */
.booking-category .btn-secondary {
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
}
/* Location Section */
.location-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, rgba(78, 205, 196, 0.05) 100%);
}
.location-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}
.location-section > .container > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #666;
}
.location-intro {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.location-address-card {
    background: linear-gradient(135deg, #D31789 0%, #4ecdc4 100%);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: white;
    flex: 0 1 auto;
    min-width: 280px;
    box-shadow: 0 10px 30px rgba(211, 23, 137, 0.2);
    transition: all 0.4s ease;
}
.location-address-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(211, 23, 137, 0.3);
}
.address-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}
.address-content h3 {
    color: white;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}
.address-link {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}
.address-link:hover {
    text-decoration: underline;
    opacity: 0.95;
}
.location-description {
    flex: 1;
    min-width: 280px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    font-family: 'Poppins', sans-serif;
}
@media (max-width: 768px) {
    .location-intro {
        flex-direction: column;
        gap: 1.5rem;
    }
    .location-address-card {
        width: 100%;
        min-width: auto;
    }
    .location-description {
        width: 100%;
        min-width: auto;
    }
}
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}
.location-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(211, 23, 137, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}
.location-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.4s ease;
}
.location-item:hover .location-icon {
    transform: scale(1.15) rotate(5deg);
}
.location-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D31789 0%, #4ecdc4 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.location-item:hover::before {
    transform: scaleX(1);
}
.location-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(211, 23, 137, 0.2);
    border-color: rgba(211, 23, 137, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #fff5f8 100%);
}
.location-item h3 {
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
}
.location-item p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}
.location-section strong {
    color: #333;
}
/* CTA Section Styles */
.cta-section {
    background: linear-gradient(135deg, rgba(211, 23, 137, 0.08) 0%, rgba(78, 205, 196, 0.08) 100%);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 2rem;
    border: 2px solid rgba(211, 23, 137, 0.15);
}
.cta-content {
    max-width: 100%;
}
.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.8rem;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}
.cta-subtitle {
    font-size: 1.2rem;
    color: #D31789;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}
.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.cta-feature {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 4px solid #D31789;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}
.cta-feature:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(211, 23, 137, 0.15);
}
.feature-icon {
    font-size: 1.5rem;
    color: #4ecdc4;
    font-weight: 700;
    flex-shrink: 0;
}
.feature-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
}
.feature-text strong {
    color: #1a1a2e;
    font-weight: 600;
}
.cta-closing {
    text-align: center;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    background: linear-gradient(135deg, #D31789 0%, #4ecdc4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}
/* Gallery Styles */
.gallery-intro {
    padding: 40px 0;
    text-align: center;
}
.gallery-intro p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    font-family: 'Poppins', sans-serif;
}
.gallery-section {
    padding: 0 0 80px;
}
.video-section {
    padding: 0 0 80px;
    display: none;
}
.video-section.active {
    display: block;
}
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.filter-btn {
    background: transparent;
    border: 2px solid #4ecdc4;
    color: #4ecdc4;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}
.filter-btn:hover,
.filter-btn.active {
    background: #4ecdc4;
    color: white;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.gallery-item:hover {
    transform: translateY(-10px);
}
.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}
.gallery-overlay h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}
.gallery-overlay p {
    margin: 0;
    opacity: 0.9;
}
/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
}
.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2001;
}
.lightbox-close:hover {
    opacity: 0.7;
}
#lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 10px;
}
.lightbox-info {
    text-align: center;
    color: white;
    margin-top: 1rem;
}
.lightbox-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}
.lightbox-info p {
    opacity: 0.8;
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}
.lightbox-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.3s ease;
}
.lightbox-btn:hover {
    background: rgba(255,255,255,0.3);
}
/* Mobile Responsive */
@media (max-width: 768px) {
    .header {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 0;
        margin: 0;
        width: 100%;
        padding: 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        min-height: 65px;
    }
    main {
        margin-top: 75px;
    }
    .nav-container {
        padding: 12px 15px;
        gap: 0;
        justify-content: center;
        align-items: center;
        position: relative;
        display: flex;
        min-height: 65px;
    }
    .nav-logo {
        order: 2;
        flex: 0;
        height: 45px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    .logo {
        height: 45px;
        max-width: 120px;
        width: auto;
    }
    .nav-menu-wrapper {
        display: flex !important;
    }
    .nav-cta {
        display: block !important;
        position: fixed;
        bottom: 5px;
        right: 15px;
        z-index: 1001;
        margin: 0;
        padding: 0;
    }
    .nav-cta .find-studio-btn {
        background: #D31789;
        color: white;
        padding: 8px 12px;
        border-radius: 12px;
        box-shadow: 0 2px 6px rgba(211, 23, 137, 0.3);
        font-weight: 600;
        font-size: 10px;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        white-space: nowrap;
        min-height: 20px;
    }
    .hamburger {
        order: 1;
        display: flex;
        cursor: pointer;
        flex-direction: column;
        gap: 5px;
        position: absolute;
        left: 15px;
    }
    .bar {
        width: 24px;
        height: 3px;
        background-color: #333;
        border-radius: 2px;
        transition: 0.3s;
    }
    .nav-menu {
        position: fixed;
        left: -70vw;
        top: 65px;
        flex-direction: column;
        background: #f8f9fa;
        width: 70vw;
        max-width: 280px;
        height: calc(100vh - 65px);
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        padding: 0;
        gap: 0;
        z-index: 998;
        overflow-y: auto;
        display: flex !important;
        padding-bottom: 160px;
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-menu li {
        margin: 0;
        width: 100%;
    }
    .nav-menu .dropdown {
        display: flex;
        flex-direction: column;
    }
    .nav-menu .nav-link {
        padding: 16px 20px;
        display: block;
        font-size: 16px;
        color: #374151;
        border-bottom: 1px solid #f9fafb;
    }
    .dropdown-menu {
        position: static !important;
        background: transparent;
        box-shadow: none;
        border: none;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        padding: 0;
        display: none !important;
        flex-direction: column;
        list-style: none;
        margin: 0;
        width: 100%;
        max-width: 100%;
    }
    .dropdown.active .dropdown-menu {
        display: flex !important;
    }
    .dropdown-menu li {
        width: 100%;
        margin: 0;
        padding: 0 !important;
    }
    .dropdown-menu a {
        padding: 10px 20px 10px 30px;
        font-size: 14px;
        color: #666;
        display: block;
        border: none;
        position: relative;
        transition: color 0.2s ease;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    .dropdown-menu a:hover {
        background: transparent;
        color: #D31789;
    }
    .nav-divider {
        height: 1px;
        background: #e0e0e0;
        margin: 16px 0;
        list-style: none;
    }
    .phone-item {
        position: fixed;
        bottom: 65px;
        left: 0;
        width: 85vw;
        max-width: 340px;
        padding-top: 16px;
        border-top: 1px solid #e0e0e0;
        background: white;
        z-index: 999;
    }
    .phone-link {
        padding: 12px 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        color: #D31789;
        text-decoration: none;
        font-weight: 600;
        font-size: 15px;
    }
    .phone-link i {
        font-size: 16px;
    }
    .book-now-mobile {
        display: block;
        width: 100%;
        padding: 14px 20px;
        background: linear-gradient(135deg, #D31789 0%, #E85BA0 100%);
        color: white;
        text-decoration: none;
        font-weight: 600;
        font-size: 15px;
        border-radius: 25px;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(211, 23, 137, 0.3);
    }
    .book-now-mobile:hover {
        background: linear-gradient(135deg, #E85BA0 0%, #D31789 100%);
        box-shadow: 0 6px 20px rgba(211, 23, 137, 0.4);
        transform: translateY(-2px);
    }
    .nav-menu.active {
        left: 0;
    }
    .hamburger {
        display: flex;
        order: 2;
        margin-left: 0;
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 10px 20px 30px !important;
        min-height: auto !important;
        margin-top: 70px !important;
    }
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    .hero h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    .hero-image {
        max-height: 300px;
        overflow: hidden;
        margin-top: 0;
    }
    .hero-image img {
        max-height: 300px;
        width: auto;
    }
    .hero-content {
        margin-bottom: 2rem;
    }
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        display: none; /* Hide long description on mobile */
    }
    .hero-description-mobile {
        font-size: 1.2rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        display: block !important; /* Show short description on mobile */
        color: white;
        font-family: 'Poppins', sans-serif;
        font-weight: 400;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    }
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    .page-hero h1 {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }
    .class-info h2 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }
    .contact-info h2,
    .contact-form-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }
    p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    ul, ol {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    .newsletter-signup {
        flex-direction: column;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .gallery-filters {
        justify-content: center;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    .filter-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
        min-height: 44px;
    }
    .lightbox-nav {
        padding: 0 10px;
    }
    .lightbox-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
        min-width: 44px;
        min-height: 44px;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 10px;
    }
/* Process Steps Section */
.process-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, rgba(78, 205, 196, 0.05) 100%);
    position: relative;
    overflow: hidden;
}
.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(211, 23, 137, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.process-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}
.process-section h2 {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #D31789 0%, #4ecdc4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.process-header p {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.8;
}
.process-timeline {
    position: relative;
    z-index: 1;
}
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #D31789 0%, #4ecdc4 100%);
    transform: translateX(-50%);
    display: none !important;
}
.process-step {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(78, 205, 196, 0.1);
    transition: all 0.3s ease;
}
.process-step:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(211, 23, 137, 0.2);
    box-shadow: 0 10px 30px rgba(211, 23, 137, 0.1);
}
.process-step:last-child {
    margin-bottom: 0;
}
/* Alternate layout */
.process-step:nth-child(even) {
    flex-direction: row-reverse;
}
.process-image, .process-text {
    flex: 1;
}
.process-image {
    max-width: 280px;
    margin: 0 auto;
}
.process-image img {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(211, 23, 137, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-image img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(211, 23, 137, 0.25);
}
.process-step-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.process-icon {
    font-size: 2rem;
    display: inline-block;
    animation: bounce 2s infinite;
}
.process-step-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #D31789 0%, #4ecdc4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: inline-block;
}
.process-text h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #D31789;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1.4;
}
.process-text p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
}
.seo-keyword {
    display: inline-block;
    background: linear-gradient(135deg, #D31789 0%, #4ecdc4 100%);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    margin-top: 1rem;
    opacity: 0.9;
}
/* Responsive */
@media (max-width: 768px) {
    .process-step, .process-step:nth-child(even) {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    .process-image {
        max-width: 100%;
        margin: 0 auto;
    }
    .process-image img {
        max-height: 250px;
    }
    .timeline-line {
        display: none;
    }
    .process-section h2 {
        font-size: 1.8rem;
    }
    .process-header p {
        font-size: 1rem;
    }
    .process-text h3 {
        font-size: 1.3rem;
    }
    .process-icon {
        font-size: 1.5rem;
    }
    .process-step-number {
        font-size: 2rem;
    }
    .seo-keyword {
        padding: 0.35rem 0.7rem;
        font-size: 0.8rem;
    }
    .faq-question {
        padding: 1.3rem 1.2rem;
        font-size: 1.05rem;
    }
    .faq-question span {
        gap: 0.7rem;
    }
    .faq-question i:first-child {
        font-size: 1.2rem;
    }
    .faq-answer {
        padding: 1.3rem;
        font-size: 1rem;
    }
    .faq-intro {
        font-size: 1.1rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    .gallery-item {
        height: 200px;
    }
    .faq-gallery h2 {
        font-size: 1.8rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-newsletter-mobile {
        display: block;
    }
    .footer-newsletter-desktop {
        display: none;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
    .footer-links {
        flex-direction: column;
        gap: 0.8rem;
    }
    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    .newsletter-form input {
        width: 100%;
    }
    .newsletter-form button {
        width: 100%;
        justify-content: center;
    }
        width: 100%;
    }
    .newsletter-form button {
        width: 100%;
        justify-content: center;
    }
}
/* Tablet Responsive - 768px to 1024px */
/* Modern Section Enhancement Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header h2 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #D31789, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}
.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}
/* Eye-cooling background colors for sections */
.section-cool-bg {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f7f4 100%);
}
.section-cool-bg-light {
    background: #f8fbff;
}
.section-cool-bg-alt {
    background: linear-gradient(135deg, #e0f7ff 0%, #f0f4ff 100%);
}
/* Enhanced service cards with modern touch */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(211, 23, 137, 0.15);
}
/* Content organization improvements */
.content-grid {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}
.content-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.content-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.content-grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
/* Value proposition styling */
.value-prop {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    border-left: 4px solid #D31789;
}
.value-prop i {
    color: #D31789;
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}
.value-prop h4 {
    margin-top: 0;
}
/* Professional appearance enhancements */
.highlight-text {
    color: #D31789;
    font-weight: 600;
}
.text-accent {
    color: #4ecdc4;
}
/* Service area grid styling */
.service-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}
/* Contact Page - Modern CTA Cards */
.contact-cta-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0;
}
.cta-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-top: 3px solid #D31789;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.cta-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(211, 23, 137, 0.2);
}
.cta-icon {
    font-size: 2.5rem;
    color: #D31789;
    margin-bottom: 0.75rem;
}
.cta-card h3 {
    color: #2d3748;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}
.cta-card p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}
/* CTA section button override */
.cta-section .btn-primary {
    background: white !important;
    color: #ff6b9d !important;
    font-size: 18px !important;
    padding: 15px 30px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    text-transform: none !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
}
.cta-section .btn-primary:hover {
    background: #f8f9fa !important;
    color: #D31789 !important;
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15) !important;
}
.cta-card .btn-primary {
    display: inline-block;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}
.contact-item:last-child {
    margin-bottom: 0;
}
.contact-item h3 {
    color: #2d3748;
    margin-bottom: 0.5rem;
}
.contact-item a {
    color: #D31789;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}
.contact-item a:hover {
    color: #f06292;
    text-decoration: underline;
}
/* Hours Section Styling */
.hours-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin: 2rem 0;
}
.hours-section h3 {
    color: #2d3748;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.hours-section .hours-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
}
.hour-item:last-child {
    border-bottom: none;
}
.hour-item .day {
    font-weight: 600;
    color: #2d3748;
}
.hour-item .time {
    color: #D31789;
    font-weight: 500;
}
/* Social Section */
.social-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin: 2rem 0;
}
.social-section h3 {
    color: #2d3748;
    margin-bottom: 1.5rem;
}
.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D31789, #f06292);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(211, 23, 137, 0.3);
}
/* Social Proof Section */
.social-proof-section {
    padding: 60px 0;
}
.social-proof-header {
    text-align: center;
    margin-bottom: 40px;
}
.rating-display {
    margin-bottom: 20px;
}
.stars {
    font-size: 24px;
    color: #ffd700;
    margin-bottom: 8px;
}
.rating-text {
    color: #666;
    font-size: 16px;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}
.testimonial-stars {
    color: #ffd700;
    font-size: 18px;
    margin-bottom: 15px;
}
.testimonial-author {
    font-weight: 600;
    color: #4ecdc4;
    margin-top: 15px;
}
/* FAQ Section */
.faq-section {
    padding: 60px 0;
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.faq-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.faq-item h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
}
.faq-item p {
    color: #666;
    line-height: 1.6;
}
/* Guarantee Section */
.guarantee-section {
    padding: 60px 0;
}
.guarantee-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.guarantee-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}
.guarantee-badge i {
    font-size: 36px;
    color: white;
}
.guarantee-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}
.guarantee-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.guarantee-feature i {
    color: #4ecdc4;
    font-size: 18px;
}
@media (max-width: 768px) {
    .testimonials-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .testimonial-card,
    .faq-item {
        padding: 20px;
    }
    .contact-cta-cards {
        grid-template-columns: 1fr;
    }
    .cta-card {
        padding: 1.5rem;
    }
    .contact-item {
        flex-direction: column;
    }
}
/* Centralized Hours Grid Styling */
.hours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin: 2.5rem 0;
}
.hours-item {
    padding: 1.8rem;
    border-radius: 16px;
    background: linear-gradient(135deg, #8B45FF 0%, #64C8FF 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(139, 69, 255, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    border: none;
}
.hours-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(139, 69, 255, 0.35);
}
.hours-item .day {
    font-weight: 700;
    color: white;
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.hours-item .time {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    font-weight: 500;
}
@media (max-width: 768px) {
    .hours-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}
@media (max-width: 480px) {
    .hours-grid {
        grid-template-columns: 1fr;
    }
    .hero {
        padding: 8px 16px 30px !important;
        min-height: auto !important;
        margin-top: 60px !important;
    }
    .page-hero {
        padding: 8px 16px 30px !important;
        min-height: auto !important;
        margin-top: 0 !important;
    }
    .hero h1 {
        font-size: 1.6rem;
    }
    .hero h2 {
        font-size: 1.2rem;
    }
    .page-hero h1 {
        font-size: 1.8rem;
    }
    p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    ul, ol {
        font-size: 0.9rem;
        margin-left: 1.25rem;
    }
    .section {
        padding: 2.5rem 1rem;
    }
    .gallery-filters {
        gap: 0.5rem;
        overflow-x: auto;
    }
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    .occasion-card {
        padding: 1.5rem 1rem;
    }
    .occasion-card h3 {
        font-size: 1.1rem;
    }
    .class-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
/* Additional heading styles for consistency */
.page-hero h1,
.page-hero h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 15px;
}
.section h2,
.section h3 {
    color: #333333;
    margin-bottom: 25px;
    text-align: center;
}
.footer-section h4 {
    color: #ffffff;
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
/* Ensure consistent spacing for all headings */
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    line-height: 1.2;
    letter-spacing: 0.5px;
}
/* Occasions Section Styles */
.occasions-section {
    padding: 4rem 0;
}
.occasions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.occasion-card {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #ff6b9d;
}
.occasion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 107, 157, 0.25);
}
.occasion-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}
.occasion-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}
.occasion-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}
/* Benefits Section Styles */
.why-choose-section {
    padding: 4rem 0;
    margin-top: 2rem;
    background: linear-gradient(135deg, #e0f7ff 0%, #f0f4ff 100%);
}
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}
.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.5px;
    text-align: center;
}
.title-accent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 12px;
    font-size: 2.2rem;
    animation: float 3s ease-in-out infinite;
    font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
    line-height: 1;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D31789 0%, #ff6b9d 100%);
    border-radius: 50%;
    filter: drop-shadow(0 4px 8px rgba(211, 23, 137, 0.3));
}
.title-accent:nth-child(3) {
    animation-delay: 0.5s;
}
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}
.section-subtitle {
    font-size: 1.3rem;
    color: #D31789;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
    font-family: 'Poppins', sans-serif;
}

.highlight-number {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #D31789 0%, #ff6b9d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.city-list {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .city-list {
        white-space: normal;
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

.title-underline {
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #D31789 0%, #ff6b9d 100%);
    margin: 0 auto 2rem;
    border-radius: 3px;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}
/* 5-column curriculum grid for art camp */
.curriculum-grid {
    grid-template-columns: repeat(5, 1fr) !important;
}
@media (max-width: 1200px) {
    .curriculum-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}
@media (max-width: 768px) {
    .curriculum-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 480px) {
    .curriculum-grid {
        grid-template-columns: 1fr !important;
    }
}
.benefit-card {
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 107, 157, 0.1);
    position: relative;
    overflow: hidden;
}
.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #D31789, #ff6b9d);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.benefit-card:hover::before {
    transform: scaleX(1);
}
.benefit-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(211, 23, 137, 0.25);
    border-color: #ff6b9d;
    background: linear-gradient(135deg, #ffffff 0%, #fff8fb 100%);
}
.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #D31789 0%, #ff6b9d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.9rem;
    margin: 0 auto 1.25rem;
    box-shadow: 0 8px 25px rgba(211, 23, 137, 0.4);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.benefit-icon-star {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 100%);
}
.benefit-icon-palette {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff5283 100%);
}
.benefit-icon-home {
    background: linear-gradient(135deg, #D31789 0%, #ff6b9d 100%);
}
.benefit-icon-gift {
    background: linear-gradient(135deg, #ff8fab 0%, #ff6b9d 100%);
}
.benefit-icon-users {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff5283 100%);
}
.benefit-icon-clock {
    background: linear-gradient(135deg, #D31789 0%, #ff8fab 100%);
}
.benefit-card:hover .benefit-icon {
    transform: scale(1.25) rotate(-10deg);
    box-shadow: 0 12px 35px rgba(211, 23, 137, 0.5);
}
.benefit-card h3 {
    color: #D31789;
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    font-family: 'Poppins', sans-serif;
}
.benefit-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
}
/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}
.modal-content {
    position: relative;
    width: 95%;
    max-width: 1000px;
    height: 85vh;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}
.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    font-size: 28px;
    cursor: pointer;
    z-index: 10001;
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.close-modal:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}
.modal-loading {
    padding: 40px;
    text-align: center;
}
.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #ff6b9d;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
#tripworksContainer iframe {
    width: 100%;
    height: 100%;
    border: none;
}
@media (max-width: 768px) {
    .modal {
        padding: 0;
    }
    .modal-content {
        width: 100%;
        height: 100vh;
        border-radius: 0;
    }
}
/* Image Carousel Section */
.image-carousel-section {
    padding: 30px 0;
    background: #fff;
}
.image-carousel-section h2 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 32px;
    color: #1a1a1a;
}
.image-carousel-section > .container > p {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 16px;
}
.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}
.image-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    flex: 1;
}
.image-carousel img {
    min-width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.image-carousel img:hover {
    transform: scale(1.05);
}
.image-carousel::-webkit-scrollbar {
    height: 8px;
}
.image-carousel::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.image-carousel::-webkit-scrollbar-thumb {
    background: #ff6b9d;
    border-radius: 10px;
}
.image-carousel::-webkit-scrollbar-thumb:hover {
    background: #ff5588;
}
.carousel-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    flex: 1;
}
.carousel-container::-webkit-scrollbar {
    height: 8px;
}
.carousel-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.carousel-container::-webkit-scrollbar-thumb {
    background: #ff6b9d;
    border-radius: 10px;
}
.carousel-container::-webkit-scrollbar-thumb:hover {
    background: #ff5588;
}
.carousel-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ff6b9d;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.carousel-arrow:hover {
    background: #ff5588;
    transform: scale(1.1);
}
.carousel-arrow.left {
    order: -1;
}
.carousel-container img {
    min-width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.carousel-container img:hover {
    transform: scale(1.05);
}
@media (max-width: 768px) {
    .image-carousel-section {
        padding: 40px 0;
    }
    .image-carousel-section h2 {
        font-size: 24px;
    }
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .carousel-container img {
        min-width: 280px;
        height: 280px;
    }
    }
/* Footer Styles - Extracted from Inline */
    .footer-section-flex {
        display: flex;
        flex-direction: column;
        gap: 12px;
        font-size: 13px;
        color: rgba(255,255,255,0.9);
    }
    .footer-icon {
        width: 20px;
        margin-top: 2px;
        color: #ff6b9d;
    }
    .footer-contact-flex {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 12px;
    }
    .footer-contact-text p {
        margin: 0;
        font-weight: 600;
        margin-bottom: 6px;
        font-size: 16px;
    }
    .footer-contact-link {
        color: rgba(255,255,255,0.95);
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 17px;
        font-weight: 600;
        line-height: 1.5;
    }
    .footer-contact-link:hover {
        color: #ff6b9d;
    }
    .footer-icon {
        width: 24px;
        margin-top: 3px;
        color: #ff6b9d;
        font-size: 18px;
    }
    .footer-social-label {
        font-size: 12px;
        color: rgba(255,255,255,0.9);
        margin-bottom: 10px;
        letter-spacing: 0.5px;
    }
    .footer-social-icons {
        display: flex;
        gap: 15px;
    }
    .footer-social-icon {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, rgba(211, 23, 137, 0.2), rgba(78, 205, 196, 0.2));
        border: 2px solid rgba(211, 23, 137, 0.4);
        color: #fff;
        border-radius: 50%;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        font-size: 18px;
        text-decoration: none !important;
        position: relative;
        overflow: hidden;
    }
    .footer-social-icon::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #D31789, #4ecdc4);
        border-radius: 50%;
        transition: left 0.4s ease;
        z-index: -1;
    }
    .footer-social-icon:hover {
        border-color: #ff6b9d;
        transform: translateY(-5px) scale(1.15);
        box-shadow: 0 8px 20px rgba(211, 23, 137, 0.4);
    }
    .footer-social-icon:hover::before {
        left: 0;
    }
    .footer-newsletter-section {
        border-top: 1px solid rgba(78, 205, 196, 0.3);
        padding-top: 15px;
        background: linear-gradient(135deg, rgba(211, 23, 137, 0.05), rgba(78, 205, 196, 0.05));
        border-radius: 12px;
        padding: 20px 15px;
        margin-top: 10px;
    }
    .footer-form {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .footer-email-input {
        padding: 14px 18px;
        border: 2px solid rgba(211, 23, 137, 0.3);
        border-radius: 8px;
        font-size: 16px; /* Prevents zoom on iOS */
        background-color: rgba(255, 255, 255, 0.08);
        color: #fff;
        width: 100%;
        transition: all 0.3s ease;
        font-family: 'Poppins', sans-serif;
    }
    .footer-email-input::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }
    .footer-email-input:focus {
        background-color: rgba(255, 255, 255, 0.12);
        border-color: #ff6b9d;
        outline: none;
        box-shadow: 0 0 15px rgba(211, 23, 137, 0.2);
    }
    .footer-submit-btn {
        padding: 14px 20px;
        background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 100%);
        color: white;
        border: 2px solid transparent;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 700;
        font-size: 14px;
        transition: all 0.3s ease;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        font-family: 'Poppins', sans-serif;
        position: relative;
        overflow: hidden;
    }
    .footer-submit-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #ff8fab, #ff6b9d);
        transition: left 0.3s ease;
        z-index: -1;
    }
    .footer-submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(255, 107, 157, 0.5);
        border-color: rgba(255, 255, 255, 0.3);
    }
    .footer-submit-btn:hover::before {
        left: 0;
    }
    .footer-submit-btn:active {
        transform: translateY(-1px);
    }
    .footer-privacy-text {
        font-size: 12px;
        color: rgba(255,255,255,0.7);
        margin-top: 10px;
        text-align: center;
    }
    .footer-privacy-link {
        color: rgba(255,255,255,0.7);
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .footer-privacy-link:hover {
        color: #ff6b9d;
    }
/* Service Card Enhancements - Phase 1 */
.service-perfect-for strong {
    color: #D31789;
    font-weight: 700;
}
/* Service Card Hover Enhancement */
/* Button Enhancement */
.btn-secondary:has(~.service-specs) {
    background: linear-gradient(135deg, #D31789, #ff6b9d);
    border: none;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(211, 23, 137, 0.3);
}
.btn-secondary:active {
    transform: translateY(0);
}
/* Service Cards Section */
.services-section {
    padding: 0 0 4rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f8 100%);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(211, 23, 137, 0.25);
}
.service-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ff6b9d;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
    letter-spacing: 0.5px;
}
.service-badge-bestseller {
    background: #ff6b9d;
}
.service-badge-kids {
    background: #ff6b9d;
}
.service-badge-value {
    background: #ff6b9d;
}
.service-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    border-radius: 16px;
    margin: 12px 12px 0 12px;
}
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 12px;
}
.service-card:hover .service-image img {
    transform: scale(1.05);
}
/* Option B - Dynamic & Engaging Hover Effects */
.service-card:hover .btn-primary {
    animation: buttonPulse 1.5s infinite;
    background: linear-gradient(45deg, #ff6b9d, #ff8fab, #ff6b9d);
    background-size: 200% 200%;
}
.service-card:hover .service-badge {
}
@keyframes buttonPulse {
    0% { 
        background-position: 0% 50%;
        transform: scale(1);
    }
    50% { 
        background-position: 100% 50%;
        transform: scale(1.05);
    }
    100% { 
        background-position: 0% 50%;
        transform: scale(1);
    }
}
.service-content {
    padding: 1rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.35rem;
    margin-bottom: 1rem;
}
.service-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ff6b9d;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}
.service-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ff6b9d;
    margin-bottom: 0.35rem;
    text-align: center;
}
.service-price .price-label {
    font-size: 0.75rem;
    color: #555;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    vertical-align: middle;
    margin-right: 3px;
}
.service-price .price-text {
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    vertical-align: middle;
    font-weight: 800;
}
.service-duration {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.section-emoji {
    margin-right: 8px;
}
.hidden-card {
    display: none;
}
.load-more-container {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}
.btn-load-more {
    padding: 14px 48px !important;
    font-size: 1rem !important;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-load-more:hover {
    transform: scale(1.05);
}
@media (max-width: 768px) {
    .services-section {
        padding: 3rem 0;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    .service-image {
        height: 180px;
    }
    .service-content {
        padding: 1.25rem;
    }
    .service-content h3 {
        font-size: 1.1rem;
    }
}
@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    .service-image {
        height: 200px;
    }
    .service-content h3 {
        font-size: 1rem;
    }
}
/* Floating Call Us Button */
.floating-call-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 100%);
    color: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(255, 107, 157, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    cursor: pointer;
}
.floating-call-button:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.6);
}
.floating-call-button:active {
    transform: scale(0.95);
}
.call-button-text {
    display: none;
    position: absolute;
    bottom: -40px;
    right: 0;
    background: #1a1a2e;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}
.floating-call-button:hover .call-button-text {
    display: block;
}
/* Mobile Floating Button */
@media (max-width: 768px) {
    .floating-call-button {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
        font-size: 20px;
    }
}
@media (max-width: 480px) {
    .floating-call-button {
        bottom: 15px;
        right: 15px;
        width: 52px;
        height: 52px;
        font-size: 18px;
    }
}
/* Global Mobile Fixes for All Pages */
@media (max-width: 768px) {
    /* Fix multi-column grids */
    .services-grid,
    .benefits-grid,
    .features-grid,
    .testimonials-grid,
    .gallery-grid,
    .faq-grid,
    .process-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    /* Newsletter and form inputs mobile optimization */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        font-size: 16px !important;
        padding: 12px !important;
        min-height: 44px !important;
    }
    /* Button touch targets */
    .btn,
    .btn-primary,
    .btn-secondary,
    button {
        min-height: 44px !important;
        padding: 12px 20px !important;
        font-size: 16px !important;
    }
    /* Service cards single column */
    .service-card,
    .benefit-card,
    .feature-card {
        margin-bottom: 1.5rem;
    }
    /* FAQ accordion mobile */
    .faq-item {
        margin-bottom: 1rem;
    }
    /* Gallery mobile layout */
    .gallery-item {
        width: 100% !important;
    }
    /* Consolidated Mobile Grid Overrides */
    .services-grid,
    .benefits-grid,
    .features-grid,
    .testimonials-grid,
    .gallery-grid,
    .faq-grid,
    .process-grid,
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}
/* Hide mobile social on desktop */
.mobile-social {
    display: none;
}
/* Show mobile social icons in mobile menu */
@media (max-width: 768px) {
    .mobile-social {
        display: block !important;
        text-align: center;
        padding: 20px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 20px;
        background: transparent;
    }
    .mobile-social-icons {
        display: flex;
        justify-content: center;
        gap: 20px;
        background: transparent;
    }
    .mobile-social-icons .social-icon {
        color: #374151 !important;
        font-size: 28px;
        transition: all 0.3s ease;
        background: rgba(255, 107, 53, 0.1) !important;
        text-decoration: none;
        border: 2px solid rgba(255, 107, 53, 0.3) !important;
        border-radius: 50% !important;
        width: 50px !important;
        height: 50px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
        transform: none !important;
        position: static !important;
        overflow: visible !important;
    }
    .mobile-social-icons .social-icon::before {
        display: none !important;
    }
    .mobile-social-icons .social-icon:hover {
        color: white !important;
        background: #ff6b35 !important;
        border-color: #ff6b35 !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3) !important;
    }
}
/* Related Services Cross-Linking */
.related-services {
    background-color: #f8f9fa;
    padding: 60px 0;
    margin-top: 40px;
}
.related-services h3 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-size: 28px;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}
.related-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    text-decoration: none;
    color: inherit;
}
.related-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    flex-shrink: 0;
}
.related-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.related-content h4 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 18px;
    line-height: 1.3;
}
.related-content p {
    margin: 0 0 15px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    flex-grow: 1;
}
.related-price {
    color: #D31789;
    font-weight: bold;
    font-size: 16px;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #eee;
}
@media (max-width: 768px) {
    .related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .related-services {
        padding: 40px 0;
    }
}

/* Info Icon Styling */
.info-icon {
    display: inline-block;
    margin-left: 8px;
    color: #4ecdc4;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.info-icon:hover {
    color: #D31789;
    transform: scale(1.1);
}
.includes-info {
    background: #f8f9fa;
    border-left: 3px solid #4ecdc4;
    padding: 12px;
    margin: 10px 0;
    border-radius: 6px;
    animation: slideDown 0.3s ease;
}
.includes-content {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.6;
}
.includes-content strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 6px;
}
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.includes-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
}
.includes-list span {
    color: #28a745;
    font-weight: 500;
}

/* What's Included Section Hover Effect */
.include-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(211, 23, 137, 0.15) !important;
}

.benefit-icon-sparkles {
    background: linear-gradient(135deg, #D31789, #ff6b9d);
}

/* What's Included Section */
.whats-included-section {
    padding: 20px 20px 40px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}
.whats-included-section .section-header {
    text-align: center;
    margin-bottom: 25px;
}
.whats-included-section h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 10px;
}
.whats-included-section .section-header p {
    color: #666;
    font-size: 1.1rem;
}
.includes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}
.include-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}
.include-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.include-item h3 {
    color: #D31789;
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.include-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}
