:root {
    --primary-blue: #0A1F44;
    --accent-gold: #D4AF37;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 76px;
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(10, 31, 68, 0.8), rgba(10, 31, 68, 0.8)), 
                url('../assets/images/hero-bg.jpg') center/cover no-repeat;
    position: relative;
}

/* Section Titles */
.section-title {
    color: var(--primary-blue);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-gold);
}

/* Cards */
.service-card, .plan-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.service-card:hover, .plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.plan-card {
    border-radius: 10px;
    overflow: hidden;
}

.plan-card.border-warning {
    border: 2px solid var(--accent-gold) !important;
}

/* Buttons */
.btn-warning {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.btn-warning:hover {
    background-color: #c49b2e;
    border-color: #c49b2e;
}

/* Login/Register Forms */
.auth-container {
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a3a6e 100%);
    padding: 20px;
}

.auth-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 450px;
    padding: 40px;
}

.auth-card h2 {
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 30px;
}

/* Dashboard */
.dashboard-sidebar {
    background-color: var(--primary-blue);
    min-height: calc(100vh - 76px);
    color: white;
}

.dashboard-sidebar .nav-link {
    color: rgba(255,255,255,0.8);
    padding: 12px 20px;
    transition: all 0.3s;
}

.dashboard-sidebar .nav-link:hover,
.dashboard-sidebar .nav-link.active {
    color: white;
    background-color: rgba(212, 175, 55, 0.2);
}

.dashboard-sidebar .nav-link i {
    margin-right: 10px;
    width: 20px;
}

/* Profile Card */
.profile-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.profile-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-gold);
    padding: 3px;
}

.membership-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    color: white;
}

.membership-badge.free { background-color: #6c757d; }
.membership-badge.basic { background-color: #17a2b8; }
.membership-badge.premium { background-color: #007bff; }
.membership-badge.vip { background-color: var(--accent-gold); color: #000; }

/* Reels Grid */
.reels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.reel-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.reel-card:hover {
    transform: scale(1.02);
}

.reel-card video {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.reel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
}

/* Business Directory */
.business-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
}

.business-logo {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
    margin-right: 20px;
}

/* Chat Interface */
.chat-container {
    height: 500px;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.message {
    margin-bottom: 15px;
    display: flex;
}

.message.sent {
    justify-content: flex-end;
}

.message.received {
    justify-content: flex-start;
}

.message-content {
    max-width: 70%;
    padding: 10px 15px;
    border-radius: 15px;
    position: relative;
}

.message.sent .message-content {
    background-color: var(--primary-blue);
    color: white;
    border-bottom-right-radius: 5px;
}

.message.received .message-content {
    background-color: #f1f3f5;
    color: #333;
    border-bottom-left-radius: 5px;
}

/* Admin Panel */
.stats-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.stats-card .icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
}

.stats-card .value {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-blue);
}

/* Responsive */
@media (max-width: 768px) {
    .dashboard-sidebar {
        min-height: auto;
    }
    
    .business-card {
        flex-direction: column;
        text-align: center;
    }
    
    .business-logo {
        margin-right: 0;
        margin-bottom: 15px;
    }
}