/* ═══════════════════════════════════════════════════════════════
   VOCAL STUDIO - COMPLETE STYLES
   For tamagnavocalstudio.com
   Color Scheme: Contemporary Botanical
   Layout: Horizontal panels with alternating fade animations
═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   CSS VARIABLES
═══════════════════════════════════════════════════════════════ */
:root {
    --vs-primary: #6FAF9B;
    --vs-primary-light: #8ac4b3;
    --vs-primary-dark: #5a9a86;
    --vs-secondary: #CFE8DE;
    --vs-bg: #FAFBF9;
    --vs-bg-alt: #f0f4f2;
    --vs-stone: #8A8F8C;
    --vs-white: #fff;
    --vs-black: #1a1a1a;
    --vs-accent: #E28D7A;
    --vs-accent-hover: #d67a65;
    --vs-text: #2a2a2a;
    --vs-text-light: #5a5f5c;
    --vs-font-heading: 'Cormorant Garamond', Georgia, serif;
    --vs-font-body: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    --vs-transition: 0.3s ease;
    --vs-shadow: 0 4px 20px rgba(111, 175, 155, 0.12);
    --vs-shadow-hover: 0 8px 30px rgba(111, 175, 155, 0.18);
}

/* ═══════════════════════════════════════════════════════════════
   BASE STYLES
═══════════════════════════════════════════════════════════════ */
.vs-page {
    font-family: var(--vs-font-body);
    color: var(--vs-text);
    background: var(--vs-bg);
    line-height: 1.7;
    overflow-x: hidden;
}

.vs-page * {
    box-sizing: border-box;
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════════ */
.vs-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: var(--vs-primary-dark);
}

.vs-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(90, 154, 134, 0.92) 0%, rgba(111, 175, 155, 0.85) 100%);
}

.vs-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}

.vs-hero-title {
    font-family: var(--vs-font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    color: var(--vs-white);
    margin: 0 0 0.5rem 0;
}

.vs-hero-logo {
    max-width: 80%;
    max-height: 150px;
    width: auto;
    height: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.vs-hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--vs-white);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin: 0 0 1.5rem 0;
    opacity: 0.9;
}

.vs-hero-tagline {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.9);
    margin: 0 0 2.5rem 0;
}

.vs-cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--vs-accent);
    color: var(--vs-white);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 4px;
    transition: all var(--vs-transition);
}

.vs-cta-button:hover {
    background: var(--vs-accent-hover);
    transform: translateY(-2px);
}

.vs-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    animation: vs-bounce 2s infinite;
    transition: color 0.3s ease;
}

.vs-scroll-indicator:hover {
    color: rgba(255,255,255,0.9);
}

.vs-scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255,255,255,0.6);
    border-bottom: 2px solid rgba(255,255,255,0.6);
    transform: rotate(45deg);
    margin: 0.5rem auto 0;
}

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

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════════ */
.vs-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--vs-shadow);
    transform: translateY(-100%);
    transition: transform var(--vs-transition);
    visibility: hidden;
}

.vs-nav.visible {
    transform: translateY(0);
    visibility: visible;
}

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

.vs-nav-logo {
    font-family: var(--vs-font-heading);
    font-size: 1.3rem;
    color: var(--vs-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.vs-nav-logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.vs-nav-links {
    display: flex;
    gap: 2rem;
}

.vs-nav-links a {
    color: var(--vs-text);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
}

.vs-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--vs-primary);
    transition: width var(--vs-transition);
}

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

.vs-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.vs-nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--vs-text);
}

/* ═══════════════════════════════════════════════════════════════
   HORIZONTAL PANEL SECTIONS - THE KEY LAYOUT
═══════════════════════════════════════════════════════════════ */
.vs-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.vs-section-inner {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

/* Panel content and visual sides */
.vs-panel-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5%;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.vs-panel-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.15s;
}

/* ODD sections: content LEFT slides from left, visual RIGHT slides from right */
.vs-section:nth-child(odd) .vs-panel-content {
    order: 1;
    transform: translateX(-80px);
}

.vs-section:nth-child(odd) .vs-panel-visual {
    order: 2;
    transform: translateX(80px);
}

