/* Luxury Theme - Premium Dark Design */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e8e8e8;
    background: #1a1a1a;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #c9a96e, #f4e4bc);
    color: #1a1a1a;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 3.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.2rem;
    color: #b8b8b8;
    max-width: 700px;
    margin: 0 auto;
}

.section-divider {
    width: 120px;
    height: 3px;
    background: linear-gradient(135deg, #c9a96e, #f4e4bc);
    margin: 30px auto;
    border-radius: 2px;
}

/* Header */
.header {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-list li a {
    color: #e8e8e8;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.nav-list li a:hover {
    color: #c9a96e;
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #c9a96e, #f4e4bc);
    transition: width 0.3s ease;
}

.nav-list li a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    color: #e8e8e8;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(201, 169, 110, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(244, 228, 188, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 169, 110, 0.2);
    border: 1px solid rgba(201, 169, 110, 0.3);
    color: #c9a96e;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.1;
}

.accent {
    background: linear-gradient(135deg, #c9a96e, #f4e4bc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.4rem;
    color: #b8b8b8;
    margin-bottom: 50px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn-luxury {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-luxury.primary {
    background: linear-gradient(135deg, #c9a96e, #f4e4bc);
    color: #1a1a1a;
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
}

.btn-luxury.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 169, 110, 0.4);
}

.btn-luxury.secondary {
    background: transparent;
    color: #c9a96e;
    border: 2px solid #c9a96e;
}

.btn-luxury.secondary:hover {
    background: #c9a96e;
    color: #1a1a1a;
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.feature-item {
    text-align: center;
    color: #b8b8b8;
}

.feature-item i {
    font-size: 2rem;
    color: #c9a96e;
    margin-bottom: 10px;
    display: block;
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: #2d2d2d;
    border-top: 1px solid rgba(201, 169, 110, 0.2);
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-luxury {
    text-align: center;
    position: relative;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.1), rgba(244, 228, 188, 0.05));
    border-radius: 15px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    transition: transform 0.3s ease;
}

.stat-luxury:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #c9a96e;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    color: #e8e8e8;
    font-weight: 500;
    margin-bottom: 15px;
}

.stat-icon {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #c9a96e, #f4e4bc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 0.8rem;
    color: #1a1a1a;
}

/* About Section */
.about-luxury {
    background: #1a1a1a;
}

.about-luxury-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text .lead {
    font-size: 1.3rem;
    color: #c9a96e;
    margin-bottom: 40px;
    font-weight: 500;
    line-height: 1.7;
}

.about-highlights {
    display: grid;
    gap: 30px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(45, 45, 45, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(201, 169, 110, 0.1);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(201, 169, 110, 0.1);
    transform: translateX(10px);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c9a96e, #f4e4bc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 1.5rem;
    color: #1a1a1a;
}

.highlight-content h4 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 600;
}

.highlight-content p {
    color: #b8b8b8;
    line-height: 1.6;
}

.about-image-luxury {
    position: relative;
}

.about-image-luxury img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(201, 169, 110, 0.9);
    color: #1a1a1a;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Why Choose Us */
.why-luxury {
    background: #2d2d2d;
}

.luxury-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
}

.service-card {
    background: #1a1a1a;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #c9a96e, #f4e4bc);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    background: rgba(201, 169, 110, 0.05);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c9a96e, #f4e4bc);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    font-size: 2rem;
    color: #1a1a1a;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #b8b8b8;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #b8b8b8;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.service-features i {
    color: #c9a96e;
    font-size: 0.8rem;
}

/* VIP Tours */
.vip-tours {
    background: #1a1a1a;
}

.vip-tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.vip-tour-card {
    background: #2d2d2d;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    border: 1px solid rgba(201, 169, 110, 0.2);
    transition: all 0.4s ease;
}

.vip-tour-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.5);
    border-color: rgba(201, 169, 110, 0.4);
}

.tour-image {
    position: relative;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.vip-tour-card:hover .tour-image img {
    transform: scale(1.05);
}

.luxury-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: linear-gradient(135deg, #c9a96e, #f4e4bc);
    color: #1a1a1a;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tour-price {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(26, 26, 26, 0.9);
    color: #c9a96e;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
}

.tour-content {
    padding: 35px 30px;
}

.tour-category {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #c9a96e;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.tour-content h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.tour-description {
    color: #b8b8b8;
    margin-bottom: 25px;
    line-height: 1.6;
}

.luxury-inclusions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.inclusion {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b8b8b8;
    font-size: 0.9rem;
}

.inclusion i {
    color: #c9a96e;
    font-size: 0.8rem;
}

.luxury-btn {
    width: 100%;
    background: linear-gradient(135deg, #c9a96e, #f4e4bc);
    color: #1a1a1a;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.luxury-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.4);
}

/* Reservation Form */
.reservation-form {
    background: #2d2d2d;
}

.luxury-form-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.luxury-form {
    background: #1a1a1a;
    padding: 50px;
    border-radius: 25px;
    border: 1px solid rgba(201, 169, 110, 0.2);
}

.form-header {
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
    padding-bottom: 25px;
}

.form-header h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.form-header p {
    color: #b8b8b8;
    font-size: 0.9rem;
}

.form-section {
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: #e8e8e8;
    margin-bottom: 8px;
    font-weight: 500;
}

.required {
    color: #ff6b6b;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(45, 45, 45, 0.8);
    border: 1px solid rgba(201, 169, 110, 0.3);
    color: #e8e8e8;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #c9a96e;
    box-shadow: 0 0 0 2px rgba(201, 169, 110, 0.2);
}

.luxury-submit-btn {
    background: linear-gradient(135deg, #c9a96e, #f4e4bc);
    color: #1a1a1a;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin: 30px auto 0;
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
}

.luxury-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 169, 110, 0.4);
}

.luxury-submit-btn small {
    font-size: 0.8rem;
    opacity: 0.8;
}

.concierge-contact {
    background: rgba(45, 45, 45, 0.8);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(201, 169, 110, 0.2);
}

.concierge-info {
    text-align: center;
}

.concierge-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid #c9a96e;
}

