/* ==========================================================================
   JMD Stage Light Portfolio & Booking System - Professional Classic Style
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg-dark: #090b12;
  --bg-card: #121626;
  --bg-card-hover: #181f36;
  --bg-glass: rgba(18, 22, 38, 0.85);
  --border-color: rgba(255, 255, 255, 0.1);
  --border-glow: rgba(0, 229, 255, 0.4);
  
  --color-gold: #f5b759;
  --color-gold-glow: rgba(245, 183, 89, 0.4);
  --color-cyan: #00e5ff;
  --color-cyan-glow: rgba(0, 229, 255, 0.35);
  --color-purple: #9d4edd;
  --color-pink: #ff007f;
  
  --text-main: #f0f4fc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --status-available: #10b981; /* Green */
  --status-approved: #ef4444;  /* Red / Booked */
  --status-pending: #f59e0b;   /* Yellow/Amber */
  --status-disabled: #334155;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-lg: 16px;
  --radius-md: 10px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
}

/* Global High-Contrast Text Overrides for Dark Theme */
.text-muted {
  color: #cbd5e1 !important;
}

.text-secondary {
  color: #94a3b8 !important;
}

.text-gold, .text-warning {
  color: var(--color-gold) !important;
}

.text-cyan, .text-info {
  color: var(--color-cyan) !important;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  font-weight: 700;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.navbar-custom {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  transition: var(--transition);
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-cyan));
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.2rem;
  box-shadow: 0 0 15px var(--color-cyan-glow);
}

.nav-link {
  color: var(--text-muted) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--color-cyan) !important;
}

.btn-glow-gold {
  background: linear-gradient(135deg, #f5b759, #e09f3e);
  color: #000 !important;
  font-weight: 700;
  border: none;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: 0 0 20px var(--color-gold-glow);
  transition: var(--transition);
}

.btn-glow-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--color-gold-glow), 0 0 10px var(--color-gold);
}

.btn-glow-cyan {
  background: linear-gradient(135deg, #00e5ff, #0099ff);
  color: #000 !important;
  font-weight: 700;
  border: none;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: 0 0 20px var(--color-cyan-glow);
  transition: var(--transition);
}

.btn-glow-cyan:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--color-cyan-glow);
}

/* ==========================================================================
   Hero Section & Stage Beams Effect
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px 0;
  overflow: hidden;
  background: radial-gradient(circle at 50% 20%, #1c2541 0%, var(--bg-dark) 70%);
}

.hero-beam-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.4;
  background-image: 
    radial-gradient(ellipse at 20% 0%, var(--color-cyan-glow) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 0%, var(--color-gold-glow) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(157, 78, 221, 0.2) 0%, transparent 70%);
}

.light-beam {
  position: absolute;
  top: -100px;
  width: 300px;
  height: 800px;
  background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, rgba(0,229,255,0.15) 30%, transparent 80%);
  clip-path: polygon(45% 0%, 55% 0%, 100% 100%, 0% 100%);
  transform-origin: top center;
  animation: beamSweep 8s ease-in-out infinite alternate;
  mix-blend-mode: screen;
  pointer-events: none;
}

.light-beam-1 { left: 15%; animation-delay: 0s; background: linear-gradient(180deg, rgba(245,183,89,0.5) 0%, rgba(245,183,89,0.1) 40%, transparent 80%); }
.light-beam-2 { right: 15%; animation-delay: -4s; background: linear-gradient(180deg, rgba(0,229,255,0.5) 0%, rgba(0,229,255,0.1) 40%, transparent 80%); }

@keyframes beamSweep {
  0% { transform: rotate(-15deg); }
  50% { transform: rotate(10deg); }
  100% { transform: rotate(-8deg); }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 30%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
  background: linear-gradient(135deg, var(--color-gold), #ff8800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-cyan {
  background: linear-gradient(135deg, var(--color-cyan), #0088ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid var(--border-glow);
  border-radius: 30px;
  color: var(--color-cyan);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   Section Styling & Cards
   ========================================================================== */
.section-padding {
  padding: 90px 0;
}

.section-tag {
  color: var(--color-gold);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
}

