/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #D4AF37;
    --primary-gold-dark: #B8960F;
    --primary-gold-light: #E8C94A;
    --dark-bg: #0a0a0a;
    --dark-card: #1a1a1a;
    --text-light: #ffffff;
    --text-dark: #1e1e2a;
    --text-gray: #b0b0b0;
    --transition: all 0.3s ease;
    --luxury-shadow: 0 20px 40px rgba(0,0,0,0.3);
    --gold-gradient: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: linear-gradient(135deg, #fefaf5 0%, #fff5e8 100%);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Typography */
h1, h2, h3, h4, .hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.text-gold {
    color: var(--primary-gold);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h2 {
    color: white;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--primary-gold);
}

.booking-link {
    background: var(--primary-gold);
    color: var(--dark-bg) !important;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600 !important;
}

.booking-link:hover {
    background: white;
    color: var(--dark-bg) !important;
}

.nav-toggle {
    display: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background: url('https://images.pexels.com/photos/3184192/pexels-photo-3184192.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0,0,0,0.85) 0%, 
        rgba(0,0,0,0.65) 50%, 
        rgba(212,175,55,0.15) 100%);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.4) 100%);
    z-index: 0;
    pointer-events: none;
}

#interactive-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.12;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    width: 100%;
}

.hero-badge {
    background: var(--primary-gold);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: bold;
    color: var(--dark-bg);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 5.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.1s both;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    letter-spacing: -0.03em;
}

.hero-locations {
    margin: 25px 0;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.2s both;
    font-weight: 500;
    font-size: 1.05rem;
}

.hero-locations i {
    font-size: 6px;
    color: var(--primary-gold);
    vertical-align: middle;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 850px;
    margin: 25px auto 35px;
    animation: fadeInUp 0.8s ease 0.3s both;
    line-height: 1.7;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    font-weight: 400;
    letter-spacing: 0.3px;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--dark-bg);
    padding: 14px 36px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary-gold);
    font-size: 1rem;
    cursor: pointer;
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212,175,55,0.4);
}

.btn-outline {
    display: inline-block;
    border: 2px solid var(--primary-gold);
    background: transparent;
    color: var(--primary-gold);
    padding: 14px 36px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    font-size: 1rem;
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212,175,55,0.4);
}

.btn-block {
    width: 100%;
    display: block;
    text-align: center;
}

/* Section Styles */
.features, .locations, .gallery, .packages, .media, .quick-booking, .contact-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.12);
    color: var(--primary-gold-dark);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 40px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 45px 25px;
    background: white;
    border-radius: 20px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(212, 175, 55, 0.15);
}

.feature-icon i {
    font-size: 3.2rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: #666;
    line-height: 1.5;
}

/* Locations Grid */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.location-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    cursor: pointer;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.location-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.location-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-gold);
    padding: 6px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark-bg);
}

.location-content {
    padding: 25px;
}

.location-content h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.location-meta {
    margin: 15px 0;
    font-size: 0.9rem;
    color: #666;
}

.location-meta i {
    width: 25px;
    color: var(--primary-gold);
}

.feature-tag {
    display: inline-block;
    background: #f5f5f5;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-right: 8px;
    margin-top: 8px;
    transition: var(--transition);
}

.feature-tag:hover {
    background: var(--primary-gold);
    color: white;
}

/* Gallery Section */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--primary-gold);
    padding: 8px 28px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    color: var(--dark-bg);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary-gold);
    color: white;
    transform: translateY(-2px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--luxury-shadow);
}

.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;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: white;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

/* Packages Section */
.packages {
    background: linear-gradient(135deg, #0f0f0f, #050505);
    color: white;
    padding: 80px 0;
    position: relative;
}

.packages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.pexels.com/photos/1640777/pexels-photo-1640777.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
    background-attachment: fixed;
    opacity: 0.06;
    pointer-events: none;
}

.packages .section-header h2 {
    background: linear-gradient(135deg, var(--primary-gold), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.package-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(212,175,55,0.2);
    cursor: pointer;
    overflow: hidden;
}

.package-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 50px rgba(212, 175, 55, 0.25);
    border-color: var(--primary-gold);
    background: rgba(255,255,255,0.1);
}

.package-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.15), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.package-card:hover::after {
    left: 100%;
}

.package-card.featured {
    border: 2px solid var(--primary-gold);
    transform: scale(1.02);
    background: rgba(212,175,55,0.12);
}