/* EVEN sections: visual LEFT slides from left, content RIGHT slides from right */
.vs-section:nth-child(even) .vs-panel-content {
    order: 2;
    transform: translateX(80px);
}

.vs-section:nth-child(even) .vs-panel-visual {
    order: 1;
    transform: translateX(-80px);
}

/* VISIBLE STATE - panels fade in and slide to position */
.vs-section.vs-visible .vs-panel-content,
.vs-section.vs-visible .vs-panel-visual {
    opacity: 1;
    transform: translateX(0);
}

/* Alternating backgrounds */
.vs-section:nth-child(odd) {
    background: var(--vs-bg);
}

.vs-section:nth-child(even) {
    background: var(--vs-white);
}

/* Section titles */
.vs-section-title {
    font-family: var(--vs-font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    color: var(--vs-text);
    margin: 0 0 1rem 0;
}

.vs-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--vs-primary);
    margin-top: 1rem;
}

.vs-section-intro {
    max-width: 500px;
    margin: 1.5rem 0 2rem;
    color: var(--vs-text-light);
    font-size: 1.1rem;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════════════════════════ */
.vs-about-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    box-shadow: var(--vs-shadow-hover);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.vs-about-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.vs-about-credentials {
    background: var(--vs-secondary);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.vs-about-credentials h3 {
    font-family: var(--vs-font-heading);
    font-size: 1.2rem;
    margin: 0 0 0.75rem 0;
    color: var(--vs-primary-dark);
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════════════════════════════ */
.vs-services-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.vs-service-card {
    background: var(--vs-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--vs-shadow);
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all var(--vs-transition);
    border: 1px solid transparent;
    position: relative;
}

.vs-service-card:hover {
    transform: translateX(10px);
    border-color: var(--vs-primary);
}

.vs-service-card.vs-featured {
    border: 2px solid var(--vs-accent);
}

.vs-featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--vs-accent);
    color: var(--vs-white);
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 20px;
}

.vs-service-info {
    flex: 1;
}

.vs-service-name {
    font-family: var(--vs-font-heading);
    font-size: 1.3rem;
    margin: 0 0 0.25rem 0;
}

.vs-service-duration {
    font-size: 0.85rem;
    color: var(--vs-stone);
}

.vs-service-description {
    margin: 0.75rem 0 0;
    color: var(--vs-text-light);
}

.vs-service-pricing {
    text-align: center;
    min-width: 120px;
}

.vs-service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--vs-primary);
}

.vs-service-cta {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.5rem 1.25rem;
    background: var(--vs-primary);
    color: var(--vs-white);
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: background var(--vs-transition);
}

.vs-service-cta:hover {
    background: var(--vs-primary-dark);
}

.vs-service-features {
    display: none;
}

/* ═══════════════════════════════════════════════════════════════
   VIDEOS SECTION
═══════════════════════════════════════════════════════════════ */
.vs-video-filters {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.vs-filter-btn {
    padding: 0.5rem 1.25rem;
    background: transparent;
    border: 1px solid var(--vs-primary);
    color: var(--vs-primary);
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all var(--vs-transition);
}

.vs-filter-btn:hover,
.vs-filter-btn.active {
    background: var(--vs-primary);
    color: var(--vs-white);
}

.vs-videos-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.vs-video-card {
    background: var(--vs-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--vs-shadow);
    display: flex;
}

.vs-video-card.hidden {
    display: none;
}

.vs-video-embed {
    position: relative;
    width: 280px;
    min-width: 280px;
    min-height: 158px;
    background: var(--vs-primary-dark);
}

.vs-video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.vs-video-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vs-video-info h3 {
    font-family: var(--vs-font-heading);
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
}

.vs-video-category {
    display: inline-block;
    background: var(--vs-secondary);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    color: var(--vs-primary-dark);
    width: fit-content;
}

.vs-video-info p {
    margin: 0.5rem 0 0;
    font-size: 0.9rem;
    color: var(--vs-text-light);
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS SECTION
═══════════════════════════════════════════════════════════════ */
.vs-testimonials-carousel {
    width: 100%;
}

.vs-testimonial-card {
    background: var(--vs-bg);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--vs-shadow);
    display: none;
    border-left: 4px solid var(--vs-primary);
}

.vs-testimonial-card:first-child {
    display: block;
}

.vs-testimonial-quote {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2rem;
}

.vs-quote-mark {
    font-family: var(--vs-font-heading);
    font-size: 3rem;
    color: var(--vs-primary);
    opacity: 0.4;
    position: absolute;
    top: -0.5rem;
    left: 0;
}

.vs-testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.vs-testimonial-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--vs-secondary);
}

