/* ========================================
   MODERN ELEGANT THEME - HOTSPOT HOLIDAYS
   ======================================== */

/* Import Modern Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables for Theme */
:root {
    /* Elegant Light Colors */
    --bg-primary: #fdfbf7;
    --bg-secondary: #f8f6f2;
    --bg-card: #ffffff;
    --bg-accent: #fff9f0;
    --text-primary: #2d2d2d;
    --text-secondary: #6b6b6b;
    --text-muted: #9a9a9a;
    
    /* Vibrant Accent Colors */
    --accent-coral: #ff6b6b;
    --accent-peach: #ffa07a;
    --accent-mint: #4ecdc4;
    --accent-purple: #a78bfa;
    --accent-gold: #f59e0b;
    --accent-rose: #fb7185;
    
    /* Gradient Accents */
    --gradient-sunset: linear-gradient(135deg, #ff6b6b 0%, #ffa07a 100%);
    --gradient-ocean: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    --gradient-purple: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
    --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.15);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
}

/* ========================================
   GLOBAL STYLES
   ======================================== */

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

main {
    flex: 1;
    padding-top: 2rem;
    padding-bottom: 3rem;
}

/* Elegant Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    letter-spacing: -0.02em;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-coral);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-peach);
}

/* ========================================
   NAVBAR - ELEGANT & MINIMAL
   ======================================== */

.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
    padding: 1.2rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1.8rem;
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem !important;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--gradient-sunset);
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-coral) !important;
    background: var(--bg-accent);
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* ========================================
   DROPDOWN MENUS
   ======================================== */

