/**
 * Susie Hansen Calendar - Frontend Styles
 * Brand Color: #98BF64
 */

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

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

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

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Performances Page Wrapper */
.shc-performances-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

/* Hero Section - Shared Light Theme */
.shc-performances-page .shc-hero-light,
.shc-booking-page-v2 .shc-hero-light {
    background: linear-gradient(135deg, #f9fff6 0%, #f5fff0 50%, #eaffea 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid #98BF64;
}

.shc-performances-page .shc-hero-graphics,
.shc-booking-page-v2 .shc-hero-graphics {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Floating Music Notes */
.shc-performances-page .shc-music-note,
.shc-booking-page-v2 .shc-music-note {
    position: absolute;
    font-size: 2.5rem;
    color: #98BF64;
    opacity: 0.15;
}

.shc-music-note.note-1 {
    top: 15%;
    left: 8%;
    font-size: 3rem;
    animation: float 4s ease-in-out infinite;
}

.shc-music-note.note-2 {
    top: 25%;
    right: 10%;
    font-size: 2.5rem;
    animation: float-slow 5s ease-in-out infinite 0.5s;
}

.shc-music-note.note-3 {
    bottom: 20%;
    left: 15%;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite 1s;
}

.shc-music-note.note-4 {
    bottom: 30%;
    right: 15%;
    font-size: 3.5rem;
    animation: float-slow 4.5s ease-in-out infinite 0.8s;
}

.shc-music-note.note-5 {
    top: 40%;
    left: 5%;
    font-size: 2rem;
    animation: float 5.5s ease-in-out infinite 1.5s;
}

/* Vinyl Disc */
.shc-performances-page .shc-vinyl-disc,
.shc-booking-page-v2 .shc-vinyl-disc {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle at center, #333 0%, #333 15%, #111 16%, #111 100%);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    animation: spin 8s linear infinite;
    opacity: 0.08;
}

.shc-performances-page .shc-vinyl-disc::before,
.shc-booking-page-v2 .shc-vinyl-disc::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: #98BF64;
    border-radius: 50%;
}

.shc-performances-page .shc-hero-content,
.shc-booking-page-v2 .shc-hero-content {
    position: relative;
    z-index: 2;
}

.shc-performances-page .shc-hero-content h1,
.shc-booking-page-v2 .shc-hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin: 0 0 15px;
    color: #98BF64;
    text-shadow: none;
    animation: fadeInUp 0.8s ease-out;
}

.shc-performances-page .shc-hero-content p,
.shc-booking-page-v2 .shc-hero-content p {
    font-size: 1.4rem;
    color: #555;
    margin: 0;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* Container */
.shc-events-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

/* Header */
.shc-events-header {
    margin-bottom: 40px;
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
}

.shc-events-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.shc-events-subtitle {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Event Card */
.shc-event-card {
    display: flex;
    gap: 0;
    margin-bottom: 40px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shc-event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(152, 191, 100, 0.12);
}

/* Date Badge */
.shc-event-date-badge {
    flex-shrink: 0;
    width: 80px;
    background: linear-gradient(135deg, #98BF64 0%, #7a9950 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    text-align: center;
}

.shc-date-day-name {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 5px;
}

.shc-date-day {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.shc-date-month {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.shc-date-year {
    font-size: 11px;
    opacity: 0.8;
    margin-top: 3px;
}

/* Event Content */
.shc-event-content {
    flex: 1;
    padding: 25px 30px;
}

.shc-event-header {
    margin-bottom: 20px;
}

.shc-event-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px 0;
    line-height: 1.3;
    text-transform: uppercase;
}

.shc-event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    font-size: 0.9rem;
}

.shc-event-time {
    color: #98BF64;
    font-weight: 600;
}

.shc-event-time::before {
    content: '🕐 ';
}

.shc-event-location {
    color: #666;
}

.shc-event-location::before {
    content: '📍 ';
}

/* Event Image */
.shc-event-image {
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.shc-event-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Event Description */
.shc-event-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444;
}

.shc-event-description p {
    margin: 0 0 15px 0;
}

.shc-event-description p:last-child {
    margin-bottom: 0;
}

.shc-event-description a {
    color: #98BF64;
    text-decoration: underline;
}

.shc-event-description a:hover {
    color: #7a9950;
}

.shc-event-description ul,
.shc-event-description ol {
    margin: 15px 0;
    padding-left: 25px;
}

.shc-event-description li {
    margin-bottom: 8px;
}

/* Tickets Section */
.shc-event-tickets {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.shc-ticket-price {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.shc-ticket-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #98BF64 0%, #7a9950 100%);
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(152, 191, 100, 0.3);
}

.shc-ticket-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(152, 191, 100, 0.4);
    color: #fff !important;
}

/* No Events */
.shc-no-events {
    text-align: center;
    padding: 60px 20px;
    background: #f9f9f9;
    border-radius: 12px;
}

.shc-no-events p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .shc-performances-page .shc-music-note {
        display: none;
    }
    
    .shc-performances-page .shc-vinyl-disc {
        width: 120px;
        height: 120px;
        right: -30px;
    }
}

@media (max-width: 768px) {
    .shc-performances-page .shc-hero-light {
        padding: 50px 15px;
    }
    
    .shc-performances-page .shc-hero-content h1 {
        font-size: 2rem;
    }
    
    .shc-performances-page .shc-hero-content p {
        font-size: 1rem;
    }
    
    .shc-performances-page .shc-vinyl-disc {
        display: none;
    }
    
    .shc-events-container {
        padding: 30px 15px;
    }
    
    .shc-events-title {
        font-size: 1.8rem;
    }
    
    .shc-events-subtitle {
        font-size: 0.9rem;
    }
    
    .shc-event-card {
        flex-direction: column;
    }
    
    .shc-event-date-badge {
        width: 100%;
        flex-direction: row;
        gap: 10px;
        padding: 15px 20px;
        justify-content: flex-start;
    }
    
    .shc-date-day-name {
        margin-bottom: 0;
    }
    
    .shc-date-day {
        font-size: 24px;
        margin-bottom: 0;
    }
    
    .shc-date-month {
        margin-top: 0;
    }
    
    .shc-date-year {
        margin-top: 0;
        margin-left: auto;
    }
    
    .shc-event-content {
        padding: 20px;
    }
    
    .shc-event-title {
        font-size: 1.15rem;
    }
    
    .shc-event-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .shc-event-tickets {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .shc-ticket-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .shc-events-title {
        font-size: 1.5rem;
    }
    
    .shc-event-content {
        padding: 15px;
    }
    
    .shc-event-title {
        font-size: 1.05rem;
    }
    
    .shc-event-description {
        font-size: 0.9rem;
    }
}

/* Event Card Animation */
.shc-event-card {
    animation: fadeInUp 0.5s ease-out;
}

.shc-event-card:nth-child(2) { animation-delay: 0.1s; }
.shc-event-card:nth-child(3) { animation-delay: 0.2s; }
.shc-event-card:nth-child(4) { animation-delay: 0.3s; }
.shc-event-card:nth-child(5) { animation-delay: 0.4s; }
.shc-event-card:nth-child(6) { animation-delay: 0.5s; }

/* ========================================
   EVENT BOOKING PAGE STYLES
   ======================================== */

.shc-booking-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Hero Section */
.shc-booking-hero {
    background: linear-gradient(135deg, #98BF64 0%, #6a8845 100%);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 0;
}

.shc-booking-hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.shc-booking-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    margin: 0;
    font-weight: 300;
}

/* Main Container */
.shc-booking-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Section Headings */
.shc-section-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 40px 0;
    position: relative;
    padding-bottom: 15px;
}

.shc-section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #98BF64 0%, #7a9950 100%);
    border-radius: 2px;
}

/* Introduction Section */
.shc-booking-intro {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.shc-booking-intro-image {
    float: right;
    max-width: 350px;
    margin: 0 0 20px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.shc-booking-intro h2 {
    font-size: 1.8rem;
    color: #98BF64;
    margin: 0 0 20px 0;
}

.shc-booking-intro p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 25px;
}

/* Quick Links */
.shc-booking-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 30px 0;
    clear: both;
}

.shc-quick-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    color: #333 !important;
    text-decoration: none !important;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.shc-quick-link:hover {
    background: #98BF64;
    border-color: #98BF64;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(152,191,100,0.3);
}

/* Press Quotes */
.shc-press-quotes {
    margin-top: 30px;
    clear: both;
}

.shc-press-quotes blockquote {
    background: linear-gradient(135deg, #f5fff0 0%, #fff 100%);
    border-left: 4px solid #98BF64;
    padding: 20px 25px;
    margin: 0 0 20px 0;
    border-radius: 0 12px 12px 0;
}

.shc-press-quotes blockquote p {
    font-size: 1.1rem;
    font-style: italic;
    color: #444;
    margin: 0 0 10px 0;
}

.shc-press-quotes blockquote cite {
    font-size: 0.9rem;
    color: #666;
    font-style: normal;
    font-weight: 600;
}

/* Services Grid */
.shc-booking-services {
    margin-bottom: 50px;
}

.shc-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.shc-service-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.shc-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(152,191,100,0.12);
}

.shc-service-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.shc-service-card h3 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

.shc-service-card p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Wedding Services */
.shc-booking-wedding-services {
    background: linear-gradient(135deg, #f5fff0 0%, #fff 100%);
    border-radius: 16px;
    padding: 50px 40px;
    margin-bottom: 50px;
}

.shc-wedding-features {
    max-width: 800px;
    margin: 0 auto;
}

.shc-wedding-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(152,191,100,0.1);
}

.shc-wedding-feature:last-child {
    border-bottom: none;
}

.shc-feature-check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: #98BF64;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.shc-wedding-feature p {
    margin: 0;
    font-size: 1.05rem;
    color: #444;
}

