:root {
  --blue-900: #1a2436;
  --blue-800: #2c3e50;
  --blue-700: #34495e;
  --blue-600: #4661c5; /* Starlitte Blue */
  --blue-500: #5d75d4;
  --blue-400: #7b90e3;
  --blue-300: #9badf2;
  --blue-200: #bccaff;
  --blue-100: #e0e7ff;
  
  --text: #555555;
  --heading: #1a2436;
  --muted: #888888;
  --bg: #fdfdfd;
  --white: #ffffff;
  
  --accent-700: #d01b44;
  --accent-600: #f03759; /* Starlitte Pink */
  --accent-500: #ff5c7c;
  
  --dark: #111418;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: .3s; }
a:hover { color: var(--blue-600); }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--blue-600) 0%, var(--blue-500) 100%);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  box-shadow: 0 10px 20px rgba(70, 97, 197, 0.3);
  border: none;
  cursor: pointer;
  transition: .3s;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(70, 97, 197, 0.4);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--heading);
  border: 2px solid #e0e0e0;
  box-shadow: none;
}
.btn-outline:hover {
  border-color: var(--blue-600);
  background: var(--blue-600);
  color: #fff;
}

/* Topbar */
.topbar {
  background: var(--blue-900);
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 44px;
}
.topbar .tb-right { display: flex; gap: 20px; }
.topbar span { display: flex; align-items: center; gap: 6px; }

/* Header */
header {
  position: sticky;
  top: 0;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  z-index: 100;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 24px;
  color: var(--blue-900);
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.brand .logo {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}

.logo-img {
  height: 70px;
  width: auto;
  max-width: 100%;
}

.menu { display: flex; align-items: center; gap: 30px; }
.menu a {
  color: var(--heading);
  font-weight: 600;
  font-size: 15px;
  position: relative;
}
.menu a.active, .menu a:hover { color: var(--blue-600); }
.menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue-600);
  transition: .3s;
}
.menu a.active::after, .menu a:hover::after { width: 100%; }

/* Hero */
.hero {
  position: relative;
  background: #f4f7fc;
  padding: 100px 0 160px; /* Extra padding bottom for overlap */
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: #fff;
  clip-path: ellipse(60% 80% at 50% 100%);
  display: none; /* Removed custom curve in favor of simple spacing */
}

/* Starlitte style hero overlay */
.hero-overlay {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 160px 0 200px;
  color: #fff;
}
.hero-overlay-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(11, 23, 59, 0.9) 0%, rgba(11, 23, 59, 0.6) 100%);
  z-index: 1;
}
.hero-overlay .container { position: relative; z-index: 2; }

.hero-title {
  font-size: 64px;
  line-height: 1.1;
  margin: 0 0 20px;
  color: var(--heading);
  font-weight: 800;
}
.hero-sub {
  font-size: 20px;
  color: var(--text);
  margin: 0 0 30px;
  max-width: 600px;
}
.hero-overlay .hero-title { color: #fff; }
.hero-overlay .hero-sub { color: rgba(255,255,255,0.9); }

.hero-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 30px; }
.hero-price .price { font-size: 48px; font-weight: 800; color: var(--accent-600); }
.hero-price .per { font-size: 16px; color: var(--muted); font-weight: 600; }
.hero-overlay .hero-price .price { color: #fff; }
.hero-overlay .hero-price .per { color: rgba(255,255,255,0.8); }

.cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  color: var(--heading);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  cursor: pointer;
  z-index: 10;
  transition: .3s;
}
.hero-nav:hover { background: var(--blue-600); color: #fff; }
.hero-prev { left: 40px; }
.hero-next { right: 40px; }
@media(max-width: 900px) { .hero-nav { display: none; } }

/* Features / Services - Overlapping */
.features {
  margin-top: -80px;
  position: relative;
  z-index: 20;
  padding-bottom: 80px;
}
.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  transition: .4s;
  border: 1px solid rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 4px; height: 0;
  background: var(--accent-600);
  transition: .4s;
}
.feature-card:hover { transform: translateY(-10px); }
.feature-card:hover::before { height: 100%; }

