:root {
    --color-gold: #ECCB95;
    --color-gold-hover: #DFBE86;
    --color-gold-border: #C5A87B;
    --color-dark-teal: #314442;
    --color-dark-teal-hover: #263634;
    --color-spruce-black: #16221F;
    --color-spruce-surface: #1C2925;
    --color-cream-bg: #FAF7F2;
    --color-card-icon-bg: #EDE5D8;
    --color-border-divider: #E8E2D7;
    --color-text-main: #1B2421;
    --color-text-body: #5C6863;
    --color-text-lead: #35403C;
    --color-text-muted: #85928D;
    --color-text-light: #D2D6D3;
    --color-white: #FFFFFF;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-script: 'Alex Brush', cursive;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-cream-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .section-heading, .banner-heading, .page-banner-title {
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: -0.01em;
}

a {
    text-decoration: none;
    transition: var(--transition-smooth);
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-spruce-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    color: var(--color-white);
}

.preloader-guitar {
    color: var(--color-gold);
    animation: guitarPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 12px rgba(236, 203, 149, 0.4));
}

@keyframes guitarPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.85;
    }
    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

.preloader-brand {
    font-family: var(--font-script);
    font-size: 38px;
    color: var(--color-white);
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.preloader-tagline {
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2.2px;
    color: var(--color-gold);
}

.preloader-bar-wrap {
    width: 130px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.preloader-bar {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    animation: preloaderProgress 1.4s infinite ease-in-out;
}

@keyframes preloaderProgress {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.section-tagline {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.2px;
    line-height: 1;
}

.text-gold {
    color: var(--color-gold) !important;
}

.text-secondary-dark {
    color: var(--color-text-body);
}

.text-muted-light {
    color: var(--color-text-light);
}

.bg-cream {
    background-color: var(--color-cream-bg) !important;
}

.border-gold {
    border-color: var(--color-gold-border) !important;
}

.bg-champagne {
    background-color: var(--color-gold) !important;
}

.section-gold-divider {
    width: 34px;
    height: 1.5px;
    background-color: var(--color-gold-border);
}

.btn-champagne {
    background-color: var(--color-gold);
    color: #1A201C;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    border-radius: 50px;
    padding: 9px 24px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(236, 203, 149, 0.25);
    transition: var(--transition-smooth);
}

.btn-champagne:hover {
    background-color: var(--color-gold-hover);
    color: #0F1311;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(236, 203, 149, 0.35);
}

.btn-dark-teal {
    background-color: var(--color-dark-teal);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    border-radius: 50px;
    padding: 9px 24px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(49, 68, 66, 0.2);
    transition: var(--transition-smooth);
}

.btn-dark-teal:hover {
    background-color: var(--color-dark-teal-hover);
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(49, 68, 66, 0.3);
}

.btn-arrow {
    font-size: 11px;
    transition: transform 0.25s ease;
}

.btn-champagne:hover .btn-arrow,
.btn-dark-teal:hover .btn-arrow {
    transform: translateX(3px);
}

.btn-filter {
    font-size: 12.5px;
    padding: 6px 18px;
    border-radius: 50px;
    background-color: var(--color-white);
    color: var(--color-text-body);
    border: 1px solid var(--color-border-divider);
    font-weight: 500;
    transition: var(--transition-smooth);
}

.btn-filter:hover, .btn-filter.active {
    background-color: var(--color-gold);
    color: #1A201C;
    border-color: var(--color-gold);
}

.navbar-brand, .footer-brand {
    color: var(--color-white);
    text-decoration: none;
}

.navbar-brand:hover, .footer-brand:hover {
    color: var(--color-gold);
}

.guitar-logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.brand-text {
    line-height: 1;
}

.brand-name {
    font-family: var(--font-script);
    font-size: 26px;
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: 0.8px;
    margin-bottom: 2px;
    white-space: nowrap;
}

.brand-tagline {
    font-family: var(--font-body);
    font-size: 7.8px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--color-gold);
    white-space: nowrap;
}

.navoda-navbar {
    padding: 16px 0;
    background: rgba(22, 34, 31, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background-color 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
    z-index: 1050;
}

.navoda-navbar.scrolled {
    background-color: rgba(22, 34, 31, 0.98);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.navoda-navbar .navbar-nav .nav-link {
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 400;
    color: #E2DFD9;
    padding: 6px 14px;
    position: relative;
    transition: var(--transition-smooth);
}

.navoda-navbar .navbar-nav .nav-link:hover {
    color: var(--color-white);
}

.navoda-navbar .navbar-nav .nav-link.active {
    color: var(--color-gold);
}

.navoda-navbar .navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 14px;
    width: 24px;
    height: 1.8px;
    background-color: var(--color-gold);
    border-radius: 2px;
}

.nav-btn {
    padding: 7px 20px;
    font-size: 13px;
}

.page-banner {
    background: linear-gradient(135deg, rgba(22, 34, 31, 0.95) 0%, rgba(35, 48, 44, 0.92) 100%), url('../images/repertoire-bg.jpg') no-repeat center center / cover;
    padding: 130px 0 55px;
    position: relative;
}

.page-banner-title {
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    margin-bottom: 4px;
}

.breadcrumb-custom {
    font-size: 13px;
}

.hero-section {
    position: relative;
    min-height: 85vh;
    background-color: var(--color-hero-bg);
    background-image: url('../images/hero-bg.jpg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    display: flex;
    align-items: center;
    padding-top: 110px;
    padding-bottom: 70px;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(22, 34, 31, 0.94) 0%, rgba(22, 34, 31, 0.82) 45%, rgba(22, 34, 31, 0.38) 80%, rgba(22, 34, 31, 0.55) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    max-width: 490px;
    position: relative;
    z-index: 2;
}

.hero-heading {
    font-size: clamp(2.3rem, 4vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: 18px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.hero-description {
    font-size: 13.5px;
    line-height: 1.65;
    font-weight: 300;
    max-width: 430px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.hero-btn {
    padding: 10px 24px;
}

.hero-sound-btn {
    width: 42px;
    height: 42px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--color-champagne-gold);
    color: var(--color-champagne-gold);
    background: rgba(22, 34, 31, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.25s ease;
    cursor: pointer;
}

.hero-sound-btn:hover,
.hero-sound-btn.active {
    background: var(--color-champagne-gold);
    color: var(--color-dark-teal);
    transform: scale(1.06);
    box-shadow: 0 0 16px rgba(236, 203, 149, 0.4);
}


.about-section {
    background-color: var(--color-cream-bg);
    padding: 85px 0;
}

.about-frame-container {
    position: relative;
    max-width: 320px;
    width: 100%;
}

.about-offset-border {
    position: absolute;
    top: -14px;
    left: -14px;
    width: 100%;
    height: 100%;
    border: 1.2px solid var(--color-gold-border);
    z-index: 1;
    pointer-events: none;
}

.about-image-card {
    position: relative;
    z-index: 2;
    background-color: var(--color-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-botanical-art {
    position: absolute;
    bottom: -22px;
    left: -38px;
    z-index: 3;
    pointer-events: none;
}

.botanical-svg {
    width: 72px;
    height: 72px;
    display: block;
}

.about-content .section-heading {
    font-size: clamp(2rem, 3vw, 2.75rem);
    color: var(--color-text-main);
}

.about-content .lead-text {
    font-size: 14px;
    color: var(--color-text-lead);
    font-weight: 400;
    line-height: 1.6;
}

.about-content .body-text {
    font-size: 12.5px;
    color: var(--color-text-body);
    line-height: 1.7;
}

.services-section {
    background-color: var(--color-cream-bg);
    padding: 70px 0 85px;
}

.services-section .section-heading {
    font-size: clamp(1.9rem, 2.8vw, 2.5rem);
    color: var(--color-text-main);
}

.services-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.service-card-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0 16px;
    position: relative;
}

.service-card-col:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: var(--color-border-divider);
}

.service-card {
    text-align: center;
    padding: 10px 4px;
}

.service-icon-circle {
    width: 52px;
    height: 52px;
    background-color: var(--color-card-icon-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: #2F3633;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-circle {
    transform: translateY(-3px);
    background-color: #E6DBCB;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 16.5px;
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 11.5px;
    color: var(--color-text-body);
    line-height: 1.68;
    text-align: left;
}

.repertoire-banner {
    position: relative;
    background-image: url('../images/repertoire-bg.jpg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    min-height: 290px;
    display: flex;
    align-items: center;
    padding: 50px 0;
}

.repertoire-content {
    max-width: 420px;
}

.banner-heading {
    font-size: clamp(1.8rem, 2.6vw, 2.4rem);
    line-height: 1.2;
}

.banner-description {
    font-size: 12.5px;
    line-height: 1.65;
    font-weight: 300;
    max-width: 390px;
}

.repertoire-item-card {
    transition: var(--transition-smooth);
    border-color: var(--color-border-divider) !important;
}

.repertoire-item-card:hover {
    transform: translateY(-3px);
    border-color: var(--color-gold-border) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.gallery-card {
    border-color: var(--color-border-divider) !important;
    transition: var(--transition-smooth);
}

.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(22, 34, 31, 0.9) 0%, rgba(22, 34, 31, 0.3) 60%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-image {
    transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-image {
    transform: scale(1.05);
}

.contact-banner {
    position: relative;
    background-image: url('../images/contact-bg.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 60px 0;
    min-height: 220px;
    display: flex;
    align-items: center;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(248, 230, 210, 0.45);
    backdrop-filter: blur(0.5px);
}

.contact-content {
    position: relative;
    z-index: 2;
    max-width: 520px;
}

.contact-content .section-tagline {
    color: #2F3632;
    letter-spacing: 2.2px;
}

.contact-content .section-heading {
    font-size: clamp(1.8rem, 2.6vw, 2.3rem);
    color: var(--color-text-main);
}

.contact-desc {
    font-size: 12.5px;
    color: #3C4440;
}

.site-footer {
    background-color: var(--color-spruce-black);
    color: var(--color-white);
    padding: 40px 0 20px;
}

.footer-quote {
    font-family: var(--font-script);
    font-size: 22px;
    color: var(--color-white);
    letter-spacing: 0.5px;
    line-height: 1;
}

.footer-accent-line {
    width: 32px;
    height: 1.5px;
    background-color: var(--color-gold-border);
    margin: 6px auto 0;
}

.footer-social {
    gap: 16px;
}

.social-link {
    color: var(--color-white);
    font-size: 16px;
    transition: var(--transition-smooth);
}

.social-link:hover {
    color: var(--color-gold);
    transform: translateY(-2px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.12);
    opacity: 1;
}

.copyright, .location-tag {
    font-size: 11px;
    color: var(--color-text-muted);
}

.booking-modal-content {
    background-color: var(--color-cream-bg);
    border-radius: 16px;
    border: 1px solid var(--color-gold-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.navoda-input {
    background-color: var(--color-white);
    border: 1px solid #DFD9CF;
    border-radius: 8px;
    font-size: 13px;
    padding: 9px 14px;
    transition: var(--transition-smooth);
}

.navoda-input:focus {
    border-color: var(--color-gold-border);
    box-shadow: 0 0 0 3px rgba(236, 203, 149, 0.25);
    background-color: var(--color-white);
}

.form-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-main);
    margin-bottom: 4px;
}

@media (max-width: 1199.98px) {
    .service-card-col {
        padding: 0 10px;
    }
}

@media (max-width: 991.98px) {
    .navoda-navbar {
        background-color: rgba(22, 34, 31, 0.98);
        padding: 12px 0;
    }

    .navoda-navbar .navbar-collapse {
        padding-top: 16px;
        padding-bottom: 12px;
    }

    .navoda-navbar .navbar-nav .nav-item {
        margin-bottom: 8px;
    }

    .hero-section {
        background-position: 70% center;
        min-height: 75vh;
    }

    .services-row {
        justify-content: center;
    }

    .service-card-col {
        flex: 0 0 33.333%;
        max-width: 33.333%;
        margin-bottom: 30px;
    }

    .service-card-col:nth-child(3n)::after {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: auto;
        padding-top: 110px;
        padding-bottom: 60px;
    }

    .service-card-col {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .service-card-col::after {
        display: none !important;
    }

    .service-card {
        border-bottom: 1px solid var(--color-border-divider);
        padding-bottom: 24px;
        margin-bottom: 10px;
    }

    .about-frame-container {
        margin-bottom: 30px;
    }
}

@media (max-width: 575.98px) {
    .service-card-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .hero-heading {
        font-size: 2.1rem;
    }

    .brand-name {
        font-size: 21px;
    }

    .brand-tagline {
        font-size: 6.5px;
        letter-spacing: 1.1px;
    }
}

/* Gallery Showcase & Hover */
.gallery-card {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: var(--color-white);
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12) !important;
}

.gallery-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.gallery-image {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-image[src*="navoda-portrait-tweed"] {
    object-position: top center !important;
}

.gallery-image[src*="navoda-performance-tweed"] {
    object-position: top center !important;
}

.gallery-image[src*="navoda-portrait-red"] {
    object-position: top center !important;
}

.gallery-image[src*="navoda-acoustic-session"] {
    object-position: center 20% !important;
}

.gallery-image[src*="repertoire-bg"] {
    object-position: center center !important;
}

.gallery-card:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(22, 34, 31, 0.94) 0%, rgba(22, 34, 31, 0.45) 55%, transparent 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.btn-filter {
    border: 1px solid var(--color-border-divider);
    background: var(--color-white);
    color: var(--color-text-main);
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 30px;
    transition: var(--transition-smooth);
}

.btn-filter.active,
.btn-filter:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold-border);
    color: #1A201C;
    box-shadow: 0 4px 12px rgba(236, 203, 149, 0.3);
}

/* ==========================================================================
   Element-Based Animations & Scroll Reveal Engine
   ========================================================================== */

[data-reveal] {
    opacity: 0;
    will-change: transform, opacity;
    transition-property: transform, opacity;
    transition-duration: 0.85s;
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal="fade-up"] {
    transform: translateY(38px);
}

[data-reveal="fade-down"] {
    transform: translateY(-38px);
}

[data-reveal="fade-left"] {
    transform: translateX(-38px);
}

[data-reveal="fade-right"] {
    transform: translateX(38px);
}

[data-reveal="zoom"] {
    transform: scale(0.92);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Micro-animations & Continuous Floating */
@keyframes floatGentle {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(1.5deg);
    }
}

@keyframes floatGentleRev {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(8px) rotate(-1.5deg);
    }
}

.float-element {
    animation: floatGentle 5s ease-in-out infinite;
}

.float-element-rev {
    animation: floatGentleRev 6s ease-in-out infinite;
}

@keyframes goldGlowPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(236, 203, 149, 0.4);
    }
    50% {
        box-shadow: 0 0 20px 4px rgba(236, 203, 149, 0.25);
    }
}

.pulse-gold-glow {
    animation: goldGlowPulse 3s infinite ease-in-out;
}

/* Button Shimmer Sweep Effect */
.btn-champagne, .btn-dark-teal {
    position: relative;
    overflow: hidden;
}

.btn-champagne::before, .btn-dark-teal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-25deg);
    transition: none;
}

.btn-champagne:hover::before, .btn-dark-teal:hover::before {
    left: 140%;
    transition: all 0.75s ease-in-out;
}

/* ==========================================================================
   Key Metrics & Highlights Counter Section
   ========================================================================== */
.stats-counter-section {
    background-color: var(--color-spruce-black);
    color: var(--color-white);
    padding: 55px 0;
    position: relative;
    border-top: 1px solid rgba(236, 203, 149, 0.15);
    border-bottom: 1px solid rgba(236, 203, 149, 0.15);
}

.stat-item {
    text-align: center;
    padding: 15px 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(236, 203, 149, 0.35), transparent);
}

.stat-icon {
    font-size: 22px;
    color: var(--color-gold);
    margin-bottom: 8px;
    display: inline-block;
}

.stat-number-wrap {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 600;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #C0C8C4;
    margin: 0;
}

/* ==========================================================================
   Why Choose Navoda / Feature Cards
   ========================================================================== */
.features-section {
    background-color: #F4EFE6;
    padding: 85px 0;
    position: relative;
}

.feature-box {
    background-color: var(--color-white);
    border: 1px solid var(--color-border-divider);
    border-radius: 14px;
    padding: 34px 28px;
    height: 100%;
    position: relative;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
}

.feature-box:hover {
    transform: translateY(-7px);
    border-color: var(--color-gold-border);
    box-shadow: 0 16px 36px rgba(49, 68, 66, 0.09);
}

.feature-icon-badge {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: linear-gradient(135deg, #EDE5D8 0%, #FAF7F2 100%);
    border: 1px solid rgba(197, 168, 123, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark-teal);
    font-size: 22px;
    margin-bottom: 22px;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon-badge {
    background: var(--color-dark-teal);
    color: var(--color-gold);
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 8px 18px rgba(49, 68, 66, 0.25);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 13px;
    color: var(--color-text-body);
    line-height: 1.65;
    margin: 0;
}

/* ==========================================================================
   Interactive Audio / Music Preview Showcase
   ========================================================================== */
.audio-showcase-section {
    background: linear-gradient(135deg, #16221F 0%, #1E2D29 100%);
    color: var(--color-white);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.audio-track-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(236, 203, 149, 0.18);
    border-radius: 14px;
    padding: 20px 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
}

.audio-track-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.audio-track-card.is-playing {
    border-color: var(--color-gold);
    background: rgba(236, 203, 149, 0.1);
    box-shadow: 0 0 24px rgba(236, 203, 149, 0.2);
}

.track-play-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-gold);
    color: #1A201C;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.audio-track-card:hover .track-play-btn {
    transform: scale(1.1);
    box-shadow: 0 0 16px rgba(236, 203, 149, 0.5);
}

.audio-track-card.is-playing .track-play-btn {
    background-color: #FFFFFF;
    color: #16221F;
}

.track-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 3px;
    line-height: 1.2;
}

.track-artist-meta {
    font-size: 12px;
    color: #A2B0AB;
}

.track-genre-badge {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(236, 203, 149, 0.15);
    color: var(--color-gold);
    border: 1px solid rgba(236, 203, 149, 0.3);
}

/* Sound Wave Equalizer Bars */
.soundwave-visualizer {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 22px;
    width: 32px;
}

.soundwave-bar {
    width: 4px;
    height: 4px;
    background-color: var(--color-gold);
    border-radius: 2px;
    transition: height 0.2s ease;
}

.audio-track-card.is-playing .soundwave-bar {
    animation: soundwaveBounce 1.2s ease-in-out infinite alternate;
}

.audio-track-card.is-playing .soundwave-bar:nth-child(1) { animation-delay: 0.1s; }
.audio-track-card.is-playing .soundwave-bar:nth-child(2) { animation-delay: 0.35s; }
.audio-track-card.is-playing .soundwave-bar:nth-child(3) { animation-delay: 0.2s; }
.audio-track-card.is-playing .soundwave-bar:nth-child(4) { animation-delay: 0.45s; }

@keyframes soundwaveBounce {
    0% { height: 4px; }
    50% { height: 18px; }
    100% { height: 8px; }
}

/* ==========================================================================
   The 4-Step Booking Journey / How It Works
   ========================================================================== */
.process-section {
    background-color: var(--color-cream-bg);
    padding: 90px 0;
    position: relative;
}

.process-step-card {
    background: var(--color-white);
    border: 1px solid var(--color-border-divider);
    border-radius: 14px;
    padding: 32px 24px;
    height: 100%;
    position: relative;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.process-step-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-gold-border);
    box-shadow: 0 14px 32px rgba(49, 68, 66, 0.08);
}

.process-step-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: rgba(197, 168, 123, 0.35);
    line-height: 1;
    margin-bottom: 14px;
    transition: color 0.3s ease;
}

.process-step-card:hover .process-step-number {
    color: var(--color-gold-border);
}

.process-step-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: 10px;
}

.process-step-desc {
    font-size: 12.5px;
    color: var(--color-text-body);
    line-height: 1.65;
    margin: 0;
}

/* ==========================================================================
   Client Testimonials & Kind Words
   ========================================================================== */
.testimonials-section {
    background: #F5EFEB;
    padding: 90px 0;
    position: relative;
}

.testimonial-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border-divider);
    border-radius: 14px;
    padding: 34px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-gold-border);
    box-shadow: 0 16px 36px rgba(49, 68, 66, 0.08);
}