/* Band Sizes */
.shc-booking-band-sizes {
    margin-bottom: 50px;
}

.shc-band-sizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.shc-band-size-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.shc-band-size-card:hover {
    border-color: #98BF64;
    transform: translateY(-3px);
}

.shc-band-size-card.featured {
    border-color: #98BF64;
    background: linear-gradient(135deg, #f5fff0 0%, #fff 100%);
}

.shc-band-size-card h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.shc-band-size-card p {
    font-size: 0.95rem;
    color: #666;
    margin: 0 0 15px 0;
}

.shc-band-link {
    color: #98BF64;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}

.shc-band-link:hover {
    text-decoration: underline;
}

.shc-featured-badge {
    display: inline-block;
    background: #98BF64;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Booking Form Section */
.shc-booking-form-section {
    background: #fff;
    border-radius: 16px;
    padding: 50px 40px;
    margin-bottom: 50px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.shc-form-intro {
    text-align: center;
    font-size: 1.05rem;
    color: #555;
    max-width: 700px;
    margin: -20px auto 40px;
}

/* Form Styles */
.shc-booking-form .shc-form-section {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #eee;
}

.shc-booking-form .shc-form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 20px;
    padding-bottom: 0;
}

.shc-form-section-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #98BF64;
    margin: 0 0 20px 0;
}

.shc-form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.shc-form-row:last-child {
    margin-bottom: 0;
}

.shc-form-field {
    flex: 1;
    min-width: 200px;
}

.shc-form-field.full-width {
    flex: 100%;
    min-width: 100%;
}

.shc-form-field label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.shc-form-field label .required {
    color: #98BF64;
}

.shc-form-field input[type="text"],
.shc-form-field input[type="email"],
.shc-form-field input[type="tel"],
.shc-form-field input[type="number"],
.shc-form-field input[type="date"],
.shc-form-field input[type="time"],
.shc-form-field select,
.shc-form-field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fff;
}

.shc-form-field input:focus,
.shc-form-field select:focus,
.shc-form-field textarea:focus {
    outline: none;
    border-color: #98BF64;
    box-shadow: 0 0 0 4px rgba(152,191,100,0.1);
}

.shc-form-field input::placeholder,
.shc-form-field textarea::placeholder {
    color: #aaa;
}

.shc-date-status {
    display: block;
    margin-top: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Checkbox Group */
.shc-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.shc-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.shc-checkbox-label:hover {
    border-color: #98BF64;
    background: #f5fff0;
}

.shc-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #98BF64;
}

/* Submit Button */
.shc-form-submit {
    text-align: center;
    margin-top: 30px;
}

.shc-submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #98BF64 0%, #7a9950 100%);
    color: #fff;
    border: none;
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(152,191,100,0.35);
}

.shc-submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(152,191,100,0.45);
}

.shc-submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Form Messages */
.shc-form-message {
    margin-top: 25px;
}

.shc-message-success {
    background: #d4edda;
    color: #155724;
    padding: 20px 25px;
    border-radius: 12px;
    font-size: 1.05rem;
    text-align: center;
    border: 1px solid #c3e6cb;
}

.shc-message-error {
    background: #f8d7da;
    color: #721c24;
    padding: 20px 25px;
    border-radius: 12px;
    font-size: 1.05rem;
    text-align: center;
    border: 1px solid #f5c6cb;
}

/* Testimonials */
.shc-booking-testimonials {
    margin-bottom: 50px;
}

