/* Premium BookAdj Website - Enhanced Design */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');

:root {
    /* Premium Yellow Color Palette */
    --primary: #1A1A1A;        /* Rich black */
    --secondary: #FFD700;      /* Premium gold yellow */
    --accent: #FFC107;         /* Vibrant yellow */
    --background: #FFFEF7;     /* Warm white with yellow tint */
    --text: #2C2C2C;          /* Dark charcoal */
    --text-light: #666666;    /* Medium gray */
    --success: #28A745;       /* Green */
    --warning: #FF8C00;       /* Dark orange */
    --danger: #DC3545;        /* Red */
    --white: #FFFFFF;
    --black: #000000;
    --card-bg: #FFFFFF;
    --border-color: #F0F0F0;
    
    /* Premium Yellow Variations */
    --yellow-primary: #FFD700;    /* Gold */
    --yellow-light: #FFEB3B;      /* Light yellow */
    --yellow-dark: #FFA000;       /* Dark amber */
    --yellow-darker: #FF8F00;     /* Darker amber */
    --yellow-accent: #FFCA28;     /* Accent yellow */
    --yellow-soft: #FFF9C4;       /* Soft yellow background */
    
    /* Premium Gradients with Yellow */
    --gradient-yellow: linear-gradient(135deg, #FFD700 0%, #FFC107 50%, #FFA000 100%);
    --gradient-dark: linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 100%);
    --gradient-light: linear-gradient(135deg, #FFFFFF 0%, #FFFEF7 100%);
    --gradient-hero: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(44, 44, 44, 0.85) 100%);
    --gradient-yellow-soft: linear-gradient(135deg, #FFF9C4 0%, #FFEB3B 100%);
    
    /* Enhanced Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-yellow: 0 10px 25px -5px rgba(255, 215, 0, 0.3);
    --shadow-yellow-soft: 0 5px 15px -3px rgba(255, 193, 7, 0.2);
    
    /* Border Radius */
    --radius-xs: 2px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
    
    /* Typography */
    --font-xs: 0.75rem;
    --font-sm: 0.875rem;
    --font-base: 1rem;
    --font-lg: 1.125rem;
    --font-xl: 1.25rem;
    --font-2xl: 1.5rem;
    --font-3xl: 1.875rem;
    --font-4xl: 2.25rem;
    --font-5xl: 3rem;
    --font-6xl: 3.75rem;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Transitions */
    --transition-fast: all 0.15s ease-in-out;
    --transition-normal: all 0.3s ease-in-out;
    --transition-slow: all 0.5s ease-in-out;
}

/* Dark Theme Colors */
[data-theme="dark"] {
    --primary: #1A202C;
    --secondary: #E53E3E;
    --accent: #4299E1;
    --background: #0F1419;
    --text: #F7FAFC;
    --text-light: #A0AEC0;
    --success: #38A169;
    --warning: #D69E2E;
    --danger: #E53E3E;
    --white: #1A202C;
    --black: #F7FAFC;
    --card-bg: #2D3748;
    --border-color: #4A5568;
    
    /* Dark Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.3);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.4);
}

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

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    line-height: 1.5;
    color: var(--text);
    background-color: var(--background);
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Theme Toggle Button */
.header-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.theme-toggle:hover {
    background-color: var(--background);
    transform: scale(1.1);
}

.theme-toggle i {
    font-size: var(--font-lg);
}

/* Header & Navigation */
header {
    background: var(--gradient-light);
    box-shadow: var(--shadow-yellow-soft);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--secondary);
}

nav {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo h1 {
    font-size: var(--font-2xl);
    font-weight: 800;
    background: var(--gradient-yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

nav ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

nav a {
    color: var(--text);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

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

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

nav a:hover {
    color: var(--secondary);
    transform: translateY(-2px);
}

nav a.active {
    color: var(--secondary);
}

.login-btn {
    background: var(--gradient-yellow) !important;
    color: var(--primary) !important;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    font-weight: 700;
    box-shadow: var(--shadow-yellow-soft);
}

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

.login-btn:hover {
    background: var(--primary) !important;
    color: var(--secondary) !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow-yellow);
}

/* Hero Section */
.hero {
    background: var(--gradient-hero), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 10rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: var(--font-5xl);
    font-weight: 900;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--gradient-yellow);
    margin: 1rem auto;
    border-radius: var(--radius-full);
}

.hero p {
    font-size: var(--font-xl);
    max-width: 700px;
    margin: 0 auto 3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

/* Package Cards */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 0;
}

.package-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.package-header {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.package-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-yellow);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.package-card:hover .package-header::before {
    opacity: 0.1;
}

.package-header > * {
    position: relative;
    z-index: 2;
}

.package-header h3 {
    font-size: var(--font-2xl);
    margin-bottom: 1rem;
    font-weight: 700;
}

.price {
    font-size: var(--font-3xl);
    font-weight: 900;
    color: var(--secondary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.package-body {
    padding: 2.5rem 2rem;
    background: var(--white);
}

.features {
    margin-top: 1.5rem;
}

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

.features ul {
    list-style: none;
}

.features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.features i {
    color: var(--success);
}

/* Card Styles */
.card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Booking Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
}

.modal-content {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 600px;
    width: 90%;
    margin: 2rem auto;
    padding: 2rem;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: var(--font-xl);
    cursor: pointer;
    color: var(--text-light);
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    font-size: var(--font-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="time"],
input[type="number"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    background-color: var(--white);
    color: var(--text);
    font-size: var(--font-base);
    transition: all 0.3s ease;
    font-family: inherit;
}

input[type="text"]:hover,
input[type="email"]:hover,
input[type="password"]:hover,
input[type="date"]:hover,
input[type="time"]:hover,
input[type="number"]:hover,
input[type="tel"]:hover,
select:hover,
textarea:hover {
    border-color: var(--yellow-accent);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.submit-btn {
    background: var(--gradient-yellow);
    color: var(--primary);
    border: none;
    border-radius: var(--radius-full);
    padding: 1rem 2rem;
    font-size: var(--font-base);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-yellow-soft);
}

.submit-btn:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-yellow);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: var(--font-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-yellow);
    color: var(--primary);
    box-shadow: var(--shadow-yellow-soft);
}

.btn-primary:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-yellow);
}

.btn-secondary {
    background: var(--gradient-dark);
    color: var(--secondary);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-yellow);
}