.testimonial-stars {
    color: #D4AF37;
    font-size: 13px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-quote {
    font-size: 13.5px;
    line-height: 1.7;
    color: #3C4743;
    font-style: italic;
    margin-bottom: 22px;
    position: relative;
}

.testimonial-author-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: 2px;
}

.testimonial-event-badge {
    font-size: 11.5px;
    color: var(--color-text-muted);
}

/* ==========================================================================
   FAQ Accordion Section
   ========================================================================== */
.faq-section {
    background-color: var(--color-cream-bg);
    padding: 85px 0;
}

.faq-accordion .accordion-item {
    background-color: var(--color-white);
    border: 1px solid var(--color-border-divider);
    border-radius: 12px !important;
    margin-bottom: 14px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-accordion .accordion-item:hover {
    border-color: var(--color-gold-border);
}

.faq-accordion .accordion-button {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text-main);
    background-color: var(--color-white);
    padding: 18px 24px;
    box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--color-dark-teal);
    background-color: rgba(236, 203, 149, 0.08);
    border-bottom: 1px solid var(--color-border-divider);
}

.faq-accordion .accordion-body {
    font-size: 13px;
    line-height: 1.7;
    color: var(--color-text-body);
    padding: 20px 24px;
    background-color: var(--color-white);
}

