/* --- Splash Screen --- */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.8s ease;
}

#splash-screen.fade-out {
    transform: translateY(-100%);
    opacity: 0;
}

.splash-content {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Camera Animation styling */
#camera-drawing-container {
    position: absolute;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.camera-svg {
    width: 100%;
    height: 100%;
    fill: transparent;
}

.draw-path {
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: drawCamera 2s ease forwards;
}

.lens-inner {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawCamera 2s ease 0.5s forwards; /* Slight delay for inner lens */
}

/* Loader and Logo Styling */
#logo-loader-container {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#logo-loader-container.active {
    opacity: 1 !important;
    transform: scale(1) !important;
}

.circular-loader-wrapper {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Heartbeat Pulse Spinner CSS */
.loader {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 220px;
}

.loader:before,
.loader:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    animation: pulsOut 1.8s ease-in-out infinite;
    filter: drop-shadow(0 0 1rem rgba(255, 255, 255, 0.75));
}

.loader:before {
    width: 100%;
    padding-bottom: 100%;
    box-shadow: inset 0 0 0 1.2rem rgba(255, 255, 255, 0.08);
    animation-name: pulsIn;
}

.loader:after {
    width: calc(100% - 2.4rem);
    padding-bottom: calc(100% - 2.4rem);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.08);
}

.splash-logo {
    position: absolute;
    z-index: 3;
    animation: pulseLogo 3s infinite alternate 1s;
}

.splash-logo img {
    height: 150px;
    width: auto;
    filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(168, 148, 118, 0.3));
}

/* Keyframes */
@keyframes drawCamera {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes pulsIn {
    0% {
        box-shadow: inset 0 0 0 1.2rem rgba(255, 255, 255, 0.08);
        opacity: 1;
    }
    50%, 100% {
        box-shadow: inset 0 0 0 0 rgba(255, 255, 255, 0.08);
        opacity: 0;
    }
}

@keyframes pulsOut {
    0%, 50% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.08);
        opacity: 0;
    }
    100% {
        box-shadow: 0 0 0 1.2rem rgba(255, 255, 255, 0.08);
        opacity: 1;
    }
}

@keyframes pulseLogo {
    0% { transform: scale(1); filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(168, 148, 118, 0.3)); }
    100% { transform: scale(1.05); filter: brightness(0) invert(1) drop-shadow(0 0 25px rgba(168, 148, 118, 0.6)); }
}

/* --- Global Styles --- */
:root {
    --primary-color: #a89476;
    /* Elegant gold/beige */
    --primary-dark: #8e7a5d;
    --dark-color: #1a1a1a;
    --light-bg: #fdfdfd;
    --gray-bg: #f4f4f4;
    --text-color: #4a4a4a;
    --heading-color: #222;
    --transition-speed: 0.4s;
}

/* Disable scrollbar completely */
::-webkit-scrollbar {
    display: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: none; /* Firefox */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--light-bg);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
.logo {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--heading-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed) ease;
}

/* --- Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Navigation Bar --- */
/* --- Navigation Bar --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    /* Taller at top */
    padding: 0 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1000;

    background: rgba(15, 15, 15, 0.6);
    /* Glassy transparent black */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

nav.scrolled {
    height: 80px;
    /* Compact when scrolled */
    background: rgba(255, 255, 255, 0.98);
    /* Glassy white */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    /* Softer shadow for white */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    /* Darker border for white background */
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1600px;
    height: 100%;
}

.navbar-logo {
    display: flex;
    align-items: center;
    transition: all 0.5s ease;
}

.logo img {
    height: 200px;
    /* Big logo at top */
    width: auto;
    object-fit: contain;
    transition: all 0.5s ease;
    filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
}

nav.scrolled .logo img {
    height: 140px;
    /* Scaled down when scrolled */
    filter: brightness(0) drop-shadow(0 0 5px rgba(0, 0, 0, 0.1));
    /* Black logo on white */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-links li a {
    position: relative;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.4s ease;
    display: inline-block;
}

/* Hover effect */
.nav-links li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--primary-color);
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: -1;
    border-radius: 30px;
}

.nav-links li a:hover::before {
    width: 100%;
}

.nav-links li a:hover {
    color: #fff !important;
}

