/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #FFD700;
    --black: #000000;
    --white: #FFFFFF;
    --gray: #F5F5F5;
    --gray-dark: #333333;
    --gray-light: #999999;
    --zinc-900: #18181b;
    --zinc-800: #27272a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-dark);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.loader-content {
    text-align: center;
    color: var(--white);
}

.loader-icon {
    font-size: 80px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-text {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 4px;
    margin-top: 20px;
    color: var(--gold);
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 900;
    color: var(--white);
}

.logo-icon {
    font-size: 32px;
}

.nav-desktop {
    display: none;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: block;
    }
}

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

.nav-link {
    color: var(--white);
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    color: var(--white);
    font-weight: 500;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.dropdown-toggle:hover {
    color: var(--gold);
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--gray-dark);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background: var(--gray);
    color: var(--gold);
    border-left-color: var(--gold);
}

/* Header Buttons */
.header-buttons {
    display: none;
    gap: 15px;
    align-items: center;
}

@media (min-width: 1024px) {
    .header-buttons {
        display: flex;
    }
}

.btn-login {
    color: var(--white);
    padding: 8px 20px;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: var(--gold);
    color: var(--black);
}

.btn-book {
    padding: 10px 24px;
    background: var(--gold);
    color: var(--black);
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-book:hover {
    background: var(--white);
    transform: scale(1.05);
}

/* Mobile Toggle */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 25px;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .mobile-toggle {
        display: none;
    }
}

.mobile-toggle span {
    width: 100%;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(0, 0, 0, 0.98);
    padding: 40px 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav-menu {
    list-style: none;
    margin-bottom: 30px;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-item .nav-link {
    display: block;
    padding: 15px 0;
    color: var(--white);
    font-size: 18px;
}

.mobile-dropdown-toggle {
    width: 100%;
    text-align: left;
    padding: 15px 0;
    color: var(--white);
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.mobile-dropdown-menu.active {
    max-height: 500px;
}

.mobile-dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--gray-light);
    transition: all 0.3s ease;
}

.mobile-dropdown-item:hover {
    color: var(--gold);
    padding-left: 30px;
}

.mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--white);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: var(--black);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.05);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
}

.btn-block {
    width: 100%;
}

/* Text Utilities */
.text-gold {
    color: var(--gold);
}

.text-white {
    color: var(--white);
}

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

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

/* Background Utilities */
.bg-black {
    background: var(--black);
}

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

/* Section */
.section {
    padding: 80px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 16px;
}

.section-title-1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--gray-light);
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .section {
        padding: 100px 0;
    }
    
    .section-title {
        font-size: 60px;
    }
      .section-title-1 {
        font-size: 60px;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    width: 90%;
    max-width: 800px;
    z-index: 2;
}

.hero-title {
    font-size: 60px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 18px;
    letter-spacing: 6px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 120px;
    }
    
    .hero-subtitle {
        font-size: 24px;
    }
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 15px 20px;
    font-size: 30px;
    z-index: 3;
    transition: all 0.3s ease;
}

.hero-nav:hover {
    background: var(--gold);
    color: var(--black);
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

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

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: var(--gold);
    width: 32px;
    border-radius: 6px;
}

.hero-dot:hover {
    background: var(--white);
}

/* Opening Hours */
.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hour-card {
    border: 2px solid var(--black);
    padding: 30px;
    transition: all 0.3s ease;
}

.hour-card:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--gold);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hour-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hour-card p {
    color: var(--gray-light);
}

.hour-card:hover p {
    color: var(--gold);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
    opacity: 0;
    transform: translateY(30px);
}

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

.service-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-10px);
    border-bottom-color: var(--gold);
}

.service-icon {
    font-size: 50px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--gold);
}

.service-card p {
    color: var(--gray-light);
    margin-bottom: 15px;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--zinc-900);
    padding: 40px;
    border: 1px solid var(--zinc-800);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.pricing-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card:hover {
    border-color: var(--gold);
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

.pricing-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--zinc-800);
    color: var(--white);
    transition: all 0.3s ease;
}

