/**
 * SECTIONS CSS
 * 
 * Standardized CSS for all section views.
 * This file contains:
 * 1. Theme CSS variables (dark/light modes)
 * 2. Common section layout classes
 * 3. Section header styles
 * 4. Section background/overlay styles
 * 
 * Usage: All sections use data-section-theme="dark|light" attribute
 * which automatically applies the correct color scheme.
 */

/* ============================================================================
 * SECTION THEME VARIABLES
 * These CSS variables are set based on data-section-theme attribute
 * Sections should use var(--section-*) instead of hardcoded colors
 * ============================================================================ */

/* Default/Dark Theme Variables */
[data-section-theme="dark"],
.section-bg-primary,
.section-bg-secondary {
    --section-bg: transparent;
    --section-text: #ffffff;
    --section-text-muted: rgba(255, 255, 255, 0.7);
    --section-heading: #ffffff;
    --section-subheading: rgba(255, 255, 255, 0.85);
    --section-label: var(--theme-primary, #c9a962);
    --section-divider: var(--theme-primary, #c9a962);
    --section-border: rgba(255, 255, 255, 0.15);
    --section-card-bg: rgba(255, 255, 255, 0.05);
    --section-card-hover-bg: rgba(255, 255, 255, 0.1);
    --section-link: var(--theme-primary, #c9a962);
    --section-link-hover: #ffffff;
    --section-icon: var(--theme-primary, #c9a962);
    --section-btn-bg: var(--theme-primary, #c9a962);
    --section-btn-text: #000000;
    --section-btn-hover-bg: #ffffff;
    --section-btn-hover-text: #000000;
    --section-input-bg: rgba(255, 255, 255, 0.1);
    --section-input-border: rgba(255, 255, 255, 0.2);
    --section-input-text: #ffffff;
    --section-input-placeholder: rgba(255, 255, 255, 0.5);
}

/* Light Theme Variables */
[data-section-theme="light"] {
    --section-bg: transparent;
    --section-text: #333333;
    --section-text-muted: rgba(0, 0, 0, 0.6);
    --section-heading: #1a1a1a;
    --section-subheading: #555555;
    --section-label: var(--theme-primary, #c9a962);
    --section-divider: var(--theme-primary, #c9a962);
    --section-border: rgba(0, 0, 0, 0.1);
    --section-card-bg: rgba(0, 0, 0, 0.03);
    --section-card-hover-bg: rgba(0, 0, 0, 0.06);
    --section-link: var(--theme-primary-dark, #a88a4a);
    --section-link-hover: #1a1a1a;
    --section-icon: var(--theme-primary, #c9a962);
    --section-btn-bg: var(--theme-primary, #c9a962);
    --section-btn-text: #ffffff;
    --section-btn-hover-bg: #1a1a1a;
    --section-btn-hover-text: #ffffff;
    --section-input-bg: #ffffff;
    --section-input-border: rgba(0, 0, 0, 0.15);
    --section-input-text: #333333;
    --section-input-placeholder: rgba(0, 0, 0, 0.4);
}


/* ============================================================================
 * COMMON SECTION STYLES
 * ============================================================================ */

/* Section padding standard */
.section-padding {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

/* Section with background image */
.section-has-bg {
    position: relative;
}

.section-has-bg > .container,
.section-has-bg > .container-fluid {
    position: relative;
    z-index: 2;
}

/* Section background image layer */
.section-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Background position classes */
.bg-pos-center { background-position: center center; }
.bg-pos-top { background-position: center top; }
.bg-pos-bottom { background-position: center bottom; }
.bg-pos-left { background-position: left center; }
.bg-pos-right { background-position: right center; }

/* Background size classes */
.bg-size-cover { background-size: cover; }
.bg-size-contain { background-size: contain; }
.bg-size-auto { background-size: auto; }

/* Background attachment (parallax) */
.bg-attach-scroll { background-attachment: scroll; }
.bg-attach-fixed { background-attachment: fixed; }

@media (max-width: 991px) {
    /* Disable fixed attachment on mobile for performance */
    .bg-attach-fixed { background-attachment: scroll; }
}

/* Section overlay layer */
.section-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}


/* ============================================================================
 * SECTION HEADER STYLES
 * ============================================================================ */

.section-header {
    margin-bottom: 40px;
}

.section-header.text-center .section-divider {
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--section-label);
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--section-heading);
    margin-bottom: 15px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--section-text-muted);
    max-width: 700px;
    margin: 0 auto 20px;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--section-divider);
    border: none;
    margin-bottom: 30px;
}


/* ============================================================================
 * SECTION CARD STYLES (for consistent card styling across sections)
 * ============================================================================ */

.section-card {
    background: var(--section-card-bg);
    border: 1px solid var(--section-border);
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
}

.section-card:hover {
    background: var(--section-card-hover-bg);
    transform: translateY(-3px);
}

.section-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--section-heading);
    margin-bottom: 10px;
}

.section-card-text {
    color: var(--section-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}


/* ============================================================================
 * SECTION FORM STYLES (for contact forms etc)
 * ============================================================================ */

.section-form .form-control,
.section-form .form-select {
    background: var(--section-input-bg);
    border: 1px solid var(--section-input-border);
    color: var(--section-input-text);
    padding: 12px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.section-form .form-control::placeholder {
    color: var(--section-input-placeholder);
}

.section-form .form-control:focus,
.section-form .form-select:focus {
    border-color: var(--section-label);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15);
    outline: none;
}

.section-form .form-label {
    color: var(--section-text);
    font-weight: 500;
    margin-bottom: 8px;
}


/* ============================================================================
 * SECTION BUTTON STYLES
 * ============================================================================ */

.btn-section {
    display: inline-block;
    padding: 12px 30px;
    background: var(--section-btn-bg);
    color: var(--section-btn-text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-section:hover {
    background: var(--section-btn-hover-bg);
    color: var(--section-btn-hover-text);
    transform: translateY(-2px);
}

.btn-section-outline {
    background: transparent;
    border: 2px solid var(--section-btn-bg);
    color: var(--section-btn-bg);
}

.btn-section-outline:hover {
    background: var(--section-btn-bg);
    color: var(--section-btn-text);
}


/* ============================================================================
 * SECTION ICON STYLES
 * ============================================================================ */

.section-icon {
    color: var(--section-icon);
    font-size: 2rem;
    margin-bottom: 15px;
}

.section-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--section-card-bg);
    border: 2px solid var(--section-icon);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.section-icon-circle i {
    color: var(--section-icon);
    font-size: 1.5rem;
}


/* ============================================================================
 * SECTION LINK STYLES
 * ============================================================================ */

.section-link {
    color: var(--section-link);
    text-decoration: none;
    transition: color 0.3s ease;
}

.section-link:hover {
    color: var(--section-link-hover);
}

/* Social links in sections */
.section-social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.section-social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--section-card-bg);
    border: 1px solid var(--section-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--section-text);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.section-social-link:hover {
    background: var(--section-icon);
    border-color: var(--section-icon);
    color: #ffffff;
    transform: translateY(-3px);
}


/* ============================================================================
 * CTA BANNER SECTION STYLES
 * ============================================================================ */

.section-cta-banner {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: #1a1a1a;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 30px;
    max-width: 800px;
}

.cta-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-subheading {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.7;
}

.circular-button-wrapper {
    display: inline-block;
}

.circular-button {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin: 0 auto;
}

.circular-text {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateText 15s linear infinite;
}

.circular-text-path {
    fill: #ffffff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 500;
}

.button-center {
    width: 80px;
    height: 80px;
    background: var(--accent-color, #c9a962);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.circular-button:hover .button-center {
    transform: scale(1.1);
    background: #ffffff;
}

.circular-button:hover .circular-text {
    animation-duration: 8s;
}

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

@media (max-width: 991px) {
    .section-cta-banner {
        min-height: 400px;
        background-attachment: scroll;
    }
    
    .cta-heading {
        font-size: 2.4rem;
    }
}

@media (max-width: 767px) {
    .cta-content {
        padding: 60px 20px;
    }
    
    .cta-heading {
        font-size: 2rem;
    }
    
    .cta-subheading {
        font-size: 1rem;
    }
    
    .circular-button {
        width: 140px;
        height: 140px;
    }
    
    .button-center {
        width: 70px;
        height: 70px;
        font-size: 0.75rem;
    }
    
    .circular-text-path {
        font-size: 10px;
        letter-spacing: 3px;
    }
}


/* ============================================================================
 * STATS COUNTER SECTION STYLES
 * ============================================================================ */

.section-stats {
    background: var(--accent-color, var(--primary-color, #888));
    padding: 45px 0;
}

/* Light theme - dark text on light background */
.section-stats[data-section-theme="light"] {
    background: #f8f9fa;
}

.section-stats[data-section-theme="light"] .stat-number {
    color: #212529;
    text-shadow: none;
}

.section-stats[data-section-theme="light"] .stat-label {
    color: rgba(0, 0, 0, 0.7);
}

.section-stats[data-section-theme="light"] .stat-divider {
    background: rgba(0, 0, 0, 0.2);
}

.section-stats[data-section-theme="light"] .stats-placeholder p {
    color: #6c757d;
}

/* Dark theme - light text on dark background */
.section-stats[data-section-theme="dark"] {
    background: #212529;
}

.section-stats[data-section-theme="dark"] .stat-number {
    color: #ffffff;
    text-shadow: none;
}

.section-stats[data-section-theme="dark"] .stat-label {
    color: rgba(255, 255, 255, 0.8);
}

.section-stats[data-section-theme="dark"] .stat-divider {
    background: rgba(255, 255, 255, 0.3);
}

.section-stats[data-section-theme="dark"] .stats-placeholder p {
    color: rgba(255, 255, 255, 0.7);
}

/* Section theme overrides site mode */
[data-mode="light"] .section-stats[data-section-theme="dark"] {
    background: #212529;
}

[data-mode="light"] .section-stats[data-section-theme="dark"] .stat-number {
    color: #ffffff !important;
}

[data-mode="light"] .section-stats[data-section-theme="dark"] .stat-label {
    color: rgba(255, 255, 255, 0.8) !important;
}

[data-mode="light"] .section-stats[data-section-theme="dark"] .stat-divider {
    background: rgba(255, 255, 255, 0.3) !important;
}

[data-mode="dark"] .section-stats[data-section-theme="light"] {
    background: #f8f9fa;
}

[data-mode="dark"] .section-stats[data-section-theme="light"] .stat-number {
    color: #212529 !important;
}

[data-mode="dark"] .section-stats[data-section-theme="light"] .stat-label {
    color: rgba(0, 0, 0, 0.7) !important;
}

[data-mode="dark"] .section-stats[data-section-theme="light"] .stat-divider {
    background: rgba(0, 0, 0, 0.2) !important;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 50px;
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    font-style: italic;
    color: #ffffff;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    margin-top: 10px;
}

.stat-divider {
    width: 1px;
    height: 70px;
    background: rgba(255, 255, 255, 0.35);
    margin: 0 15px;
}

@media (max-width: 991px) {
    .stat-item {
        padding: 15px 30px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }
    
    .stat-divider {
        height: 55px;
    }
}

@media (max-width: 767px) {
    .section-stats {
        padding: 35px 0;
    }
    
    .stats-row {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .stat-item {
        flex: 0 0 45%;
        padding: 20px 15px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-number {
        font-size: 2.4rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .stat-item {
        flex: 0 0 100%;
    }
}


/* ============================================================================
 * BOOKING CTA SECTION STYLES
 * ============================================================================ */

.booking-cta-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    overflow: hidden;
}

.booking-cta-section.has-bg {
    padding: 6rem 0;
}

.booking-cta-section .cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.booking-cta-section .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.booking-cta-section .cta-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

/* Rotating Circle Container */
.cta-circle-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rotating-text-container {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateText 20s linear infinite;
}

.rotating-text-svg {
    width: 100%;
    height: 100%;
}

.rotating-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    fill: #ffffff;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Center Button */
.cta-button-circle {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-align: center;
    padding: 1rem;
}

.cta-button-circle:hover {
    background: #ffffff;
    color: #000000;
    transform: scale(1.05);
}

/* Right Side Text */
.booking-cta-section .cta-text {
    flex: 1;
    max-width: 600px;
}

.booking-cta-section .cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.booking-cta-section .cta-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.booking-cta-section .cta-description {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
}

/* Light Theme - Dark text on light background */
.booking-cta-section[data-section-theme="light"] {
    background: #f8f9fa;
}

.booking-cta-section[data-section-theme="light"] .rotating-text {
    fill: #212529;
}

.booking-cta-section[data-section-theme="light"] .cta-button-circle {
    border-color: #212529;
    color: #212529;
}

.booking-cta-section[data-section-theme="light"] .cta-button-circle:hover {
    background: #212529;
    color: #ffffff;
}

.booking-cta-section[data-section-theme="light"] .cta-title {
    color: #212529;
}

.booking-cta-section[data-section-theme="light"] .cta-subtitle {
    color: rgba(0, 0, 0, 0.8);
}

.booking-cta-section[data-section-theme="light"] .cta-description {
    color: rgba(0, 0, 0, 0.7);
}

.booking-cta-section[data-section-theme="light"]::before,
.booking-cta-section[data-section-theme="light"]::after {
    border-color: rgba(0, 0, 0, 0.1);
}

/* Dark Theme - Light text on dark background */
.booking-cta-section[data-section-theme="dark"] {
    background: #212529;
}

.booking-cta-section[data-section-theme="dark"] .rotating-text {
    fill: #ffffff;
}

.booking-cta-section[data-section-theme="dark"] .cta-button-circle {
    border-color: #ffffff;
    color: #ffffff;
}

.booking-cta-section[data-section-theme="dark"] .cta-button-circle:hover {
    background: #ffffff;
    color: #000000;
}

.booking-cta-section[data-section-theme="dark"] .cta-title {
    color: #ffffff;
}

.booking-cta-section[data-section-theme="dark"] .cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.booking-cta-section[data-section-theme="dark"] .cta-description {
    color: rgba(255, 255, 255, 0.85);
}

.booking-cta-section[data-section-theme="dark"]::before,
.booking-cta-section[data-section-theme="dark"]::after {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Decorative elements */
.booking-cta-section::before,
.booking-cta-section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(201, 169, 98, 0.15);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.booking-cta-section::before {
    top: -100px;
    left: -100px;
}

.booking-cta-section::after {
    bottom: -100px;
    right: -100px;
}

@media (max-width: 991.98px) {
    .booking-cta-section .cta-content {
        gap: 3rem;
    }
    
    .cta-circle-wrapper {
        width: 180px;
        height: 180px;
    }
    
    .cta-button-circle {
        width: 100px;
        height: 100px;
        font-size: 0.75rem;
    }
    
    .booking-cta-section .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .booking-cta-section {
        padding: 4rem 0;
    }
    
    .booking-cta-section .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }
    
    .cta-circle-wrapper {
        width: 200px;
        height: 200px;
    }
    
    .cta-button-circle {
        width: 110px;
        height: 110px;
        font-size: 0.8rem;
    }
    
    .booking-cta-section .cta-text {
        max-width: 100%;
    }
    
    .booking-cta-section .cta-title {
        font-size: 1.75rem;
    }
    
    .booking-cta-section .cta-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .cta-circle-wrapper {
        width: 170px;
        height: 170px;
    }
    
    .cta-button-circle {
        width: 95px;
        height: 95px;
        font-size: 0.7rem;
    }
    
    .rotating-text {
        font-size: 10px;
    }
}


/* ============================================================================
 * INSTAGRAM FEED SECTION STYLES
 * ============================================================================ */

.instagram-feed-section {
    padding: 3rem 0;
    width: 100%;
}

.instagram-embed-container {
    width: 100%;
    overflow: hidden;
}

.instagram-embed-container iframe,
.instagram-embed-container .elfsight-app-instagram,
.instagram-embed-container > div {
    width: 100% !important;
    max-width: 100% !important;
}

.instagram-placeholder {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin: 0 2rem;
}

.instagram-placeholder i {
    font-size: 4rem;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.instagram-placeholder p {
    color: var(--section-text-muted, rgba(255, 255, 255, 0.7));
    margin-bottom: 0.5rem;
}

.instagram-placeholder small {
    color: var(--section-text-muted, rgba(255, 255, 255, 0.4));
}


/* ============================================================================
 * PAGE SIDEBAR LAYOUT STYLES
 * Used when pages have layout_type set to sidebar-left or sidebar-right
 * ============================================================================ */

.page-with-sidebar {
    display: flex;
    min-height: calc(100vh - 80px); /* Account for navbar */
    margin-top: 80px; /* Space for fixed navbar */
}

.page-with-sidebar.sidebar-left {
    flex-direction: row;
}

.page-with-sidebar.sidebar-right {
    flex-direction: row-reverse;
}

/* Sidebar */
.page-sidebar {
    width: 280px;
    min-width: 280px;
    background: var(--section-card-bg, rgba(255, 255, 255, 0.05));
    border-right: 1px solid var(--section-border, rgba(255, 255, 255, 0.15));
    position: sticky;
    top: 80px;
    height: calc(100vh - 80px);
    overflow-y: auto;
    z-index: 100;
}

.sidebar-right .page-sidebar {
    border-right: none;
    border-left: 1px solid var(--section-border, rgba(255, 255, 255, 0.15));
}

.sidebar-nav {
    padding: 1.5rem 0;
}

.sidebar-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-nav-item {
    margin: 0;
    padding: 0;
}

.sidebar-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    color: var(--section-text, #ffffff);
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.sidebar-right .sidebar-nav-link {
    border-left: none;
    border-right: 3px solid transparent;
}

.sidebar-nav-link:hover {
    background: var(--section-card-hover-bg, rgba(255, 255, 255, 0.1));
    color: var(--section-link, var(--theme-primary, #c9a962));
}

.sidebar-nav-item.active .sidebar-nav-link {
    background: var(--section-card-hover-bg, rgba(255, 255, 255, 0.1));
    border-left-color: var(--section-link, var(--theme-primary, #c9a962));
    color: var(--section-link, var(--theme-primary, #c9a962));
}

.sidebar-right .sidebar-nav-item.active .sidebar-nav-link {
    border-left-color: transparent;
    border-right-color: var(--section-link, var(--theme-primary, #c9a962));
}

.sidebar-nav-image {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--section-card-bg, rgba(255, 255, 255, 0.05));
}

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

.sidebar-nav-title {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.3;
}

/* Main content area */
.page-main-content {
    flex: 1;
    min-width: 0; /* Allow content to shrink below flex basis */
}

/* Adjust sections inside sidebar layout */
.page-main-content section {
    /* Sections should not have top margin as sidebar layout manages spacing */
}

/* Mobile responsive */
@media (max-width: 991px) {
    .page-with-sidebar {
        flex-direction: column;
        margin-top: 0;
    }
    
    .page-sidebar {
        width: 100%;
        min-width: 100%;
        height: auto;
        position: relative;
        top: 0;
        border-right: none;
        border-bottom: 1px solid var(--section-border, rgba(255, 255, 255, 0.15));
    }
    
    .sidebar-right .page-sidebar {
        border-left: none;
        border-bottom: 1px solid var(--section-border, rgba(255, 255, 255, 0.15));
    }
    
    .sidebar-nav-list {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0.75rem 1rem;
    }
    
    .sidebar-nav-link {
        padding: 0.5rem 0.875rem;
        border-radius: 20px;
        border-left: none !important;
        border-right: none !important;
        background: var(--section-card-bg, rgba(255, 255, 255, 0.05));
    }
    
    .sidebar-nav-item.active .sidebar-nav-link {
        background: var(--section-link, var(--theme-primary, #c9a962));
        color: #000000;
    }
    
    .sidebar-nav-image {
        width: 32px;
        height: 32px;
    }
    
    .sidebar-nav-title {
        font-size: 0.875rem;
    }
}

@media (max-width: 576px) {
    .sidebar-nav-list {
        flex-direction: column;
        gap: 0;
    }
    
    .sidebar-nav-link {
        border-radius: 0;
        justify-content: flex-start;
    }
}


/* ============================================================================
 * FULLSCREEN CONTACT SECTION
 * Contact form with fullscreen background image on left, form on right
 * ============================================================================ */

.contact-fullscreen {
    position: relative;
    display: flex;
    overflow: hidden;
}

/* Background Image - Left Side */
.contact-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
}

.contact-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-bg-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.contact-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background set inline via PHP based on section settings */
}

/* Form Container - Right Side */
.contact-form-wrapper {
    position: relative;
    z-index: 2;
    width: 50%;
    margin-left: 50%;
    background: var(--contact-form-bg, rgba(18, 18, 18, 0.97));
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 56px 32px;
}

.contact-form-inner {
    width: 100%;
    max-width: 560px;
}

.contact-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--section-heading, #ffffff);
    margin-bottom: 10px;
}

.contact-form-divider {
    width: 60px;
    height: 3px;
    background: var(--section-divider, var(--theme-primary, #c9a962));
    margin-bottom: 18px;
}

.contact-form-subtitle {
    color: var(--section-text-muted, rgba(255, 255, 255, 0.8));
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 8px;
}

.contact-form-subtitle .text-highlight {
    color: var(--section-label, var(--theme-primary, #c9a962));
}

.contact-form-note {
    color: var(--section-text-muted, rgba(255, 255, 255, 0.5));
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.contact-inquiry-form .mb-3 {
    margin-bottom: 0.85rem !important;
}

.contact-inquiry-form .mb-4 {
    margin-bottom: 1rem !important;
}

/* Form Styles */
.contact-inquiry-form .form-label {
    color: var(--section-text, #ffffff);
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

.contact-inquiry-form .form-label .required {
    color: var(--section-label, var(--theme-primary, #c9a962));
    margin-left: 2px;
}

.contact-inquiry-form .form-label small {
    font-weight: 400;
    color: var(--section-text-muted, rgba(255, 255, 255, 0.5));
}

.contact-inquiry-form .form-control,
.contact-inquiry-form .form-select {
    background: var(--section-input-bg, rgba(255, 255, 255, 0.05));
    border: 1px solid var(--section-input-border, rgba(255, 255, 255, 0.15));
    color: var(--section-input-text, #ffffff);
    padding: 10px 14px;
    border-radius: 4px;
    font-size: 0.92rem;
    transition: all 0.3s ease;
}

.contact-inquiry-form .form-control:focus,
.contact-inquiry-form .form-select:focus {
    background: var(--contact-input-focus-bg, rgba(255, 255, 255, 0.08));
    border-color: var(--section-label, var(--theme-primary, #c9a962));
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15);
    outline: none;
}

.contact-inquiry-form .form-control::placeholder {
    color: var(--section-input-placeholder, rgba(255, 255, 255, 0.4));
}

.contact-inquiry-form .form-select {
    appearance: none;
    background-image: var(--contact-select-arrow, url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 8L1 3h10z'/%3E%3C/svg%3E"));
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.contact-inquiry-form .form-select option {
    background: var(--contact-option-bg, #1a1a1a);
    color: var(--contact-option-text, #ffffff);
}

/* Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 7px 10px;
    background: var(--section-card-bg, rgba(255, 255, 255, 0.03));
    border: 1px solid var(--section-border, rgba(255, 255, 255, 0.1));
    border-radius: 4px;
    transition: all 0.2s ease;
}

.checkbox-item:hover {
    background: var(--section-card-hover-bg, rgba(255, 255, 255, 0.06));
    border-color: var(--contact-checkbox-hover-border, rgba(255, 255, 255, 0.2));
}

.checkbox-item input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--contact-checkbox-border, rgba(255, 255, 255, 0.3));
    border-radius: 3px;
    margin-right: 10px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
    background: transparent;
}

.checkbox-item input[type="checkbox"]:checked {
    background: var(--section-label, var(--theme-primary, #c9a962));
    border-color: var(--section-label, var(--theme-primary, #c9a962));
}

.checkbox-item input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000000;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-label {
    color: var(--section-text, rgba(255, 255, 255, 0.85));
    font-size: 0.9rem;
}

/* Submit Button */
.contact-submit-btn {
    width: 100%;
    padding: 12px 24px;
    background: var(--section-btn-bg, var(--theme-primary, #c9a962));
    color: var(--section-btn-text, #000000);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 1.2px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-submit-btn:hover {
    background: var(--section-btn-hover-bg, #ffffff);
    color: var(--section-btn-hover-text, #000000);
    transform: translateY(-2px);
}

/* Contact Footer */
.contact-form-footer {
    margin-top: 20px;
    padding-top: 14px;
    border-top: 1px solid var(--section-border, rgba(255, 255, 255, 0.1));
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-footer-link {
    color: var(--section-link, var(--theme-primary, #c9a962));
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.contact-footer-link:hover {
    color: var(--section-link-hover, #ffffff);
}

.contact-footer-link i {
    margin-right: 8px;
    width: 16px;
}

/* Dark Theme Variables for Contact */
[data-section-theme="dark"] .contact-form-wrapper {
    --contact-form-bg: rgba(18, 18, 18, 0.97);
    --contact-input-focus-bg: rgba(255, 255, 255, 0.08);
    --contact-select-arrow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    --contact-option-bg: #1a1a1a;
    --contact-option-text: #ffffff;
    --contact-checkbox-border: rgba(255, 255, 255, 0.3);
    --contact-checkbox-hover-border: rgba(255, 255, 255, 0.2);
}

/* Light Theme Variables for Contact */
[data-section-theme="light"] .contact-form-wrapper {
    --contact-form-bg: rgba(255, 255, 255, 0.97);
    --contact-input-focus-bg: rgba(0, 0, 0, 0.03);
    --contact-select-arrow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    --contact-option-bg: #ffffff;
    --contact-option-text: #333333;
    --contact-checkbox-border: rgba(0, 0, 0, 0.3);
    --contact-checkbox-hover-border: rgba(0, 0, 0, 0.2);
}

/* Flatpickr Custom Styles - Dark */
[data-section-theme="dark"] .flatpickr-calendar {
    background: #1a1a1a !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5) !important;
}

[data-section-theme="dark"] .flatpickr-calendar .flatpickr-day {
    color: #ffffff;
}

[data-section-theme="dark"] .flatpickr-calendar .flatpickr-day:hover {
    background: rgba(201, 169, 98, 0.3);
    border-color: var(--theme-primary, #c9a962);
}

[data-section-theme="dark"] .flatpickr-calendar .flatpickr-day.selected {
    background: var(--theme-primary, #c9a962) !important;
    border-color: var(--theme-primary, #c9a962) !important;
    color: #000000 !important;
}

/* Flatpickr Custom Styles - Light */
[data-section-theme="light"] .flatpickr-calendar {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
}

[data-section-theme="light"] .flatpickr-calendar .flatpickr-day {
    color: #333333;
}

[data-section-theme="light"] .flatpickr-calendar .flatpickr-day:hover {
    background: rgba(201, 169, 98, 0.2);
    border-color: var(--theme-primary, #c9a962);
}

[data-section-theme="light"] .flatpickr-calendar .flatpickr-day.selected {
    background: var(--theme-primary, #c9a962) !important;
    border-color: var(--theme-primary, #c9a962) !important;
    color: #000000 !important;
}

/* Responsive - Tablet and Mobile */
@media (max-width: 1024px) {
    .contact-fullscreen {
        flex-direction: column;
    }
    
    .contact-bg-image {
        position: relative;
        width: 100%;
        height: 50vw;
        max-height: 450px;
        min-height: 300px;
    }
    
    .contact-form-wrapper {
        width: 100%;
        margin-left: 0;
        padding: 40px 24px;
    }
    
    .contact-form-title {
        font-size: 1.9rem;
    }
}

@media (max-width: 768px) {
    .contact-fullscreen.contact-hide-image-mobile .contact-bg-image {
        display: none;
    }

    .contact-fullscreen.contact-hide-image-mobile .contact-form-wrapper {
        width: 100%;
        margin-left: 0;
    }

    .contact-bg-image {
        height: 32vh;
        min-height: 220px;
    }
    
    .contact-form-wrapper {
        padding: 32px 18px;
    }
    
    .contact-form-title {
        font-size: 1.65rem;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .checkbox-item {
        padding: 8px 10px;
    }
}

@media (max-width: 480px) {
    .contact-bg-image {
        height: 28vh;
        min-height: 180px;
    }
    
    .contact-form-wrapper {
        padding: 26px 14px;
    }
    
    .contact-form-title {
        font-size: 1.4rem;
    }
    
    .contact-form-subtitle {
        font-size: 0.88rem;
    }
}

/* ============================================================================
 * TEXT BLOCK SECTION STYLES
 * ============================================================================ */

.text-block-section {
    position: relative;
}

.text-block-section .section-content {
    color: var(--section-text);
}

.text-block-section .section-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.text-block-section .section-content p:last-child {
    margin-bottom: 0;
}

/* Text alignment classes */
.text-block-section.text-left {
    text-align: left;
}

.text-block-section.text-center {
    text-align: center;
}

.text-block-section.text-right {
    text-align: right;
}

/* Side image layout */
.text-block-with-image {
    display: flex;
    align-items: center;
    gap: 60px;
}

.text-block-with-image.image-left {
    flex-direction: row;
}

.text-block-with-image.image-right {
    flex-direction: row-reverse;
}

.text-block-image-wrapper {
    flex: 0 0 45%;
    max-width: 45%;
}

.text-block-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.text-block-content-wrapper {
    flex: 1;
}

/* Button styles */
.text-block-section .btn-primary {
    background-color: var(--section-btn-bg);
    color: var(--section-btn-text);
    border: none;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1.5rem;
}

.text-block-section .btn-primary:hover {
    background-color: var(--section-btn-hover-bg);
    color: var(--section-btn-hover-text);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
    .text-block-with-image {
        flex-direction: column !important;
        gap: 40px;
    }

    .text-block-image-wrapper {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .text-block-with-image.image-left .text-block-image-wrapper,
    .text-block-with-image.image-right .text-block-image-wrapper {
        order: -1;
    }
}

@media (max-width: 768px) {
    .text-block-section .section-content p {
        font-size: 1rem;
    }

    .text-block-section .btn-primary {
        padding: 12px 28px;
        font-size: 0.9rem;
    }
}


/* ============================================================================
 * FAQ ACCORDION STYLES - Dark/Light Theme Support
 * ============================================================================ */

/* Accordion item container */
.accordion-item {
    background-color: transparent;
    border: 1px solid var(--section-border);
    border-radius: 8px !important;
    overflow: hidden;
}

/* Accordion button (question) */
.accordion-button {
    background-color: var(--section-card-bg);
    color: var(--section-heading);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: var(--section-card-hover-bg);
    color: var(--section-heading);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--section-border);
}

.accordion-button:hover {
    background-color: var(--section-card-hover-bg);
}

/* Accordion arrow icon */
.accordion-button::after {
    background-image: none;
    content: '';
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--section-text);
    border-bottom: 2px solid var(--section-text);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-left: auto;
    flex-shrink: 0;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-135deg);
}

/* Accordion body (answer) */
.accordion-collapse {
    background-color: var(--section-card-bg);
}

.accordion-body {
    color: var(--section-text);
    padding: 1.25rem 1.5rem;
    line-height: 1.7;
    border-top: 1px solid var(--section-border);
}

/* Dark theme specific overrides */
[data-section-theme="dark"] .accordion-item {
    border-color: rgba(255, 255, 255, 0.15);
}

[data-section-theme="dark"] .accordion-button {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

[data-section-theme="dark"] .accordion-button:not(.collapsed),
[data-section-theme="dark"] .accordion-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

[data-section-theme="dark"] .accordion-collapse {
    background-color: rgba(255, 255, 255, 0.03);
}

[data-section-theme="dark"] .accordion-body {
    color: rgba(255, 255, 255, 0.85);
    border-top-color: rgba(255, 255, 255, 0.1);
}

/* Light theme specific overrides */
[data-section-theme="light"] .accordion-item {
    border-color: rgba(0, 0, 0, 0.1);
}

[data-section-theme="light"] .accordion-button {
    background-color: rgba(0, 0, 0, 0.02);
    color: #1a1a1a;
}

[data-section-theme="light"] .accordion-button:not(.collapsed),
[data-section-theme="light"] .accordion-button:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

[data-section-theme="light"] .accordion-collapse {
    background-color: rgba(0, 0, 0, 0.02);
}

[data-section-theme="light"] .accordion-body {
    color: #333333;
    border-top-color: rgba(0, 0, 0, 0.08);
}


/* ============================================================================
 * CONSOLIDATED SECTION-SPECIFIC STYLES
 * All inline <style> blocks removed from view files.
 * Colors use --section-* CSS variables for automatic dark/light theme support.
 * Dark/light theming via data-section-theme="dark|light" on the <section> tag.
 * ============================================================================ */


/* ============================================================================
 * VIDEO THUMBNAIL (override style.css hardcoded dark colors)
 * ============================================================================ */

[data-section-theme] .video-thumbnail {
    background: var(--section-card-bg);
}

[data-section-theme] .video-thumbnail:hover,
[data-section-theme] .video-thumbnail.active {
    background: var(--section-card-hover-bg);
}

[data-section-theme] .video-thumbnail-title {
    color: var(--section-text);
}

[data-section-theme] .video-playlist::-webkit-scrollbar-track {
    background: var(--section-card-bg);
}


/* ============================================================================
 * FEATURED VIDEOS SECTION
 * ============================================================================ */

.featured-video-card {
    position: relative;
    background: var(--section-card-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--section-border);
}

[data-section-theme="dark"] .featured-video-card,
.section-bg-primary .featured-video-card,
.section-bg-secondary .featured-video-card {
    background: linear-gradient(145deg, #252525 0%, #1a1a1a 100%);
}

.featured-video-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--section-icon);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(201, 169, 98, 0.15);
}

.video-glow {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.featured-video-card:hover .video-glow { opacity: 1; }

.video-wrapper { position: relative; overflow: hidden; }

.video-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--section-card-bg) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

[data-section-theme="dark"] .video-wrapper::after,
.section-bg-primary .video-wrapper::after,
.section-bg-secondary .video-wrapper::after {
    background: linear-gradient(to top, rgba(26, 26, 26, 1) 0%, transparent 100%);
}

.video-player { border-radius: 12px 12px 0 0; overflow: hidden; }
.video-player iframe { border-radius: 12px 12px 0 0; }
.video-info { padding: 20px; position: relative; z-index: 2; margin-top: -30px; }

.video-title {
    color: var(--section-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-video-card:hover .video-title { color: var(--section-icon); }

.video-description {
    color: var(--section-text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.corner-accent {
    position: absolute;
    width: 20px; height: 20px;
    border-color: var(--section-icon);
    border-style: solid;
    border-width: 0;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.featured-video-card:hover .corner-accent { opacity: 1; }
.corner-accent.top-left    { top: 8px; left: 8px; border-top-width: 2px; border-left-width: 2px; }
.corner-accent.top-right   { top: 8px; right: 8px; border-top-width: 2px; border-right-width: 2px; }
.corner-accent.bottom-left { bottom: 8px; left: 8px; border-bottom-width: 2px; border-left-width: 2px; }
.corner-accent.bottom-right { bottom: 8px; right: 8px; border-bottom-width: 2px; border-right-width: 2px; }

.featured-video-card:hover .corner-accent.top-left    { transform: translate(-3px, -3px); }
.featured-video-card:hover .corner-accent.top-right   { transform: translate(3px, -3px); }
.featured-video-card:hover .corner-accent.bottom-left { transform: translate(-3px, 3px); }
.featured-video-card:hover .corner-accent.bottom-right { transform: translate(3px, 3px); }

@media (max-width: 991.98px) { .featured-video-card:hover { transform: translateY(-4px) scale(1.01); } }

@media (max-width: 767.98px) {
    .video-info { padding: 15px; }
    .video-title { font-size: 1rem; }
}


/* ============================================================================
 * SERVICES / TALENT GRID SECTION
 * ============================================================================ */

.talent-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.talent-card {
    position: relative;
    background: var(--section-card-bg);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

[data-section-theme="dark"] .talent-card,
.section-bg-primary .talent-card,
.section-bg-secondary .talent-card {
    background: linear-gradient(145deg, rgba(30, 30, 35, 0.95), rgba(20, 20, 25, 0.98));
}

[data-section-theme="light"] .talent-card {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.talent-card:hover { transform: translateY(-12px); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); }
[data-section-theme="light"] .talent-card:hover { box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); }

.talent-card-link { text-decoration: none; color: inherit; display: block; }

.talent-image { position: relative; height: 280px; overflow: hidden; }
.talent-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease, filter 0.4s ease; }
.talent-card:hover .talent-image img { transform: scale(1.08); }

.talent-image-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 0%, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.talent-card:hover .talent-image-overlay { opacity: 0.85; }

.talent-icon-wrapper {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.15) 0%, rgba(201, 169, 98, 0.05) 100%);
}

.talent-icon-wrapper i { font-size: 4rem; color: var(--primary-color); transition: transform 0.4s ease; }
.talent-card:hover .talent-icon-wrapper i { transform: scale(1.15); }

.talent-cta {
    position: absolute;
    bottom: 20px; left: 25px; right: 25px;
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 20px;
    background: rgba(201, 169, 98, 0.95);
    border-radius: 0;
    color: #1a1a1a;
    font-weight: 600; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase;
    transform: translateY(80px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.talent-card:hover .talent-cta { transform: translateY(0); opacity: 1; }
.talent-cta i { transition: transform 0.3s ease; }
.talent-card:hover .talent-cta i { transform: translateX(4px); }

.talent-content { padding: 28px 25px 30px; }

.talent-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--section-heading);
    margin-bottom: 12px;
    letter-spacing: 1px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.talent-card:hover .talent-title { color: var(--section-icon); }

.talent-description {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--section-text-muted);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1200px) { .talent-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }

@media (max-width: 768px) {
    .talent-grid { grid-template-columns: 1fr; gap: 15px; max-width: 500px; }
    .talent-image { height: 250px; }
    .talent-cta { transform: translateY(0); opacity: 1; }
}


/* ============================================================================
 * DISCOGRAPHY SECTION
 * ============================================================================ */

.albums-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.album-card {
    background: var(--section-card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--section-border);
    transition: all 0.3s ease;
}

.album-card:hover {
    transform: translateY(-5px);
    border-color: var(--section-icon);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.album-artwork { position: relative; aspect-ratio: 1; overflow: hidden; }
.album-artwork img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.album-card:hover .album-artwork img { transform: scale(1.05); }

.album-placeholder {
    width: 100%; height: 100%;
    background: var(--section-card-bg);
    display: flex; align-items: center; justify-content: center;
}

[data-section-theme="dark"] .album-placeholder,
.section-bg-primary .album-placeholder,
.section-bg-secondary .album-placeholder {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
}

.album-placeholder i { font-size: 5rem; color: var(--section-icon); opacity: 0.3; }

.album-links {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem 1rem 1rem;
    display: flex; justify-content: center; gap: 1rem;
    opacity: 0; transform: translateY(10px); transition: all 0.3s ease;
}

.album-card:hover .album-links { opacity: 1; transform: translateY(0); }

.stream-link {
    width: 45px; height: 45px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; transition: all 0.3s ease; text-decoration: none;
}

.stream-link.spotify  { background: #1DB954; color: #fff; }
.stream-link.apple    { background: linear-gradient(135deg, #FC5C7D, #6A82FB); color: #fff; }
.stream-link.bandcamp { background: #629aa9; color: #fff; }
.stream-link:hover { transform: scale(1.15); }

.album-info { padding: 1.25rem; text-align: center; border-bottom: 1px solid var(--section-border); }
.album-title  { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.25rem; color: var(--section-heading); }
.album-artist { color: var(--section-icon); font-size: 0.9rem; margin-bottom: 0.25rem; }
.album-year   { font-size: 0.8rem; color: var(--section-text-muted); }

.album-tracks { padding: 1rem; }

.tracks-header {
    font-size: 0.85rem;
    color: var(--section-icon);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--section-border);
}

.track-item {
    display: flex; align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--section-border);
    transition: background 0.2s ease;
}

.track-item:hover { background: var(--section-card-hover-bg); margin: 0 -1rem; padding-left: 1rem; padding-right: 1rem; }
.track-item:last-child { border-bottom: none; }

.track-number   { width: 25px; font-size: 0.8rem; color: var(--section-text-muted); }
.track-title    { flex: 1; font-size: 0.9rem; color: var(--section-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.track-duration { font-size: 0.8rem; color: var(--section-text-muted); margin-left: 0.5rem; }

.track-play-btn {
    width: 28px; height: 28px; border-radius: 50%; border: none;
    background: var(--section-icon); color: #000;
    display: flex; align-items: center; justify-content: center;
    margin-left: 0.75rem; cursor: pointer; transition: all 0.2s ease; font-size: 0.7rem;
}

.track-play-btn:hover { transform: scale(1.1); }


/* ============================================================================
 * EVENT TYPES SECTION
 * ============================================================================ */

.event-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.event-card {
    display: flex; flex-direction: row; align-items: stretch;
    border-radius: 12px; overflow: hidden;
    background: var(--section-card-bg);
    border: 1px solid var(--section-border);
    transition: all 0.3s ease;
}

.event-card:hover {
    border-color: var(--section-icon);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.event-card.no-image { background: linear-gradient(135deg, rgba(201, 169, 98, 0.08), var(--section-card-bg)); }
.event-card.no-image .event-content { padding: 1.5rem; }

.event-card .event-image { flex: 0 0 120px; min-height: 140px; overflow: hidden; }
.event-card .event-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.event-card:hover .event-image img { transform: scale(1.05); }

.event-card .event-placeholder {
    display: flex; align-items: center; justify-content: center;
    background: var(--section-card-bg);
}

[data-section-theme="dark"] .event-card .event-placeholder,
.section-bg-primary .event-card .event-placeholder {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
}

.event-card .event-placeholder i { font-size: 2.5rem; color: var(--section-icon); opacity: 0.3; }
.event-card .event-placeholder .custom-icon { width: 3rem; height: 3rem; opacity: 0.3; filter: invert(75%) sepia(30%) saturate(500%) hue-rotate(10deg); }

.event-card .event-content {
    flex: 1; padding: 1rem 1.25rem;
    display: flex; flex-direction: column; justify-content: center;
}

.event-card .event-title { font-size: 1.1rem; font-weight: 600; color: var(--section-heading); margin: 0 0 0.5rem 0; }
.event-card .event-description { font-size: 0.85rem; color: var(--section-text-muted); line-height: 1.5; margin: 0; }

.event-card .event-link {
    display: inline-flex; align-items: center;
    color: var(--section-link);
    text-decoration: none; font-size: 0.85rem; font-weight: 500; margin-top: 0.75rem;
    transition: all 0.3s ease;
}

.event-card .event-link:hover { color: var(--section-link-hover); transform: translateX(3px); }

@media (max-width: 1199.98px) { .event-cards { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 767.98px) {
    .event-cards { grid-template-columns: 1fr; }
    .event-card .event-image { flex: 0 0 100px; min-height: 120px; }
}


/* ============================================================================
 * GEAR SECTION
 * ============================================================================ */

.gear-container { display: flex; flex-direction: column; gap: 3rem; }

.gear-category {
    background: var(--section-card-bg);
    border-radius: 16px; padding: 2rem;
    border: 1px solid var(--section-border);
}

.category-title {
    font-size: 1.1rem;
    color: var(--section-icon);
    text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 1.5rem; padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--section-border);
    display: flex; align-items: center; gap: 0.75rem;
}

.category-title::before { content: ''; width: 8px; height: 8px; background: var(--section-icon); border-radius: 50%; }

.gear-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }

.gear-item {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1rem;
    background: var(--section-card-bg);
    border-radius: 10px; transition: all 0.3s ease; border: 1px solid transparent;
}

.gear-item:hover { background: var(--section-card-hover-bg); border-color: var(--section-border); }

.gear-icon {
    width: 60px; height: 60px; border-radius: 12px;
    background: rgba(201, 169, 98, 0.1);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.gear-icon img { width: 70%; height: 70%; object-fit: contain; }
.gear-icon i { font-size: 1.5rem; color: var(--section-icon); }

.gear-info { flex: 1; }
.gear-title       { font-size: 1rem; font-weight: 600; color: var(--section-heading); margin-bottom: 0.25rem; }
.gear-brand       { font-size: 0.85rem; color: var(--section-icon); margin-bottom: 0.5rem; }
.gear-description { font-size: 0.8rem; color: var(--section-text-muted); line-height: 1.5; margin: 0; }

@media (max-width: 767.98px) {
    .gear-category { padding: 1.25rem; }
    .gear-grid { grid-template-columns: 1fr; }
}


/* ============================================================================
 * GENRES SECTION
 * ============================================================================ */

.genres-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 2rem; justify-items: center; }

.genre-item { text-align: center; padding: 1.5rem; transition: all 0.3s ease; }
.genre-item:hover { transform: translateY(-5px); }

.genre-icon {
    width: 100px; height: 100px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1), rgba(201, 169, 98, 0.05));
    border: 2px solid var(--section-border);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.genre-item:hover .genre-icon {
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.2), rgba(201, 169, 98, 0.1));
    border-color: var(--section-icon);
    box-shadow: 0 0 30px rgba(201, 169, 98, 0.2);
}

.genre-icon img { width: 60%; height: 60%; object-fit: contain; }
.genre-icon i { font-size: 2.5rem; color: var(--section-icon); }

.genre-title       { font-size: 1rem; font-weight: 600; color: var(--section-heading); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 1px; }
.genre-description { font-size: 0.85rem; color: var(--section-text-muted); line-height: 1.5; }

@media (max-width: 767.98px) {
    .genres-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .genre-icon { width: 80px; height: 80px; }
    .genre-icon i { font-size: 2rem; }
}


/* ============================================================================
 * CALENDAR / EVENTS SECTION
 * ============================================================================ */

.events-list { max-width: 900px; margin: 0 auto; }

.event-item {
    background: var(--section-card-bg);
    border: 1px solid var(--section-border);
    border-radius: 12px; padding: 25px; margin-bottom: 20px;
    transition: all 0.3s ease;
}

.event-item:hover {
    background: var(--section-card-hover-bg);
    border-color: var(--section-icon);
    transform: translateX(5px);
}

.event-item.cancelled { opacity: 0.6; }
.event-item.cancelled .event-title { text-decoration: line-through; }

.event-date-box {
    width: 80px; text-align: center;
    background: linear-gradient(135deg, #c9a962 0%, #a88a4a 100%);
    border-radius: 10px; padding: 15px 10px;
    color: #000; flex-shrink: 0;
}

.event-item .event-image { width: 120px; height: 90px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.event-item .event-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.event-item:hover .event-image img { transform: scale(1.05); }

.event-month { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.event-day   { display: block; font-size: 2rem; font-weight: 700; line-height: 1.1; font-family: 'Playfair Display', serif; }
.event-year  { display: block; font-size: 0.7rem; opacity: 0.8; }

.event-item .event-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--section-heading); margin: 0 0 10px; }
.event-meta  { display: flex; flex-wrap: wrap; gap: 15px; font-size: 0.9rem; color: var(--section-text-muted); margin-bottom: 10px; }
.event-meta i { color: var(--section-icon); }
.event-venue { font-weight: 500; color: var(--section-text); }
.event-item .event-description { color: var(--section-text-muted); font-size: 0.9rem; margin: 10px 0 0; }
.event-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }

.ticket-price { font-size: 1.2rem; font-weight: 600; color: var(--section-icon); }

.btn-tickets {
    background: linear-gradient(135deg, #c9a962 0%, #a88a4a 100%);
    color: #000; padding: 10px 25px; font-weight: 600; border: none;
    border-radius: 5px; text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem;
    transition: all 0.3s ease; white-space: nowrap;
}

.btn-tickets:hover { transform: translateY(-2px); box-shadow: 0 5px 20px rgba(201, 169, 98, 0.3); }
.btn-tickets.disabled { background: var(--section-border); color: var(--section-text-muted); cursor: not-allowed; }

.no-events-icon { font-size: 4rem; color: var(--section-text-muted); opacity: 0.3; }
.no-events h4 { color: var(--section-heading); margin-bottom: 10px; }

@media (max-width: 767px) {
    .event-item { padding: 20px; }
    .event-date-box { width: 70px; padding: 12px 8px; }
    .event-day { font-size: 1.6rem; }
    .event-item .event-title { font-size: 1.2rem; }
    .event-actions {
        flex-direction: row; justify-content: space-between;
        align-items: center; width: 100%;
        padding-top: 15px; border-top: 1px solid var(--section-border);
    }
}


/* ============================================================================
 * WHAT'S INCLUDED SECTION
 * ============================================================================ */

.included-list { max-width: 800px; margin: 0 auto; }

.included-item {
    display: flex; align-items: flex-start; gap: 1.25rem;
    padding: 1.25rem; margin-bottom: 0.75rem;
    background: var(--section-card-bg);
    border-radius: 10px;
    border-left: 3px solid var(--section-icon);
    transition: all 0.3s ease;
}

.included-item:hover { background: var(--section-card-hover-bg); transform: translateX(5px); }

.included-icon {
    width: 45px; height: 45px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.2), rgba(201, 169, 98, 0.1));
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.included-icon i { font-size: 1.1rem; color: var(--section-icon); }
.included-content { flex: 1; }
.included-title { font-size: 1.1rem; font-weight: 600; color: var(--section-heading); margin-bottom: 0.25rem; }
.included-description { font-size: 0.9rem; color: var(--section-text-muted); line-height: 1.5; margin: 0; }

@media (max-width: 767.98px) {
    .included-item { padding: 1rem; }
    .included-icon { width: 40px; height: 40px; }
}


/* ============================================================================
 * UPGRADE HIGHLIGHT SECTION
 * ============================================================================ */

.upgrade-card {
    position: relative;
    background: var(--section-card-bg);
    border-radius: 20px; overflow: hidden;
    border: 1px solid var(--section-icon);
    padding: 3rem;
}

[data-section-theme="dark"] .upgrade-card,
.section-bg-primary .upgrade-card,
.section-bg-secondary .upgrade-card {
    background: linear-gradient(135deg, #252525 0%, #1a1a1a 100%);
}

[data-section-theme="light"] .upgrade-card {
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(201, 169, 98, 0.3);
}

.upgrade-bg {
    position: absolute; top: 0; right: 0;
    width: 50%; height: 100%;
    background-size: cover; background-position: center;
    opacity: 0.3;
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.6), transparent);
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.6), transparent);
}

.upgrade-content { position: relative; z-index: 2; max-width: 600px; }

.upgrade-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: linear-gradient(135deg, #c9a962, #a88b4a);
    color: #000; padding: 0.5rem 1rem; border-radius: 20px;
    font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.5rem;
}

.upgrade-badge i { font-size: 0.8rem; }
.upgrade-title       { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--section-heading); margin-bottom: 1rem; line-height: 1.2; }
.upgrade-subtitle    { font-size: 1.2rem; color: var(--section-icon); margin-bottom: 1rem; }
.upgrade-description { font-size: 1rem; color: var(--section-text-muted); line-height: 1.8; margin-bottom: 2rem; }

.upgrade-btn {
    display: inline-flex; align-items: center; padding: 1rem 2rem;
    background: var(--section-icon); color: #000;
    text-decoration: none; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px; border-radius: 4px; transition: all 0.3s ease;
}

.upgrade-btn:hover { transform: translateX(5px); color: #000; }

.upgrade-glow {
    position: absolute; top: -50%; right: -25%;
    width: 50%; height: 200%;
    background: radial-gradient(ellipse, rgba(201, 169, 98, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

@media (max-width: 991.98px) {
    .upgrade-bg { width: 100%; height: 100%; opacity: 0.15; mask-image: none; -webkit-mask-image: none; }
    .upgrade-card { padding: 2rem; }
    .upgrade-title { font-size: 2rem; }
}


/* ============================================================================
 * PACKAGES / PRICING SECTION
 * ============================================================================ */

.pricing-packages-section { color: var(--section-text); }
.pricing-label { display: block; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; color: var(--section-icon); margin-bottom: 0.5rem; }
.pricing-title { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 1rem; color: var(--section-heading); }

.pricing-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background: var(--section-card-bg);
    border-radius: 8px; overflow: hidden;
    border: 1px solid var(--section-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex; flex-direction: column;
}

[data-section-theme="light"] .pricing-card { background: #ffffff; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); }

.pricing-card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2); }

.pricing-image { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.pricing-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.pricing-card:hover .pricing-image img { transform: scale(1.05); }

.pricing-badge { position: absolute; top: 1rem; right: 1rem; background: rgba(255, 255, 255, 0.95); padding: 0.5rem 1rem; border-radius: 4px; text-align: right; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); }
.price-label  { display: block; font-size: 0.7rem; text-transform: uppercase; color: #666; letter-spacing: 1px; }
.price-amount { display: block; font-size: 1.4rem; font-weight: 700; color: #333; }

.pricing-content { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }

.package-name        { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--section-heading); }
.package-description { color: var(--section-text-muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1rem; }

.package-features { list-style: none; padding: 0; margin: 0 0 1.5rem; flex: 1; }
.package-features li { padding: 0.4rem 0; color: var(--section-text); font-size: 0.9rem; border-bottom: 1px solid var(--section-border); }
.package-features li:last-child { border-bottom: none; }
.package-features li::before { content: '✓'; color: var(--section-icon); font-weight: 600; margin-right: 0.5rem; }

.package-btn {
    display: inline-block; padding: 0.75rem 1.5rem;
    background: var(--section-btn-bg); color: var(--section-btn-text);
    text-decoration: none; border-radius: 4px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem;
    text-align: center; transition: all 0.3s ease; margin-top: auto;
}

.package-btn:hover { background: var(--section-btn-hover-bg); color: var(--section-btn-hover-text); }
.pricing-disclaimer { color: var(--section-text-muted); font-size: 0.9rem; }


/* ============================================================================
 * SONGLIST SECTION
 * ============================================================================ */

.songlist-label { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 2px; color: var(--section-icon); font-weight: 600; display: block; margin-bottom: 0.5rem; }
.songlist-title { font-size: 2.5rem; font-weight: 700; color: var(--section-heading); margin-bottom: 1rem; }
.songlist-divider { width: 60px; height: 3px; background: var(--section-icon); }
.songlist-description { max-width: 700px; margin: 0 auto; color: var(--section-text); line-height: 1.7; }
.songlist-description p { margin-bottom: 0.5rem; }

.song-card-preview {
    background: var(--section-card-bg);
    border: 1px solid var(--section-border);
    border-radius: 8px; padding: 1rem 1.25rem;
    display: flex; align-items: center; justify-content: space-between;
    transition: all 0.3s ease;
}

.song-card-preview:hover { background: var(--section-card-hover-bg); transform: translateX(3px); }
.song-card-preview.featured { border-left: 3px solid var(--section-icon); }

.song-title          { font-weight: 600; color: var(--section-heading); margin: 0; font-size: 0.95rem; }
.song-artist         { color: var(--section-text-muted); font-size: 0.85rem; margin: 0; }
.song-featured-badge { color: var(--section-icon); font-size: 0.8rem; }

.btn-songlist {
    background: transparent;
    border: 2px solid var(--section-icon); color: var(--section-icon);
    padding: 12px 30px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
    font-size: 0.85rem; border-radius: 4px; transition: all 0.3s ease; cursor: pointer;
    display: inline-flex; align-items: center; gap: 10px;
}

.btn-songlist:hover { background: var(--section-icon); color: #000; }
.song-count { background: var(--section-icon); color: #000; padding: 2px 8px; border-radius: 10px; font-size: 0.75rem; }
.songlist-note { color: var(--section-text-muted); font-size: 0.9rem; }
.songlist-footer .songlist-note i { color: var(--section-icon); }

/* Songlist drawer is always dark — dense table data benefits from consistent dark treatment */
.songlist-drawer-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.7); z-index: 1040; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.songlist-drawer-overlay.active { opacity: 1; visibility: visible; }

.songlist-drawer {
    position: fixed; top: 0; right: -100%;
    width: min(600px, 100vw); height: 100%;
    background: #1a1a1a; z-index: 1050;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex; flex-direction: column; overflow: hidden;
}

.songlist-drawer.active { right: 0; }

.songlist-drawer-header {
    padding: 25px 30px;
    display: flex; align-items: center; justify-content: space-between;
    background: linear-gradient(135deg, #1a1a1a, #111);
    border-bottom: 1px solid rgba(201, 169, 98, 0.2);
    color: #fff;
}

.songlist-drawer-header h3 { margin: 0; font-size: 1.3rem; color: #fff; }
.songlist-drawer-close { background: none; border: none; color: rgba(255, 255, 255, 0.6); font-size: 1.8rem; cursor: pointer; padding: 0; line-height: 1; transition: color 0.2s; }
.songlist-drawer-close:hover { color: #fff; }
.songlist-drawer-body { flex: 1; overflow-y: auto; padding: 25px 30px; }

.songlist-controls { display: flex; gap: 15px; margin-bottom: 20px; flex-wrap: wrap; }
.songlist-search { position: relative; flex: 1; min-width: 200px; }
.songlist-search input { background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.15); color: #fff; border-radius: 6px; padding: 10px 40px 10px 15px; width: 100%; }
.songlist-search input::placeholder { color: rgba(255, 255, 255, 0.4); }
.songlist-search input:focus { outline: none; border-color: #c9a962; background: rgba(255, 255, 255, 0.12); }
.songlist-search i { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: rgba(255, 255, 255, 0.4); }
.songlist-genre-filter select { background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.15); color: #fff; border-radius: 6px; padding: 10px 15px; }
.songlist-genre-filter select option { background: #1a1a1a; }

.songlist-table-wrapper { overflow-x: auto; }
.songlist-table { width: 100%; border-collapse: collapse; }
.songlist-table th { padding: 12px 15px; text-align: left; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: #c9a962; border-bottom: 1px solid rgba(255, 255, 255, 0.1); cursor: pointer; user-select: none; }
.sortable:hover { color: #d4b872; }
.songlist-table td { padding: 10px 15px; font-size: 0.9rem; color: rgba(255, 255, 255, 0.85); border-bottom: 1px solid rgba(255, 255, 255, 0.04); }
.songlist-table tbody tr:hover { background: rgba(255, 255, 255, 0.03); }
.featured-row td { color: #fff; }
.featured-star { color: #c9a962; margin-right: 5px; font-size: 0.75rem; }
.genre-badge { display: inline-block; padding: 2px 8px; background: rgba(201, 169, 98, 0.15); color: #c9a962; border-radius: 10px; font-size: 0.75rem; }
.songlist-table-footer { padding: 15px 0 0; color: rgba(255, 255, 255, 0.4); font-size: 0.85rem; }


/* ============================================================================
 * PILLARS SECTION
 * ============================================================================ */

.pillars-section { padding: 80px 0; }
.pillars-main-title { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 400; color: var(--section-heading); margin-bottom: 15px; }
.pillars-tagline    { font-family: var(--font-heading); font-size: 1.75rem; font-style: italic; font-weight: 400; color: var(--section-heading); max-width: 900px; margin: 0 auto; line-height: 1.5; }
.pillar-item  { padding: 20px; }
.pillar-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--section-heading); margin-bottom: 15px; }
.pillar-description { font-size: 0.95rem; color: var(--section-text-muted); line-height: 1.7; margin: 0; }

.btn-pillars {
    display: inline-block; padding: 15px 60px;
    border: 1px solid var(--section-heading);
    background: transparent; color: var(--section-heading);
    font-size: 0.85rem; font-weight: 500; text-transform: uppercase; letter-spacing: 2px;
    text-decoration: none; transition: all 0.3s ease; border-radius: 0;
}

.btn-pillars:hover { background: var(--section-heading); color: #fff; }


/* ============================================================================
 * VENUES SECTION
 * ============================================================================ */

.venues-label   { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 2px; color: var(--section-icon); font-weight: 600; display: block; margin-bottom: 0.5rem; }
.venues-title   { font-size: 2.5rem; font-weight: 700; color: var(--section-heading); margin-bottom: 1rem; }
.venues-divider { width: 60px; height: 3px; background: var(--section-icon); }

.venue-card {
    padding: 1.5rem;
    background: var(--section-card-bg);
    border-radius: 12px; transition: all 0.3s ease; height: 100%;
    border: 1px solid var(--section-border);
}

.venue-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); }
.venue-link { text-decoration: none; color: inherit; display: block; }
.venue-link:hover { color: inherit; }

.venue-logo-wrapper { height: 100px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; padding: 0.5rem; }
.venue-logo { max-height: 80px; max-width: 100%; object-fit: contain; filter: grayscale(100%); opacity: 0.7; transition: all 0.3s ease; }
.venue-card:hover .venue-logo { filter: grayscale(0%); opacity: 1; }

.venue-placeholder { height: 100px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-size: 3rem; color: var(--section-icon); opacity: 0.5; }
.venue-card:hover .venue-placeholder { opacity: 1; }

.venue-name        { font-size: 1rem; font-weight: 600; color: var(--section-heading); margin-bottom: 0.5rem; }
.venue-description { font-size: 0.85rem; color: var(--section-text-muted); margin: 0; line-height: 1.5; }


/* ============================================================================
 * SPLIT CONTENT SECTION
 * ============================================================================ */

.section-split-content[data-section-theme="dark"],
.section-split-content:not([data-section-theme]) {
    background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 100%);
}

.section-split-content[data-section-theme="light"] {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.split-block { padding: 40px 0; }
.split-block:not(:last-child) { border-bottom: 1px solid var(--section-border); }

.split-image-wrapper { position: relative; }

.split-title { color: var(--section-heading); }
.split-text  { color: var(--section-text-muted); }

.split-image-placeholder {
    background: var(--section-card-bg);
    color: var(--section-text-muted);
    min-height: 300px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
}

.image-accent {
    position: absolute; top: -15px; left: -15px;
    width: 100%; height: 100%;
    border: 2px solid var(--section-icon);
    border-radius: 8px; z-index: -1;
}


/* ============================================================================
 * FEATURED IMAGES SECTION
 * ============================================================================ */

.section-featured-images { padding: 60px 0 0; }
.featured-images-grid { display: flex; width: 100%; gap: 0; }
.featured-image-item { flex: 1; overflow: hidden; }
.featured-image-item a { display: block; text-decoration: none; }
.featured-image-item .image-wrapper { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.featured-image-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.featured-image-item:hover img { transform: scale(1.05); }
.featured-image-item .image-caption {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 30px 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    opacity: 0; transition: opacity 0.3s ease;
}
.featured-image-item:hover .image-caption { opacity: 1; }
.featured-image-item .image-caption span { font-size: 1.1rem; color: #ffffff; font-weight: 500; text-transform: uppercase; letter-spacing: 2px; }

@media (max-width: 991px) { .featured-image-item .image-wrapper { aspect-ratio: 3/2; } }

@media (max-width: 767px) {
    .featured-images-grid { flex-direction: column; }
    .featured-image-item .image-wrapper { aspect-ratio: 16/9; }
    .featured-image-item .image-caption { opacity: 1; }
}


/* ============================================================================
 * TEXT BLOCK SECTION
 * ============================================================================ */

.text-block-content { padding: 20px 0; }
.text-block-body { color: var(--section-text); font-size: 1.05rem; line-height: 1.8; }
.text-block-body p { margin-bottom: 1.25rem; }
.text-block-body p:last-child { margin-bottom: 0; }
.text-block-image img { width: 100%; height: auto; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2); }
.text-block-button { margin-top: 1.5rem; }


/* ============================================================================
 * CONTENT HIGHLIGHT 1 SECTION
 * ============================================================================ */

.section-content-highlight-1 { padding: 80px 0; overflow: hidden; }

.section-content-highlight-1[data-section-theme="dark"],
.section-content-highlight-1:not([data-section-theme]) {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.section-content-highlight-1[data-section-theme="light"] {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.content-text-column { padding: 40px 60px; }
.content-text-wrapper { max-width: 500px; }
.content-text-wrapper .section-title { font-family: 'Playfair Display', serif; font-size: 2.8rem; color: var(--section-heading); line-height: 1.2; }
.content-text-wrapper .content-body { color: var(--section-text-muted); font-size: 1rem; line-height: 1.8; }
.content-text-wrapper .content-body ul { list-style: none; padding: 0; margin: 25px 0; }
.content-text-wrapper .content-body ul li { position: relative; padding-left: 20px; margin-bottom: 12px; color: var(--section-text); }
.content-text-wrapper .content-body ul li::before { content: '•'; position: absolute; left: 0; color: var(--section-icon); }
.content-text-wrapper .content-body blockquote { margin-top: 30px; padding: 20px 25px; border-left: 3px solid var(--section-icon); font-style: italic; color: var(--section-text-muted); }

.content-images-column { padding: 0; }
.portrait-gallery-wrapper { overflow-x: auto; padding: 20px 0; scrollbar-width: thin; scrollbar-color: var(--section-icon) transparent; }
.portrait-gallery-wrapper::-webkit-scrollbar { height: 6px; }
.portrait-gallery-wrapper::-webkit-scrollbar-thumb { background: var(--section-icon); border-radius: 3px; }
.portrait-gallery { display: flex; gap: 20px; padding: 0 20px; }
.portrait-item { flex: 0 0 auto; width: 280px; }
.portrait-item a { text-decoration: none; }
.portrait-image { width: 100%; aspect-ratio: 3/4; overflow: hidden; border-radius: 8px; }
.portrait-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.portrait-item:hover .portrait-image img { transform: scale(1.05); }


/* ============================================================================
 * CONTENT HIGHLIGHT SECTION (split image/text)
 * ============================================================================ */

.section-content-highlight { width: 100%; overflow: hidden; }

.section-content-highlight[data-section-theme="dark"],
.section-content-highlight:not([data-section-theme]) { background: #0a0a0a; }

.section-content-highlight[data-section-theme="dark"] .content-highlight-text,
.section-content-highlight:not([data-section-theme]) .content-highlight-text { background: #0a0a0a; }

.section-content-highlight[data-section-theme="light"] { background: #ffffff; }
.section-content-highlight[data-section-theme="light"] .content-highlight-text { background: #ffffff; }

.section-content-highlight[data-section-theme="dark"] .content-highlight-title,
.section-content-highlight:not([data-section-theme]) .content-highlight-title { color: #ffffff; }
.section-content-highlight[data-section-theme="light"] .content-highlight-title { color: #212529; }

.section-content-highlight[data-section-theme="dark"] .content-highlight-body,
.section-content-highlight:not([data-section-theme]) .content-highlight-body { color: rgba(255, 255, 255, 0.8); }
.section-content-highlight[data-section-theme="light"] .content-highlight-body { color: #495057; }

.content-highlight-wrapper { display: flex; flex-wrap: wrap; min-height: 500px; }
.content-highlight-wrapper.image-right { flex-direction: row-reverse; }

.content-highlight-image,
.content-highlight-text { flex: 0 0 50%; max-width: 50%; }

.content-highlight-image { position: relative; overflow: hidden; }
.content-highlight-image img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; }

.content-highlight-image .placeholder-image {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: rgba(0, 0, 0, 0.3); color: rgba(255, 255, 255, 0.5);
}
.content-highlight-image .placeholder-image i { font-size: 3rem; margin-bottom: 1rem; }

.content-highlight-text { display: flex; align-items: center; justify-content: center; padding: 60px 80px; }
.content-highlight-inner { max-width: 600px; }

.content-highlight-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem; font-weight: 400; letter-spacing: 0.15em;
    text-transform: uppercase; margin-bottom: 2rem; text-align: center;
}

.content-highlight-body { font-size: 1rem; line-height: 1.9; text-align: center; }
.content-highlight-body p { margin-bottom: 1.5rem; }
.content-highlight-body p:last-child { margin-bottom: 0; }

@media (max-width: 991px) {
    .content-highlight-wrapper { flex-direction: column !important; min-height: auto; }
    .content-highlight-image, .content-highlight-text { flex: 0 0 100%; max-width: 100%; }
    .content-highlight-image { position: relative; height: 400px; }
    .content-highlight-text { padding: 50px 30px; }
    .content-highlight-title { font-size: 1.8rem; }
    .content-highlight-body { font-size: 0.95rem; }
}

@media (max-width: 576px) {
    .content-highlight-image { height: 300px; }
    .content-highlight-text { padding: 40px 20px; }
    .content-highlight-title { font-size: 1.5rem; letter-spacing: 0.1em; }
}


/* ============================================================================
 * CONTENT HIGHLIGHT 2 SECTION (image card grid)
 * ============================================================================ */

.section-content-highlight-2 { padding: 80px 0; }

.section-content-highlight-2[data-section-theme="dark"],
.section-content-highlight-2:not([data-section-theme]) {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.section-content-highlight-2[data-section-theme="light"] {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.highlight-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.highlight-card { position: relative; overflow: hidden; border-radius: 8px; }
.highlight-card a { display: block; text-decoration: none; }
.highlight-image { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.highlight-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.highlight-card:hover .highlight-image img { transform: scale(1.08); }

.highlight-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 25px; transition: background 0.3s ease;
}

.highlight-card:hover .highlight-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 60%, rgba(0,0,0,0.4) 100%);
}

.highlight-content { transform: translateY(0); transition: transform 0.3s ease; }
.highlight-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: #ffffff; margin: 0; font-weight: 600; line-height: 1.3; }

.highlight-description {
    font-size: 0.9rem; color: rgba(255, 255, 255, 0.85); margin: 12px 0 0;
    line-height: 1.5; max-height: 0; overflow: hidden; opacity: 0; transition: all 0.4s ease;
}

.highlight-card:hover .highlight-description { max-height: 150px; opacity: 1; }

@media (max-width: 991px) {
    .highlight-grid { grid-template-columns: repeat(2, 1fr); }
    .highlight-image { aspect-ratio: 4/5; }
}

@media (max-width: 575px) {
    .section-content-highlight-2 { padding: 50px 0; }
    .highlight-grid { grid-template-columns: 1fr; gap: 15px; }
    .highlight-image { aspect-ratio: 16/9; }
    .highlight-description { max-height: 100px; opacity: 1; }
}