/* ===================================
   التهاني لخدمات الأفراح - CSS الرئيسي
   =================================== */

/* Variables */
:root {
    --primary: #c89b3c;
    --primary-dark: #a07830;
    --primary-light: #e4c06e;
    --primary-glow: rgba(200, 155, 60, 0.3);
    --bg: #09090b;
    --bg-card: #18181b;
    --bg-card2: #1f1f23;
    --text: #fafafa;
    --text-muted: #a1a1aa;
    --text-dim: #71717a;
    --border: rgba(200, 155, 60, 0.2);
    --border-light: rgba(255,255,255,0.08);
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 24px rgba(0,0,0,0.4);
    --shadow-gold: 0 4px 24px rgba(200, 155, 60, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Tajawal', sans-serif;
    --navbar-h: 120px;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    direction: rtl;
    line-height: 1.7;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(9,9,11,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(9,9,11,0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.navbar-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-light);
}
.navbar-contact {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.contact-link {
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.contact-link:hover { color: var(--primary); }
.whatsapp-link { color: #25d366 !important; }
.whatsapp-link:hover { color: #1da851 !important; }
.navbar-logo img {
    height: 48px;
    object-fit: contain;
}
.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    padding: 0.5rem 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.navbar-nav::-webkit-scrollbar { display: none; }
.nav-link {
    padding: 0.45rem 0.75rem;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
    white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary);
    background: rgba(200, 155, 60, 0.1);
}
.nav-link.active { font-weight: 700; }
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: 8px;
    background: var(--bg-card);
}
.navbar-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--bg-card);
    z-index: 1100;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    border-left: 1px solid var(--border);
}
.mobile-menu.open { right: 0; }
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid var(--border);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
}
.mobile-menu-close {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--bg-card2);
    color: var(--text);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.mobile-menu-close:hover { background: var(--primary); color: #000; }
.mobile-nav { padding: 0.5rem; }
.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: var(--transition);
    margin-bottom: 2px;
}
.mobile-nav-link:hover, .mobile-nav-link.active {
    background: rgba(200, 155, 60, 0.12);
    color: var(--primary);
}
.nav-icon { font-size: 1.1rem; }
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    backdrop-filter: blur(4px);
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }

/* Main Content */
.main-content { padding-top: var(--navbar-h); }

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, rgba(9,9,11,0.9) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(200, 155, 60, 0.5);
    background: rgba(200, 155, 60, 0.1);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}
.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #fff;
}
.hero-title .gold { color: var(--primary); }
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    font-family: var(--font);
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #000;
    box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(200, 155, 60, 0.4);
}
.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}
.btn-outline:hover {
    background: rgba(200, 155, 60, 0.1);
    transform: translateY(-2px);
}
.btn-whatsapp {
    background: #25d366;
    color: #fff;
}
.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
}
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }

/* ===== SECTIONS ===== */
.section {
    padding: 5rem 1.5rem;
}
.section-sm { padding: 3rem 1.5rem; }
.section-container {
    max-width: 1200px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(200, 155, 60, 0.4);
    background: rgba(200, 155, 60, 0.08);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 0.75rem;
    color: var(--text);
}
.section-title .gold { color: var(--primary); }
.section-desc {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== CARDS ===== */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.card:hover {
    border-color: var(--border);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}
.card-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.card:hover .card-img { transform: scale(1.05); }
.card-body { padding: 1.25rem; }
.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}
.card-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== GRID ===== */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.grid-auto-sm { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

/* ===== STATS ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}
.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}
.stat-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}
.stat-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    display: block;
}
.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* ===== FEATURE LIST ===== */
.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(200, 155, 60, 0.05);
    border: 1px solid rgba(200, 155, 60, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--text-muted);
}
.feature-list li .icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.feature-list li strong { color: var(--text); }

/* ===== TAGS ===== */
.tag {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}
.tag-gold { background: rgba(200, 155, 60, 0.15); color: var(--primary); }
.tag-green { background: rgba(16, 185, 129, 0.15); color: #10b981; }
.tag-blue { background: rgba(59, 130, 246, 0.15); color: #3b82f6; }
.tag-purple { background: rgba(147, 51, 234, 0.15); color: #9333ea; }
.tag-pink { background: rgba(236, 72, 153, 0.15); color: #ec4899; }
.tag-red { background: rgba(220, 38, 38, 0.15); color: #dc2626; }

/* ===== FORM ===== */
.form-group { margin-bottom: 1.25rem; }
.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}
.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}
.form-control::placeholder { color: var(--text-dim); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 120px; }

/* ===== FILTER TABS ===== */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}
.filter-tab {
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    transition: var(--transition);
    cursor: pointer;
}
.filter-tab:hover, .filter-tab.active {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: var(--transition);
}
.testimonial-card:hover {
    border-color: var(--border);
    transform: translateY(-3px);
}
.testimonial-stars { color: var(--primary); margin-bottom: 0.75rem; font-size: 0.9rem; }
.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.testimonial-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #000;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; }
.testimonial-location { font-size: 0.8rem; color: var(--text-dim); }

/* ===== CONTACT SECTION ===== */
.contact-card {
    background: linear-gradient(135deg, rgba(200, 155, 60, 0.1), rgba(200, 155, 60, 0.05));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    text-align: center;
}
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.contact-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}
.contact-info-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}
.contact-info-item .icon {
    font-size: 1.5rem;
    color: var(--primary);
}
.contact-info-item a {
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}
.contact-info-item a:hover { color: var(--primary); }