.btn-accent {
    background: var(--gradient-yellow);
    color: var(--primary);
    box-shadow: var(--shadow-yellow-soft);
}

.btn-accent:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-yellow);
}

/* Table Styles */
.table-container {
    overflow-x: auto;
    margin: 1.5rem 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

th {
    background-color: var(--gray-50);
    font-weight: 600;
    color: var(--gray-700);
}

tr:hover {
    background-color: var(--gray-50);
}

/* Status Badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: var(--font-sm);
    font-weight: 500;
}

.badge-success {
    background-color: rgba(46, 204, 113, 0.1);
    color: var(--success);
}

.badge-warning {
    background-color: rgba(241, 196, 15, 0.1);
    color: var(--warning);
}

.badge-danger {
    background-color: rgba(231, 76, 60, 0.1);
    color: var(--danger);
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-2xl);
    border: 2px solid var(--secondary);
    position: relative;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-yellow);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-content h2 {
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
    font-size: var(--font-2xl);
    font-weight: 700;
}

.modal-content .close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: var(--font-2xl);
    cursor: pointer;
    color: var(--text-light);
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
}

.modal-content .close:hover {
    background: var(--yellow-soft);
    color: var(--secondary);
    transform: scale(1.1);
}

/* DJ Showcase Section - Compact Version */
.dj-showcase {
    padding: 2rem 0;
    background: var(--background);
}

.compact-showcase {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.showcase-text {
    flex: 1;
}

.showcase-text h2 {
    font-size: var(--font-2xl);
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.showcase-text p {
    color: var(--text-light);
    font-size: var(--font-base);
    line-height: 1.5;
}

.compact-slider {
    flex: 0 0 300px;
    position: relative;
}

.mini-slider {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 200px;
    width: 300px;
}

.mini-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

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

.mini-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.mini-controls {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.75rem;
}

.mini-btn {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mini-btn.active,
.mini-btn:hover {
    background: var(--accent);
    transform: scale(1.2);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: var(--font-3xl);
    color: var(--primary);
    margin-bottom: 3rem;
    font-weight: 700;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--yellow-soft);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: var(--white);
    border: 2px solid transparent;
    padding: 3rem 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-yellow-soft);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-yellow);
    border-color: var(--secondary);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card > * {
    position: relative;
    z-index: 2;
}

.feature-card i {
    font-size: 4rem;
    background: var(--gradient-yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.4s ease;
}

.feature-card:hover i {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: var(--font-xl);
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: var(--font-base);
}
 
/* Premium Hero Section */
.premium-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.15) 0%, transparent 60%),
                radial-gradient(circle at 70% 30%, rgba(255, 193, 7, 0.1) 0%, transparent 60%);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.float-element {
    position: absolute;
    background: var(--gradient-yellow);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.float-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.float-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.float-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 70%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.premium-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: var(--white);
}

.luxury-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid var(--secondary);
    color: var(--secondary);
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    margin-bottom: 3rem;
    overflow: hidden;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.title-line {
    display: block;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.title-line.highlight {
    background: var(--gradient-yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-description {
    font-size: var(--font-xl);
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--secondary);
    font-weight: 600;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

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

.stat-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    overflow: hidden;
}

.stat-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-yellow);
}

.stat-number {
    font-size: var(--font-4xl);
    font-weight: 900;
    color: var(--secondary);
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: var(--font-sm);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Luxury Filter Section */
.luxury-filters {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 6rem 0;
    position: relative;
}

.luxury-filters::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.filter-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.filter-header h2 {
    font-size: var(--font-4xl);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.filter-header p {
    font-size: var(--font-lg);
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.luxury-filter-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.filter-tab-luxury {
    position: relative;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.filter-tab-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-yellow-soft);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.filter-tab-luxury:hover::before,
.filter-tab-luxury.active::before {
    opacity: 1;
}

.filter-tab-luxury:hover,
.filter-tab-luxury.active {
    border-color: var(--secondary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-yellow);
}

.filter-tab-luxury > * {
    position: relative;
    z-index: 2;
}

.tab-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.4s ease;
}

.filter-tab-luxury:hover .tab-icon {
    transform: scale(1.1) rotate(5deg);
}

.tab-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

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

.tab-title {
    display: block;
    font-size: var(--font-xl);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.tab-subtitle {
    display: block;
    font-size: var(--font-sm);
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.tab-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.6s ease;
}

.filter-tab-luxury:hover .tab-glow {
    left: 100%;
}

/* Luxury Packages Section */
.luxury-packages {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.packages-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 193, 7, 0.08) 0%, transparent 50%);
    opacity: 0.6;
}

.luxury-section-intro {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

.intro-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.deco-line {
    width: 60px;
    height: 2px;
    background: var(--gradient-yellow);
}

.intro-decoration i {
    color: var(--secondary);
    font-size: var(--font-lg);
}

.luxury-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.luxury-subtitle {
    font-size: var(--font-xl);
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.luxury-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.luxury-package-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    transition: all 0.5s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-yellow);
    border-radius: var(--radius-2xl);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.card-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-2xl);
    padding: 2px;
    background: var(--gradient-yellow);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.card-border::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: var(--white);
    border-radius: calc(var(--radius-2xl) - 2px);
}

.luxury-package-card:hover .card-glow,
.luxury-package-card:hover .card-border {
    opacity: 1;
}

.luxury-package-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.3);
}