.vs-testimonial-info strong {
    display: block;
}

.vs-testimonial-info span {
    font-size: 0.8rem;
    color: var(--vs-stone);
}

.vs-testimonials-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.vs-testimonial-prev,
.vs-testimonial-next {
    width: 36px;
    height: 36px;
    border: 1px solid var(--vs-primary);
    background: transparent;
    color: var(--vs-primary);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--vs-transition);
}

.vs-testimonial-prev:hover,
.vs-testimonial-next:hover {
    background: var(--vs-primary);
    color: var(--vs-white);
}

.vs-testimonials-dots {
    display: flex;
    gap: 0.4rem;
}

.vs-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--vs-secondary);
    cursor: pointer;
}

.vs-dot.active {
    background: var(--vs-primary);
    transform: scale(1.3);
}

/* ═══════════════════════════════════════════════════════════════
   BOOKING SECTION - Full Width Centered (overrides panel grid)
═══════════════════════════════════════════════════════════════ */
.vs-booking.vs-section {
    background: var(--vs-primary-dark) !important;
    color: var(--vs-white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-booking.vs-section .vs-section-inner {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 900px !important;
    margin: 0 auto !important;
    padding: 4rem 2rem !important;
    grid-template-columns: none !important;
    min-height: auto !important;
}

.vs-booking .vs-section-title {
    color: var(--vs-white);
    text-align: center;
    width: 100%;
}

.vs-booking .vs-section-title::after {
    background: var(--vs-secondary);
    margin: 1rem auto 0;
}

.vs-booking .vs-section-intro {
    color: rgba(255,255,255,0.85);
    text-align: center;
    max-width: 600px;
    margin-bottom: 2rem;
}

.vs-booking .vs-panel-content,
.vs-booking .vs-panel-visual {
    opacity: 1;
    transform: none;
}

.vs-booking .vs-booking-form-container {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.vs-booking-form {
    background: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
}

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

.vs-form-group {
    margin-bottom: 1.5rem;
}

.vs-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--vs-white);
}

.vs-form-group input,
.vs-form-group select,
.vs-form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    color: var(--vs-white);
    font-size: 1rem;
    font-family: inherit;
}

.vs-form-group input:focus,
.vs-form-group select:focus,
.vs-form-group textarea:focus {
    outline: none;
    border-color: var(--vs-white);
}

.vs-form-group input::placeholder,
.vs-form-group textarea::placeholder {
    color: rgba(255,255,255,0.5);
    opacity: 1;
}

.vs-form-group select option {
    background: var(--vs-primary-dark);
    color: var(--vs-white);
}

/* Flatpickr Custom Styling */
.flatpickr-calendar {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    border: none;
    font-family: var(--vs-font-body);
}

.flatpickr-calendar.open {
    z-index: 10000;
}

.flatpickr-months {
    background: var(--vs-primary);
    border-radius: 12px 12px 0 0;
    padding: 0.5rem 0;
}

.flatpickr-months .flatpickr-month {
    color: white;
    fill: white;
}

.flatpickr-current-month {
    color: white;
    font-weight: 600;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    background: transparent;
    color: white;
}

.flatpickr-current-month input.cur-year {
    color: white;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    color: white;
    fill: white;
}

.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
    color: var(--vs-accent);
    fill: var(--vs-accent);
}

.flatpickr-weekdays {
    background: var(--vs-primary);
}

.flatpickr-weekday {
    color: rgba(255,255,255,0.8);
    font-weight: 600;
    font-size: 0.85rem;
}

