/* Buttons and Interactive Elements */
.cta-button {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.view-details-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.view-details-btn:hover {
    background: #3a7bc8;
    transform: translateY(-2px);
    text-decoration: none;
}

.view-studio-btn {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    font-weight: 600;
    margin-top: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    text-decoration: none;   /* keep link style like original button */
    display: inline-block;   /* maintain spacing/box model */
}

.view-studio-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border-color: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-shadow: none;
    text-decoration: none; /* prevent underline on hover */
}

.book-now-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
    color: white;
    text-decoration: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.book-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.4);
}

.submit-btn {
    background: var(--gradient-primary);
    color: var(--text-light);
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-blue);
}

/* Tab Components */
.tab-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.genre-btn {
    background: transparent;
    border: 2px solid #e9ecef;
    color: #666;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.genre-btn.active,
.genre-btn:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.genre-link {
    background: transparent;
    border: 2px solid #e9ecef;
    color: #666;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.genre-link:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.category-btn {
    background: transparent;
    border: 2px solid #e9ecef;
    color: var(--text-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.category-btn.active,
.category-btn:hover {
    background: var(--gradient-primary);
    color: var(--text-light);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
}

/* Control Elements */
.control-btn {
    background: transparent;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #666;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.control-btn.play-btn {
    background: var(--gradient-primary);
    color: white;
    width: 65px;
    height: 65px;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.3);
}

.control-btn.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(74, 144, 226, 0.4);
}

.control-btn.active {
    color: var(--primary-color);
    background: rgba(74, 144, 226, 0.1);
}

/* Scroll to Top Button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--text-light);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: var(--shadow-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.scroll-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top-btn:hover {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.6);
}

.scroll-to-top-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.7);
}

/* Video Service Buttons */
.video-service-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #667eea 100%);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
    min-height: 60px;
    text-decoration: none; /* ensure link-style buttons are not underlined */
}

.video-service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.video-service-btn:hover::before {
    left: 100%;
}

.video-service-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.4);
    background: linear-gradient(135deg, #3a7bc8 0%, #5a6fd8 100%);
    text-decoration: none; /* keep links un-underlined on hover */
}

.video-service-btn i {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.video-service-btn span {
    font-size: 0.95rem;
    line-height: 1.3;
    letter-spacing: 0.3px;
}

.video-service-btn:active {
    transform: translateY(-1px) scale(1.01);
}

/* Show More Buttons */
.show-more-btn {
    width: 100%;
    margin-top: auto;
    padding: 0.75rem;
    background: linear-gradient(135deg, #4A90E2 0%, #667eea 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.show-more-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    background: linear-gradient(135deg, #5ba3f5 0%, #7a8eed 100%);
}

.show-more-btn i {
    transition: transform 0.3s ease;
}

.show-more-btn.expanded i {
    transform: rotate(180deg);
}

/* Track Count */
.track-count {
    background: var(--gradient-primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Stream Indicator */
.stream-indicator {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: linear-gradient(45deg, #ff4757, #ff3838);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    animation: pulse 2s infinite;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(255, 71, 87, 0.3);
}

.stream-indicator i {
    font-size: 0.6rem;
    animation: blink 1s infinite;
}

/* Contact Page Specific - Subtle Action Links */
.contact .contact-cta {
    margin-top: 20px !important;
}

.contact .contact-cta .cta-button {
    background: transparent !important;
    color: #4A90E2 !important;
    border: 1px solid #4A90E2 !important;
    padding: 0.6rem 1.4rem !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.3px !important;
    border-radius: 6px !important;
    box-shadow: none !important;
    text-transform: none !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

.contact .contact-cta .cta-button:hover {
    background: #4A90E2 !important;
    color: white !important;
    transform: none !important;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.2) !important;
}

.contact .contact-cta .cta-button::before {
    display: none !important;
}

/* Contact Inline Links */
.contact-inline-link {
    color: #4A90E2 !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: color 0.2s ease !important;
    position: relative !important;
}

.contact-inline-link:hover {
    color: #3a7bc8 !important;
    text-decoration: underline !important;
}

.contact-inline-link:active {
    color: #2968a6 !important;
}

/* Contact Page Section Padding Override */
.contact {
    padding: 20px 0 !important;
}

/* Form Status (inline feedback for contact form) */
.form-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    margin-bottom: 14px; /* add breathing room above the Send button */
    font-size: 0.95rem;
    line-height: 1.3;
    padding: 10px 12px;
    border-radius: 10px;
    min-height: 40px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

/* hide when empty and animate when showing */
.form-status:empty { display: none; }
.form-status:not(:empty) { animation: formstatus-fade 0.2s ease; }

/* baseline placeholder so layout doesn't jump when icon appears */
.form-status::before {
    content: '';
    width: 0;
    height: 0;
}

/* Loading state */
.form-status.loading {
    color: var(--primary-color);
    background: rgba(74, 144, 226, 0.08);
    border-color: rgba(74, 144, 226, 0.25);
}

.form-status.loading::before {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top-color: var(--primary-color);
    border-right-color: var(--primary-color);
    border-radius: 50%;
    animation: formstatus-spin 0.75s linear infinite;
}

/* Success state */
.form-status.success {
    color: #1a7f37;
    background: rgba(26, 127, 55, 0.08);
    border-color: rgba(26, 127, 55, 0.25);
}

.form-status.success::before {
    content: '✓';
    font-weight: 700;
    font-size: 12px;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #1a7f37;
    color: #fff;
}

/* Error state */
.form-status.error {
    color: #b42318;
    background: rgba(180, 35, 24, 0.08);
    border-color: rgba(180, 35, 24, 0.25);
}

.form-status.error::before {
    content: '!';
    font-weight: 800;
    font-size: 12px;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #b42318;
    color: #fff;
}

/* Accent borders and subtle inset for states */
.form-status.loading { border-left: 4px solid var(--primary-color); box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.06) inset; }
.form-status.success { border-left: 4px solid #1a7f37; box-shadow: 0 0 0 3px rgba(26, 127, 55, 0.06) inset; }
.form-status.error  { border-left: 4px solid #b42318; box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.06) inset; }

/* Subtle disabled styling on submit during sending */
.submit-btn[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
    filter: grayscale(5%);
}

/* Keyframes */
@keyframes formstatus-spin {
    to { transform: rotate(360deg); }
}

@keyframes formstatus-fade {
    from { opacity: 0; transform: translateY(-2px); }
    to   { opacity: 1; transform: translateY(0); }
}