.pricing-item:hover {
    border-bottom-color: var(--gold);
}

.pricing-item:hover span:first-child {
    color: var(--gold);
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: 0px;
    background: var(--gold);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.badge-number {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
}

.badge-text {
    font-size: 12px;
    font-weight: 700;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    border-left: 4px solid var(--gold);
    padding-left: 20px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    color: var(--gray-light);
}

/* Gallery */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background: var(--white);
    color: var(--black);
    border: 2px solid var(--black);
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--black);
    color: var(--white);
}

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

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay span {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Testimonials */
.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    background: var(--zinc-900);
    padding: 60px 40px;
    position: relative;
    display: none;
}

.testimonial-card.active {
    display: block;
}

.quote-icon {
    position: absolute;
    top: 40px;
    left: 40px;
    font-size: 80px;
    color: var(--gold);
    opacity: 0.3;
}

.stars {
    color: var(--gold);
    font-size: 24px;
    text-align: center;
    margin-bottom: 30px;
}

.testimonial-text {
    font-size: 22px;
    color: var(--white);
    text-align: center;
    line-height: 1.8;
    margin-bottom: 30px;
}

.testimonial-author {
    color: var(--gold);
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5px;
}

.testimonial-service {
    color: var(--gray-light);
    text-align: center;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 15px 25px;
    font-size: 24px;
    transition: all 0.3s ease;
}

.testimonial-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--gold);
    width: 32px;
    border-radius: 4px;
}

.testimonial-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.team-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.team-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.team-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

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

.team-overlay p {
    color: var(--white);
    font-size: 14px;
}

.team-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.team-card:hover h3 {
    color: var(--gold);
}

.team-card p {
    color: var(--gray-light);
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 2px solid #e0e0e0;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

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

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}

.faq-icon {
    font-size: 24px;
    color: var(--gold);
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 24px;
}

.faq-answer p {
    color: var(--gray-light);
    line-height: 1.8;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.blog-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.blog-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: var(--black);
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--gray-light);
    margin-bottom: 15px;
}

.blog-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.blog-card:hover h3 {
    color: var(--gold);
}

.blog-content p {
    color: var(--gray-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-link {
    color: var(--black);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-link {
    color: var(--gold);
    gap: 10px;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form-wrapper {
    background: var(--zinc-900);
    padding: 40px;
}

.contact-form-wrapper h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 30px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    background: var(--black);
    border: 1px solid var(--zinc-800);
    color: var(--white);
    transition: border-color 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--gray-light);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.contact-form textarea {
    resize: none;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
}

.contact-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

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

.contact-item p {
    color: var(--gray-light);
}

/* Footer */
.footer {
    background: #0a0a0a;
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
    color: var(--black);
}

.footer-col h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: var(--gray-light);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.newsletter-desc {
    color: var(--gray-light);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-form input {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--zinc-800);
    color: var(--white);
}

.newsletter-form input::placeholder {
    color: var(--gray-light);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid var(--zinc-800);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--gray-light);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: var(--gray-light);
    font-size: 14px;
    transition: color 0.3s ease;
}

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

/* Page Hero */
.page-hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 60px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    color: var(--gray-light);
}

.breadcrumb a {
    color: var(--gold);
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

/* Map */
.map-container {
    width: 100%;
    height: 400px;
    background: var(--gray);
    margin-top: 60px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 27px;
    }
      .section-title-1 {
        font-size: 36px;
    }
    .hero-title {
        font-size: 48px;
    }
    
    .page-hero h1 {
        font-size: 35px;
    }
}
@media (min-width: 1024px) {
    .mobile-menu.active{
        display: none;
    }
}



@media (max-width: 420px) {
 .hero-prev {
    display: none;
 }
 .hero-next {
    display: none;
 }
}