.shc-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.shc-testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 4px solid #98BF64;
}

.shc-testimonial-card p {
    font-size: 1rem;
    font-style: italic;
    color: #444;
    margin: 0 0 15px 0;
    line-height: 1.7;
}

.shc-testimonial-card cite {
    font-size: 0.9rem;
    color: #666;
    font-style: normal;
    font-weight: 600;
}

/* Press Section */
.shc-booking-press {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    border-radius: 16px;
    padding: 50px 40px;
    margin-bottom: 50px;
}

.shc-booking-press .shc-section-heading {
    color: #fff;
}

.shc-booking-press .shc-section-heading::after {
    background: #fff;
}

.shc-press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.shc-press-card {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255,255,255,0.1);
}

.shc-press-card p {
    font-size: 1rem;
    font-style: italic;
    color: #fff;
    margin: 0 0 12px 0;
    line-height: 1.7;
    opacity: 0.95;
}

.shc-press-card cite {
    font-size: 0.85rem;
    color: #98BF64;
    font-style: normal;
    font-weight: 600;
}

/* Contact Section */
.shc-booking-contact {
    background: #fff;
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.shc-contact-info p {
    font-size: 1.1rem;
    color: #555;
    margin: 0 0 25px 0;
}

.shc-contact-methods {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.shc-contact-method {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #98BF64 0%, #7a9950 100%);
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(152,191,100,0.3);
}

.shc-contact-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(152,191,100,0.4);
}

.shc-contact-icon {
    font-size: 1.3rem;
}

.shc-contact-note {
    font-size: 0.95rem !important;
    color: #888 !important;
    max-width: 500px;
    margin: 0 auto !important;
}

/* Responsive Styles for Booking Page */
@media (max-width: 768px) {
    .shc-booking-hero {
        padding: 40px 20px;
    }
    
    .shc-booking-hero-title {
        font-size: 2rem;
    }
    
    .shc-booking-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .shc-booking-container {
        padding: 30px 15px;
    }
    
    .shc-section-heading {
        font-size: 1.6rem;
    }
    
    .shc-booking-intro {
        padding: 25px;
    }
    
    .shc-booking-intro-image {
        float: none;
        max-width: 100%;
        margin: 0 0 25px 0;
    }
    
    .shc-booking-quick-links {
        flex-direction: column;
    }
    
    .shc-quick-link {
        justify-content: center;
    }
    
    .shc-epk-reviews-section {
        padding: 30px 20px;
    }
    
    .shc-epk-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .shc-booking-form-section {
        padding: 30px 20px;
    }
    
    .shc-services-grid {
        grid-template-columns: 1fr;
    }
    
    .shc-booking-wedding-services {
        padding: 30px 20px;
    }
    
    .shc-band-sizes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    
    .shc-form-row {
        flex-direction: column;
    }
    
    .shc-form-field {
        min-width: 100%;
    }
    
    .shc-checkbox-group {
        flex-direction: column;
    }
    
    .shc-submit-button {
        width: 100%;
        padding: 16px 30px;
    }
    
    .shc-testimonials-grid,
    .shc-press-grid {
        grid-template-columns: 1fr;
    }
    
    .shc-booking-press {
        padding: 30px 20px;
    }
    
    .shc-contact-methods {
        flex-direction: column;
        gap: 15px;
    }
    
    .shc-contact-method {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .shc-booking-hero-title {
        font-size: 1.6rem;
    }
    
    .shc-band-sizes-grid {
        grid-template-columns: 1fr;
    }
    
    .shc-service-card,
    .shc-band-size-card {
        padding: 20px;
    }
}

/* ========================================
   BOOKING PAGE V2 - MODERN 2-COLUMN LAYOUT
   ======================================== */

.shc-booking-page-v2 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #333;
    line-height: 1.6;
}

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

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

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.shc-fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Hero - Light Theme with Music Graphics */
.shc-hero-light {
    background: linear-gradient(135deg, #f9fff6 0%, #f5fff0 50%, #eaffea 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid #98BF64;
}

.shc-hero-graphics {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Floating Music Notes */
.shc-music-note {
    position: absolute;
    font-size: 2.5rem;
    color: #98BF64;
    opacity: 0.15;
}

.shc-music-note.note-1 {
    top: 15%;
    left: 8%;
    font-size: 3rem;
    animation: float 4s ease-in-out infinite;
}

.shc-music-note.note-2 {
    top: 25%;
    right: 10%;
    font-size: 2.5rem;
    animation: float-slow 5s ease-in-out infinite 0.5s;
}

.shc-music-note.note-3 {
    bottom: 20%;
    left: 15%;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite 1s;
}

.shc-music-note.note-4 {
    bottom: 30%;
    right: 15%;
    font-size: 3.5rem;
    animation: float-slow 4.5s ease-in-out infinite 0.8s;
}

.shc-music-note.note-5 {
    top: 40%;
    left: 5%;
    font-size: 2rem;
    animation: float 5.5s ease-in-out infinite 1.5s;
}

/* Vinyl Disc */
.shc-vinyl-disc {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: 
        radial-gradient(circle at center, #333 0%, #333 15%, #111 16%, #111 30%, 
        repeating-radial-gradient(circle at center, #222 0px, #111 2px, #222 4px) 30%, 
        #111 100%);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    animation: spin 8s linear infinite;
    opacity: 0.08;
}

.shc-vinyl-disc::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: #98BF64;
    border-radius: 50%;
}

.shc-hero-light .shc-hero-content {
    position: relative;
    z-index: 2;
}

.shc-hero-light .shc-hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin: 0 0 15px;
    color: #98BF64;
    text-shadow: none;
    animation: fadeInUp 0.8s ease-out;
}

.shc-hero-light .shc-hero-content p {
    font-size: 1.4rem;
    color: #555;
    margin: 0;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* Main Wrapper */
.shc-main-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 50px 20px;
}

/* Two Column Layout */
.shc-two-column {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: start;
}

.shc-column-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.shc-column-right {
    position: sticky;
    top: 20px;
}

/* Intro Card */
.shc-intro-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    animation: fadeInUp 0.6s ease-out;
    transition: transform 0.3s, box-shadow 0.3s;
}

.shc-intro-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(0,0,0,0.12);
}

.shc-intro-img {
    width: 100%;
    max-width: 320px;
    float: right;
    margin: 0 0 20px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.shc-intro-card h2 {
    font-size: 1.8rem;
    color: #98BF64;
    margin: 0 0 15px;
}

.shc-intro-card p {
    font-size: 1.05rem;
    color: #555;
    margin: 0 0 25px;
}

/* Quick Buttons */
.shc-quick-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    clear: both;
    padding-top: 10px;
}

.shc-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none !important;
    transition: all 0.3s;
}