/* ==========================================================================
   In-Depth Luxury Detailed Footer
   ========================================================================== */
.site-footer {
    background-color: var(--color-spruce-black);
    color: var(--color-white);
    padding: 0;
    position: relative;
    border-top: 1px solid rgba(236, 203, 149, 0.2);
}

/* Pre-footer CTA Strip */
.footer-cta-strip {
    background: linear-gradient(135deg, #1F2D29 0%, #16221F 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 42px 0;
}

.footer-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    color: var(--color-white);
    margin-bottom: 6px;
}

.footer-cta-subtitle {
    font-size: 13px;
    color: #B4C0BB;
    margin: 0;
}

/* Main Footer Content */
.footer-main {
    padding: 70px 0 45px;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 1.5px;
    background-color: var(--color-gold);
}

.footer-about-text {
    font-size: 12.5px;
    line-height: 1.7;
    color: #B4C0BB;
    margin-bottom: 18px;
}

.footer-qualification-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(236, 203, 149, 0.1);
    border: 1px solid rgba(236, 203, 149, 0.25);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    color: var(--color-gold);
    margin-bottom: 6px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 10px;
}

.footer-links-list a {
    color: #B4C0BB;
    font-size: 12.5px;
    display: inline-flex;
    align-items: center;
    transition: all 0.25s ease;
}

