html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #1a1a1a;
    --accent-color: #FFD700;
    --accent-light: #FFF8DC;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #f8f8f8;
    --section-bg: #fff;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-heavy: rgba(0, 0, 0, 0.25);
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.8;
    color: var(--text-color);
    background: linear-gradient(135deg, var(--bg-color) 0%, #e8e8e8 100%);
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
    min-height: 100vh;
}

header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: var(--section-bg);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 0;
}

/* Desktop only - subtle left side image */
@media (min-width: 1024px) {
    header::before {
        width: 60%;
        background: url('./IMG_1637.png') left center / cover no-repeat;
        opacity: 0.25;
        mask-image: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.3) 70%, rgba(0,0,0,0) 100%);
        -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.3) 70%, rgba(0,0,0,0) 100%);
        filter: grayscale(40%);
    }
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: none;
    z-index: 1;
}

/* Desktop only - subtle right side gradient */
@media (min-width: 1024px) {
    header::after {
        top: 0;
        left: 40%;
        right: 0;
        bottom: 0;
        height: 100%;
        background: linear-gradient(135deg, transparent 0%, rgba(42, 42, 42, 0.4) 100%);
        z-index: 0;
    }
}

header > * {
    position: relative;
    z-index: 2;
}

/* Header badge styling */
.header-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
    animation: fadeInDown 1s ease-out 0.5s both;
}

.header-award-badge {
    max-width: 120px;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3));
    transition: all 0.3s ease;
    border-radius: 8px;
}

.header-award-badge:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 12px 24px rgba(0,0,0,0.4));
}

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

/* Mobile responsive header badge */
@media (max-width: 768px) {
    .header-badge {
        top: 15px;
        right: 15px;
    }
    
    .header-award-badge {
        max-width: 80px;
    }
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 3px;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    margin-top: 0;
    animation: fadeInUp 1s ease-out;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.tagline {
    font-size: 1.3rem;
    color: #ffffff;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.5);
    margin-top: 0;
    font-weight: 400;
    margin-bottom: 0;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

nav {
    background-color: rgba(51, 51, 51, 0.9);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 1.5rem;
}

nav ul li a {
    color: var(--section-bg);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

nav ul li a:hover {
    color: var(--accent-color);
    background-color: rgba(255, 255, 255, 0.1);
}

main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
    position: relative;
}

section {
    margin-bottom: 5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

section:hover {
    transform: translateY(-5px);
}

h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.profile-image {
    max-width: 280px;
    width: 100%;
    height: auto;
    border-radius: 50%;
    margin: 0 auto 2rem;
    box-shadow: 0 12px 40px var(--shadow-medium);
    border: 4px solid var(--accent-color);
    transition: all 0.4s ease;
    position: relative;
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px var(--shadow-heavy);
    border-color: #E6C200;
}

#services ul {
    list-style-type: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

#services li {
    padding: 1rem;
    background-color: rgba(240, 240, 240, 0.7);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

#services li:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: scale(1.05);
}

blockquote {
    font-style: italic;
    border-left: 4px solid var(--accent-color);
    padding: 2rem 2.5rem;
    margin: 2rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 220, 0.3));
    backdrop-filter: blur(10px);
    border-radius: 12px;
    position: relative;
    box-shadow: 0 8px 32px var(--shadow-light);
    font-size: 1.1rem;
    line-height: 1.7;
    transition: all 0.3s ease;
}

blockquote:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px var(--shadow-medium);
}

blockquote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    left: 10px;
    top: -10px;
    color: var(--accent-color);
    opacity: 0.5;
}

iframe {
    width: 100%;
    max-width: 560px;
    height: 315px;
    box-shadow: 0 8px 32px var(--shadow-medium);
    border-radius: 16px;
    margin: 2rem auto;
    display: block;
    filter: drop-shadow(0 10px 20px var(--shadow-heavy));
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 215, 0, 0.1);
}

iframe:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 16px 48px var(--shadow-heavy);
    border-color: rgba(255, 215, 0, 0.3);
}

