/* ============================================================
   Event Decoration Website - Custom Styles
   ============================================================ */

:root {
  --primary: #e91e63;
  --primary-dark: #c2185b;
  --secondary: #ff9800;
  --accent: #6a1b9a;
  --dark: #2c2c54;
  --light: #fff5f7;
  --text: #2d2d2d;
  --muted: #6c757d;
  --gradient: linear-gradient(135deg, #e91e63 0%, #ff9800 100%);
}

* { box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--dark);
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

/* Top bar */
.top-bar {
  background: var(--dark);
  color: #fff;
  padding: 8px 0;
  font-size: 13px;
}
.top-bar i { color: var(--secondary); margin-right: 4px; }

/* Navbar */
.navbar { padding: 12px 0; }
.navbar-brand { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 1.4rem; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gradient); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.brand-text { color: var(--dark); font-family: 'Playfair Display', serif; }
.navbar-nav .nav-link {
  font-weight: 500; color: var(--text); margin: 0 6px;
  padding: 8px 14px !important; border-radius: 6px;
  transition: all 0.25s;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
  color: var(--primary); background: var(--light);
}
.btn-primary-custom {
  background: var(--gradient); color: #fff !important;
  border: none; padding: 10px 24px; border-radius: 50px;
  font-weight: 600; transition: all 0.3s;
}
.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(233, 30, 99, 0.4);
  color: #fff;
}
.btn-outline-custom {
  border: 2px solid #fff; color: #fff; background: transparent;
  padding: 10px 24px; border-radius: 50px; font-weight: 600;
  transition: all 0.3s;
}
.btn-outline-custom:hover { background: #fff; color: var(--primary); }

/* Services dropdown — open on hover (desktop), tap (mobile fallback) */
@media (min-width: 992px) {
  .nav-services-dropdown:hover > .dropdown-menu { display: block; margin-top: 0; }
  .nav-services-dropdown { position: relative; }
}
.nav-services-dropdown .dropdown-menu {
  border: 0; border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  padding: 8px 0; min-width: 240px;
}
.nav-services-dropdown .dropdown-item {
  padding: 8px 18px; transition: all 0.2s; font-weight: 500;
}
.nav-services-dropdown .dropdown-item:hover {
  background: var(--light); color: var(--primary); padding-left: 22px;
}

/* Logo (image variant) */
.site-logo { max-height: 50px; width: auto; display: inline-block; }
.footer-brand .site-logo { max-height: 60px; filter: brightness(1.05); }
.footer-brand .brand-text { color: #fff; }

/* Sticky header tweak */
.navbar.sticky-top { transition: box-shadow 0.3s, padding 0.3s; }
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); padding: 8px 0; }

/* ============================================================
   Swiper hero slider
   ============================================================ */