/* Contact button highlight */
.nav-links li:last-child a {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

nav.scrolled .nav-links li a {
    color: var(--dark-color);
    /* Black text on white navbar */
}

nav.scrolled .nav-links li:last-child a {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-links li:last-child a:hover {
    border-color: transparent;
    background: var(--primary-color);
}


.nav-links li a,
.mobile-links li a {
    position: relative;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    transition: all 0.4s ease;
    padding: 10px 20px;
    /* Creating a perfect 40px visual gap between words */
    border-radius: 30px;
    overflow: hidden;
    z-index: 1;
    display: inline-block;
    transform: translateY(4px);
    /* Pushed the inner text slightly down within the glass pills */
}

nav.scrolled .nav-links li a {
    color: var(--dark-color);
}

.menu-toggle {
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
}

/* Helper Utilities */
.mobile-only {
    display: none !important;
}

@media (max-width: 1200px) {
    nav {
        padding: 0 30px;
        height: 80px;
    }

    .navbar-logo img {
        height: 140px;
    }

    nav.scrolled .navbar-logo img {
        height: 100px;
    }

    .nav-links li a {
        padding: 8px 15px;
        font-size: 12px;
    }
}


@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: flex !important;
    }
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    /* All caps to match image */
    letter-spacing: 2px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary-dark);
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

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

.btn:hover {
    color: #fff;
    box-shadow: 0 10px 20px rgba(168, 148, 118, 0.3);
    transform: translateY(-2px);
}

.btn:hover::after {
    height: 100%;
}

.btn:hover i {
    transform: translateX(5px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--dark-color);
    color: var(--dark-color);
}

.btn-outline:hover {
    background: var(--dark-color);
    color: #fff;
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: none;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.btn-full {
    width: 100%;
}

/* --- Hero Section & Carousel --- */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s linear;
    transform: scale(1.05);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Balanced dark tint + Vignette for clarity and style */
    background: radial-gradient(circle, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%),
        rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-top: 6vh;
    /* Lowered the text group downward from the top bar */
}

.nav-center-logo {
    position: absolute;
    left: 50%;
    top: 45%;
    /* Slightly above dead center for visual weights with floating pills balance */
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    z-index: 10;
}

.nav-center-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    /* Reduced backing width for smaller logo */
    height: 280px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.nav-center-logo img {
    height: 190px;
    /* Increased Logo Size for Sticky Navbar */
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 40px rgba(255, 255, 255, 0.2));
    animation: fadeInDown 1.5s ease-out;
}

.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 2;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.dot.active {
    width: 35px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.hero-content h1 {
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 300;
    text-transform: uppercase;
    margin-top: 30px;
    margin-bottom: 25px;
    color: #fff;
    letter-spacing: 6px;
    word-spacing: 12px;
    line-height: 1.2;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.9), 0 0 50px rgba(0, 0, 0, 0.6), 0 0 80px rgba(0, 0, 0, 0.3);
    position: relative;
    display: block;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transition: opacity 1.5s ease, transform 1.5s ease;
    transform: translateY(10px);
}

.hero-content h1.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.hero-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    margin-top: -20px;
    /* Lifted ONLY this text upwards closer to the title */
    margin-bottom: 40px;
    letter-spacing: 4px;
    /* Open and airy like the image */
    text-shadow: 1px 2px 12px rgba(0, 0, 0, 0.9), 0 0 25px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transition: opacity 1.5s ease, transform 1.5s ease;
    transform: translateY(10px);
}

.scroll-indicator {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    opacity: 0;
    animation: fadeInUp 1s ease 1.2s forwards;
}

.mouse {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 2px;
    height: 6px;
    background: #fff;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollWheel 2s linear infinite;
}

@keyframes scrollWheel {
    0% {
        top: 6px;
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}

.hero-content p.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.hero-content .btn {
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7);
    border-radius: 30px;
    padding: 16px 45px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-content .btn::after {
    content: none;
}

.hero-content .btn:hover {
    background: #ffffff;
    color: var(--dark-color);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.4);
    transform: translateY(-4px) scale(1.02);
}

.hero-content .btn i {
    transition: transform 0.3s ease;
}

.hero-content .btn:hover i {
    transform: translateX(8px);
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Sections Common --- */
.section {
    padding: 120px 50px;
}

.bg-light {
    background-color: var(--gray-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 3rem;
    /* Scaled down for better balance */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.section-title p {
    color: var(--primary-color);
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-top: 25px;
}

.section-title.left-align {
    text-align: left;
    margin-bottom: 30px;
}

/* --- About Section --- */
.about-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    position: relative;
    padding-bottom: 40px;
    max-width: 500px;
}

.about-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -10px;
    right: -30px;
    background: #fff;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 4px solid var(--primary-color);
}

.experience-badge span {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Inter', sans-serif;
}

.package-card .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.about-content p {
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat h3 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.stat p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777;
    margin: 0;
}

/* --- Services Section --- */
#services {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1452587925148-ce544e77e70d?auto=format&fit=crop&q=80&w=2000');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    z-index: 1;
    padding: 100px 50px;
    /* Specialized padding for optimal balance */
}

