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

:root {
    --primary-color: #D4AF37;
    --secondary-color: #1a1a1a;
    --accent-color: #ffffff;
    --dark-bg: #000000;
    --light-text: #ffffff;
    --gray-text: #999999;
    --gold: #D4AF37;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #000000;
    color: var(--light-text);
    overflow-x: hidden;
    line-height: 1.7;
    letter-spacing: 0.3px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(0, 0, 0, 0.98);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.navbar.scrolled .logo img {
    height: 60px;
}

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

.nav-links a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

.cta-btn {
    background: transparent;
    padding: 0.7rem 1.8rem !important;
    border-radius: 0;
    font-weight: 500;
    border: 1px solid var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.cta-btn::after {
    display: none;
}

.cta-btn:hover {
    background: var(--gold);
    color: #000000;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--light-text);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #0a0a0a;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}



.hero-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

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

.hero-logo {
    margin-bottom: 2rem;
    text-align: center;
}

.hero-logo img {
    max-width: 700px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.3));
}

.hero h1 {
    font-size: 5rem;
    font-weight: 300;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.hero-headline {
    font-size: 3rem;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--gold);
    color: #000000;
    border: 1px solid var(--gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
}

.btn-secondary {
    background: transparent;
    color: var(--light-text);
    border: 1px solid var(--light-text);
}

.btn-secondary:hover {
    background: var(--light-text);
    color: #000000;
}

.btn-outline {
    background: transparent;
    color: var(--light-text);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: var(--light-text);
    color: #000000;
    border-color: var(--light-text);
}

.btn-full {
    width: 100%;
}

.scroll-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 1px solid var(--gold);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

/* Section Styling */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about .section-header {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--light-text);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--gray-text);
    margin-top: 1rem;
    letter-spacing: 1px;
}

.title-underline {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto;
}

/* About Section */
.about {
    background: #000000;
}

.about-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 3rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    text-align: center;
    padding: 3rem 2rem;
    background: transparent;
    border-radius: 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.feature-item:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--gold);
    stroke-width: 1.5;
}

.feature-item:hover .feature-icon svg {
    stroke: #fff;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.feature-item h4 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--light-text);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--gray-text);
    margin: 0;
    font-weight: 300;
}

/* Gallery Section */
.gallery {
    background: #0a0a0a;
}

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

.gallery-item {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
    filter: grayscale(30%);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(212, 175, 55, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.gallery-icon {
    font-size: 3rem;
    color: #000000;
    font-weight: 300;
}

/* Services Section */
.services {
    background: #000000;
}

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

.service-card {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 0;
    padding: 3rem 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.03);
}

.service-card.featured {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--gold);
    transform: scale(1);
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: #000000;
    padding: 0.4rem 1rem;
    border-radius: 0;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-header h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.price {
    font-size: 1rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
}

.price span {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold);
    display: block;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-text);
    font-size: 0.95rem;
}

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

/* Service Area Section */
.service-area {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 6rem 0;
}

.service-area-content {
    max-width: 1000px;
    margin: 0 auto;
}

.service-area-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.service-area-intro h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-area-intro p {
    font-size: 1.1rem;
    color: var(--gray-text);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.city-item {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.city-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.city-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.city-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--gold);
    stroke-width: 1.5;
}