#contact {
    text-align: center;
}

#contact p {
    margin-bottom: 1rem;
}

#contact a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.2s ease;
}

#contact a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

footer {
    background: linear-gradient(135deg, var(--primary-color), #2a2a2a);
    color: var(--section-bg);
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Gear section styling */
.gear-section {
    background: #ffffff;
    padding: 2rem 0;
    margin: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.gear-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.gear-container h3 {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gear-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.gear-logo {
    max-height: 35px;
    max-width: 120px;
    height: auto;
    width: auto;
    opacity: 0.7;
    filter: grayscale(80%) brightness(0.7);
    transition: all 0.3s ease;
}

.gear-logo:hover {
    opacity: 0.9;
    filter: grayscale(40%) brightness(0.9);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .gear-section {
        padding: 1.5rem 0;
    }
    
    .gear-logos {
        gap: 2rem;
    }
    
    .gear-logo {
        max-height: 30px;
        max-width: 100px;
    }
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

footer p {
    margin: 0.8rem 0;
    font-size: 1rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

footer p:hover {
    opacity: 1;
}

/* Subtle site credit */
.site-credit {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 0.5rem;
}

.site-credit a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
}

.site-credit a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

/* Tablet and smaller - add background image */
@media (max-width: 1023px) {
    header {
        height: 50vh;
        min-height: 350px;
        max-height: 450px;
        background: rgba(26, 26, 26, 0.3);
        justify-content: flex-end;
        padding: 2rem 0;
    }
    
    header::before {
        width: 100%;
        right: 0;
        background: url('./IMG_1625.png') center center / cover no-repeat !important;
        opacity: 0.8 !important;
        filter: grayscale(50%) brightness(70%) !important;
        mask-image: none !important;
        -webkit-mask-image: none !important;
    }
    
    header::after {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    header {
        height: 45vh;
        min-height: 300px;
        max-height: 400px;
    }

    h1 {
        font-size: 3rem;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 0.5rem 0;
    }

    section {
        padding: 2rem;
    }

    #services ul {
        grid-template-columns: 1fr;
    }
}

/* Add this new style for a decorative element */
.decorative-line {
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-color), transparent);
    margin: 2rem auto;
    width: 80%;
    max-width: 300px;
}

nav ul li a i {
    margin-right: 5px;
}

#about {
    padding: 2rem;
    overflow: hidden;
}

.profile-image {
    max-width: 250px;
    width: 100%;
    height: auto;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    border: 2px solid var(--accent-color);
}

.about-content {
    text-align: justify;
}

@media (min-width: 768px) {
    #about {
        padding: 3rem;
    }

    .profile-image {
        float: left;
        margin: 0 3rem 2rem 0;
        max-width: 300px;
    }

    .about-content {
        overflow: hidden;
    }
    
    .about-content p:first-child {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    #about {
        padding: 1.5rem;
    }

    .about-content p {
        text-align: justify;
        hyphens: auto;
    }
}

/* Add these styles at the end of your CSS file */
.testimonial {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.client-logo {
    max-width: 80px;
    height: auto;
    margin-right: 1.5rem;
}

.booklive-logo {
    max-width: 95px;
}

#testimonials blockquote {
    flex: 1;
    margin: 0;
}

/* Testimonial without logo styling */
.testimonial-no-logo {
    justify-content: center;
    text-align: center;
}

.testimonial-no-logo blockquote {
    margin: 0 auto;
    max-width: 800px;
    position: relative;
    padding: 2.5rem 3rem;
    background: linear-gradient(135deg, rgba(255, 248, 220, 0.4), rgba(255, 255, 255, 0.9));
    border-left: 4px solid var(--accent-color);
    border-right: 4px solid var(--accent-color);
}

.testimonial-no-logo blockquote::before {
    content: '"';
    font-size: 5rem;
    position: absolute;
    left: 15px;
    top: -15px;
    color: var(--accent-color);
    opacity: 0.6;
}

.testimonial-no-logo blockquote::after {
    content: '"';
    font-size: 5rem;
    position: absolute;
    right: 15px;
    bottom: -45px;
    color: var(--accent-color);
    opacity: 0.6;
}

@media (max-width: 600px) {
    .testimonial {
        flex-direction: column;
    }

    .client-logo {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .testimonial-no-logo blockquote {
        padding: 2rem;
    }
    
    .testimonial-no-logo blockquote::before,
    .testimonial-no-logo blockquote::after {
        font-size: 3.5rem;
    }
}

.video-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.video-item {
    flex-basis: 100%;
    max-width: 560px;
}

.video-caption {
    margin-top: 1rem;
    font-style: italic;
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (min-width: 1200px) {
    .video-item {
        flex-basis: calc(50% - 1rem);
    }
}

/* Recognition section styles */
.awards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.award-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.award-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.award-badge {
    max-width: 150px;
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.award-badge:hover {
    transform: scale(1.05);
}

.award-description {
    font-size: 0.9rem;
    color: var(--text-color);
    font-style: italic;
    margin: 0;
}

.festival-participation {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.05), rgba(26, 26, 26, 0.02));
    border-radius: 12px;
    border: 1px solid rgba(26, 26, 26, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.festival-participation:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(26, 26, 26, 0.15);
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.08), rgba(26, 26, 26, 0.04));
    border-color: rgba(26, 26, 26, 0.2);
}

.festival-participation h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-top: 0.5rem;
    margin-bottom: 0;
    font-size: 1.5rem;
}

