/* Services Pages CSS - Brighton Dance Centre */

/* Global overflow fix for mobile */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
    }
    
    /* Only apply max-width to specific problem elements */
    .dancers-testimonials-section,
    .dance-styles-section,
    .dancers-advantage-section,
    .process-section {
        max-width: 100vw;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #F8F9FB;
    padding: var(--space-2xl) 0;
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    width: 100%;
}

.hero-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-body);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-2xl);
    color: var(--text-dark);
    letter-spacing: -0.02em;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 10;
}

.hero-content {
    flex: 1 1 50%;
    animation: slideInLeft 1s ease-out;
    min-width: 0;
    padding-right: 2rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: var(--space-xl);
    font-weight: 400;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Hero Button Style */
.btn-hero {
    background-color: var(--white);
    color: var(--black);
    border: 2px solid var(--black);
    padding: 12px 32px;
    font-weight: 700;
    transition: all var(--transition-base);
    position: relative;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    min-width: 160px;
    text-align: center;
    font-size: 1rem;
    line-height: 1.2;
    border-radius: 4px;
}

.btn-hero:hover {
    background-color: var(--black);
    color: var(--white);
    transform: skewX(-10deg);
    border-color: var(--black);
}

.btn-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: -1;
}

.btn-hero:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0,206,209,0.1);
    animation: shimmer 0.5s ease-out;
}

@keyframes shimmer {
    to {
        left: 100%;
    }
}