.shc-btn-outline {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    color: #333 !important;
}

.shc-btn-outline:hover {
    background: #98BF64;
    border-color: #98BF64;
    color: #fff !important;
    transform: translateY(-2px);
}

/* Quote Cards */
.shc-quotes-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.shc-quote-card {
    background: linear-gradient(135deg, #f8fff5 0%, #fff 100%);
    border-left: 4px solid #98BF64;
    padding: 20px 25px;
    margin: 0;
    border-radius: 0 12px 12px 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.shc-quote-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 5rem;
    color: #98BF64;
    opacity: 0.08;
    font-family: Georgia, serif;
    line-height: 1;
}

.shc-quote-card:nth-child(1) { animation-delay: 0.1s; }
.shc-quote-card:nth-child(2) { animation-delay: 0.2s; }
.shc-quote-card:nth-child(3) { animation-delay: 0.3s; }
.shc-quote-card:nth-child(4) { animation-delay: 0.4s; }
.shc-quote-card:nth-child(5) { animation-delay: 0.5s; }

.shc-quote-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(152, 191, 100, 0.1);
    border-left-width: 6px;
}

.shc-quote-card p {
    font-size: 1.05rem;
    font-style: italic;
    color: #444;
    margin: 0 0 8px;
    position: relative;
    z-index: 1;
}

.shc-quote-card cite {
    font-size: 0.9rem;
    color: #777;
    font-style: normal;
    position: relative;
    z-index: 1;
}

/* Form Card */
.shc-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.05);
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.shc-form-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.shc-form-header h2 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin: 0 0 8px;
}

.shc-form-header p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* Modern Form */
.shc-modern-form .shc-form-group {
    margin-bottom: 18px;
}

.shc-modern-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.shc-modern-form label .req {
    color: #98BF64;
}

.shc-modern-form input,
.shc-modern-form select,
.shc-modern-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    background: #fff;
    box-sizing: border-box;
}

.shc-modern-form input:focus,
.shc-modern-form select:focus,
.shc-modern-form textarea:focus {
    outline: none;
    border-color: #98BF64;
    box-shadow: 0 0 0 4px rgba(152,191,100,0.1);
}

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

.shc-form-divider {
    height: 1px;
    background: #eee;
    margin: 20px 0;
}

/* Services Checkboxes */
.shc-services-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.shc-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #f5f5f5;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.shc-checkbox:hover {
    border-color: #98BF64;
    background: #f5fff0;
}

.shc-checkbox input {
    width: 16px !important;
    height: 16px;
    accent-color: #98BF64;
}

/* Submit Button */
.shc-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #98BF64 0%, #7a9950 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(152,191,100,0.35);
    margin-top: 10px;
}

.shc-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(152,191,100,0.45);
}

.shc-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Date Status */
.shc-date-status {
    display: none;
    margin-top: 6px;
    font-size: 0.85rem;
}

.shc-status-ok { color: #28a745; font-weight: 500; }
.shc-status-error { color: #98BF64; font-weight: 500; }

/* Messages */
.shc-msg-success {
    background: #d4edda;
    color: #155724;
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 15px;
    text-align: center;
}

.shc-msg-error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 15px;
    text-align: center;
}

/* Full Width Sections */
.shc-services-fullwidth,
.shc-wedding-fullwidth,
.shc-bands-section,
.shc-testimonials-fullwidth,
.shc-contact-fullwidth {
    padding: 60px 20px;
}

.shc-services-inner,
.shc-wedding-inner,
.shc-bands-inner,
.shc-testimonials-inner,
.shc-contact-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.shc-section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 40px;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 15px;
    animation: fadeInUp 0.6s ease-out;
}

.shc-section-title::before {
    content: '♫';
    position: absolute;
    left: calc(50% - 100px);
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #98BF64;
    opacity: 0.3;
}

.shc-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: #98BF64;
    border-radius: 2px;
    animation: pulse 2s ease-in-out infinite;
}

/* Services Grid V2 */
.shc-services-fullwidth {
    background: #f9f9f9;
}

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

.shc-service-item {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.shc-service-item::before {
    content: '♪';
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 4rem;
    color: #98BF64;
    opacity: 0;
    transform: rotate(-15deg);
    transition: all 0.3s;
}

.shc-service-item:hover::before {
    opacity: 0.08;
    top: 5px;
    right: 5px;
}

.shc-service-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 45px rgba(152,191,100,0.15);
}

.shc-service-item:nth-child(1) { animation: fadeInUp 0.5s ease-out 0.1s backwards; }
.shc-service-item:nth-child(2) { animation: fadeInUp 0.5s ease-out 0.2s backwards; }
.shc-service-item:nth-child(3) { animation: fadeInUp 0.5s ease-out 0.3s backwards; }
.shc-service-item:nth-child(4) { animation: fadeInUp 0.5s ease-out 0.4s backwards; }
.shc-service-item:nth-child(5) { animation: fadeInUp 0.5s ease-out 0.5s backwards; }
.shc-service-item:nth-child(6) { animation: fadeInUp 0.5s ease-out 0.6s backwards; }

.shc-service-emoji {
    font-size: 2.8rem;
    display: block;
    margin-bottom: 15px;
    animation: bounce 2s ease-in-out infinite;
}

.shc-service-item h3 {
    font-size: 1.15rem;
    color: #1a1a1a;
    margin: 0 0 10px;
}

.shc-service-item p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Wedding Section */
.shc-wedding-fullwidth {
    background: linear-gradient(135deg, #f5fff0 0%, #fff 100%);
}

.shc-wedding-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.shc-wedding-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.shc-wedding-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(152,191,100,0.1);
}

.shc-wedding-item:nth-child(1) { animation: slideInLeft 0.4s ease-out 0.1s backwards; }
.shc-wedding-item:nth-child(2) { animation: slideInLeft 0.4s ease-out 0.15s backwards; }
.shc-wedding-item:nth-child(3) { animation: slideInLeft 0.4s ease-out 0.2s backwards; }
.shc-wedding-item:nth-child(4) { animation: slideInLeft 0.4s ease-out 0.25s backwards; }
.shc-wedding-item:nth-child(5) { animation: slideInLeft 0.4s ease-out 0.3s backwards; }
.shc-wedding-item:nth-child(6) { animation: slideInLeft 0.4s ease-out 0.35s backwards; }

.shc-check {
    width: 28px;
    height: 28px;
    background: #98BF64;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.shc-wedding-item span:last-child {
    font-size: 0.95rem;
    color: #444;
}

/* Band Cards */
.shc-bands-section {
    background: #fff;
}