.festival-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.festival-logo {
    max-height: 80px;
    max-width: 160px;
    height: auto;
    width: auto;
    filter: grayscale(20%) opacity(0.9);
    transition: all 0.3s ease;
}

/* Slightly smaller sizing for do512 logo */
.festival-logo.do512-logo {
    max-height: 68px; /* ~15% smaller than 80px */
    max-width: 136px; /* ~15% smaller than 160px */
}

.festival-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* Enhanced hover effects for sections */
section {
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.05), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

section:hover::before {
    left: 100%;
}

section > * {
    position: relative;
    z-index: 1;
}

/* Recognition links styling */
.recognition-link {
    display: block;
    width: fit-content;
    margin: 1rem auto 0;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, var(--primary-color), #2a2a2a);
    color: var(--section-bg);
    text-decoration: none;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px var(--shadow-light);
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
}

.recognition-link i {
    margin-right: 0.5rem;
}

.recognition-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-medium);
    background: linear-gradient(135deg, #2a2a2a, var(--primary-color));
    border-color: rgba(255, 215, 0, 0.4);
}



/* Mobile responsiveness for recognition section */
@media (max-width: 768px) {
    .awards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .festival-logos {
        flex-direction: column;
        gap: 1rem;
    }
    
    .festival-logo {
        max-height: 120px !important;
        max-width: 240px !important;
    }
    /* Maintain ~15% reduction on mobile */
    .festival-logo.do512-logo {
        max-height: 102px !important; /* 120 * 0.85 */
        max-width: 204px !important;  /* 240 * 0.85 */
    }
    
    .recognition-link {
        width: fit-content;
        max-width: 280px;
        font-size: 0.85rem;
        padding: 0.7rem 1rem;
    }
}

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

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Enhanced section animations */
section {
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.1s;
    animation-fill-mode: both;
}

section:nth-child(even) {
    animation: slideInRight 0.8s ease-out;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

section:nth-child(odd) {
    animation: slideInLeft 0.8s ease-out;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

/* Improved typography */
p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.2rem;
}

p:last-child {
    margin-bottom: 0;
}

/* About section links */
.about-content a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    padding-bottom: 1px;
}

.about-content a:hover {
    color: #E6C200;
    border-bottom-color: #E6C200;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

/* Bio links styling */
.bio-links {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.bio-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), #E6C200);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-light);
    border: none;
}