.fc-icon {
  width: 70px;
  height: 70px;
  background: #f4f7fc;
  border-radius: 50%;
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: .4s;
}
.feature-card:hover .fc-icon { background: var(--blue-600); color: #fff; }

.fc-title { font-size: 22px; font-weight: 700; color: var(--heading); margin-bottom: 12px; }
.fc-sep { width: 50px; height: 3px; background: #eee; margin-bottom: 16px; transition: .4s; }
.feature-card:hover .fc-sep { background: var(--accent-600); width: 80px; }
.fc-desc { font-size: 15px; color: var(--text); margin-bottom: 24px; }
.fc-link {
  font-weight: 700;
  color: var(--heading);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.fc-link span { color: var(--accent-600); font-size: 20px; transition: .3s; }
.fc-link:hover span { margin-left: 5px; }

/* Sections */
.section { padding: 100px 0; }
.section h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 20px;
  position: relative;
}

/* More Stream / Watch */
.more-stream { background: #fff; }
.ms-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.ms-sep-line {
  width: 60px;
  height: 5px;
  background: var(--accent-600);
  margin-bottom: 30px;
  border-radius: 3px;
}
.ms-text h2 { margin-bottom: 30px; }
.ms-text .desc { font-size: 17px; margin-bottom: 40px; color: var(--text); }

.ms-cta { display: flex; align-items: center; gap: 40px; }
.ms-btn {
  background: var(--accent-600);
  color: #fff;
  padding: 10px 10px 10px 30px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 10px 20px rgba(240, 55, 89, 0.3);
  transition: .3s;
}
.ms-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(240, 55, 89, 0.4); }
.ms-btn-icon {
  width: 44px;
  height: 44px;
  background: #fff;
  color: var(--accent-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.ms-phone-group { display: flex; align-items: center; gap: 16px; }
.ms-p-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(70, 97, 197, 0.1);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ms-p-text .label { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; }
.ms-p-text .value { font-size: 20px; font-weight: 800; color: var(--heading); }

.ms-art { border-radius: 20px; box-shadow: 0 20px 80px rgba(0,0,0,0.1); }
.photo-placeholder { height: 400px; background: #f0f2f5; border-radius: 20px; }


/* Plan Tabs */
.plan-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}
.plan-tab {
  padding: 12px 30px;
  border-radius: 50px;
  border: 2px solid var(--blue-600);
  background: transparent;
  color: var(--blue-600);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: .3s;
}
.plan-tab:hover {
  background: rgba(70, 97, 197, 0.1);
}
.plan-tab.active {
  background: var(--blue-600);
  color: #fff;
}

/* Pricing Card - Standardized Layout */
.pricing-card {
  background: #fff;
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: .3s;
  border: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,0.12); }

.pc-icon-wrapper {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  opacity: 0.1;
  color: #fff;
  pointer-events: none;
}
.pc-icon svg { width: 60px; height: 60px; }

.pc-header {
  background: var(--blue-900);
  padding: 40px 30px;
  text-align: center;
  color: #fff;
  position: relative;
}
.pricing-card[data-category="residential"] .pc-header { background: var(--blue-900); }
.pricing-card[data-category="business"] .pc-header { background: #111; }

.pc-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.1);
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  backdrop-filter: blur(5px);
}

.pc-price {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  line-height: 1;
  color: #fff;
  font-weight: 800;
  font-size: 56px;
  margin-bottom: 10px;
}
.pc-price .currency { font-size: 24px; margin-top: 6px; margin-right: 4px; font-weight: 600; opacity: 0.8; }
.pc-price .pc-per { font-size: 15px; color: rgba(255,255,255,0.6); font-weight: 500; align-self: flex-end; margin-bottom: 8px; margin-left: 4px; }

.pc-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-top: 10px;
  line-height: 1.5;
  padding: 0 10px;
}

.pc-sep { width: 40px; height: 4px; background: rgba(255,255,255,0.2); margin: 20px auto 0; border-radius: 2px; }

.pc-body { padding: 30px 30px 40px; flex: 1; display: flex; flex-direction: column; }
.pc-list { list-style: none; padding: 0; margin: 0 0 30px; flex: 1; }
.pc-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.4;
}
.pc-list li .check {
  color: var(--accent-600);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: rgba(240, 55, 89, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.pc-list li .check svg { width: 12px; height: 12px; stroke-width: 3; }

.pc-actions { margin-top: auto; }
.pc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px;
  background: var(--accent-600);
  color: #fff;
  font-weight: 700;
  border-radius: 12px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: .3s;
  box-shadow: 0 10px 20px rgba(240, 55, 89, 0.2);
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.pc-btn:hover {
  background: var(--accent-700);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(240, 55, 89, 0.3);
  color: #fff;
}
.pc-btn span { margin-right: 8px; }
.pc-btn-icon { background: rgba(255,255,255,0.2); border-radius: 50%; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; font-size: 16px; line-height: 1; }

.pricing-card.featured { border: 2px solid var(--blue-600); transform: scale(1.02); z-index: 2; }
.pricing-card.featured:hover { transform: scale(1.02) translateY(-5px); } 


/* Bundle */
.bundle { background: #f8faff; padding: 80px 0; }
.bundle-inner { text-align: center; max-width: 800px; margin: 0 auto; }
.bundle h2 { font-size: 36px; margin-bottom: 20px; }
.bundle-price { font-size: 24px; color: var(--blue-600); font-weight: 700; margin-bottom: 30px; }

/* Footer */
footer {
  background: var(--blue-900);
  color: #a0aec0;
  padding: 80px 0 40px;
  font-size: 15px;
}
footer a { color: #fff; opacity: 0.7; }
footer a:hover { opacity: 1; color: var(--accent-600); }
.footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 40px; }
@media(max-width: 900px) { .footer-grid { flex-direction: column; text-align: center; } }

/* Utils */
.grid { display: grid; gap: 30px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.pricing-grid { display: grid; gap: 30px; grid-template-columns: repeat(3, 1fr); }

@media(max-width: 1100px) { 
  .pricing-grid { grid-template-columns: repeat(2, 1fr); } 
}
@media(max-width: 900px) { 
  .grid-3 { grid-template-columns: repeat(2, 1fr); } 
}
@media(max-width: 600px) { 
  .grid-3 { grid-template-columns: 1fr; } 
  .pricing-grid { grid-template-columns: 1fr; }
}

/* Admin */
.admin-wrap { min-height: 100vh; display: flex; }
.admin-sidebar { width: 260px; background: var(--blue-900); color: #fff; padding: 30px; }
.admin-sidebar a { display: block; padding: 12px 0; color: rgba(255,255,255,0.7); font-weight: 500; }
.admin-sidebar a:hover { color: #fff; }
.admin-content { flex: 1; padding: 40px; background: #f4f7fc; }

.login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: #f4f7fc; }
.login-card { background: #fff; padding: 40px; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.05); width: 100%; max-width: 400px; }

/* Features Accordion */
.features-accordion { background: #fff; padding: 100px 0; }
.fa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media(max-width:900px){ .fa-grid{ grid-template-columns: 1fr; } }

.accordion { display: flex; flex-direction: column; gap: 20px; }
.acc-item {
  background: #fff;
  border: 1px solid transparent;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border-radius: 50px; /* Pill shape */
  overflow: hidden;
  transition: .3s;
}
.acc-item.open {
  box-shadow: 0 10px 30px rgba(70, 97, 197, 0.15);
}
.acc-head {
  padding: 15px 20px 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.acc-title { font-size: 16px; font-weight: 700; color: var(--heading); }
.acc-icon { 
  font-size: 18px; 
  font-weight: 700; 
  color: var(--heading); 
  width: 36px; 
  height: 36px; 
  background: #f4f7fc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}
.acc-item:hover .acc-icon { background: var(--blue-600); color: #fff; }
.acc-item.open .acc-title { color: var(--blue-600); }
.acc-item.open .acc-icon { background: var(--blue-600); color: #fff; }

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 30px;
}
.acc-item.open .acc-body {
  padding-bottom: 24px;
}
.acc-body p { margin: 0; color: var(--text); line-height: 1.6; }

/* Admin Global & Login */
.card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  margin-bottom: 30px;
}

.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table th, .table td { padding: 16px; text-align: left; border-bottom: 1px solid #eee; }
.table th { font-weight: 700; color: var(--heading); text-transform: uppercase; font-size: 12px; letter-spacing: 0.5px; }
.table td { color: var(--text); }
.table tr:last-child td { border-bottom: none; }

.alert { padding: 16px; border-radius: 12px; margin-bottom: 24px; font-weight: 500; font-size: 14px; display: flex; align-items: center; gap: 10px; }
.alert.success { background: #e0f7ea; color: #00695c; border: 1px solid #b9f6ca; }
.alert.error { background: #ffebee; color: #c62828; border: 1px solid #ffcdd2; }

/* Form Styles */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-row.single { grid-template-columns: 1fr; }
@media(max-width: 768px) { .form-row { grid-template-columns: 1fr; } }

.form-row label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 14px 20px;
  border-radius: 50px;
  border: 1px solid #e2e8f0;
  font-family: inherit;
  font-size: 14px;
  transition: .3s;
  background: #f8faff;
  color: var(--heading);
}
.form-row textarea { border-radius: 20px; resize: vertical; min-height: 120px; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--blue-600);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(70, 97, 197, 0.1);
}

/* Login Page Specific */
.login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-900) 0%, #111 100%);
  padding: 20px;
}
.login-card {
  background: #fff;
  padding: 50px 40px;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  width: 100%;
  max-width: 420px;
  text-align: center;
}

.login-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  font-size: 18px;
  font-weight: 700;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.login-brand .logo {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(70, 97, 197, 0.3);
}

.login-card .btn {
  width: 100%;
  margin-top: 10px;
  padding: 16px;
  font-size: 15px;
}

.login-meta { margin-top: 30px; font-size: 13px; color: var(--muted); }
.login-meta a { font-weight: 600; }
.login-meta a:hover { color: var(--blue-600); text-decoration: underline; }

/* Location Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 23, 59, 0.8);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}
.modal-overlay.active { opacity: 1; visibility: visible; }

.modal-box {
  background: #fff;
  width: 90%;
  max-width: 500px;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  position: relative;
  transform: translateY(20px);
  transition: .3s;
}
.modal-overlay.active .modal-box { transform: translateY(0); }

.modal-header { text-align: center; margin-bottom: 30px; }
.modal-title { font-size: 24px; font-weight: 800; color: var(--heading); margin-bottom: 10px; }
.modal-desc { font-size: 15px; color: var(--text); }

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f4f7fc;
  color: var(--heading);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .3s;
  font-size: 20px;
}
.modal-close:hover { background: var(--accent-600); color: #fff; }

.location-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--heading);
  background: #f4f7fc;
  padding: 8px 16px;
  border-radius: 50px;
  transition: .3s;
}
.location-btn:hover { background: var(--blue-600); color: #fff; }
.location-btn svg { width: 18px; height: 18px; }


.admin-sidebar a.active { color: #fff; font-weight: 700; border-right: 3px solid var(--blue-500); }

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 100%);
  padding: 80px 0;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header h1 {
  font-size: 42px;
  font-weight: 800;
  margin: 0 0 10px;
}
.page-header .breadcrumbs {
  font-size: 14px;
  opacity: 0.8;
}
.page-header .breadcrumbs a { color: #fff; }

/* Contact Info Cards */
.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: -50px;
  position: relative;
  z-index: 10;
  margin-bottom: 80px;
}
.info-card {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  text-align: center;
  transition: .3s;
}
.info-card:hover { transform: translateY(-10px); }
.info-card .icon-box {
  width: 70px;
  height: 70px;
  background: var(--blue-100);
  color: var(--blue-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}
.info-card h3 { font-size: 20px; margin: 0 0 15px; color: var(--heading); }
.info-card p { color: var(--text); margin: 0; line-height: 1.6; }

/* Contact Form Section */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.contact-content h2 { font-size: 36px; margin-bottom: 20px; color: var(--heading); }
.contact-content p { margin-bottom: 30px; }

.contact-form-box {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.05);
  border: 1px solid #eee;
}
.contact-map {
  height: 100%;
  min-height: 400px;
  background: #eee;
  border-radius: 12px;
  overflow: hidden;
}


/* About Page Specifics */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.about-price-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: #fff;
  padding: 20px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
}
.apb-title { font-size: 13px; text-transform: uppercase; font-weight: 700; color: var(--muted); margin-bottom: 4px; }
.apb-price { font-size: 24px; font-weight: 800; color: var(--blue-600); }

.about-tabs { margin-top: 30px; }
.tab-nav { display: flex; gap: 10px; border-bottom: 2px solid #eee; margin-bottom: 20px; }
.tab-btn {
  background: none;
  border: none;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  position: relative;
  transition: .3s;
}
.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue-600);
  transition: .3s;
}
.tab-btn.active { color: var(--blue-600); }
.tab-btn.active::after { width: 100%; }

.tab-pane { display: none; animation: fadeIn .5s; }
.tab-pane.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.about-offerings { background: #f8faff; }
.offering-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: .3s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.offering-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
.oc-num {
  font-size: 80px;
  font-weight: 900;
  color: #f0f2f5;
  position: absolute;
  top: -20px;
  right: -20px;
  line-height: 1;
}
.oc-content { position: relative; z-index: 2; }
.oc-title { font-size: 20px; font-weight: 700; color: var(--heading); margin-bottom: 15px; }

/* Admin Dashboard Enhancements */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
.stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}
.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
}
.stat-info h3 {
  font-size: 14px;
  color: #64748b;
  margin: 0 0 5px 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stat-info .value {
  font-size: 28px;
  font-weight: 800;
  color: #1e293b;
  line-height: 1;
}

/* Colors for stat icons */
.bg-blue { background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3); }
.bg-green { background: linear-gradient(135deg, #10b981 0%, #059669 100%); box-shadow: 0 4px 10px rgba(5, 150, 105, 0.3); }
.bg-purple { background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%); box-shadow: 0 4px 10px rgba(124, 58, 237, 0.3); }
.bg-orange { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); box-shadow: 0 4px 10px rgba(217, 119, 6, 0.3); }
.bg-cyan { background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%); box-shadow: 0 4px 10px rgba(8, 145, 178, 0.3); }

/* Quick Actions Section */
.quick-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.action-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.action-card:hover {
  border-color: #3b82f6;
  background: #eff6ff;
  transform: translateY(-3px);
}
.action-icon {
  width: 48px;
  height: 48px;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  transition: all 0.3s ease;
}
.action-card:hover .action-icon {
  background: #3b82f6;
  color: #fff;
}
.action-text {
  font-weight: 600;
  color: #334155;
}

/* Recent Activity Table */
.dashboard-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}
.dashboard-table th {
  text-align: left;
  padding: 12px 15px;
  color: #64748b;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid #e2e8f0;
}
.dashboard-table td {
  padding: 15px;
  border-bottom: 1px solid #f1f5f9;
  color: #334155;
  font-size: 14px;
}
.dashboard-table tr:last-child td { border-bottom: none; }
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 6px;
}
.dot-success { background-color: #10b981; }
.dot-warning { background-color: #f59e0b; }


/* Apps Section */
.apps-section { background: #f8faff; padding: 100px 0; }
.apps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 50px; }
@media(max-width: 900px) { .apps-grid { grid-template-columns: 1fr; } }

.app-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: .4s;
  border: 1px solid rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
}
.app-card:hover { transform: translateY(-10px); box-shadow: 0 30px 80px rgba(0,0,0,0.1); }

.app-icon-wrapper {
  width: 100px;
  height: 100px;
  background: var(--blue-100);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--blue-600);
  font-size: 40px;
  box-shadow: 0 10px 30px rgba(70, 97, 197, 0.2);
}

.app-title { font-size: 24px; font-weight: 800; color: var(--heading); margin-bottom: 10px; }
.app-desc { font-size: 15px; color: var(--text); margin-bottom: 30px; max-width: 400px; }

.app-buttons { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; }

.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1a1a1a;
  color: #fff;
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: .3s;
  font-size: 13px;
  text-align: left;
  min-width: 160px;
}
.store-btn:hover { background: #333; transform: translateY(-2px); color: #fff; }
.store-btn svg { width: 24px; height: 24px; flex-shrink: 0; }
.store-btn-content { display: flex; flex-direction: column; line-height: 1.2; }
.store-btn-sub { font-size: 10px; text-transform: uppercase; opacity: 0.8; }
.store-btn-title { font-size: 14px; font-weight: 700; }

.store-btn.web { background: var(--blue-600); }
.store-btn.web:hover { background: var(--blue-500); }
.store-btn.apk { background: #2ecc71; }
.store-btn.apk:hover { background: #27ae60; }