.card-custom {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.card-custom:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Portfolio Card */
.portfolio-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.portfolio-img-wrapper {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.portfolio-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-card:hover .portfolio-img-wrapper img {
  transform: scale(1.08);
}

.portfolio-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(9, 11, 18, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  color: var(--color-cyan);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.portfolio-body {
  padding: 1.5rem;
}

.portfolio-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.portfolio-rigs-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 0.65rem 0.85rem;
  font-size: 0.82rem;
  color: #e2e8f0;
}

/* ==========================================================================
   Interactive Calendar Styling
   ========================================================================== */
.calendar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.calendar-month-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.calendar-nav-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}

.calendar-nav-btn:hover {
  background: var(--color-cyan);
  color: #000;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.calendar-day-header {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  padding-bottom: 8px;
  text-transform: uppercase;
}

.calendar-cell {
  aspect-ratio: 1;
  min-height: 52px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  padding: 4px;
}

.calendar-cell .day-number {
  font-weight: 700;
  font-size: 0.95rem;
}

.calendar-cell .status-indicator {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 10px;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Calendar Cell Statuses */
.calendar-cell.status-available {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.3);
  color: #34d399;
}

.calendar-cell.status-available:hover {
  background: rgba(16, 185, 129, 0.25);
  border-color: var(--status-available);
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

.calendar-cell.status-approved {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.5);
  color: #f87171;
  cursor: not-allowed;
}

.calendar-cell.status-pending {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.5);
  color: #fbbf24;
}

.calendar-cell.status-disabled, .calendar-cell.status-past {
  opacity: 0.35;
  background: transparent;
  border-color: transparent;
  cursor: not-allowed;
}

.calendar-cell.is-today {
  box-shadow: 0 0 0 2px var(--color-cyan);
}

.calendar-legend {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.legend-dot.available { background: var(--status-available); box-shadow: 0 0 8px var(--status-available); }
.legend-dot.approved { background: var(--status-approved); box-shadow: 0 0 8px var(--status-approved); }
.legend-dot.pending { background: var(--status-pending); box-shadow: 0 0 8px var(--status-pending); }

/* ==========================================================================
   Booking Form Styling
   ========================================================================== */
.booking-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form-control-dark, .form-select-dark {
  background: rgba(9, 11, 18, 0.8) !important;
  border: 1px solid var(--border-color) !important;
  color: #fff !important;
  border-radius: var(--radius-md) !important;
  padding: 0.75rem 1rem !important;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control-dark:focus, .form-select-dark:focus {
  border-color: var(--color-cyan) !important;
  box-shadow: 0 0 15px var(--color-cyan-glow) !important;
  outline: none;
}

.form-label {
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 6px;
}

/* ==========================================================================
   Admin Dashboard Styling
   ========================================================================== */
.admin-sidebar {
  background: var(--bg-card);
  border-right: 1px solid var(--border-color);
  min-height: 100vh;
  padding: 2rem 1.5rem;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.stat-icon.total { background: rgba(0, 229, 255, 0.15); color: var(--color-cyan); }
.stat-icon.pending { background: rgba(245, 158, 11, 0.15); color: var(--status-pending); }
.stat-icon.approved { background: rgba(16, 185, 129, 0.15); color: var(--status-available); }
.stat-icon.rejected { background: rgba(239, 68, 68, 0.15); color: var(--status-approved); }

.table-dark-custom {
  background: var(--bg-card);
  border-color: var(--border-color);
  color: var(--text-main);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.table-dark-custom th {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.table-dark-custom td {
  padding: 1rem;
  vertical-align: middle;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Status Badges */
.badge-status {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
}

.badge-status.pending { background: rgba(245, 158, 11, 0.2); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.5); }
.badge-status.approved { background: rgba(239, 68, 68, 0.2); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.5); }
.badge-status.rejected { background: rgba(148, 163, 184, 0.2); color: #cbd5e1; border: 1px solid rgba(148, 163, 184, 0.4); }
.badge-status.completed { background: rgba(157, 78, 221, 0.2); color: #c084fc; border: 1px solid rgba(157, 78, 221, 0.4); }

/* Responsive adjustments & Mobile Navigation Drawer */
@media (max-width: 991.98px) {
  .hero-title { font-size: 2.5rem; }
  .calendar-cell { min-height: 44px; }

  .navbar-collapse.show {
    display: block !important;
  }

  .navbar-collapse {
    background: #0f1322;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-top: 0.75rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
  }

  .navbar-nav {
    align-items: flex-start !important;
    gap: 0.5rem !important;
  }

  .navbar-nav .nav-item {
    width: 100%;
  }

  .navbar-nav .nav-link {
    display: block;
    padding: 0.65rem 0.85rem !important;
    font-size: 1rem;
    border-radius: 8px;
    color: #f1f5f9 !important;
  }

  .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    background: rgba(0, 229, 255, 0.12);
    color: var(--color-cyan) !important;
  }

  .navbar-nav .btn {
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
  }

  .navbar-toggler {
    padding: 0.4rem 0.6rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
  }
}

/* ==========================================================================
   Fullscreen Video Intro Modal
   ========================================================================== */
.intro-video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.7s ease;
}

.intro-video-modal.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-video-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  overflow: hidden;
}

.intro-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-video-controls {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 1000000;
  display: flex;
  align-items: center;
}

/* ==========================================================================
   Admin Login Page Responsive Styling
   ========================================================================== */
.admin-login-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem 1rem;
  background: radial-gradient(circle at 50% 30%, #171d33 0%, var(--bg-dark) 80%);
  overflow: hidden;
}

.admin-login-card {
  background: rgba(18, 22, 38, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(0, 229, 255, 0.12);
  width: 100%;
  max-width: 980px;
}

.admin-login-side-panel {
  background: url('../images/hero_lighting.png');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.admin-login-side-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(9, 11, 18, 0.75) 0%, rgba(9, 11, 18, 0.95) 100%);
  z-index: 1;
}

.admin-login-side-content {
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   Floating WhatsApp Chat Button
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 99999;
  text-decoration: none !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6), 0 4px 12px rgba(0, 0, 0, 0.4);
  color: #fff !important;
}

.whatsapp-float .whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: #1a1a2e;
  color: #fff;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.whatsapp-float .whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #1a1a2e;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 576px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
    bottom: 20px;
    right: 20px;
  }
}