.package-card.featured:hover {
    transform: translateY(-15px) scale(1.04);
    box-shadow: 0 35px 55px rgba(212, 175, 55, 0.35);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gold);
    color: var(--dark-bg);
    padding: 6px 22px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.package-card:hover .package-badge {
    background: white;
    color: var(--primary-gold-dark);
    transform: translateX(-50%) scale(1.05);
}

.package-icon i {
    font-size: 3.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.package-card:hover .package-icon i {
    transform: scale(1.1) rotate(5deg);
    text-shadow: 0 0 20px rgba(212,175,55,0.5);
}

.package-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.package-card:hover h3 {
    color: var(--primary-gold);
    letter-spacing: 0.5px;
}

.package-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-gold);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.package-card:hover .package-price {
    transform: scale(1.05);
    text-shadow: 0 0 15px rgba(212,175,55,0.5);
}

.package-price span {
    font-size: 0.9rem;
    color: #aaa;
}

.package-features {
    list-style: none;
    margin: 25px 0;
    text-align: left;
}

.package-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    transform: translateX(0);
}

.package-card:hover .package-features li {
    transform: translateX(5px);
}

.package-features li:hover {
    transform: translateX(10px) !important;
    color: var(--primary-gold);
}

.package-features i {
    color: var(--primary-gold);
    width: 22px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.package-features li:hover i {
    transform: scale(1.2);
}

.package-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 32px;
    transition: all 0.3s ease;
}

.package-card:hover .package-btn {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212,175,55,0.3);
}

.package-btn i {
    transition: transform 0.3s ease;
}

.package-btn:hover i {
    transform: translateX(5px);
}

/* Media Section */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.media-card {
    background: white;
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.media-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(212,175,55,0.15);
}

.media-icon i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 18px;
}

.media-card h4 {
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.read-more:hover {
    transform: translateX(5px);
}

/* Quick Booking Section */
.quick-booking {
    background: linear-gradient(135deg, #fefaf5, #fff5e8);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--luxury-shadow);
}

.booking-info {
    background: var(--gold-gradient);
    padding: 55px 40px;
    color: var(--dark-bg);
}

.booking-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.booking-highlights {
    margin-top: 35px;
}

.booking-highlights div {
    margin: 18px 0;
    font-weight: 600;
    font-size: 1.05rem;
}

.booking-highlights i {
    margin-right: 12px;
    width: 25px;
}

.booking-form {
    padding: 55px 45px;
}

/* Form Styles */
.form-group {
    margin-bottom: 22px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.message-box {
    margin-top: 20px;
    padding: 12px 16px;
    border-radius: 10px;
    display: none;
}

.message-box.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message-box.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Contact Section */
.contact-section {
    background: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
}

.info-item i {
    font-size: 2.2rem;
    color: var(--primary-gold);
    width: 65px;
}

.info-item h4 {
    margin-bottom: 6px;
    font-size: 1.2rem;
}

.info-item p {
    color: #666;
}

.social-links {
    margin-top: 35px;
}

.social-links a {
    color: #333;
    font-size: 1.6rem;
    margin-right: 22px;
    transition: var(--transition);
    display: inline-block;
}

.social-links a:hover {
    color: var(--primary-gold);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background: #050505;
    color: #aaa;
    padding: 65px 0 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 45px;
    margin-bottom: 45px;
}

.footer-section h3, .footer-section h4 {
    color: white;
    margin-bottom: 22px;
}

.footer-section p {
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

/* CHANGED THIS PART ONLY - Footer Bottom with Left and Right Layout */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    border-top: 1px solid #1a1a1a;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-left,
.footer-bottom-right {
    color: #888;
    font-size: 0.85rem;
}

.footer-bottom-right strong {
    color: var(--primary-gold);
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .hero-locations {
        gap: 15px;
        font-size: 0.9rem;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(0,0,0,0.96);
        padding: 25px;
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu a {
        display: block;
        text-align: center;
        padding: 8px 0;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper, .booking-wrapper {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .container {
        padding: 0 20px;
    }
    
    .hero-badge {
        font-size: 0.75rem;
    }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-locations {
        gap: 8px;
        font-size: 0.75rem;
    }
    
    .hero-locations i {
        font-size: 4px;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        padding: 0 15px;
    }
    
    .btn-primary, .btn-outline {
        padding: 10px 22px;
        font-size: 0.85rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .package-card {
        padding: 25px 15px;
    }
    
    .package-price {
        font-size: 1.5rem;
    }
    
    .package-card h3 {
        font-size: 1.4rem;
    }
    
    .booking-info, .booking-form {
        padding: 30px 20px;
    }
}