.flatpickr-day {
    color: var(--vs-text);
    border-radius: 8px;
    position: relative;
}

.flatpickr-day:hover {
    background: var(--vs-secondary);
    border-color: var(--vs-secondary);
}

.flatpickr-day.selected {
    background: var(--vs-accent) !important;
    border-color: var(--vs-accent) !important;
    color: white !important;
}

.flatpickr-day.today {
    border-color: var(--vs-primary);
}

.flatpickr-day.today:hover {
    background: var(--vs-primary);
    color: white;
}

.flatpickr-day.flatpickr-disabled {
    color: #ccc;
}

/* Available date dot indicator */
.vs-date-dot {
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background: var(--vs-accent);
    border-radius: 50%;
}

.flatpickr-day.selected .vs-date-dot {
    background: white;
}

.vs-time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.vs-time-slot {
    padding: 0.6rem 1.2rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    color: var(--vs-white);
    cursor: pointer;
    transition: all var(--vs-transition);
}

.vs-time-slot:hover {
    background: rgba(255,255,255,0.2);
}

.vs-time-slot.selected {
    background: var(--vs-white);
    color: var(--vs-primary-dark);
}

.vs-select-date-msg {
    color: rgba(255,255,255,0.6);
    font-style: italic;
}

.vs-submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--vs-accent);
    color: var(--vs-white);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--vs-transition);
}

.vs-submit-btn:hover {
    background: var(--vs-accent-hover);
}

.vs-booking-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
    display: none;
}

.vs-booking-message.success {
    display: block;
    background: rgba(255,255,255,0.15);
    color: var(--vs-white);
}

.vs-booking-message.error {
    display: block;
    background: rgba(226, 141, 122, 0.3);
    color: #ffcdc4;
}

.vs-period-info {
    margin-bottom: 1.5rem;
}

.vs-period-badge {
    display: inline-block;
    background: var(--vs-secondary);
    color: var(--vs-primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Timezone note text */
#vs-tz-note {
    color: rgba(255,255,255,0.7) !important;
}

.vs-lesson-type-options {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
}

.vs-radio-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--vs-transition);
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.vs-radio-option:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.5);
}

.vs-radio-option input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

.vs-radio-option input[type="radio"]:checked {
    border-color: var(--vs-accent);
    background: var(--vs-accent);
}

.vs-radio-option input[type="radio"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.vs-radio-option:has(input[type="radio"]:checked) {
    background: rgba(226, 141, 122, 0.2);
    border-color: var(--vs-accent);
}

.vs-radio-option span {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.vs-radio-option:has(input[type="radio"]:checked) span {
    color: var(--vs-white);
    font-weight: 600;
}

.vs-booking-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    text-align: center;
}

.vs-no-availability {
    text-align: center;
    padding: 3rem;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
}

.vs-no-availability p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
}

/* ═══════════════════════════════════════════════════════════════
   RESOURCES SECTION
═══════════════════════════════════════════════════════════════ */
.vs-resources-gate {
    text-align: center;
    width: 100%;
}

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

.vs-resources-gate p {
    color: var(--vs-text-light);
    margin-bottom: 1.5rem;
}

.vs-resources-login {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    max-width: 350px;
    margin: 0 auto;
}

.vs-resources-login input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid var(--vs-primary);
    border-radius: 6px;
}