/* ===== DJ PAGE SPECIFIC ===== */
.dj-hero {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a0a2e 50%, #0a0a0f 100%);
    position: relative;
    overflow: hidden;
}
.dj-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(200, 155, 60, 0.15) 0%, transparent 70%);
}
.music-wave {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 40px;
}
.music-wave span {
    display: block;
    width: 4px;
    background: var(--primary);
    border-radius: 2px;
    animation: wave 1.2s ease-in-out infinite;
}
.music-wave span:nth-child(2) { animation-delay: 0.1s; }
.music-wave span:nth-child(3) { animation-delay: 0.2s; }
.music-wave span:nth-child(4) { animation-delay: 0.3s; }
.music-wave span:nth-child(5) { animation-delay: 0.4s; }
@keyframes wave {
    0%, 100% { height: 8px; }
    50% { height: 32px; }
}

.zafa-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.zafa-card:hover {
    border-color: var(--border);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}
.zafa-header {
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.zafa-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.zafa-body { padding: 0 1.25rem 1.25rem; }
.zafa-title { font-weight: 700; font-size: 1rem; }
.zafa-artist { font-size: 0.8rem; color: var(--text-muted); }
.zafa-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.6; }
.zafa-player {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-card2);
    border-radius: var(--radius-sm);
}
.play-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
    flex-shrink: 0;
}
.play-btn:hover { transform: scale(1.1); background: var(--primary-light); }
.progress-bar {
    flex: 1;
    height: 4px;
    background: var(--border-light);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
}
.progress-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
}
.time-display { font-size: 0.75rem; color: var(--text-dim); white-space: nowrap; }

/* ===== AI TOOLS ===== */
.ai-tool-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.ai-tool-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
}
.ai-tool-card:hover::before { transform: scaleX(1); transform-origin: left; }
.ai-tool-card:hover {
    border-color: var(--border);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}
.ai-tool-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.ai-tool-title {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text);
}
.ai-tool-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}
.ai-chat-box {
    background: var(--bg-card2);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
}
.ai-chat-messages {
    height: 350px;
    overflow-y: auto;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}
.ai-message {
    max-width: 85%;
    padding: 0.85rem 1.1rem;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.6;
    animation: fadeInUp 0.3s ease;
}
.ai-message.bot {
    background: rgba(200, 155, 60, 0.1);
    border: 1px solid rgba(200, 155, 60, 0.2);
    color: var(--text);
    align-self: flex-start;
    border-bottom-right-radius: 4px;
}
.ai-message.user {
    background: var(--primary);
    color: #000;
    align-self: flex-end;
    border-bottom-left-radius: 4px;
}
.ai-message.typing {
    background: rgba(200, 155, 60, 0.08);
    border: 1px solid rgba(200, 155, 60, 0.15);
    align-self: flex-start;
}
.typing-dots {
    display: flex;
    gap: 4px;
    align-items: center;
    padding: 0.25rem 0;
}
.typing-dots span {
    width: 8px; height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: typingDot 1.2s ease-in-out infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
    30% { transform: translateY(-6px); opacity: 1; }
}
.ai-chat-input {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    border-top: 1px solid var(--border-light);
    background: var(--bg-card);
}
.ai-chat-input input {
    flex: 1;
    padding: 0.7rem 1rem;
    background: var(--bg-card2);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    color: var(--text);
    font-family: var(--font);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}
.ai-chat-input input:focus { border-color: var(--primary); }
.ai-chat-input input::placeholder { color: var(--text-dim); }
.ai-send-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
    flex-shrink: 0;
}
.ai-send-btn:hover { transform: scale(1.1); background: var(--primary-light); }

/* Budget Calculator */
.budget-calculator {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
}
.budget-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
}
.budget-item:last-child { border-bottom: none; }
.budget-item-label { font-size: 0.9rem; color: var(--text-muted); }
.budget-item-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
}
.budget-total {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(200, 155, 60, 0.1);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.budget-total-label { font-weight: 700; font-size: 1rem; }
.budget-total-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
}

/* ===== HALLS ===== */
.hall-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.hall-card:hover {
    border-color: var(--border);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}