.bio-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-medium);
    background: linear-gradient(135deg, #E6C200, var(--accent-color));
    color: var(--primary-color);
    border-bottom: none;
    text-shadow: none;
}

.bio-link i {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .bio-links {
        flex-direction: column;
        align-items: center;
    }
    
    .bio-link {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* Rates section styling */
.rates-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.rate-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 248, 248, 0.9));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px var(--shadow-light);
}

.rate-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px var(--shadow-medium);
    border-color: rgba(255, 215, 0, 0.4);
}

.rate-card.featured {
    border: 2px solid var(--accent-color);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 248, 220, 0.2));
    transform: scale(1.05);
}

.rate-card.featured:hover {
    transform: translateY(-8px) scale(1.07);
}

.rate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #E6C200);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.rate-card:hover::before {
    transform: scaleX(1);
}

.rate-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.rate-card h3 i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.duration {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.features li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    color: var(--text-color);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
}

.features li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.features li:last-child {
    border-bottom: none;
}

.rates-note {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 248, 220, 0.4), rgba(255, 255, 255, 0.6));
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    text-align: center;
}

.rates-note p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

.rates-note p:last-child {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .rates-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .rate-card.featured {
        transform: scale(1);
    }
    
    .rate-card.featured:hover {
        transform: translateY(-8px) scale(1.02);
    }
    
    .rate-card {
        padding: 1.5rem;
    }
    
    .price {
        font-size: 1.8rem;
    }
}

/* Improved service cards */
#services li {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 248, 248, 0.8));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

#services li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #E6C200);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

#services li:hover::before {
    transform: scaleX(1);
}

#services li:hover {
    background: linear-gradient(135deg, var(--accent-light), rgba(255, 255, 255, 0.95));
    color: var(--primary-color);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px var(--shadow-medium);
}
/* Multi-instrumentalist page enhancements */
.multi-header {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(48, 48, 48, 0.9)), url('./IMG_1637.png') center / cover no-repeat;
    color: var(--section-bg);
    min-height: 320px;
    padding: 3rem 2rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.multi-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(26, 26, 26, 0.6));
    z-index: 0;
}

.multi-header > * {
    position: relative;
    z-index: 1;
}

.top-nav {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    backdrop-filter: blur(10px);
}

.top-nav a {
    color: var(--section-bg);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.top-nav a:hover,
.top-nav a.active {
    color: var(--accent-color);
}

.hero-text h1 {
    margin: 0;
}

.multi-header .subtitle {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.multi-header .tagline {
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: 999px;
    background: var(--accent-color);
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.25);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(255, 215, 0, 0.35);
}

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

.exp-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 220, 0.3));
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.25);
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.exp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px var(--shadow-medium);
}

.exp-card h3 {
    font-family: 'Playfair Display', serif;
    margin-top: 0;
}

.exp-years {
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.services-container,
.gear-grid,
.testimonial-cards {
    display: grid;
    gap: 2rem;
}

.services-container {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-card {
    padding: 2.5rem 2rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(232, 232, 232, 0.65));
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 12px 32px var(--shadow-light);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card.featured {
    background: linear-gradient(135deg, rgba(255, 248, 220, 0.8), rgba(255, 255, 255, 0.95));
    box-shadow: 0 15px 45px rgba(255, 215, 0, 0.25);
}

.service-card i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px var(--shadow-medium);
}

.highlight-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 0;
}

.highlight-title {
    font-weight: 700;
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.gear-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-top: 2.5rem;
}

.gear-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 14px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 28px var(--shadow-light);
    text-align: center;
}

.testimonial-cards {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.testimonial-cards blockquote {
    margin: 0;
}

.cta {
    text-align: center;
}

.footer-nav {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-nav a {
    color: var(--section-bg);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-nav a.active {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .multi-header {
        padding: 2.5rem 1.5rem 3.5rem;
    }

    .top-nav {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }

    .subtitle,
    .tagline {
        letter-spacing: 0.1em;
    }
}