/* ==========================================================================
   Comprehensive Mobile & Tablet Responsive Optimizations
   ========================================================================== */
@media (max-width: 768px) {
  .container, .container-fluid {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .section-padding {
    padding: 2.5rem 0;
  }

  .hero-section {
    padding: 2.5rem 0 2rem 0;
    min-height: auto;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.25;
  }

  .hero-subtitle {
    font-size: 0.92rem;
  }

  /* Calendar Mobile Optimization (Tablets & Phones) */
  .calendar-card {
    padding: 1.25rem 0.85rem;
    border-radius: 14px;
  }

  .calendar-header {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center !important;
  }

  .calendar-month-title {
    font-size: 1.3rem;
  }

  .calendar-grid {
    gap: 5px;
  }

  .calendar-cell {
    min-height: 44px;
    padding: 2px;
    border-radius: 8px;
  }

  .calendar-cell .day-number {
    font-size: 0.85rem;
  }

  .calendar-cell .status-indicator {
    font-size: 0.55rem;
    padding: 1px 4px;
    margin-top: 1px;
    letter-spacing: 0;
  }

  .portfolio-card .portfolio-img-wrapper {
    height: 190px;
  }

  .table-responsive {
    border-radius: var(--radius-md);
    -webkit-overflow-scrolling: touch;
  }

  .stat-card {
    padding: 1.25rem 1rem;
  }
}

@media (max-width: 480px) {
  .container, .container-fluid {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .row {
    margin-left: -6px;
    margin-right: -6px;
  }

  .row > [class*='col-'] {
    padding-left: 6px;
    padding-right: 6px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 0.35rem 0.75rem;
  }

  .btn-lg {
    padding: 0.65rem 1rem;
    font-size: 0.9rem !important;
    width: 100%;
  }

  /* Calendar Small Screen (Phones < 480px) */
  .calendar-card {
    padding: 0.85rem 0.5rem;
    border-radius: 12px;
  }

  .calendar-month-title {
    font-size: 1.15rem;
  }

  .calendar-day-header {
    font-size: 0.68rem;
    padding: 4px 0;
  }

  .calendar-grid {
    gap: 3px;
  }

  .calendar-cell {
    min-height: 38px;
    padding: 1px;
    border-radius: 6px;
  }

  .calendar-cell .day-number {
    font-size: 0.78rem;
  }

  .calendar-cell .status-indicator {
    font-size: 0.5rem;
    padding: 1px 2px;
    margin-top: 1px;
    line-height: 1;
    transform: scale(0.92);
  }

  .calendar-legend {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 12px;
    font-size: 0.75rem;
  }

  .portfolio-filter-btn, .admin-filter-btn {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
  }

  .brand-logo {
    height: 38px !important;
    max-width: 150px !important;
  }
}

@media (max-width: 380px) {
  .calendar-card {
    padding: 0.65rem 0.35rem;
  }

  .calendar-grid {
    gap: 2px;
  }

  .calendar-cell {
    min-height: 34px;
    padding: 0px;
  }

  .calendar-cell .day-number {
    font-size: 0.72rem;
  }

  .calendar-cell .status-indicator {
    font-size: 0.45rem;
    transform: scale(0.88);
  }
}