.dropdown-menu {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.dropdown-item {
    color: var(--text-secondary);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: var(--bg-accent);
    color: var(--accent-coral);
    transform: translateX(4px);
}

/* ========================================
   HERO SECTION - STUNNING
   ======================================== */

.hero-section {
    background: linear-gradient(135deg, #fff9f0 0%, #ffe8cc 50%, #ffd4a3 100%);
    border-radius: var(--radius-xl);
    padding: 4rem 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.hero-section .lead {
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.hero-emoji {
    font-size: 3rem;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ========================================
   CARDS - ELEGANT & MODERN
   ======================================== */

.card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-coral);
}

.card-header {
    background: linear-gradient(135deg, #fff9f0 0%, #ffe8cc 100%) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0 !important;
    font-weight: 600;
    padding: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
}

.card-body {
    padding: 1.8rem;
}

.card-footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 1.2rem 1.8rem;
}

/* Card Image Effects */
.card-img-top {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    transition: transform 0.6s ease;
    height: 240px;
    object-fit: cover;
}

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

/* Package Card Special */
.package-card {
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    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.5s ease;
}

.package-card:hover::before {
    left: 100%;
}

/* Stats Cards */
.stats-card {
    background: var(--gradient-sunset);
    color: white;
    border: none;
    padding: 2rem;
    text-align: center;
}

.stats-card h3 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
}

.stats-card.ocean {
    background: var(--gradient-ocean);
}

.stats-card.purple {
    background: var(--gradient-purple);
}

.stats-card.gold {
    background: var(--gradient-gold);
}

/* ========================================
   BUTTONS - MODERN & VIBRANT
   ======================================== */

.btn {
    border-radius: var(--radius-md);
    padding: 0.85rem 2rem;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.02em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-sunset);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.btn-success {
    background: var(--gradient-ocean);
    color: white;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
}

.btn-warning {
    background: var(--gradient-gold);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-danger {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
}

.btn-info {
    background: var(--gradient-purple);
    color: white;
}

.btn-outline-primary {
    border: 2px solid var(--accent-coral);
    color: var(--accent-coral);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--gradient-sunset);
    color: white;
    border-color: transparent;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ========================================
   FORMS - ELEGANT INPUT FIELDS
   ======================================== */

.form-control, .form-select {
    background: var(--bg-card);
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    padding: 0.95rem 1.2rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-control:focus, .form-select:focus {
    background: white;
    border-color: var(--accent-coral);
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
    color: var(--text-primary);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.form-check-input {
    border: 2px solid rgba(0, 0, 0, 0.15);
    width: 1.3rem;
    height: 1.3rem;
}

.form-check-input:checked {
    background-color: var(--accent-coral);
    border-color: var(--accent-coral);
}

/* ========================================
   TABLES - CLEAN & MODERN
   ======================================== */

.table {
    background: var(--bg-card);
    color: var(--text-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.table thead {
    background: var(--bg-secondary);
}

.table thead th {
    border-bottom: 2px solid rgba(0, 0, 0, 0.06);
    color: var(--text-primary);
    font-weight: 600;
    padding: 1.2rem;
    font-family: 'Poppins', sans-serif;
}

.table tbody td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    padding: 1.2rem;
    color: var(--text-secondary);
}

.table-hover tbody tr {
    transition: all 0.2s ease;
}

.table-hover tbody tr:hover {
    background: var(--bg-accent);
    transform: scale(1.01);
}

/* ========================================
   BADGES - COLORFUL & VIBRANT
   ======================================== */

.badge {
    padding: 0.5rem 1rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
}

.badge.bg-success {
    background: var(--gradient-ocean) !important;
}

.badge.bg-warning {
    background: var(--gradient-gold) !important;
    color: white !important;
}

.badge.bg-danger {
    background: var(--gradient-sunset) !important;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7); }
    50% { box-shadow: 0 0 0 8px rgba(255, 107, 107, 0); }
}

.badge.bg-primary {
    background: var(--gradient-purple) !important;
}

/* ========================================
   ALERTS - SOFT & ELEGANT
   ======================================== */

.alert {
    border-radius: var(--radius-lg);
    border: none;
    padding: 1.2rem 1.5rem;
    box-shadow: var(--shadow-sm);
}

.alert-success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
}

.alert-warning {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
}

.alert-danger {
    background: linear-gradient(135deg, #fecaca 0%, #fca5a5 100%);
    color: #991b1b;
}

.alert-info {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e40af;
}

/* ========================================
   FOOTER - ELEGANT
   ======================================== */

footer {
    margin-top: auto;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--text-secondary);
    padding: 2.5rem 0;
}

/* ========================================
   SPECIAL EFFECTS
   ======================================== */

/* Gradient Text */
.gradient-text {
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Floating Animation */
@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card, .alert, .hero-section {
    animation: fadeIn 0.6s ease;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .hero-section {
        padding: 3rem 1.5rem;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .card {
        margin-bottom: 1.5rem;
    }
    
    .btn-lg {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-coral { color: var(--accent-coral); }
.text-mint { color: var(--accent-mint); }
.text-purple { color: var(--accent-purple); }
.text-gold { color: var(--accent-gold); }

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

.shadow-elegant { box-shadow: var(--shadow-lg); }

.rounded-elegant { border-radius: var(--radius-xl); }

/* Image Styling */
.img-fluid {
    border-radius: var(--radius-lg);
}

/* HR Divider */
hr {
    border-color: rgba(0, 0, 0, 0.06);
    opacity: 1;
}

/* Small Text */
small {
    color: var(--text-muted);
}

/* Price Display */
.price-tag {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Special Offer Badge */
.special-offer-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-sunset);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: var(--shadow-md);
    z-index: 10;
}

/* Welcome Message */
.welcome-message {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-contact-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 12px 0;
    background: #fff9f4;
    border-bottom: 1px solid #f3cdc2;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    color: white;
    transition: 0.2s ease-in-out;
}

.social-btn .icon {
    width: 20px;
    height: 20px;
}

.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn:hover {
    background: #1ebe5a;
}

.instagram-btn {
    background: #E1306C;
}

.instagram-btn:hover {
    background: #c52a5e;
}