.city-item:hover .city-icon svg {
    stroke: #fff;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.city-item h4 {
    color: var(--light-text);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.service-area-cta {
    text-align: center;
    background: rgba(212, 175, 55, 0.05);
    padding: 3rem;
    border: 2px solid var(--gold);
}

.service-area-cta h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-area-cta p {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
}

/* Testimonials Section */
.testimonials {
    background: #0a0a0a;
    padding: 6rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.testimonial-stars {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author h4 {
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.testimonial-author p {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Services Page Styles */
.page-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(212, 175, 55, 0.2) 100%);
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    color: var(--light-text);
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.page-hero p {
    font-size: 1.3rem;
    color: var(--gold);
    letter-spacing: 1px;
}

.packages {
    background: #0a0a0a;
    padding: 6rem 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.package-card {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.package-card.featured {
    border: 2px solid var(--gold);
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #000;
    padding: 0.5rem 1.5rem;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.package-card:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    transform: translateY(-10px);
}

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

.package-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.package-header h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.package-price .price {
    font-size: 1.2rem;
    color: var(--light-text);
    font-weight: 600;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.8rem 0;
    color: var(--gray-text);
    font-size: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

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

.package-card .btn {
    width: 100%;
    text-align: center;
}

.event-types {
    background: #1a1a1a;
    padding: 6rem 0;
}

.event-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.event-type-card {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.event-type-card:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.event-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--gold);
    transition: all 0.3s ease;
}

.event-icon svg {
    width: 100%;
    height: 100%;
}

.event-type-card:hover .event-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.event-type-card h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.event-type-card p {
    color: var(--gray-text);
    line-height: 1.6;
}

.service-locations {
    background: #0a0a0a;
    padding: 6rem 0;
}

.locations-content {
    max-width: 1000px;
    margin: 0 auto;
}

.locations-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.location-item {
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--gold);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.location-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(10px);
}

.location-item h3 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.location-item p {
    color: var(--gray-text);
    line-height: 1.6;
}

.locations-cta {
    text-align: center;
    background: rgba(212, 175, 55, 0.05);
    padding: 3rem;
    border: 2px solid var(--gold);
}

.locations-cta h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

.locations-cta p {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
}

/* Contact Section */
.contact {
    background: #0a0a0a;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.contact-info p {
    color: var(--gray-text);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: transparent;
    border-radius: 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--gold);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--gold);
    stroke-width: 1.5;
}

.contact-item:hover .contact-icon svg {
    stroke: #fff;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.contact-item h4 {
    font-size: 1rem;
    color: var(--light-text);
    margin-bottom: 0.3rem;
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--gray-text);
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.booking-cta {
    text-align: center;
    padding: 3rem;
    border: 1px solid var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.booking-cta h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--light-text);
    letter-spacing: 2px;
}

.booking-cta p {
    color: var(--gray-text);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-methods {
    text-align: center;
    padding: 2rem;
}

.contact-methods p {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.contact-link {
    display: block;
    color: var(--light-text);
    text-decoration: none;
    padding: 1rem;
    margin: 0.5rem 0;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 0;
    color: var(--light-text);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: #050505;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    gap: 2rem;
}

.footer-logo-center {
    text-align: center;
}

.footer-logo-center img {
    height: 150px;
    margin-bottom: 1rem;
}

.footer-logo-center p {
    color: var(--gray-text);
    white-space: nowrap;
}

.footer-social {
    text-align: center;
}

.footer-social h4 {
    margin-bottom: 1rem;
    color: var(--light-text);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
}

.social-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--gold);
    transition: all 0.3s ease;
}

/* Instagram brand color */
.social-icon-instagram svg {
    fill: #E4405F;
}

.social-icon-instagram {
    border-color: #E4405F;
}

.social-icon-instagram:hover {
    background: #E4405F;
    border-color: #E4405F;
}

/* Facebook brand color */
.social-icon-facebook svg {
    fill: #1877F2;
}

.social-icon-facebook {
    border-color: #1877F2;
}

.social-icon-facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
}

/* Google brand color */
.social-icon-google svg {
    fill: #4285F4;
}

.social-icon-google {
    border-color: #4285F4;
}

.social-icon-google:hover {
    background: #4285F4;
    border-color: #4285F4;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon:hover svg {
    fill: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-text);
}

/* Events Page Styles */
.events-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(212, 175, 55, 0.1) 100%);
    text-align: center;
}

.events-subtitle {
    color: var(--gray-text);
    font-size: 1.1rem;
    margin-top: 1rem;
    letter-spacing: 1px;
}

.events-section {
    padding: 80px 0;
    background: #000000;
}

.events-grid {
    display: grid;
    gap: 3rem;
}

.event-card {
    background: rgba(212, 175, 55, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2rem;
    transition: all 0.3s ease;
}

.event-card:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.event-card-header h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 2px;
}

.event-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.event-date,
.event-location {
    color: var(--gray-text);
    font-size: 0.95rem;
}

.event-description {
    color: var(--light-text);
    margin-top: 1rem;
    line-height: 1.8;
}

.event-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.event-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
    filter: grayscale(30%);
}

.event-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(212, 175, 55, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.event-image:hover .event-image-overlay {
    opacity: 1;
}

.event-image:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.no-events {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--gray-text);
    font-size: 1.1rem;
}

/* Active nav link */
.nav-links a.active {
    color: var(--gold);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        padding: 2rem;
        transition: right 0.3s ease;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

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

    .hamburger {
        display: flex;
    }

    .hero-logo img {
        max-width: 300px;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .service-card.featured {
        transform: scale(1);
    }

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

    .features {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .feature-item {
        padding: 2rem 1.5rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .event-gallery {
        grid-template-columns: 1fr;
    }

    .event-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

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

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

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

    .package-card.featured {
        transform: scale(1);
    }

    .event-types-grid {
        grid-template-columns: 1fr;
    }

    .locations-list {
        grid-template-columns: 1fr;
    }

    .hero-headline {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-logo img {
        max-width: 250px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }

    .btn {
        width: 100%;
    }

    section {
        padding: 60px 0;
    }

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

    .feature-item {
        padding: 2rem 1rem;
    }
}