.concierge-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.concierge-details h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.concierge-details p {
    color: #c9a96e;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.concierge-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(201, 169, 110, 0.3);
    color: #e8e8e8;
}

.contact-link:hover {
    background: rgba(201, 169, 110, 0.1);
    color: #c9a96e;
}

.contact-link.whatsapp {
    background: #25d366;
    color: white;
    border-color: #25d366;
}

.contact-link.whatsapp:hover {
    background: #128c7e;
}

/* Portfolio Gallery */
.portfolio {
    background: #1a1a1a;
}

.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 250px);
    gap: 25px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.portfolio-item.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.portfolio-item.wide {
    grid-column: span 2;
}

.portfolio-item.tall {
    grid-row: span 2;
}

.portfolio-item:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26,26,26,0.8), rgba(201,169,110,0.8));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-content {
    text-align: center;
    color: white;
}

.portfolio-content h4 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.portfolio-content p {
    font-size: 1rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.portfolio-tag {
    background: #c9a96e;
    color: #1a1a1a;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Section */
.contact-luxury {
    background: #2d2d2d;
}

.contact-luxury-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info-luxury {
    display: grid;
    gap: 30px;
}

.contact-luxury-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

.contact-luxury-card:hover {
    background: rgba(201, 169, 110, 0.05);
    transform: translateY(-5px);
}

.contact-luxury-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c9a96e, #f4e4bc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-luxury-icon i {
    color: #1a1a1a;
    font-size: 1.3rem;
}

.contact-luxury-content h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-luxury-content p {
    color: #b8b8b8;
    margin-bottom: 5px;
}

.availability {
    color: #c9a96e;
    font-size: 0.85rem;
    font-weight: 600;
}

.luxury-partners {
    background: rgba(45, 45, 45, 0.8);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(201, 169, 110, 0.1);
}

.luxury-partners h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.partners-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.partner-logo {
    background: rgba(201, 169, 110, 0.1);
    color: #c9a96e;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(201, 169, 110, 0.2);
}

.luxury-map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(201, 169, 110, 0.2);
}

/* Footer */
.footer-luxury {
    background: #1a1a1a;
    border-top: 1px solid rgba(201, 169, 110, 0.2);
    padding: 80px 0 30px;
}

.footer-luxury-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-luxury-brand p {
    color: #b8b8b8;
    line-height: 1.7;
    margin-bottom: 25px;
}

.luxury-certifications {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cert {
    background: rgba(201, 169, 110, 0.1);
    color: #c9a96e;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid rgba(201, 169, 110, 0.2);
    text-align: center;
}

.footer-luxury-services h4,
.footer-luxury-destinations h4,
.footer-luxury-contact h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-luxury-services ul,
.footer-luxury-destinations ul {
    list-style: none;
}

.footer-luxury-services ul li,
.footer-luxury-destinations ul li {
    margin-bottom: 12px;
}

.footer-luxury-services ul li a {
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-luxury-services ul li a:hover {
    color: #c9a96e;
}

.footer-luxury-destinations ul li {
    color: #b8b8b8;
    position: relative;
    padding-left: 15px;
}

.footer-luxury-destinations ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #c9a96e;
    border-radius: 50%;
}

.luxury-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #b8b8b8;
    margin-bottom: 15px;
}

.luxury-contact-item i {
    color: #c9a96e;
    width: 18px;
}

.social-luxury {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-luxury-link {
    width: 40px;
    height: 40px;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a96e;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-luxury-link:hover {
    background: #c9a96e;
    color: #1a1a1a;
    transform: translateY(-3px);
}

.footer-luxury-bottom {
    border-top: 1px solid rgba(201, 169, 110, 0.2);
    padding-top: 30px;
}

.footer-luxury-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-luxury-bottom-content p {
    color: #b8b8b8;
}

.footer-luxury-links {
    display: flex;
    gap: 25px;
}

.footer-luxury-links a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-luxury-links a:hover {
    color: #c9a96e;
}

/* Luxury WhatsApp Float */
.whatsapp-luxury-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-luxury-float a {
    display: block;
    text-decoration: none;
}

.whatsapp-luxury-content {
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 25px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.whatsapp-luxury-content:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-luxury-content i {
    font-size: 1.5rem;
    color: white;
}

.whatsapp-luxury-text {
    color: white;
    text-align: left;
}

.whatsapp-luxury-text .main {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
}

.whatsapp-luxury-text .sub {
    display: block;
    font-size: 0.7rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-list {
        display: none;
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-features {
        flex-direction: column;
        gap: 30px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-luxury-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .luxury-services {
        grid-template-columns: 1fr;
    }

    .vip-tours-grid {
        grid-template-columns: 1fr;
    }

    .luxury-form-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .luxury-form {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .portfolio-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 200px);
    }

    .portfolio-item.featured,
    .portfolio-item.wide,
    .portfolio-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .contact-luxury-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-luxury-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-luxury-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-luxury-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-luxury-text {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 200px);
    }
}

/* Loading Animations */
.loading {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scroll */
section {
    scroll-margin-top: 90px;
}

/* Luxury Glow Effects */
.glow-gold {
    box-shadow: 0 0 30px rgba(201, 169, 110, 0.3);
}

.text-glow {
    text-shadow: 0 0 20px rgba(201, 169, 110, 0.5);
}