.hero-slider-wrap { position: relative; }
.hero-swiper { height: 600px; }
.hero-slide {
  background-size: cover; background-position: center;
  position: relative;
  display: flex; align-items: center;
  color: #fff;
}
.hero-slide .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(rgba(44,44,84,0.55), rgba(106,27,154,0.55));
}
.hero-slide .hero-content {
  position: relative; z-index: 2; text-align: center; max-width: 850px; margin: 0 auto;
}
.hero-slide h1 {
  color: #fff; font-size: 3.4rem; margin-bottom: 18px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.hero-slide p { font-size: 1.2rem; max-width: 720px; margin: 0 auto 24px; opacity: 0.95; }
.swiper-button-next, .swiper-button-prev {
  color: #fff; background: rgba(255,255,255,0.15); width: 50px; height: 50px;
  border-radius: 50%; backdrop-filter: blur(6px); transition: all 0.3s;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
  background: var(--gradient);
}
.swiper-button-next::after, .swiper-button-prev::after { font-size: 18px; font-weight: bold; }
.swiper-pagination-bullet { background: #fff; opacity: 0.6; width: 12px; height: 12px; }
.swiper-pagination-bullet-active { background: var(--secondary); opacity: 1; transform: scale(1.2); }
@media (max-width: 768px) {
  .hero-swiper { height: 460px; }
  .hero-slide h1 { font-size: 2rem; }
  .hero-slide p { font-size: 1rem; }
  .swiper-button-next, .swiper-button-prev { width: 38px; height: 38px; }
}

/* ============================================================
   Service card with image variant
   ============================================================ */
.service-card-img .service-thumb {
  height: 160px; width: 100%; border-radius: 12px; overflow: hidden; margin-bottom: 18px;
}
.service-card-img .service-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.service-card-img:hover .service-thumb img { transform: scale(1.08); }

/* ============================================================
   Core Values cards
   ============================================================ */
.value-card {
  background: #fff; border-radius: 16px; padding: 30px 25px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  height: 100%; transition: all 0.35s; border: 1px solid #f0f0f0;
  position: relative; overflow: hidden;
}
.value-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--gradient); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
}
.value-card:hover { transform: translateY(-6px); box-shadow: 0 14px 35px rgba(233,30,99,0.15); }
.value-card:hover::before { transform: scaleX(1); }
.value-icon {
  width: 64px; height: 64px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(233,30,99,0.12), rgba(255,152,0,0.12));
  color: var(--primary); display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin-bottom: 18px;
  transition: all 0.3s;
}
.value-card:hover .value-icon { background: var(--gradient); color: #fff; }
.value-card h4 { margin-bottom: 10px; }
.value-card p { color: var(--muted); margin: 0; }

/* ============================================================
   Client logos (Owl)
   ============================================================ */
.section-clients { padding: 60px 0; }
.client-logos .client-logo-item {
  display: flex; align-items: center; justify-content: center;
  height: 90px; padding: 10px;
}
.client-logos .client-logo-item img {
  max-height: 60px; max-width: 100%; width: auto;
  filter: grayscale(100%); opacity: 0.6;
  transition: all 0.4s;
}
.client-logos .client-logo-item:hover img {
  filter: grayscale(0); opacity: 1; transform: scale(1.05);
}

/* ============================================================
   Service detail page
   ============================================================ */
.service-banner {
  position: relative; min-height: 380px; padding: 80px 0;
  background-size: cover; background-position: center;
  display: flex; align-items: center; color: #fff; text-align: center;
}
.service-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(rgba(44,44,84,0.75), rgba(106,27,154,0.75));
}
.service-banner-content { position: relative; z-index: 2; }
.service-banner h1 { color: #fff; font-size: 3rem; }
.service-banner .lead { opacity: 0.95; max-width: 700px; margin: 0 auto 20px; }
@media (max-width: 768px) {
  .service-banner { min-height: 280px; padding: 60px 0; }
  .service-banner h1 { font-size: 2rem; }
}

.service-description { font-size: 1.05rem; line-height: 1.85; color: #444; }

.cta-card {
  background: var(--light); border-radius: 16px;
  padding: 30px; border-left: 6px solid var(--primary);
}

.sidebar-card {
  background: #fff; border-radius: 14px; padding: 24px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.05);
}
.sidebar-card h5 {
  border-bottom: 2px solid var(--primary);
  padding-bottom: 10px; margin-bottom: 14px;
  display: inline-block;
}
.other-services { list-style: none; padding: 0; margin: 0; }
.other-services li { border-bottom: 1px solid #f1f1f1; }
.other-services li:last-child { border-bottom: 0; }
.other-services a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 6px; color: #444; transition: all 0.2s;
}
.other-services a i:first-child { color: var(--primary); width: 24px; }
.other-services a:hover { color: var(--primary); padding-left: 12px; }
.other-services a .bi-arrow-right { margin-left: auto !important; opacity: 0; transition: opacity 0.2s; }
.other-services a:hover .bi-arrow-right { opacity: 1; }

.sidebar-cta { background: var(--gradient); color: #fff; }
.sidebar-cta h5 { border-color: rgba(255,255,255,0.5); color: #fff; }

/* ============================================================
   About page — Mission/Vision cards, founder, why-us
   ============================================================ */
.mv-card {
  background: #fff; border-radius: 16px; padding: 35px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.05); height: 100%;
  border-top: 4px solid var(--primary);
}
.mv-icon {
  width: 64px; height: 64px; border-radius: 14px;
  background: var(--gradient); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin-bottom: 20px;
}

.founder-image-wrap {
  display: inline-block; padding: 8px;
  background: var(--gradient); border-radius: 18px;
}
.founder-image {
  width: 320px; max-width: 100%; height: 380px; object-fit: cover;
  border-radius: 14px; display: block;
}
.founder-quote {
  border-left: 4px solid var(--primary);
  background: var(--light); padding: 18px 22px;
  border-radius: 0 12px 12px 0; margin: 18px 0;
  font-style: italic; color: var(--dark);
}
.founder-quote .bi-quote { color: var(--primary); font-size: 1.6rem; }

.why-card {
  background: #fff; border-radius: 14px; padding: 28px 25px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.05); height: 100%;
  position: relative; overflow: hidden;
  transition: all 0.3s;
}
.why-card:hover { transform: translateY(-5px); box-shadow: 0 14px 32px rgba(0,0,0,0.12); }
.why-num {
  position: absolute; right: -10px; top: -20px;
  font-size: 5rem; font-weight: 900; color: rgba(233,30,99,0.08);
  font-family: 'Playfair Display', serif;
}
.why-card h5 { margin-bottom: 8px; position: relative; z-index: 1; }

/* ============================================================
   Clients page grid
   ============================================================ */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 18px;
}
.clients-grid-item {
  background: #fff; border: 1px solid #f0f0f0;
  border-radius: 12px; padding: 25px;
  display: flex; align-items: center; justify-content: center;
  height: 130px; transition: all 0.3s;
}
.clients-grid-item:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 22px rgba(233,30,99,0.15);
  transform: translateY(-3px);
}
.clients-grid-item img {
  max-width: 100%; max-height: 70px;
  filter: grayscale(100%); opacity: 0.65;
  transition: all 0.3s;
}
.clients-grid-item:hover img { filter: grayscale(0); opacity: 1; }

/* Testimonial slide ergonomics inside Swiper */
.testimonial-swiper { padding-bottom: 50px; }
.testimonial-swiper .testimonial-card { height: 100%; }

/* Service card link variant */
a.service-card { display: block; }
a.service-card:hover { color: inherit !important; }

/* ============================================================
   Video cards & video banner
   ============================================================ */
.video-card {
  background: #fff; border-radius: 14px; overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  cursor: pointer; transition: all 0.3s; height: 100%;
}
.video-card:hover { transform: translateY(-5px); box-shadow: 0 14px 32px rgba(0,0,0,0.15); }
.video-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #000; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.video-card:hover .video-thumb img { transform: scale(1.05); }
.video-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70px; height: 70px; border-radius: 50%;
  background: rgba(255,255,255,0.95); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.video-card:hover .video-play {
  background: var(--gradient); color: #fff; transform: translate(-50%, -50%) scale(1.1);
}
.video-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--secondary); color: #fff;
  padding: 4px 12px; border-radius: 20px;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
}
.video-meta { padding: 18px 20px; }

