/* Reset and Base Styles */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navbar-height: 84px;
    --background: #f8f8f8;
    --foreground: #1a1a1a;
    --card: #ffffff;
    --card-foreground: #1a1a1a;
    --primary: #d4af37;
    --primary-foreground: #1a1a1a;
    --secondary: #f0f0f0;
    --secondary-foreground: #1a1a1a;
    --muted: #e5e5e5;
    --muted-foreground: #666666;
    --border: #e0e0e0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    background-color: var(--background);
    color: var(--foreground);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}


/* Utility Classes */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.gold-text {
    color: var(--primary);
    -webkit-background-clip: text;
    background-clip: text;
}

.gold-gradient {
    background: linear-gradient(135deg, #d4af37, #f4e4a6, #d4af37);
}

.glow-effect {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}


/* Animations */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0) translateX(-50%);
    }
    50% {
        transform: translateY(-10px) translateX(-50%);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
}


/* Scroll Animation Base Styles */

.scroll-animate {
    opacity: 0;
}

.scroll-animate.animate-in {
    opacity: 1;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

.animation-delay-100 {
    animation-delay: 0.1s;
}

.animation-delay-200 {
    animation-delay: 0.2s;
}

.animation-delay-300 {
    animation-delay: 0.3s;
}

.animation-delay-400 {
    animation-delay: 0.4s;
}


/* Navigation */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    background-color: var(--background);
    width: 100%;
    overflow: hidden;
}

.navbar.scrolled {
    background-color: var(--background);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    gap: 2rem;
    background-color: rgba(248, 248, 248, 0.85);
    width: 100%;
    box-sizing: border-box;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    text-decoration: none;
    color: var(--foreground);
}

.logo {
    display: none;
}

.logo-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, #d4af37, #f4e4a6, #d4af37);
    color: #1a1a1a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    box-shadow: 0 8px 18px rgba(212, 175, 55, 0.28);
}

.logo-text {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-primary {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--foreground);
}

.logo-sub {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--muted-foreground);
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(26, 26, 26, 0.8);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-cta {
    display: none;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, #d4af37, #f4e4a6, #d4af37);
    color: var(--primary-foreground);
    font-weight: 600;
    border-radius: 9999px;
    transition: opacity 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 9999px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: var(--foreground);
    padding: 0.5rem;
    margin-left: auto;
    flex-shrink: 0;
    cursor: pointer;
}

.mobile-menu-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background-color: rgba(248, 248, 248, 0.95);
    border-top: 1px solid var(--border);
    z-index: 49;
    width: 100%;
    box-sizing: border-box;
    max-height: calc(100vh - var(--navbar-height, 84px));
    overflow-y: auto;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(26, 26, 26, 0.8);
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--primary);
}


/* Hero Section */

.hero {
    position: relative;
    min-height: calc(100vh - var(--navbar-height));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(2.1);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    opacity: 0.3;
}


/* Video Control Button */

.video-control-btn {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 15;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.9);
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    padding: 0;
}

.video-control-btn:hover {
    background: rgba(212, 175, 55, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.5);
}

.video-control-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.particle {
    position: absolute;
    background-color: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.particle-1 {
    top: 25%;
    left: 25%;
    width: 0.5rem;
    height: 0.5rem;
}

.particle-2 {
    top: 33%;
    right: 33%;
    width: 0.25rem;
    height: 0.25rem;
    animation-delay: 0.2s;
}

.particle-3 {
    bottom: 33%;
    left: 33%;
    width: 0.375rem;
    height: 0.375rem;
    animation-delay: 0.4s;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 64rem;
    padding: 0 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.6);
    border-radius: 9999px;
    margin-bottom: 2rem;
    backdrop-filter: blur(8px);
}

.hero-badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-badge span:last-child {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-title {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #ffffff;
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.hero-phone {
    margin-top: 3rem;
}

.hero-phone p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.hero-phone a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    transition: color 0.3s ease;
}

.hero-phone a:hover {
    color: var(--primary);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
    transition: color 0.3s ease;
}

.scroll-indicator:hover {
    color: var(--primary);
}

.scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-indicator svg {
    width: 1.25rem;
    height: 1.25rem;
}


/* Section Styles */

section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto;
}


/* Categories Section */

.categories-section {
    background-color: var(--background);
}

.categories-grid {
    display: grid;
    gap: 2rem;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    cursor: pointer;
    transition: transform 0.5s ease;
}

.category-card:hover {
    transform: translateY(-8px);
}

.category-card-image {
    aspect-ratio: 3/4;
    overflow: hidden;
}

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.category-card:hover .category-card-image img {
    transform: scale(1.1);
}

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4), transparent);
    opacity: 0.8;
    transition: opacity 0.5s ease;
}

.category-card:hover .category-card-overlay {
    opacity: 0.9;
}

.category-card-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.category-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
    margin-bottom: 0.75rem;
    transform: translateY(1rem);
    transition: transform 0.5s ease;
}