.footer-links-list a:hover {
    color: var(--color-gold);
    transform: translateX(4px);
}

.footer-links-list a i {
    font-size: 9px;
    color: var(--color-gold);
    margin-right: 8px;
    transition: transform 0.25s ease;
}

.footer-links-list a:hover i {
    transform: translateX(2px);
}

/* Mini Gallery Thumbnails Strip in Footer */
.footer-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.footer-gallery-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    height: 64px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
}

.footer-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s ease;
}

.footer-gallery-item img[src*="navoda-portrait-tweed"],
.footer-gallery-item img[src*="navoda-performance-tweed"] {
    object-position: top center !important;
}

.footer-gallery-item:hover img {
    transform: scale(1.15);
}

.footer-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(22, 34, 31, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.footer-gallery-item:hover .footer-gallery-overlay {
    opacity: 1;
}

/* Contact List in Footer */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 12.5px;
    color: #B4C0BB;
}

.footer-contact-item i {
    color: var(--color-gold);
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-item a {
    color: #B4C0BB;
    transition: color 0.25s ease;
}

.footer-contact-item a:hover {
    color: var(--color-gold);
}

/* Social Buttons */
.footer-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(236, 203, 149, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 14px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.footer-social-btn:hover {
    background-color: var(--color-gold);
    color: #16221F;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(236, 203, 149, 0.3);
}

/* Footer Bottom Strip */
.footer-bottom-bar {
    background-color: #0E1614;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 12px;
    color: #7D8E87;
}

.footer-legal-links a {
    color: #7D8E87;
    margin-left: 16px;
    transition: color 0.25s ease;
}

.footer-legal-links a:hover {
    color: var(--color-gold);
}

/* Back to Top Floating Button */
.back-to-top-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-spruce-surface);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.back-to-top-btn:hover {
    background: var(--color-gold);
    color: #16221F;
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(236, 203, 149, 0.4);
}