.luxury-package-card.signature {
    border: 2px solid var(--secondary);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.2);
}

.signature-badge {
    position: absolute;
    top: -1px;
    right: 2rem;
    background: var(--gradient-yellow);
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    font-size: var(--font-sm);
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 3;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 2s infinite;
}

.luxury-card-header {
    padding: 3rem 2rem 2rem;
    text-align: center;
    position: relative;
}

.package-icon-luxury {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.icon-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.luxury-package-card:hover .icon-glow {
    opacity: 1;
}

.package-icon-luxury i {
    font-size: 2rem;
    color: var(--primary);
    z-index: 2;
    position: relative;
}

.package-category {
    font-size: var(--font-sm);
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Packages Preview */
.packages-preview {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.packages-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 215, 0, 0.03) 50%, transparent 100%);
    pointer-events: none;
}

/* Luxury Package Content */
.luxury-package-content {
    padding: 0 2.5rem 2rem;
}

.luxury-package-title {
    font-size: var(--font-3xl);
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.luxury-price-section {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--gradient-yellow-soft);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.price-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-line {
    width: 40px;
    height: 1px;
    background: var(--secondary);
}

.price-decoration i {
    color: var(--secondary);
    font-size: var(--font-sm);
}

.luxury-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.luxury-price .currency {
    font-size: var(--font-lg);
    color: var(--text-light);
    font-weight: 700;
}

.luxury-price .amount {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.price-period {
    font-size: var(--font-sm);
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.luxury-description {
    margin-bottom: 2.5rem;
    text-align: center;
}

.luxury-description p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: var(--font-lg);
    font-style: italic;
}

.luxury-features {
    margin-bottom: 2rem;
}

.features-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: var(--font-xl);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-heading i {
    color: var(--secondary);
}

.features-luxury-list {
    display: grid;
    gap: 1rem;
}

.luxury-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--secondary);
    transition: all 0.3s ease;
}