.vs-resources-login button {
    padding: 0.8rem 1.25rem;
    background: var(--vs-primary);
    color: var(--vs-white);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.vs-resources-login button:hover {
    background: var(--vs-primary-dark);
}

.vs-resources-error {
    color: var(--vs-accent);
    margin-top: 1rem;
}

.vs-resources-filters {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.vs-resources-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
}

.vs-resource-card {
    background: var(--vs-white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--vs-shadow);
    transition: all var(--vs-transition);
    border: 1px solid transparent;
}

.vs-resource-card:hover {
    transform: translateY(-3px);
    border-color: var(--vs-primary);
}

.vs-resource-card.hidden {
    display: none;
}

.vs-resource-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.vs-resource-card h3 {
    font-family: var(--vs-font-heading);
    font-size: 1.05rem;
    margin: 0 0 0.4rem 0;
}

.vs-resource-category {
    display: inline-block;
    background: var(--vs-secondary);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    color: var(--vs-primary-dark);
}

.vs-resource-card p {
    font-size: 0.85rem;
    color: var(--vs-text-light);
    margin: 0.5rem 0 0.75rem;
}

.vs-resource-link {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--vs-primary);
    color: var(--vs-white);
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.vs-resource-link:hover {
    background: var(--vs-primary-dark);
}

.vs-no-resources {
    color: var(--vs-stone);
    font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════════════════════════ */
.vs-contact-content {
    width: 100%;
}

.vs-social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

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

.vs-social-link svg {
    width: 22px;
    height: 22px;
}

.vs-social-link:hover {
    background: var(--vs-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(111, 175, 155, 0.3);
}

.vs-main-site-link {
    color: var(--vs-stone);
    text-decoration: none;
}

.vs-main-site-link:hover {
    color: var(--vs-primary);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.vs-footer {
    background: var(--vs-primary-dark);
    color: rgba(255,255,255,0.8);
    padding: 2rem 0;
    text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 992px) {
    .vs-section-inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .vs-section {
        min-height: auto;
    }
    
    /* On mobile, all panels slide up from below */
    .vs-section:nth-child(odd) .vs-panel-content,
    .vs-section:nth-child(odd) .vs-panel-visual,
    .vs-section:nth-child(even) .vs-panel-content,
    .vs-section:nth-child(even) .vs-panel-visual {
        order: unset;
        transform: translateY(50px);
    }
    
    .vs-section.vs-visible .vs-panel-content,
    .vs-section.vs-visible .vs-panel-visual {
        transform: translateY(0);
    }
    
    .vs-panel-content {
        padding: 4rem 2rem 2rem;
    }
    
    .vs-panel-visual {
        padding: 2rem;
    }
    
    .vs-video-card {
        flex-direction: column;
    }
    
    .vs-video-embed {
        width: 100%;
        min-width: 100%;
        padding-bottom: 56.25%;
        min-height: 0;
    }
    
    .vs-service-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .vs-resources-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .vs-nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--vs-white);
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: var(--vs-shadow);
    }
    
    .vs-nav-links.open {
        display: flex;
    }
    
    .vs-nav-links a {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .vs-nav-toggle {
        display: flex;
    }
    
    .vs-form-row {
        grid-template-columns: 1fr;
    }
    
    .vs-booking-form {
        padding: 2rem 1.5rem;
    }
    
    .vs-resources-login {
        flex-direction: column;
    }
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL PROGRESS OVERRIDE
   Use coral accent color instead of gold from main site
═══════════════════════════════════════════════════════════════ */
.vocal-studio-page .scroll-progress,
.vs-page .scroll-progress {
    background: linear-gradient(90deg, var(--vs-accent), var(--vs-accent-hover));
}

/* ═══════════════════════════════════════════════════════════════
   INTERACTIVE WAVEFORM BACKGROUND
═══════════════════════════════════════════════════════════════ */
.vs-waveform-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    opacity: 0.25;
}

/* Ensure proper z-index hierarchy */
.vs-hero {
    z-index: 2;
}

.vs-hero-overlay {
    z-index: 1;
}

.vs-hero-content {
    z-index: 3;
}

.vs-scroll-indicator {
    z-index: 3;
}

.vs-nav {
    z-index: 1000 !important;
}

.vs-section {
    position: relative;
    z-index: 2;
}

.vs-footer {
    position: relative;
    z-index: 2;
}

/* ═══════════════════════════════════════════════════════════════
   CUSTOM CURSOR OVERRIDE
   Use coral accent color instead of gold from main site
═══════════════════════════════════════════════════════════════ */
body.vocal-studio-page .custom-cursor {
    border-color: rgba(226, 141, 122, 0.6);
}

body.vocal-studio-page .custom-cursor.cursor-hover {
    border-color: #E28D7A;
    background: rgba(226, 141, 122, 0.1);
}

body.vocal-studio-page .cursor-glow {
    background: radial-gradient(circle, rgba(226, 141, 122, 0.08) 0%, transparent 70%);
}