/* Responsive hero button adjustments */
@media (max-width: 768px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .btn-hero {
        min-width: 130px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

.hero-image {
    flex: 1 1 50%;
    position: relative;
    animation: slideInRight 1s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

/* Price Highlight for Wedding */
.price-highlight {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: var(--space-xl);
    font-weight: 400;
}

/* Decorative Shapes */
.shape {
    position: absolute;
    z-index: 0;
}

/* Pastel Blue circle - hero section */
.shape-circle-blue {
    top: 15%;
    right: 8%;
    width: 120px;
    height: 120px;
    background-color: #E8F4FD;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    opacity: 0.6;
}

/* Pastel Pink square - intro section */
.intro .shape-rect-pink {
    position: absolute;
    bottom: -40px;
    left: 10%;
    width: 100px;
    height: 100px;
    background-color: #FFF5F9;
    border-radius: var(--radius-lg);
    transform: rotate(45deg);
    opacity: 0.5;
    z-index: 0;
    animation: float 7s ease-in-out infinite;
}

/* Floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Introduction Section */
.intro {
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: var(--space-3xl) 0;
}

.intro h2 {
    color: var(--text-dark);
    margin-bottom: var(--space-lg);
}

.intro p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
}

/* Features Section - Overlapping Layout */
.features-section {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.features-wrapper {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    max-width: 100%;
}

.features-content {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: white;
    padding: 60px;
    padding-left: 8%;
    width: 40%;
    overflow: visible;
}

.features-content h2 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: -1px;
    color: #1a1a1a;
    text-transform: uppercase;
    width: 150%;
    position: relative;
    z-index: 11;
    background-color: white;
    padding-right: 40px;
}

.features-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #999;
    margin-bottom: 40px;
    max-width: 400px;
}

.btn-dark {
    background-color: #1a1a1a;
    color: white;
    padding: 15px 35px;
    border: none;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-dark:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.features-images {
    width: 100%;
    height: 600px;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.main-image {
    width: 65%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin-left: auto;
}


/* Responsive */
@media (max-width: 1200px) {
    .features-content {
        width: 45%;
        padding: 50px;
        padding-left: 5%;
    }
    
    .features-content h2 {
        font-size: 3.5rem;
        width: 140%;
    }
    
    .main-image {
        width: 60%;
    }
}

@media (max-width: 900px) {
    .features-wrapper {
        flex-direction: column;
        min-height: auto;
    }
    
    .features-content {
        position: relative;
        width: 100%;
        padding: 60px 30px;
        transform: none;
        top: auto;
        left: auto;
        text-align: center;
    }
    
    .features-content h2 {
        width: 100%;
        font-size: 3rem;
        padding-right: 0;
        background-color: transparent;
    }
    
    .features-content p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .btn-dark {
        margin: 0 auto;
    }
    
    .features-images {
        height: 400px;
        width: 100%;
        margin-top: 40px;
    }
    
    .main-image {
        width: 100%;
        margin: 0;
    }
}

@media (max-width: 600px) {
    .features-section {
        padding: 60px 0;
    }
    
    .features-content {
        padding: 40px 20px;
    }
    
    .features-content h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .features-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .btn-dark {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
    
    .features-images {
        height: 300px;
        margin-top: 30px;
    }
}

/* Packages Section */
.packages-section {
    padding: var(--space-3xl) 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.package-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: transform var(--transition-base);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.package-card.popular {
    border: 3px solid var(--primary-color);
}

.package-card.popular::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.package-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
}

.package-price {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 5px;
}

.package-save {
    color: #28a745;
    font-size: 0.9rem;
    margin-bottom: var(--space-lg);
}

.package-features {
    list-style: none;
    padding: 0;
    margin: var(--space-lg) 0;
    text-align: left;
}

.package-features li {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid #eee;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: #fafafa;
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 400;
}

.process-header p {
    font-size: 1.2rem;
    color: #666;
}

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 40px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: #00CED1;
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
}

.process-step::before {
    content: attr(data-step);
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 4rem;
    font-weight: 700;
    color: #f0f0f0;
    z-index: -1;
    line-height: 1;
}

.step-content {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.step-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #00CED1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.process-step:hover .step-content {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.process-step:hover .step-content::after {
    transform: scaleX(1);
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Alternate layout for even steps */
.process-step:nth-child(even) {
    margin-top: 60px;
}

/* Responsive Process */
@media (max-width: 900px) {
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .timeline-line {
        display: none;
    }
    
    .process-step:nth-child(even) {
        margin-top: 0;
    }
}

@media (max-width: 600px) {
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-header h2 {
        font-size: 2rem;
    }
    
    .process-step::before {
        font-size: 3rem;
        top: -5px;
    }
    
    .step-content {
        padding: 30px 20px;
    }
    
    .step-content h3 {
        font-size: 1.25rem;
    }
}

/* Styles Section */
.styles-section {
    padding: var(--space-3xl) 0;
}

.styles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.style-item {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

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

.style-item h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--text-dark);
}

.style-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Testimonials Section - Bento Box Style */
.testimonials-wedding {
    padding: 100px 0;
    background: #ffffff;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 400;
}

.testimonials-header p {
    font-size: 1.2rem;
    color: #666;
}

/* Bento Box Grid */
.testimonials-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 200px);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-card {
    background: #f8f8f8;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Bento Sizes */
.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    background: #f0fffe;
}

.bento-medium-vertical {
    grid-column: span 1;
    grid-row: span 2;
}

.bento-medium-horizontal {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-small {
    grid-column: span 1;
    grid-row: span 1;
}

/* Quote styling */
.quote-mark {
    font-size: 60px;
    color: #FF6B6B;
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 25px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.bento-medium-vertical .testimonial-text,
.bento-small .testimonial-text {
    font-size: 1rem;
}

.testimonial-footer {
    margin-top: auto;
}

.testimonial-footer h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #1a1a1a;
    font-weight: 600;
}

.testimonial-footer span {
    font-size: 0.85rem;
    color: #666;
}

/* Stat Card */
.bento-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.bento-stat h3 {
    font-size: 3rem;
    color: #FF6B6B;
    margin-bottom: 10px;
    font-weight: 700;
}

.bento-stat p {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Highlight Card */
.bento-highlight {
    background: #00CED1;
    color: white;
}

.bento-highlight-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.bento-highlight-content p {
    font-size: 0.85rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.bento-highlight-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Responsive Bento */
@media (max-width: 1000px) {
    .testimonials-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .bento-large {
        grid-column: span 2;
    }
    
    .bento-medium-horizontal {
        grid-column: span 2;
    }
    
    .bento-medium-vertical {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 250px;
    }
}

@media (max-width: 600px) {
    .testimonials-bento {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .bento-card {
        padding: 25px;
        min-height: 200px;
    }
    
    .bento-large,
    .bento-medium-vertical,
    .bento-medium-horizontal,
    .bento-small {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .quote-mark {
        font-size: 40px;
        top: 15px;
        left: 20px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
}

/* Brighton Benefits Section */
.brighton-benefits {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.brighton-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fafafa;
    z-index: 0;
}

.brighton-benefits .container {
    position: relative;
    z-index: 1;
}

.benefits-header {
    text-align: center;
    margin-bottom: 80px;
}

.benefits-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 400;
    font-family: var(--font-body);
}

.benefits-header p {
    font-size: 1.2rem;
    color: #666;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    text-align: left;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    border-top: 4px solid transparent;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-top-color: #FF6B6B;
}

.benefit-number {
    font-size: 3rem;
    font-weight: 700;
    color: #f5f5f5;
    margin-bottom: 20px;
    line-height: 1;
    font-family: var(--font-body);
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* FAQ Section - Accordion Style */
.faq-wedding {
    padding: 100px 0;
    background: #fafafa;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

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

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

/* Hide the checkbox */
.faq-toggle {
    display: none;
}

/* Question styling */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    background: white;
    transition: all 0.3s ease;
}

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

.faq-question h3 {
    color: #1a1a1a;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    flex: 1;
}

/* Plus/Cross icon */
.faq-icon {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-left: 20px;
    transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: #FF6B6B;
    transition: all 0.3s ease;
}

/* Horizontal line (always visible) */
.faq-icon::before {
    width: 24px;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/* Vertical line (hidden when expanded) */
.faq-icon::after {
    width: 2px;
    height: 24px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Answer styling */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-answer p {
    padding: 0 30px 25px;
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Expanded state */
.faq-toggle:checked ~ .faq-answer {
    max-height: 300px;
}

/* Rotate icon when expanded - turns plus into X */
.faq-toggle:checked ~ .faq-question .faq-icon {
    transform: rotate(45deg);
}

/* Change background when expanded */
.faq-toggle:checked ~ .faq-question {
    background: #fff5f5;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 0.95rem;
    }
    
    .faq-icon {
        width: 20px;
        height: 20px;
    }
    
    .faq-icon::before {
        width: 20px;
    }
    
    .faq-icon::after {
        height: 20px;
    }
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: #f8f9fb;
    position: relative;
}

.process-section h2 {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #00CED1;
    color: white;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(255,107,107,0.3);
}

.process-step h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.process-step p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Add connecting lines on larger screens */
@media (min-width: 768px) {
    .process-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 70px;
        right: -40px;
        width: 40px;
        height: 2px;
        background: #00CED1;
    }
    
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-step:nth-child(3)::after,
    .process-step:nth-child(6)::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-step {
        padding: 30px 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* Dance Styles Section */
.dance-styles-section {
    padding: 100px 20px;
    background: white;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1240px) {
    .dance-styles-section {
        padding: 100px 0;
    }
}

/* Decorative elements */
.dance-styles-section::before {
    content: '✦';
    position: absolute;
    top: 40px;
    left: 10%;
    font-size: 40px;
    color: #1a1a1a;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.dance-styles-section::after {
    content: '◈';
    position: absolute;
    bottom: 60px;
    right: 15%;
    font-size: 50px;
    color: #1a1a1a;
    opacity: 0.08;
    animation: float 8s ease-in-out infinite reverse;
}

@media (max-width: 768px) {
    .dance-styles-section::before,
    .dance-styles-section::after {
        display: none;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.dance-styles-section h2 {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 60px;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.styles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 0;
    max-width: 1200px;
    margin: 60px auto 20px;
    background: white;
    border: 3px solid #1a1a1a;
    box-shadow: 15px 15px 0 #1a1a1a;
}

.style-card {
    position: relative;
    padding: 50px 40px;
    background: white;
    border-right: 3px solid #1a1a1a;
    border-bottom: 3px solid #1a1a1a;
    transition: all 0.3s ease;
    overflow: hidden;
}

.style-card:nth-child(3n) {
    border-right: none;
}

.style-card:nth-last-child(-n+3) {
    border-bottom: none;
}

/* Decorative shapes for each card */
.style-card::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    opacity: 0;
    transition: all 0.3s ease;
}

.style-card:nth-child(1)::before { 
    border-radius: 50%;
}

.style-card:nth-child(2)::before { 
    transform: rotate(45deg);
}

.style-card:nth-child(3)::before { 
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.style-card:nth-child(4)::before { 
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.style-card:nth-child(5)::before { 
    border-radius: 50% 0 50% 0;
}

.style-card:nth-child(6)::before { 
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.style-card:hover::before {
    opacity: 0.1;
    transform: scale(1.2) rotate(15deg);
}

.style-card:hover {
    background: #f5f5f5;
    transform: translate(-5px, -5px);
    box-shadow: 5px 5px 0 #FF6B6B;
}

.style-card h3 {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.style-card h3::after {
    content: '←';
    margin-left: 10px;
    opacity: 0;
    transition: all 0.3s ease;
}

.style-card:hover h3::after {
    opacity: 1;
    margin-left: 15px;
}

.style-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .styles-grid {
        grid-template-columns: 1fr;
        box-shadow: 8px 8px 0 #1a1a1a;
        margin-right: 10px;
    }
    
    .style-card {
        padding: 40px 30px;
        border-right: none !important;
        border-bottom: 3px solid #1a1a1a;
    }
    
    .style-card:last-child {
        border-bottom: none;
    }
    
    .dance-styles-section {
        padding: 60px 0;
    }
    
    .dance-styles-section h2 {
        font-size: 2.5rem;
    }
}

/* Dancers Page Testimonials Section */
.dancers-testimonials-section {
    padding: 120px 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

/* Paint splatter effect background */
.dancers-testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 30%);
    transform: rotate(-15deg);
}

.dancers-testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: rgba(0,206,209,0.05);
    filter: blur(60px);
}

.dancers-testimonials-section h2 {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 80px;
    color: white;
    position: relative;
    z-index: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.dancers-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: auto;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Large testimonial - spans 7 columns, 2 rows */
.dancers-testimonial-large {
    grid-column: 1 / 8;
    grid-row: 1 / 3;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    min-height: 400px;
}

.dancers-testimonial-large::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 120px;
    color: rgba(255, 107, 107, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

/* Medium testimonials - span 5 columns */
.dancers-testimonial-medium {
    grid-column: span 5;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    min-height: 180px;
}

.dancers-testimonial-medium:nth-child(2) {
    grid-column: 8 / 13;
    grid-row: 1;
}

.dancers-testimonial-medium:nth-child(3) {
    grid-column: 8 / 13;
    grid-row: 2;
}

/* Small testimonial */
.dancers-testimonial-small {
    grid-column: 1 / 13;
    grid-row: 3;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Hover effects */
.dancers-testimonial-large:hover,
.dancers-testimonial-medium:hover,
.dancers-testimonial-small:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 107, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Paint drip effect on hover */
.dancers-testimonial-large:hover::after,
.dancers-testimonial-medium:hover::after {
    content: '';
    position: absolute;
    top: 0;
    right: 20%;
    width: 3px;
    height: 0;
    background: rgba(0,206,209,0.3);
    animation: drip 0.6s ease-out forwards;
}

@keyframes drip {
    to {
        height: 80px;
    }
}

/* Typography */
.dancers-testimonials-grid p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.dancers-testimonial-large p {
    font-size: 1.25rem;
    line-height: 1.9;
}

.dancers-testimonials-grid cite {
    display: block;
    color: white;
    font-style: normal;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.dancers-testimonial-context {
    display: block;
    color: rgba(255, 107, 107, 0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 968px) {
    .dancers-testimonials-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 20px;
    }
    
    .dancers-testimonial-large,
    .dancers-testimonial-medium,
    .dancers-testimonial-small {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
        min-height: auto;
    }
    
    .dancers-testimonial-large {
        padding: 40px;
    }
    
    .dancers-testimonial-medium {
        padding: 30px;
    }
    
    .dancers-testimonial-large::before {
        font-size: 80px;
    }
}

/* Mobile specific adjustments */
@media (max-width: 768px) {
    .dancers-testimonials-section {
        padding: 60px 0;
        overflow: hidden;
    }
    
    .dancers-testimonials-section::before,
    .dancers-testimonials-section::after {
        display: none;
    }
    
    .dancers-testimonials-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .dancers-testimonials-grid {
        padding: 0 20px;
        gap: 20px;
    }
    
    .dancers-testimonial-large::before {
        font-size: 60px;
        top: 15px;
        left: 15px;
        opacity: 0.1;
    }
    
    .dancers-testimonial-large,
    .dancers-testimonial-medium,
    .dancers-testimonial-small {
        padding: 35px 25px;
        border-radius: 10px;
    }
    
    .dancers-testimonial-large p,
    .dancers-testimonials-grid p {
        font-size: 1rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .dancers-testimonials-section {
        padding: 40px 0;
    }
    
    .dancers-testimonials-section .container {
        padding: 0;
        width: 100%;
        max-width: none;
    }
    
    .dancers-testimonials-section h2 {
        font-size: 1.75rem;
        margin-bottom: 30px;
        padding: 0 20px;
        letter-spacing: 0;
        text-transform: none;
    }
    
    .dancers-testimonials-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
        margin: 0;
    }
    
    .dancers-testimonial-large,
    .dancers-testimonial-medium,
    .dancers-testimonial-small {
        width: 100%;
        padding: 25px 20px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0;
        min-height: auto;
        overflow: visible;
        border-radius: 8px;
    }
    
    .dancers-testimonial-large::before {
        display: none;
    }
    
    .dancers-testimonials-grid p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .dancers-testimonial-large p {
        font-size: 0.95rem;
    }
    
    .dancers-testimonials-grid cite {
        font-size: 0.9rem;
        font-weight: 600;
    }
    
    .dancers-testimonial-context {
        font-size: 0.75rem;
        line-height: 1.4;
        word-break: break-word;
    }
    
    /* Remove all hover effects on mobile */
    .dancers-testimonial-large:hover,
    .dancers-testimonial-medium:hover,
    .dancers-testimonial-small:hover {
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
    }
    
    .dancers-testimonial-large:hover::after,
    .dancers-testimonial-medium:hover::after {
        display: none;
    }
}

/* Dancers Brighton Advantage Section */
.dancers-advantage-section {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

/* Diagonal stripes background */
.dancers-advantage-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(0,206,209,0.02);
    z-index: 0;
}

.dancers-advantage-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: rgba(26,26,26,0.05);
    opacity: 0.05;
}

@media (max-width: 768px) {
    .dancers-advantage-section::after {
        width: 150px;
        height: 150px;
    }
}

.dancers-advantage-section .container {
    position: relative;
    z-index: 1;
}

.dancers-advantage-section h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 10px;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.dancers-advantage-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 80px;
    font-style: italic;
}

.dancers-advantage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border: 3px solid #1a1a1a;
}

.dancers-advantage-item {
    padding: 60px 50px;
    position: relative;
    background: white;
    border-right: 3px solid #1a1a1a;
    border-bottom: 3px solid #1a1a1a;
    transition: all 0.3s ease;
}

.dancers-advantage-item:nth-child(2n) {
    border-right: none;
}

.dancers-advantage-item:nth-child(n+3) {
    border-bottom: none;
}

/* Diagonal stripe overlay on hover */
.dancers-advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,206,209,0.05);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dancers-advantage-item:hover::before {
    opacity: 1;
}

.dancers-advantage-item:hover {
    background: #fafafa;
    transform: scale(1.02);
    z-index: 10;
    box-shadow: 10px 10px 0 rgba(26, 26, 26, 0.1);
}

.dancers-advantage-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: #1a1a1a;
    opacity: 0.1;
    line-height: 1;
    transition: all 0.3s ease;
}

.dancers-advantage-item:hover .dancers-advantage-number {
    opacity: 0.2;
    transform: rotate(-15deg) scale(1.2);
}

.dancers-advantage-item h3 {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 15px;
}

.dancers-advantage-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

.dancers-advantage-item:hover h3::after {
    width: 100%;
    background: #FF6B6B;
}

.dancers-advantage-item p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .dancers-advantage-grid {
        grid-template-columns: 1fr;
    }
    
    .dancers-advantage-item {
        border-right: none !important;
        border-bottom: 3px solid #1a1a1a;
        padding: 40px 30px;
    }
    
    .dancers-advantage-item:last-child {
        border-bottom: none;
    }
    
    .dancers-advantage-number {
        font-size: 3rem;
    }
    
    .dancers-advantage-section h2 {
        font-size: 2.5rem;
    }
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: #ffffff;
}

/* Booking Form Wrapper */
.booking-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Form Image */
.form-image {
    position: relative;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Booking Form */
.booking-form {
    padding: 60px;
    background: white;
}

.booking-form h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: var(--space-xl);
    color: var(--text-dark);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all var(--transition-base);
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

/* Checkbox styling */
.checkbox-label {
    display: flex;
    align-items: center;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    cursor: pointer;
}

/* Cartoony Submit Button - Black & White Outline Style */
.btn-cartoon-submit {
    width: 100%;
    padding: 16px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--font-body);
    background: white;
    color: #1a1a1a;
    border: 4px solid #1a1a1a;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    box-shadow: 6px 6px 0 #1a1a1a;
}

.btn-cartoon-submit:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0 #1a1a1a;
}

.btn-cartoon-submit:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 #1a1a1a;
}

/* Responsive */
@media (max-width: 900px) {
    .booking-form-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-image {
        height: 300px;
    }
    
    .booking-form {
        padding: 40px;
    }
}

@media (max-width: 600px) {
    .booking-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .form-image {
        height: 200px;
    }
}

/* Button for Wedding */
.btn-wedding {
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all var(--transition-base);
    display: inline-block;
    border: none;
    cursor: pointer;
}

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

.btn-wedding-primary:hover {
    background: #ff5252;
    transform: translateY(-2px);
}

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

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

/* Gift Voucher CTA */
.gift-voucher-section {
    padding: var(--space-3xl) 0;
    background: #f8f8f8;
    text-align: center;
}

.gift-voucher-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: var(--space-lg);
}

.gift-voucher-section p {
    font-size: 1.1rem;
    margin-bottom: var(--space-xl);
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 700px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: var(--space-lg);
    }
    
    .hero-content {
        flex: 1 1 100%;
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
    }
    
    .hero-image {
        flex: 1 1 100%;
        max-width: 400px;
        margin: 0 auto var(--space-lg);
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    /* Adjust shape positions for mobile */
    .shape-circle-blue {
        right: 5%;
        width: 60px;
        height: 60px;
    }
    
    .shape-rect-pink {
        right: -20px;
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: var(--space-xl) 0;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }
    
    .packages-grid,
    .form-row,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .styles-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

/* Force side-by-side layout on screens larger than 700px */
@media (min-width: 701px) {
    .hero-wrapper {
        display: flex !important;
        flex-direction: row !important;
    }
    
    .hero-content {
        flex: 0 0 45% !important;
        max-width: none !important;
    }
    
    .hero-image {
        flex: 0 0 55% !important;
        max-width: none !important;
    }
}