.luxury-feature-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(5px);
}

.feature-check {
    width: 24px;
    height: 24px;
    background: var(--gradient-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-check i {
    color: var(--primary);
    font-size: var(--font-sm);
    font-weight: 900;
}

.feature-luxury-text {
    color: var(--text);
    font-weight: 600;
    line-height: 1.5;
    font-size: var(--font-base);
}

.luxury-card-footer {
    padding: 2.5rem;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.luxury-book-btn {
    width: 100%;
    position: relative;
    background: var(--gradient-yellow);
    color: var(--primary);
    border: none;
    border-radius: var(--radius-full);
    padding: 1.25rem 2rem;
    font-size: var(--font-lg);
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.luxury-book-btn:hover .btn-glow {
    left: 100%;
}

.luxury-book-btn:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.luxury-book-btn .btn-icon {
    transition: transform 0.4s ease;
}

.luxury-book-btn:hover .btn-icon {
    transform: translateX(5px);
}

.luxury-guarantee {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.guarantee-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guarantee-icon i {
    color: var(--primary);
    font-size: var(--font-lg);
}

.guarantee-text {
    display: flex;
    flex-direction: column;
}

.guarantee-title {
    font-weight: 700;
    color: var(--primary);
    font-size: var(--font-base);
}

.guarantee-subtitle {
    font-size: var(--font-sm);
    color: var(--text-light);
    font-weight: 600;
}

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

.btn-outline {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-yellow);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-outline:hover::before {
    left: 0;
}

.btn-outline:hover {
    color: var(--primary);
    border-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-yellow-soft);
}

/* Custom Package CTA */
.custom-package-cta {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.custom-package-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

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

.cta-icon i {
    font-size: 4rem;
    background: var(--gradient-yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-text h2 {
    font-size: var(--font-3xl);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-text p {
    font-size: var(--font-lg);
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary);
    font-weight: 600;
}

.cta-feature i {
    font-size: var(--font-lg);
}

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

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-yellow);
    color: var(--primary);
    text-decoration: none;
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: var(--font-lg);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-yellow);
    margin-bottom: 1rem;
}

.cta-btn:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
}

.cta-btn i {
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: translateX(3px);
}

.cta-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--secondary);
    font-weight: 600;
    font-size: var(--font-base);
}

/* Why Choose Us Section */
.why-choose-us {
    background: var(--white);
    padding: 6rem 0;
    position: relative;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.benefit-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-yellow-soft);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-yellow);
    border-color: var(--secondary);
}