.shc-bands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.shc-band-card {
    background: #f9f9f9;
    padding: 25px 20px;
    border-radius: 14px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.shc-band-card:nth-child(1) { animation: fadeInUp 0.4s ease-out 0.1s backwards; }
.shc-band-card:nth-child(2) { animation: fadeInUp 0.4s ease-out 0.2s backwards; }
.shc-band-card:nth-child(3) { animation: fadeInUp 0.4s ease-out 0.3s backwards; }
.shc-band-card:nth-child(4) { animation: fadeInUp 0.4s ease-out 0.4s backwards; }
.shc-band-card:nth-child(5) { animation: fadeInUp 0.4s ease-out 0.5s backwards; }

.shc-band-card:hover {
    border-color: #98BF64;
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 40px rgba(152,191,100,0.12);
}

.shc-band-card.featured {
    background: linear-gradient(135deg, #f5fff0 0%, #fff 100%);
    border-color: #98BF64;
}

.shc-popular {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #98BF64;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
}

.shc-band-card h3 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin: 10px 0 5px;
}

.shc-band-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 10px;
}

.shc-band-card .shc-band-link {
    color: #98BF64;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
}

.shc-band-card .shc-band-link:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .shc-two-column {
        grid-template-columns: 1fr;
    }
    
    .shc-column-right {
        position: static;
    }
    
    .shc-services-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shc-bands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .shc-music-note {
        display: none;
    }
    
    .shc-vinyl-disc {
        width: 120px;
        height: 120px;
        right: -30px;
    }
}

@media (max-width: 768px) {
    .shc-hero-light {
        padding: 50px 15px;
    }
    
    .shc-hero-light .shc-hero-content h1 {
        font-size: 2rem;
    }
    
    .shc-hero-light .shc-hero-content p {
        font-size: 1rem;
    }
    
    .shc-vinyl-disc {
        display: none;
    }
    
    .shc-main-wrapper {
        padding: 30px 15px;
    }
    
    .shc-intro-card {
        padding: 25px;
    }
    
    .shc-intro-img {
        float: none;
        max-width: 100%;
        margin: 0 0 20px;
    }
    
    .shc-quick-buttons {
        flex-direction: column;
    }
    
    .shc-btn {
        justify-content: center;
    }
    
    .shc-form-row-2 {
        grid-template-columns: 1fr;
    }
    
    .shc-services-grid-v2 {
        grid-template-columns: 1fr;
    }
    
    .shc-wedding-grid {
        grid-template-columns: 1fr;
    }
    
    .shc-bands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shc-services-fullwidth,
    .shc-wedding-fullwidth,
    .shc-bands-section {
        padding: 40px 15px;
    }
    
    .shc-section-title {
        font-size: 1.6rem;
    }
    
    .shc-section-title::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .shc-hero-light .shc-hero-content h1 {
        font-size: 1.7rem;
    }
    
    .shc-bands-grid {
        grid-template-columns: 1fr;
    }
    
    .shc-form-card {
        padding: 20px;
    }
    
    .shc-services-checkboxes {
        flex-direction: column;
    }
    
    .shc-checkbox {
        justify-content: flex-start;
    }
    
    .shc-quote-card::before {
        display: none;
    }
}

/* ========================================
   PHOTO GALLERY PAGE STYLES
   ======================================== */

.shc-gallery-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Gallery Hero Section */
.shc-gallery-hero {
    background: linear-gradient(135deg, #f9fff6 0%, #fff 50%, #f5f5f5 100%);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid #98BF64;
}

.shc-gallery-hero .shc-hero-bg-graphics {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.shc-gallery-hero .shc-music-note {
    position: absolute;
    font-size: 2rem;
    color: rgba(152, 191, 100, 0.15);
    animation: floatNote 4s ease-in-out infinite;
}

.shc-gallery-hero .note-1 { top: 15%; left: 10%; animation-delay: 0s; }
.shc-gallery-hero .note-2 { top: 25%; right: 15%; animation-delay: 1s; font-size: 1.5rem; }
.shc-gallery-hero .note-3 { bottom: 20%; left: 20%; animation-delay: 2s; }
.shc-gallery-hero .note-4 { bottom: 30%; right: 10%; animation-delay: 1.5s; font-size: 1.8rem; }

.shc-gallery-hero .shc-vinyl-disc {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 50%, #1a1a1a 100%);
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    animation: spinVinyl 8s linear infinite;
    opacity: 0.1;
}

.shc-gallery-hero .shc-vinyl-disc::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #98BF64;
}

.shc-gallery-hero .shc-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.shc-gallery-hero .shc-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #98BF64;
    margin: 0 0 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    animation: fadeInUp 0.6s ease-out;
}

.shc-gallery-hero .shc-hero-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin: 0 0 30px;
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.shc-gallery-hero .shc-hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.shc-gallery-hero .shc-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.shc-gallery-hero .shc-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #98BF64;
}

.shc-gallery-hero .shc-stat-icon {
    font-size: 2rem;
}

.shc-gallery-hero .shc-stat-label {
    font-size: 0.9rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Full Width Gallery Grid */
.shc-gallery-grid-container {
    width: 100%;
    padding: 30px 15px;
    background: #f5f5f5;
}

.shc-gallery-grid {
    display: grid;
    gap: 15px;
    max-width: 1600px;
    margin: 0 auto;
}

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

/* Gallery Item */
.shc-gallery-item {
    animation: fadeInUp 0.5s ease-out backwards;
}

.shc-gallery-link {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    aspect-ratio: 1;
}

.shc-gallery-link:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 40px rgba(152,191,100,0.25);
    z-index: 10;
}

.shc-gallery-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.shc-gallery-link:hover img {
    transform: scale(1.1);
}

/* Image Overlay */
.shc-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(152,191,100,0.8) 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.shc-gallery-link:hover .shc-image-overlay {
    opacity: 1;
}

.shc-zoom-icon {
    font-size: 2.5rem;
    color: #fff;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.shc-gallery-link:hover .shc-zoom-icon {
    transform: scale(1);
}

/* Lightbox */
.shc-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

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

.shc-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: #fff;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    opacity: 0.8;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shc-lightbox-close:hover {
    opacity: 1;
    background: rgba(255,255,255,0.2);
}

.shc-lightbox-prev,
.shc-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #fff;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shc-lightbox-prev { left: 30px; }
.shc-lightbox-next { right: 30px; }

.shc-lightbox-prev:hover,
.shc-lightbox-next:hover {
    opacity: 1;
    background: rgba(152,191,100,0.8);
}

.shc-lightbox-img {
    max-width: 85%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: fadeInUp 0.3s ease-out;
}