.category-card:hover .category-card-title {
    transform: translateY(0);
}

.category-card-description {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    opacity: 0;
    transform: translateY(1rem);
    transition: all 0.5s ease 0.1s;
}

.category-card:hover .category-card-description {
    opacity: 1;
    transform: translateY(0);
}

.category-card-link {
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(1rem);
    transition: all 0.5s ease 0.2s;
}

.category-card:hover .category-card-link {
    opacity: 1;
    transform: translateY(0);
}

.category-card-link a {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.category-card-link a:hover {
    text-decoration: underline;
}

.categories-bottom {
    text-align: center;
    margin-top: 4rem;
}

.categories-bottom p {
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto;
}


/* Services Section */

.services-section {
    background-color: var(--card);
}

.services-grid {
    display: grid;
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    background: var(--card);
    border-radius: 1rem;
    border: 2px solid var(--border);
    transition: all 0.5s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(212, 175, 55, 0.15);
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d4af37, #f4e4a6, #d4af37);
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    transition: transform 0.5s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--primary-foreground);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--primary);
}

.service-description {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.7;
}


/* Music Sample Section */

.music-section {
    margin-top: 6rem;
}

.music-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.music-content h2 {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 1rem;
}

.music-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.music-content p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.music-image {
    position: relative;
}

.music-image img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 1rem;
}

.music-image-glow-1 {
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, #d4af37, #f4e4a6);
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(2rem);
}

.music-image-glow-2 {
    position: absolute;
    bottom: -1rem;
    left: -1rem;
    width: 8rem;
    height: 8rem;
    background: linear-gradient(135deg, #d4af37, #f4e4a6);
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(2rem);
}


/* Packages Section */

.packages-section {
    background-color: var(--background);
}

.packages-grid {
    display: grid;
    gap: 1.5rem;
}

.package-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background-color: var(--card);
    border: 1px solid var(--border);
    transition: all 0.5s ease;
}

.package-card.popular {
    border-color: var(--primary);
}

.package-card:hover {
    transform: translateY(-4px);
}

.package-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, #d4af37, #f4e4a6, #d4af37);
    color: var(--primary-foreground);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 9999px;
}

.package-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.1);
}

.package-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--card), transparent);
}

.package-content {
    padding: 1.5rem;
}

.package-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.package-description {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.package-features {
    margin-bottom: 1.5rem;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.package-features li svg {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
    flex-shrink: 0;
}

.package-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.package-cta.primary {
    background: linear-gradient(135deg, #d4af37, #f4e4a6, #d4af37);
    color: var(--primary-foreground);
}

.package-cta.secondary {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
}

.package-cta.secondary:hover {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.packages-bottom {
    text-align: center;
    margin-top: 4rem;
}

.packages-bottom p {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.packages-bottom a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
}

.packages-bottom a:hover {
    text-decoration: underline;
}

.packages-bottom a svg {
    width: 2rem;
    height: 2rem;
}


/* Testimonials Section */

.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(244, 228, 166, 0.05));
}

.testimonials-slider-wrapper {
    position: relative;
    margin-top: 4rem;
    margin-bottom: 3rem;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0;
}

.testimonial-card {
    display: none;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 2rem;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.15);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--primary);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.testimonial-event {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
}

.testimonial-rating .star {
    font-size: 1.25rem;
    color: var(--primary);
}

.testimonial-text {
    font-size: 1rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    flex: 1;
}

.testimonial-verified {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #22c55e;
    margin-top: auto;
}

.testimonial-verified svg {
    color: #22c55e;
}


/* Slider Navigation */

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--card);
    border: 2px solid var(--border);
    color: var(--foreground);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--primary-foreground);
}

.slider-nav.prev {
    left: -15px;
}

.slider-nav.next {
    right: -15px;
}

.slider-nav svg {
    width: 24px;
    height: 24px;
}


/* Testimonials Indicators */

.testimonials-indicators {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--muted);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary);
    width: 32px;
    border-radius: 6px;
}

.indicator:hover {
    background: var(--primary);
}


/* Trust Badges */

.testimonials-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.badge {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--secondary);
    border-radius: 1rem;
    text-align: left;
}

.badge-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d4af37, #f4e4a6);
    border-radius: 0.75rem;
    color: white;
}

.badge-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.badge-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}


/* Responsive */

@media (min-width: 1024px) {
    .testimonials-slider {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .testimonials-slider-wrapper {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    .slider-nav {
        display: block;
    }
    .testimonials-indicators {
        margin-top: 2rem;
    }
}


/* Contact Section */

.contact-section {
    background-color: var(--card);
}

.contact-grid {
    display: grid;
    gap: 3rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d4af37, #f4e4a6, #d4af37);
    border-radius: 0.75rem;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary-foreground);
}

.contact-info-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.contact-info-item a,
.contact-info-item p {
    color: var(--muted-foreground);
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--primary);
}