#services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.88);
    /* Soft light overlay */
    z-index: -1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    /* Increased gap between cards slightly for breathability */
    max-width: 1200px;
    margin: 30px auto 0;
    /* Push down relative to section title */
    position: relative;
    padding-bottom: 20px;
    /* Balance the bottom space */
}

.service-card {
    background: #ffffff;
    /* Explicitly solid white */
    padding: 50px 30px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    /* Stronger shadow to pop against BG image */
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    border-bottom: 3px solid transparent;
    z-index: 2;
    opacity: 0;
    transform: translateY(40px);
}

.service-card.active {
    opacity: 1;
    transform: translateY(0);
}

.service-card.active:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    border-bottom: 3px solid var(--primary-color);
}

.service-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
}

/* --- Featured Albums Carousel --- */
.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    list-style: none;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.album-card {
    flex: 0 0 calc(25% - 15px);
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.album-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.album-card:hover img {
    transform: scale(1.08);
}

.album-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 20px 25px;
    /* Increased top padding for smoother gradient transition */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
    color: #fff;
    text-align: left;
    z-index: 2;
}

.album-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #ffffff;
    /* Explicitly white */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    /* Subtle shadow for extra pop */
}

.album-type {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
    color: var(--dark-color);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.carousel-btn.prev {
    left: -10px;
}

.carousel-btn.next {
    right: -10px;
}

@media (max-width: 992px) {
    .album-card {
        flex: 0 0 calc(33.333% - 13.33px);
    }
}

@media (max-width: 768px) {
    .album-card {
        flex: 0 0 calc(50% - 10px);
    }

    .carousel-btn.prev {
        left: 0;
    }

    .carousel-btn.next {
        right: 0;
    }
}

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

    .carousel-container {
        padding: 0 20px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
    }

    .carousel-btn.prev {
        left: 5px;
    }

    .carousel-btn.next {
        right: 5px;
    }
}

/* --- Portfolio Grid & Filter --- */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    padding: 10px 25px;
    color: var(--text-color);
    transition: all 0.3s ease;
    border-radius: 30px;
    border: 1px solid transparent;
}

.filter-btn:hover {
    color: var(--primary-color);
}

.filter-btn.active {
    color: #fff;
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(168, 148, 118, 0.2);
}

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

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

@media (max-width: 576px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* Typing Effect Cursor */
#typing-text::after {
    content: '|';
    animation: blink 1s step-end infinite;
    color: var(--primary-color);
    font-weight: 500;
}

#typing-text.typing-done::after {
    display: none;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.portfolio-item {
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 4px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.portfolio-item.hidden {
    display: none;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

/* --- Updated Portfolio Overlay (Hover Animation) --- */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
    color: #fff;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 35px;
    box-sizing: border-box;
    z-index: 2;
}

.portfolio-overlay .album-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 10px;
    color: #fff;
    transform: translateY(20px);
    transition: transform 0.5s ease 0.1s;
}

.portfolio-overlay .album-details {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.5s ease 0.2s, opacity 0.5s ease 0.2s;
}

.portfolio-overlay .album-details li {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 8px;
    color: #ddd;
    display: flex;
    align-items: center;
    gap: 10px;
}

.portfolio-overlay .album-details li i {
    color: var(--primary-color);
    font-size: 0.8rem;
    width: 15px;
    text-align: center;
}

/* Hover States */
.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-overlay .album-title {
    transform: translateY(0);
}

.portfolio-item:hover .portfolio-overlay .album-details {
    transform: translateY(0);
    opacity: 1;
}