.shc-lightbox-caption {
    color: #fff;
    font-size: 1.1rem;
    margin-top: 20px;
    text-align: center;
    max-width: 600px;
    padding: 0 20px;
}

/* Responsive Gallery */
@media (max-width: 1200px) {
    .shc-gallery-grid.columns-4 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .shc-gallery-hero .shc-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 900px) {
    .shc-gallery-grid.columns-3,
    .shc-gallery-grid.columns-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shc-gallery-hero {
        padding: 40px 15px;
    }
    
    .shc-gallery-hero .shc-hero-title {
        font-size: 2rem;
    }
    
    .shc-gallery-hero .shc-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .shc-gallery-hero .shc-vinyl-disc {
        display: none;
    }
    
    .shc-lightbox-prev,
    .shc-lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
    
    .shc-lightbox-prev { left: 15px; }
    .shc-lightbox-next { right: 15px; }
}

@media (max-width: 600px) {
    .shc-gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }
    
    .shc-gallery-grid-container {
        padding: 15px 10px;
    }
    
    .shc-gallery-hero .shc-hero-title {
        font-size: 1.8rem;
    }
    
    .shc-gallery-hero .shc-hero-stats {
        gap: 20px;
    }
    
    .shc-gallery-hero .shc-stat-number {
        font-size: 2rem;
    }
    
    .shc-gallery-link {
        border-radius: 6px;
    }
    
    .shc-lightbox-close {
        top: 10px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.8rem;
    }
    
    .shc-lightbox-prev,
    .shc-lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    
    .shc-lightbox-prev { left: 10px; }
    .shc-lightbox-next { right: 10px; }
    
    .shc-lightbox-img {
        max-width: 95%;
        max-height: 70vh;
    }
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

.shc-contact-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Contact Hero Section */
.shc-contact-hero {
    background: linear-gradient(135deg, #f9fff6 0%, #fff 50%, #f5f5f5 100%);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid #98BF64;
}

.shc-contact-hero .shc-hero-bg-graphics {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.shc-contact-hero .shc-music-note {
    position: absolute;
    font-size: 2rem;
    color: rgba(152, 191, 100, 0.15);
    animation: floatNote 4s ease-in-out infinite;
}

.shc-contact-hero .note-1 { top: 15%; left: 10%; animation-delay: 0s; }
.shc-contact-hero .note-2 { top: 25%; right: 15%; animation-delay: 1s; font-size: 1.5rem; }
.shc-contact-hero .note-3 { bottom: 20%; left: 20%; animation-delay: 2s; }
.shc-contact-hero .note-4 { bottom: 30%; right: 10%; animation-delay: 1.5s; font-size: 1.8rem; }

.shc-contact-hero .shc-vinyl-disc {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 50%, #1a1a1a 100%);
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    animation: spinVinyl 8s linear infinite;
    opacity: 0.1;
}

.shc-contact-hero .shc-vinyl-disc::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #98BF64;
}

.shc-contact-hero .shc-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.shc-contact-hero .shc-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #98BF64;
    margin: 0 0 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    animation: fadeInUp 0.6s ease-out;
}

.shc-contact-hero .shc-hero-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin: 0;
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

/* Contact Container */
.shc-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

.shc-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

/* Contact Info Cards */
.shc-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.shc-info-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.shc-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(152,191,100,0.15);
}

.shc-info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.shc-info-content h3 {
    margin: 0 0 5px;
    font-size: 1rem;
    color: #333;
    font-weight: 600;
}

.shc-info-content p,
.shc-info-content a {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    text-decoration: none;
}

.shc-info-content a:hover {
    color: #98BF64;
}