.social-links h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: linear-gradient(135deg, #d4af37, #f4e4a6, #d4af37);
}

.social-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--foreground);
    transition: color 0.3s ease;
}

.social-icon:hover svg {
    color: var(--primary-foreground);
}

.contact-image {
    margin-top: 3rem;
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    display: none;
}

.contact-image img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
}

.contact-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.8), transparent);
}

.contact-image-content {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
}

.contact-image-content p:first-child {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.contact-image-content p:last-child {
    color: var(--foreground);
}


/* Contact Form */

.contact-form-container {
    background-color: var(--background);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
}

.contact-form-container h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    color: var(--foreground);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted-foreground);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.form-group textarea {
    resize: none;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #d4af37, #f4e4a6, #d4af37);
    color: var(--primary-foreground);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.submit-btn:hover {
    opacity: 0.9;
}

.submit-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}


/* Footer */

footer {
    background-color: var(--background);
    border-top: 1px solid var(--border);
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    gap: 3rem;
}

.footer-brand {
    grid-column: span 1;
}

.footer-brand a {
    display: flex;
    font-size: 1.875rem;
    font-weight: 900;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
}

.footer-brand>p {
    color: var(--muted-foreground);
    max-width: 28rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--muted-foreground);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact li svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

.footer-contact li a,
.footer-contact li span {
    color: var(--muted-foreground);
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: var(--primary);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}


/* Responsive Styles */


/* Mobile Styles - Prevent Horizontal Overflow */

@media (max-width: 640px) {
    .navbar {
        width: 100%;
        overflow: hidden;
    }
    .navbar-content {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    .logo-mark {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
        flex-shrink: 0;
    }
    .logo-primary {
        font-size: 0.95rem;
    }
    .logo-sub {
        font-size: 0.65rem;
    }
    .logo-text {
        gap: 0.2rem;
        flex-shrink: 0;
    }
    .navbar-logo {
        flex-shrink: 0;
        min-width: 0;
    }
    .mobile-menu-btn {
        padding: 0.25rem;
        flex-shrink: 0;
    }
    .mobile-menu-btn svg {
        width: 1.25rem;
        height: 1.25rem;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 0.95rem;
    }
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-buttons {
        flex-direction: row;
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    .hero-subtitle {
        font-size: 1.25rem;
    }
    .hero-phone a {
        font-size: 1.875rem;
    }
    .section-title {
        font-size: 3rem;
    }
    .category-card-title {
        font-size: 1.875rem;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .logo {
        font-size: 1.875rem;
    }
    .nav-links {
        display: flex;
    }
    .nav-cta {
        display: flex;
    }
    .mobile-menu-btn {
        display: none;
    }
    .hero-title {
        font-size: 4rem;
    }
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .music-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .packages-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-image {
        display: block;
    }
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
    .footer-brand {
        grid-column: span 1;
    }
}


/* Gallery Section */

.gallery-section {
    padding: 100px 0;
    background-color: var(--background);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.gallery-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.gallery-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-card-image img {
    transform: scale(1.1);
}

.gallery-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.8), rgba(212, 175, 55, 0.6));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.gallery-card:hover .gallery-card-overlay {
    opacity: 1;
}

.gallery-card-overlay-text {
    color: #1a1a1a;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

.gallery-card-content {
    padding: 1.5rem;
    background: var(--card);
    border-top: 3px solid var(--primary);
}

.gallery-card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.gallery-card-date {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.gallery-card-description {
    font-size: 14px;
    color: var(--muted-foreground);
}


/* Gallery Lightbox */

.gallery-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.gallery-lightbox.active {
    display: flex;
}

.gallery-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.gallery-lightbox-title {
    text-align: center;
    color: white;
    margin-bottom: 1rem;
    font-size: 24px;
    font-weight: 600;
}

.gallery-lightbox-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-height: 70vh;
    overflow-y: auto;
    padding: 1rem;
}

.gallery-lightbox-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.gallery-lightbox-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1001;
}

.gallery-lightbox-close:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .gallery-card-image {
        height: 250px;
    }
    .gallery-lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }
}


/* Notification Modal */

.notification-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.2s ease;
}

.notification-modal.active {
    display: flex;
}

.notification-modal-content {
    background: var(--card);
    border-radius: 1.5rem;
    padding: 2.5rem;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    border: 1px solid var(--border);
}

.notification-modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-modal-icon svg {
    stroke-width: 3;
}

.notification-modal.success .notification-modal-icon {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.2));
    color: #22c55e;
}

.notification-modal.error .notification-modal-icon {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.2));
    color: #ef4444;
}

.notification-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.notification-modal-message {
    font-size: 1rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.notification-modal-btn {
    background: linear-gradient(135deg, #d4af37, #f4e4a6);
    color: #1a1a1a;
    border: none;
    padding: 0.875rem 2.5rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.notification-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}