/* Homepage video banner — autoplay */
.video-banner {
  position: relative;
  padding: 0;
  background: #000;
}
.video-banner-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  max-height: 70vh;
}
.video-banner-inner iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0;
}
.video-banner-caption {
  position: absolute; bottom: 30px; left: 0; right: 0;
  text-align: center; color: #fff; z-index: 2;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  padding: 60px 20px 25px;
  pointer-events: none;
}
.video-banner-caption h3 {
  color: #fff; margin: 0; font-size: 1.6rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
.video-banner-caption p { margin: 6px 0 0; opacity: 0.9; }
@media (max-width: 768px) {
  .video-banner-caption h3 { font-size: 1.2rem; }
  .video-banner-caption p { font-size: 0.9rem; }
}

/* Map embed */
.map-embed {
  width: 100%; height: 360px; border: 0; border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

/* Hero */
.hero {
  background: linear-gradient(rgba(44, 44, 84, 0.7), rgba(106, 27, 154, 0.7)),
              url('https://images.unsplash.com/photo-1530103862676-de8c9debad1d?auto=format&fit=crop&w=1600&q=70') center/cover;
  color: #fff;
  padding: 120px 0;
  text-align: center;
}
.hero h1 {
  color: #fff; font-size: 3.5rem; margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 30px; opacity: 0.95; }
.hero .btn-group-hero { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 768px) {
  .hero { padding: 80px 0; }
  .hero h1 { font-size: 2.2rem; }
}

/* Section base */
.section { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 2.5rem; position: relative; display: inline-block; }
.section-title h2::after {
  content: ''; display: block; width: 60px; height: 4px;
  background: var(--gradient); margin: 12px auto 0; border-radius: 2px;
}
.section-title p { color: var(--muted); font-size: 1.05rem; }
.section-light { background: var(--light); }

/* Service cards */
.service-card {
  background: #fff; border-radius: 16px; padding: 35px 25px;
  text-align: center; box-shadow: 0 5px 25px rgba(0,0,0,0.06);
  transition: all 0.35s; height: 100%; border: 1px solid #f1f1f1;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(233, 30, 99, 0.18);
  border-color: var(--primary);
}
.service-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--gradient); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin: 0 auto 20px;
}
.service-card h4 { margin-bottom: 12px; }
.service-card p { color: var(--muted); font-size: 0.95rem; }

/* Packages */
.package-card {
  background: #fff; border-radius: 18px; overflow: hidden;
  box-shadow: 0 6px 30px rgba(0,0,0,0.07);
  transition: all 0.3s; border: 2px solid transparent;
  height: 100%; display: flex; flex-direction: column;
}
.package-card:hover { transform: translateY(-6px); }
.package-card.featured { border-color: var(--primary); transform: scale(1.03); }
.package-header {
  background: var(--gradient); color: #fff;
  padding: 30px 20px; text-align: center;
}
.package-card.featured .package-header::before {
  content: 'POPULAR'; position: absolute;
  top: 14px; right: -34px; background: var(--secondary);
  color: #fff; padding: 4px 40px; font-size: 11px;
  font-weight: 700; transform: rotate(35deg);
}
.package-header { position: relative; overflow: hidden; }
.package-header h4 { color: #fff; margin-bottom: 8px; }
.package-price { font-size: 2.4rem; font-weight: 800; }
.package-price small { font-size: 1rem; opacity: 0.85; }
.package-body { padding: 25px; flex-grow: 1; }
.package-body ul { list-style: none; padding: 0; margin: 0 0 20px; }
.package-body ul li { padding: 8px 0; border-bottom: 1px dashed #eee; color: var(--muted); }
.package-body ul li i { color: var(--primary); margin-right: 8px; }
.package-footer { padding: 0 25px 25px; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative; border-radius: 12px; overflow: hidden;
  aspect-ratio: 1/1; cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 15px;
  color: #fff;
}
.gallery-item:hover .overlay { opacity: 1; }

/* Testimonials */
.testimonial-card {
  background: #fff; padding: 30px; border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  height: 100%;
}
.testimonial-card .quote { color: var(--primary); font-size: 1.8rem; }
.testimonial-card .stars { color: var(--secondary); margin-bottom: 10px; }
.testimonial-card p { color: var(--muted); font-style: italic; }
.testimonial-card .author {
  font-weight: 600; color: var(--dark); margin-top: 12px;
}

/* Contact */
.contact-form {
  background: #fff; padding: 35px; border-radius: 16px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.08);
}
.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid #eee; padding: 12px 15px;
  border-radius: 10px; transition: border-color 0.2s;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary); box-shadow: none;
}
.contact-info {
  background: var(--gradient); color: #fff;
  padding: 35px; border-radius: 16px;
}
.contact-info h4 { color: #fff; }
.contact-info-item {
  display: flex; gap: 15px; margin-bottom: 20px; align-items: flex-start;
}
.contact-info-item i {
  background: rgba(255,255,255,0.2); width: 42px; height: 42px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Stats */
.stats-row { background: var(--gradient); color: #fff; padding: 50px 0; }
.stat-item { text-align: center; }
.stat-item h3 { color: #fff; font-size: 2.8rem; margin-bottom: 5px; }
.stat-item p { opacity: 0.9; margin: 0; }

/* Page header */
.page-header {
  background: linear-gradient(rgba(44, 44, 84, 0.85), rgba(106, 27, 154, 0.85)),
              url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=1600&q=70') center/cover;
  color: #fff; padding: 80px 0; text-align: center;
}
.page-header h1 { color: #fff; }
.page-header .breadcrumb { justify-content: center; background: transparent; }
.page-header .breadcrumb a { color: #ffd0e0; }
.page-header .breadcrumb-item.active { color: #fff; }

/* Footer */
.site-footer {
  background: var(--dark); color: #cfcfdf; padding: 60px 0 25px;
}
.site-footer h5, .site-footer h6 { color: #fff; margin-bottom: 18px; }
.footer-brand i { color: var(--secondary); }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #cfcfdf; transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.text-muted-light { color: #aaaabb; }
.social-icons a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: #fff;
  margin-right: 8px; transition: all 0.3s;
}
.social-icons a:hover { background: var(--gradient); transform: translateY(-3px); }
.footer-divider { border-color: rgba(255,255,255,0.1); margin: 30px 0 20px; }

/* WhatsApp float */
.whatsapp-float {
  position: fixed; bottom: 30px; right: 30px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: #fff !important;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  animation: pulse 2s infinite;
}
.whatsapp-float:hover { background: #1ebe57; color: #fff; transform: scale(1.08); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* CTA */
.cta-section {
  background: var(--gradient); color: #fff; padding: 60px 0; text-align: center;
}
.cta-section h2 { color: #fff; }

/* Admin styles */
.admin-wrap { display: flex; min-height: 100vh; background: #f4f6fa; }
.admin-sidebar {
  width: 240px; background: var(--dark); color: #fff;
  padding: 20px 0; flex-shrink: 0;
}
.admin-sidebar .brand {
  padding: 0 20px 20px; border-bottom: 1px solid rgba(255,255,255,0.1);
  font-family: 'Playfair Display', serif; font-size: 1.3rem;
}
.admin-sidebar a {
  display: flex; align-items: center; gap: 12px;
  color: #cfcfdf; padding: 12px 20px; transition: all 0.2s;
}
.admin-sidebar a:hover, .admin-sidebar a.active {
  background: rgba(255,255,255,0.06); color: #fff;
  border-left: 3px solid var(--secondary);
}
.admin-main { flex: 1; display: flex; flex-direction: column; }
.admin-topbar {
  background: #fff; padding: 15px 25px;
  display: flex; justify-content: space-between; align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.admin-content { padding: 25px; flex: 1; }
.stat-card {
  background: #fff; border-radius: 12px; padding: 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  display: flex; align-items: center; gap: 15px;
}
.stat-card .icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: var(--gradient); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.stat-card h3 { margin: 0; font-family: 'Poppins', sans-serif; font-size: 1.8rem; }
.stat-card p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.admin-card {
  background: #fff; border-radius: 12px; padding: 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04); margin-bottom: 25px;
}

.login-wrap {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--gradient); padding: 20px;
}
.login-card {
  background: #fff; padding: 40px; border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  width: 100%; max-width: 420px;
}
.login-card h2 { text-align: center; margin-bottom: 8px; }
.login-card .subtitle { text-align: center; color: var(--muted); margin-bottom: 25px; }

@media (max-width: 768px) {
  .admin-sidebar { width: 70px; }
  .admin-sidebar .brand span,
  .admin-sidebar a span { display: none; }
  .package-card.featured { transform: none; }
}