.benefit-card > * {
    position: relative;
    z-index: 2;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.benefit-card h3 {
    font-size: var(--font-xl);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: var(--font-base);
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
    background: var(--background);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.testimonial p {
    font-size: var(--font-lg);
    font-style: italic;
    color: var(--text);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.client h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.client p {
    color: var(--text-light);
    font-size: var(--font-sm);
    margin: 0;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: var(--gradient-dark);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta > * {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: var(--font-4xl);
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: var(--gradient-yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta p {
    font-size: var(--font-xl);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: var(--font-lg);
    font-weight: 800;
    background: var(--gradient-yellow);
    color: var(--primary);
    box-shadow: var(--shadow-yellow);
    border-radius: var(--radius-full);
}

.btn-large:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-2xl);
}

/* Footer */
footer {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 4rem 0 1rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--secondary);
    font-size: var(--font-xl);
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.footer-section a:hover::after {
    width: 100%;
}

.footer-section a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--gradient-yellow);
    border-radius: 50%;
    color: var(--primary);
    transition: all 0.3s ease;
    font-weight: 600;
}

.social-icons a::after {
    display: none;
}

.social-icons a:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-yellow-soft);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid var(--secondary);
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 2;
}

/* Additional Premium Styling */
.section-title {
    position: relative;
    display: inline-block;
    margin: 0 auto 4rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-yellow);
    border-radius: var(--radius-full);
}

/* Menu Toggle Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: var(--font-xl);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: var(--yellow-soft);
    color: var(--secondary);
}

/* Testimonials Enhancement */
.testimonials {
    background: var(--gradient-light);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.testimonial {
    position: relative;
    z-index: 2;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.testimonial:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-yellow);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 4rem;
    color: var(--secondary);
    font-family: serif;
    opacity: 0.3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .premium-hero {
        min-height: 80vh;
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .hero-description {
        font-size: var(--font-lg);
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .luxury-filters {
        padding: 4rem 0;
    }
    
    .filter-header h2 {
        font-size: var(--font-3xl);
    }
    
    .luxury-filter-tabs {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .filter-tab-luxury {
        padding: 1.5rem;
    }
    
    .luxury-packages {
        padding: 4rem 0;
    }
    
    .luxury-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .luxury-packages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .luxury-package-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
    
    .luxury-card-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .luxury-package-content {
        padding: 0 1.5rem 1.5rem;
    }
    
    .luxury-card-footer {
        padding: 2rem 1.5rem;
    }
    
    .compact-showcase {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .compact-slider {
        flex: none;
    }
    
    .mini-slider {
        width: 250px;
        height: 150px;
        margin: 0 auto;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .package-card.popular {
        transform: none;
        margin-bottom: 1rem;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .cta-features {
        justify-content: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: var(--shadow-yellow-soft);
        border-top: 2px solid var(--secondary);
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav ul li {
        width: 100%;
        text-align: center;
    }
    
    nav ul li a {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    nav ul li:last-child a {
        border-bottom: none;
    }
    
    .hero {
        padding: 6rem 0;
    }
    
    .hero h1 {
        font-size: var(--font-3xl);
        margin-bottom: 1.5rem;
    }
    
    .hero p {
        font-size: var(--font-lg);
        margin-bottom: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .features,
    .packages-preview,
    .cta {
        padding: 4rem 0;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: var(--font-sm);
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: var(--font-base);
    }
    
    .cta h2 {
        font-size: var(--font-3xl);
    }
    
    .cta p {
        font-size: var(--font-lg);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: var(--font-2xl);
    }
    
    .hero p {
        font-size: var(--font-base);
    }
    
    .feature-card i {
        font-size: 3rem;
    }
    
    .package-header {
        padding: 2rem 1.5rem;
    }
    
    .package-body {
        padding: 2rem 1.5rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: var(--font-xs);
    }
}