.hall-img-wrap {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.hall-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.hall-card:hover .hall-img { transform: scale(1.06); }
.hall-city-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    background: rgba(0,0,0,0.7);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
}
.hall-body { padding: 1.25rem; }
.hall-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}
.hall-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}
.hall-capacity {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.hall-stars { color: var(--primary); font-size: 0.8rem; }
.hall-types {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}
.hall-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
}
.hall-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* ===== FOOTER ===== */
.footer {
    background: #050507;
    border-top: 1px solid var(--border);
    padding: 4rem 1.5rem 2rem;
    margin-top: 4rem;
}
.footer-container { max-width: 1200px; margin: 0 auto; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-logo { height: 48px; object-fit: contain; margin-bottom: 1rem; }
.footer-brand-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.footer-tagline { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.75rem; }
.social-link {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
    color: var(--text-muted);
}
.social-link:hover { transform: translateY(-3px); }
.social-link.instagram:hover { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; border-color: transparent; }
.social-link.whatsapp:hover { background: #25d366; color: #fff; border-color: transparent; }
.social-link.tiktok:hover { background: #000; color: #fff; border-color: #fff; }
.social-link.snapchat:hover { background: #fffc00; color: #000; border-color: transparent; }
.footer-heading {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.footer-links a:hover { color: var(--primary); padding-right: 0.3rem; }
.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.footer-contact-list i {
    color: var(--primary);
    margin-top: 0.15rem;
    flex-shrink: 0;
    width: 16px;
}
.footer-contact-list a { color: var(--text-muted); transition: var(--transition); }
.footer-contact-list a:hover { color: var(--primary); }
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    font-size: 0.85rem;
    color: var(--text-dim);
}
.footer-since { margin-top: 0.25rem; font-size: 0.8rem; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 900;
    transition: var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}
.whatsapp-tooltip {
    position: absolute;
    left: 110%;
    background: #000;
    color: #fff;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    z-index: 900;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-3px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.animate-fadeInUp { animation: fadeInUp 0.6s ease forwards; }
.animate-fadeIn { animation: fadeIn 0.5s ease forwards; }

/* ===== DIVIDER ===== */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 3rem 0;
}
.divider-gold {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    margin: 2rem 0;
}

/* ===== ALERT ===== */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.alert-success { background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.3); color: #10b981; }
.alert-warning { background: rgba(245, 158, 11, 0.1); border: 1px solid rgba(245, 158, 11, 0.3); color: #f59e0b; }
.alert-info { background: rgba(59, 130, 246, 0.1); border: 1px solid rgba(59, 130, 246, 0.3); color: #3b82f6; }
.alert-gold { background: rgba(200, 155, 60, 0.1); border: 1px solid var(--border); color: var(--primary); }

/* ===== LOADING ===== */
.spinner {
    width: 40px; height: 40px;
    border: 3px solid var(--border-light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 2rem auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    :root { --navbar-h: 100px; }
    .navbar-nav { display: none; }
    .navbar-toggle { display: flex; }
    .navbar-contact { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-2 { grid-template-columns: 1fr; }
    .hero { min-height: 60vh; }
    .section { padding: 3rem 1rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn { width: 100%; justify-content: center; }
    .filter-tabs { gap: 0.35rem; }
    .filter-tab { padding: 0.4rem 0.85rem; font-size: 0.8rem; }
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-gold { color: var(--primary); }
.text-muted { color: var(--text-muted); }
.text-dim { color: var(--text-dim); }
.fw-bold { font-weight: 700; }
.fw-black { font-weight: 900; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.w-full { width: 100%; }
.hidden { display: none; }
.bg-dark { background: var(--bg-card); }
.rounded { border-radius: var(--radius); }
.border-gold { border: 1px solid var(--border); }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.absolute { position: absolute; }


/* ===== SHARE & SAVE BUTTONS ===== */
.share-save-group {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.share-btn, .save-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(200, 155, 60, 0.1);
    border: 1px solid rgba(200, 155, 60, 0.3);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: var(--transition);
    cursor: pointer;
}

.share-btn:hover, .save-btn:hover {
    background: var(--primary);
    color: #000;
    transform: scale(1.1);
}

.save-btn.saved {
    background: #ef4444;
    border-color: #ef4444;
    color: #fff;
}

.share-dropdown {
    position: relative;
    display: inline-block;
}

.share-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    min-width: 200px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    box-shadow: var(--shadow);
    margin-top: 0.5rem;
}

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

.share-menu-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9rem;
}

.share-menu-item:last-child {
    border-bottom: none;
}

.share-menu-item:hover {
    background: rgba(200, 155, 60, 0.1);
    color: var(--primary);
    padding-right: 1.25rem;
}

.share-menu-item i {
    width: 20px;
    text-align: center;
}

/* ===== NOTIFICATIONS ===== */
.notification {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    z-index: 10000;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    max-width: 400px;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.notification-success {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.notification-error {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.notification-info {
    border-color: var(--primary);
    background: rgba(200, 155, 60, 0.1);
    color: var(--primary);
}

@media (max-width: 768px) {
    .share-save-group {
        gap: 0.35rem;
    }

    .share-btn, .save-btn {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .notification {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        max-width: none;
    }
}