/* --- Pricing/Packages --- */
.pricing-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: #fff;
    padding: 50px 40px 110px; /* Big bottom padding to fit the absolute button */
    width: 350px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card .btn {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    width: auto;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.highlighted {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(168, 148, 118, 0.15);
}

.pricing-card.highlighted:hover {
    transform: scale(1.05) translateY(-10px);
}

.badge {
    position: absolute;
    top: 25px;
    right: -35px;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.pricing-card .price {
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 600;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    line-height: 1.8;
}

.pricing-card ul li {
    margin-bottom: 15px;
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 15px;
}

.pricing-card ul li i {
    color: var(--primary-color);
    font-size: 12px;
}

/* --- Testimonials --- */
.testimonials-container {
    display: flex;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-card {
    background: var(--gray-bg);
    padding: 40px;
    border-radius: 4px;
    width: 450px;
    text-align: center;
}

.stars {
    color: #ffb400;
    margin-bottom: 20px;
}

.quote {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
    position: relative;
}

.client-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.client-info p {
    font-size: 0.85rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Contact Section --- */
.contact-wrapper {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.contact-info-panel,
.contact-form-panel {
    padding: 60px;
    flex: 1;
}

.contact-info-panel {
    background: var(--dark-color);
    color: #fff;
}

.contact-info-panel h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-info-panel>p {
    color: #ccc;
    margin-bottom: 40px;
}

.info-list {
    list-style: none;
    margin-bottom: 40px;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.info-list i {
    color: var(--primary-color);
    font-size: 20px;
}

.contact-socials {
    display: flex;
    gap: 15px;
}

.contact-socials a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: all 0.3s ease;
}

.contact-socials a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.contact-form-panel form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: var(--gray-bg);
    border: 1px solid transparent;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
}

.form-status {
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
    display: none;
}

.form-status.success {
    display: block;
    color: #28a745;
}

/* --- Footer --- */
footer {
    background: #111;
    color: #fff;
    padding: 80px 50px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 50px;
    border-bottom: 1px solid #333;
    padding-bottom: 50px;
}

.footer-col h2,
.footer-col h3 {
    color: #fff;
    margin-bottom: 25px;
}

.footer-col.brand h2 {
    letter-spacing: 5px;
}

.footer-col.brand p {
    color: #aaa;
    max-width: 300px;
}

.footer-col.links ul {
    list-style: none;
}

.footer-col.links ul li {
    margin-bottom: 12px;
}

.footer-col.links ul li a {
    color: #aaa;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col.links ul li a:hover {
    color: var(--primary-color);
}

.footer-col.newsletter p {
    color: #aaa;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background: #222;
    color: #fff;
    outline: none;
}

.newsletter-form button {
    padding: 0 20px;
    background: var(--primary-color);
    border: none;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: #777;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {

    .about-container {
        display: flex;
        flex-direction: column-reverse;
        gap: 40px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .experience-badge {
        right: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        top: 0;
        left: 0;
        width: 100%;
        height: 75px;
        padding: 0 20px;
        border-radius: 0;
        justify-content: space-between;
    }

    .mobile-nav-header {
        display: flex;
        align-items: center;
    }

    nav .logo img {
        height: 180px;
        transform: translateY(5px);
        margin-left: 0;
    }

    nav.scrolled {
        top: 0;
        left: 0;
        width: 100%;
        height: 65px;
        padding: 0 20px;
        border-radius: 0;
    }

    nav.scrolled .logo img {
        height: 160px;
        transform: translateY(5px);
    }

    nav .logo {
        margin-left: 0;
    }

    .mobile-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 85%;
        background: rgba(10, 10, 10, 0.96);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        transition: right 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        box-shadow: -15px 0 50px rgba(0, 0, 0, 0.5);
        border-right: 1px solid rgba(255, 255, 255, 0.05);
        z-index: 2000;
    }

    .mobile-links.active {
        right: 0;
    }

    .mobile-links li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.4s ease;
    }

    .mobile-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    /* Staggered entrance for links */
    .mobile-links.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .mobile-links.active li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .mobile-links.active li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .mobile-links.active li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .mobile-links.active li:nth-child(5) {
        transition-delay: 0.3s;
    }

    .mobile-links.active li:nth-child(6) {
        transition-delay: 0.35s;
    }

    .mobile-links.active li:nth-child(7) {
        transition-delay: 0.4s;
    }

    .mobile-links.active li:nth-child(8) {
        transition-delay: 0.45s;
    }

    .mobile-links li a {
        color: #fff;
        font-size: 1.2rem;
        font-weight: 300;
        letter-spacing: 4px;
        text-transform: uppercase;
        padding: 15px 0;
        display: block;
        width: 100%;
    }

    .nav-links li a::before {
        display: none;
        /* Disable hover pill fill on mobile */
    }

    .nav-links li:last-child a {
        background: var(--primary-color);
        color: #fff !important;
        /* Button style contact on mobile */
    }

    .menu-toggle {
        display: block;
    }

    nav.scrolled .menu-toggle {
        color: var(--dark-color);
    }

    .menu-toggle.active {
        color: #fff !important;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .section-title p {
        font-size: 0.95rem;
    }

    .section {
        padding: 80px 30px;
    }

    /* Mobile Portfolio adjustments */
    .portfolio-overlay {
        padding: 20px;
    }

    .portfolio-overlay .album-title {
        font-size: 1.4rem;
    }

    .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card,
    .pricing-card.highlighted {
        width: 100%;
        max-width: 400px;
        transform: scale(1);
    }

    .pricing-card.highlighted:hover {
        transform: translateY(-10px);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 40px 30px;
    }

    .form-row {
        flex-direction: column;
    }
}

/* --- Lightbox Modal --- */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    cursor: grab;
}

.lightbox-content img:active {
    cursor: grabbing;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--primary-color);
}

.lightbox-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    z-index: 10000;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-controls button {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

.lightbox-controls button:hover {
    background: var(--primary-color);
    color: #fff;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 20px;
        right: 25px;
        font-size: 35px;
    }

    .lightbox-controls {
        bottom: 20px;
    }
}