.shc-additional-info {
    padding: 20px;
    background: linear-gradient(135deg, #f9fff6 0%, #fff 100%);
    border-radius: 12px;
    border-left: 4px solid #98BF64;
}

.shc-additional-info p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Social Links */
.shc-social-links {
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.shc-social-links h3 {
    margin: 0 0 15px;
    font-size: 1rem;
    color: #333;
}

.shc-social-icons {
    display: flex;
    gap: 12px;
}

.shc-social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.shc-social-icon svg {
    width: 22px;
    height: 22px;
}

.shc-social-icon.facebook { background: #1877f2; }
.shc-social-icon.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.shc-social-icon.youtube { background: #ff0000; }
.shc-social-icon.twitter { background: #000; }
.shc-social-icon.linkedin { background: #0077b5; }

.shc-social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Contact Form Container */
.shc-contact-form-container {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.shc-contact-form-container h2 {
    margin: 0 0 10px;
    font-size: 1.8rem;
    color: #333;
}

.shc-form-subtitle {
    margin: 0 0 30px;
    color: #666;
    font-size: 1rem;
}

.shc-contact-form .shc-form-row {
    margin-bottom: 20px;
}

.shc-contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.shc-contact-form input,
.shc-contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.shc-contact-form input:focus,
.shc-contact-form textarea:focus {
    outline: none;
    border-color: #98BF64;
    box-shadow: 0 0 0 4px rgba(152,191,100,0.1);
}

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

.shc-contact-form .shc-checkbox-row {
    margin-bottom: 25px;
}

.shc-contact-form .shc-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-weight: 400;
    color: #555;
    line-height: 1.6;
}

.shc-contact-form .shc-checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: #98BF64;
    transform: scale(1.2);
}

.shc-contact-form .shc-checkbox-label span {
    flex: 1;
}

.shc-contact-form .shc-submit-btn {
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, #98BF64 0%, #7a9950 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.shc-contact-form .shc-submit-btn:hover {
    background: linear-gradient(135deg, #7a9950 0%, #98BF64 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(152,191,100,0.3);
}

.shc-contact-form .shc-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.shc-contact-form .shc-form-message .shc-success {
    padding: 20px;
    background: #d4edda;
    color: #155724;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    margin-top: 20px;
}

.shc-contact-form .shc-form-message .shc-error {
    padding: 20px;
    background: #f8d7da;
    color: #721c24;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    margin-top: 20px;
}

/* Section Description */
.shc-section-desc {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* Contact Page Responsive */
@media (max-width: 900px) {
    .shc-contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .shc-contact-hero .shc-hero-title {
        font-size: 2.2rem;
    }
    
    .shc-contact-hero .shc-vinyl-disc {
        display: none;
    }
    
    .shc-contact-form-container {
        padding: 30px 20px;
    }
}

@media (max-width: 600px) {
    .shc-contact-hero {
        padding: 40px 15px;
    }
    
    .shc-contact-hero .shc-hero-title {
        font-size: 1.8rem;
    }
    
    .shc-contact-hero .shc-hero-subtitle {
        font-size: 1rem;
    }
    
    .shc-contact-container {
        padding: 30px 15px;
    }
    
    .shc-info-card {
        padding: 15px;
    }
    
    .shc-social-icon {
        width: 40px;
        height: 40px;
    }
    
    .shc-social-icon svg {
        width: 18px;
        height: 18px;
    }
}

/* ========================================
   ELECTRONIC PRESS KIT PAGE STYLES
   ======================================== */

.shc-epk-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #e0e0e0;
    line-height: 1.6;
    background: #000000;
}

/* EPK Dark Hero Override */
.shc-epk-page .shc-hero-light {
    background: #000000;
    border-bottom: 4px solid #98BF64;
}

.shc-epk-page .shc-hero-light .shc-hero-content h1 {
    color: #fff;
}

.shc-epk-page .shc-hero-light .shc-hero-content p {
    color: rgba(255,255,255,0.8);
}

.shc-epk-page .shc-hero-light .shc-music-note {
    color: #98BF64;
    opacity: 0.2;
}

.shc-epk-page .shc-hero-light .shc-vinyl-disc {
    border-color: rgba(152,191,100,0.15);
}

/* EPK Container */
.shc-epk-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    background: #000000;
}

/* EPK Intro Section */
.shc-epk-intro-section {
    margin-bottom: 50px;
}

.shc-epk-intro-content {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    background: #000000;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.3);
    animation: fadeInUp 0.6s ease-out;
}

.shc-epk-intro-text h2 {
    font-size: 1.8rem;
    color: #98BF64;
    margin: 0 0 20px;
}

.shc-epk-intro-text p {
    font-size: 1.05rem;
    color: #ccc;
    margin: 0 0 15px;
}

.shc-epk-intro-text p a {
    color: #98BF64;
    text-decoration: underline;
}

.shc-epk-intro-text p a:hover {
    color: #7a9950;
}

/* EPK Quick Actions */
.shc-epk-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.shc-epk-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    color: #e0e0e0 !important;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none !important;
    transition: all 0.3s;
}

.shc-epk-btn:hover {
    background: #98BF64;
    border-color: #98BF64;
    color: #fff !important;
    transform: translateY(-2px);
}

/* EPK Quick Links Sidebar */
.shc-epk-quick-links {
    background: #000000;
    border-radius: 12px;
    padding: 25px;
    border-left: 4px solid #98BF64;
}

.shc-epk-quick-links h3 {
    font-size: 1.2rem;
    color: #98BF64;
    margin: 0 0 15px;
}

.shc-epk-quick-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shc-epk-quick-links ul li {
    margin-bottom: 10px;
}

.shc-epk-quick-links ul li a {
    display: block;
    padding: 10px 15px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    color: #e0e0e0 !important;
    text-decoration: none !important;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.shc-epk-quick-links ul li a:hover {
    background: #98BF64;
    color: #fff !important;
    border-color: #98BF64;
    transform: translateX(5px);
}

/* EPK Section Styles */
.shc-epk-section {
    margin-bottom: 60px;
    padding-top: 20px;
}

.shc-epk-section-title {
    font-family: 'Times New Roman', Times, serif !important;
    font-size: 42px !important;
    font-weight: 600 !important;
    font-style: italic !important;
    color: #fff !important;
    text-align: center !important;
    margin: 0 0 15px !important;
    position: relative;
    padding-bottom: 15px;
}

.shc-epk-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #98BF64 0%, #7a9950 100%);
    border-radius: 2px;
}

.shc-epk-section-desc {
    text-align: center !important;
    font-size: 1.05rem !important;
    color: rgba(255,255,255,0.7) !important;
    margin: 0 0 40px !important;
}

.shc-epk-section-desc a {
    color: #98BF64;
    text-decoration: underline;
}

.shc-epk-page .shc-epk-section-desc a {
    color: #98BF64;
}

/* EPK Photos Grid - Varied Row Layout */
.shc-epk-photos-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    background: #000000;
    padding: 1rem;
}

.shc-epk-photo-row {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: stretch;
    width: 100%;
}

.shc-epk-photo-card {
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    flex-shrink: 0;
    flex-grow: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shc-epk-photo-card::after {
    content: '\2B07\FE0F Click to Download';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(152, 191, 100, 0.95);
    color: #fff;
    padding: 12px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.shc-epk-photo-card:hover::after {
    opacity: 1;
}

.shc-epk-photo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.shc-epk-photo-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.shc-epk-photo-card:hover img {
    transform: scale(1.03);
}

/* Row width patterns */
.shc-epk-photo-row.split-50-50 .shc-epk-photo-card { flex-basis: calc(50% - 0.5rem); }
.shc-epk-photo-row.split-60-40 .shc-epk-photo-card:nth-child(1) { flex-basis: calc(60% - 0.5rem); }
.shc-epk-photo-row.split-60-40 .shc-epk-photo-card:nth-child(2) { flex-basis: calc(40% - 0.5rem); }
.shc-epk-photo-row.split-40-60 .shc-epk-photo-card:nth-child(1) { flex-basis: calc(40% - 0.5rem); }
.shc-epk-photo-row.split-40-60 .shc-epk-photo-card:nth-child(2) { flex-basis: calc(60% - 0.5rem); }
.shc-epk-photo-row.split-70-30 .shc-epk-photo-card:nth-child(1) { flex-basis: calc(70% - 0.5rem); }
.shc-epk-photo-row.split-70-30 .shc-epk-photo-card:nth-child(2) { flex-basis: calc(30% - 0.5rem); }
.shc-epk-photo-row.split-30-70 .shc-epk-photo-card:nth-child(1) { flex-basis: calc(30% - 0.5rem); }
.shc-epk-photo-row.split-30-70 .shc-epk-photo-card:nth-child(2) { flex-basis: calc(70% - 0.5rem); }
.shc-epk-photo-row.split-35-65 .shc-epk-photo-card:nth-child(1) { flex-basis: calc(35% - 0.5rem); }
.shc-epk-photo-row.split-35-65 .shc-epk-photo-card:nth-child(2) { flex-basis: calc(65% - 0.5rem); }
.shc-epk-photo-row.split-65-35 .shc-epk-photo-card:nth-child(1) { flex-basis: calc(65% - 0.5rem); }
.shc-epk-photo-row.split-65-35 .shc-epk-photo-card:nth-child(2) { flex-basis: calc(35% - 0.5rem); }
.shc-epk-photo-row.split-41-59 .shc-epk-photo-card:nth-child(1) { flex-basis: calc(41% - 0.5rem); }
.shc-epk-photo-row.split-41-59 .shc-epk-photo-card:nth-child(2) { flex-basis: calc(59% - 0.5rem); }
.shc-epk-photo-row.split-full .shc-epk-photo-card { flex-basis: 100%; }


/* EPK Reviews Section - Redesigned */
.shc-epk-reviews-section {
    background: #000000;
    border-radius: 16px;
    padding: 50px 40px;
}

.shc-epk-reviews-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 25px !important;
}

.shc-epk-review-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 25px 15px !important;
    background: #111111 !important;
    border-radius: 16px !important;
    text-decoration: none !important;
    transition: all 0.3s;
    border: 2px solid rgba(152,191,100,0.2) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.shc-epk-review-item:hover {
    border-color: #98BF64;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(152,191,100,0.3);
}

.shc-epk-review-item img {
    width: 90px !important;
    height: 110px !important;
    border-radius: 10px !important;
    object-fit: cover !important;
    margin-bottom: 15px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 3px solid rgba(255,255,255,0.2) !important;
}

.shc-epk-review-item span {
    font-size: 0.85rem !important;
    color: #e0e0e0 !important;
    line-height: 1.5 !important;
    font-weight: 500 !important;
}

.shc-epk-review-item span br + br {
    display: none;
}

/* EPK Downloads Grid */
.shc-epk-downloads-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
}

.shc-epk-download-card {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    padding: 25px !important;
    background: #111111 !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border: 2px solid rgba(255,255,255,0.1) !important;
}

.shc-epk-download-card:hover {
    border-color: #98BF64;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(152,191,100,0.25);
}

.shc-download-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.shc-download-info {
    flex: 1;
}

.shc-download-info h4 {
    font-size: 1.1rem !important;
    color: #fff !important;
    margin: 0 0 5px !important;
}

.shc-download-info p {
    font-size: 0.9rem !important;
    color: rgba(255,255,255,0.7) !important;
    margin: 0 !important;
}

.shc-download-btn {
    padding: 10px 20px !important;
    background: linear-gradient(135deg, #98BF64 0%, #7a9950 100%) !important;
    color: #fff !important;
    border-radius: 6px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    display: inline-block !important;
}

/* EPK Tech Section */
.shc-epk-tech-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%) !important;
    border-radius: 16px !important;
    padding: 50px 40px !important;
}

.shc-epk-tech-section .shc-epk-section-title {
    color: #fff;
}

.shc-epk-tech-section .shc-epk-section-title::after {
    background: #fff;
}

.shc-epk-tech-section .shc-epk-section-desc {
    color: rgba(255,255,255,0.8);
}

.shc-epk-tech-grid {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 20px !important;
    margin-bottom: 30px !important;
}

.shc-epk-tech-card {
    background: rgba(255,255,255,0.1) !important;
    border-radius: 12px !important;
    padding: 25px !important;
    text-align: center !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    transition: all 0.3s;
}

.shc-epk-tech-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}

.shc-tech-header {
    margin-bottom: 20px;
}

.shc-tech-size {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 50px !important;
    height: 50px !important;
    background: #98BF64 !important;
    color: #fff !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    border-radius: 50% !important;
    margin-bottom: 10px !important;
}

.shc-tech-header h4 {
    font-size: 1rem !important;
    color: #fff !important;
    margin: 0 !important;
}

.shc-tech-downloads {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.shc-tech-downloads a {
    display: block !important;
    padding: 10px 15px !important;
    background: rgba(255,255,255,0.1) !important;
    color: #fff !important;
    border-radius: 6px !important;
    font-size: 0.85rem !important;
    text-decoration: none !important;
    transition: all 0.3s;
}

.shc-tech-downloads a:hover {
    background: #98BF64;
}

.shc-epk-contact-cta {
    text-align: center;
}

.shc-epk-contact-cta p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
}

.shc-epk-contact-cta a {
    color: #98BF64;
    font-weight: 600;
}

/* EPK CTA Section */
.shc-epk-cta-section {
    background: linear-gradient(135deg, #98BF64 0%, #7a9950 100%) !important;
    border-radius: 16px !important;
    padding: 60px 40px !important;
    text-align: center !important;
}

.shc-epk-cta-section h2 {
    font-family: 'Times New Roman', Times, serif !important;
    font-size: 42px !important;
    font-weight: 600 !important;
    font-style: italic !important;
    color: #fff !important;
    margin: 0 0 15px !important;
}

.shc-epk-cta-section p {
    font-size: 1.2rem !important;
    color: rgba(255,255,255,0.9) !important;
    margin: 0 0 30px !important;
}

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

.shc-epk-cta-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 16px 35px !important;
    border-radius: 50px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s;
}

.shc-epk-cta-btn.primary {
    background: #fff;
    color: #98BF64 !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.shc-epk-cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.shc-epk-cta-btn.secondary {
    background: transparent;
    color: #fff !important;
    border: 2px solid #fff;
}

.shc-epk-cta-btn.secondary:hover {
    background: #fff;
    color: #98BF64 !important;
    transform: translateY(-3px);
}

/* EPK Responsive Styles */
@media (max-width: 1024px) {
    .shc-epk-intro-content {
        grid-template-columns: 1fr;
    }
    
    .shc-epk-quick-links {
        border-left: none;
        border-top: 4px solid #98BF64;
    }
    
    .shc-epk-photo-row {
        gap: 0.75rem;
    }
    
    .shc-epk-reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .shc-epk-tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .shc-epk-container {
        padding: 30px 15px;
    }
    
    .shc-epk-section-title {
        font-size: 24px !important;
    }
    
    .shc-epk-cta-section h2 {
        font-size: 24px !important;
    }
    
    .shc-epk-intro-content {
        padding: 25px;
    }
    
    .shc-epk-photo-row {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .shc-epk-photo-row .shc-epk-photo-card {
        flex-basis: 100% !important;
    }
    
    .shc-epk-reviews-section {
        padding: 30px 20px;
    }
    
    .shc-epk-reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .shc-epk-downloads-grid {
        grid-template-columns: 1fr;
    }
    
    .shc-epk-download-card {
        flex-direction: column;
        text-align: center;
    }
    
    .shc-epk-tech-section {
        padding: 30px 20px;
    }
    
    .shc-epk-tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shc-epk-cta-section {
        padding: 40px 20px;
    }
    
    .shc-epk-cta-section h2 {
        font-size: 1.6rem;
    }
    
    .shc-epk-cta-buttons {
        flex-direction: column;
    }
    
    .shc-epk-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .shc-epk-section-title {
        font-size: 24px !important;
    }
    
    .shc-epk-quick-actions {
        flex-direction: column;
    }
    
    .shc-epk-btn {
        width: 100%;
        justify-content: center;
    }
    
    .shc-epk-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shc-epk-tech-grid {
        grid-template-columns: 1fr;
    }
}
