* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #f8fafc;
  color: #111827;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

/* =====================================================
   NAVBAR START
===================================================== */
.omnigate-navbar {
  padding: 8px 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  transition: all 0.3s ease;
  z-index: 999;
}
.omnigate-navbar.navbar-scrolled {
  padding: 5px 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.1);
}
.omnigate-navbar.navbar-scrolled .navbar-logo {
  height: 58px;
}
.omnigate-navbar {
  /* =========================
     LOGO
  ========================= */
}
.omnigate-navbar .navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
  margin-right: 18px;
}
.omnigate-navbar .navbar-logo {
  height: 70px;
  width: auto;
  display: block;
  transition: all 0.3s ease;
}
.omnigate-navbar {
  /* =========================
     MENU
  ========================= */
}
.omnigate-navbar .navbar-collapse {
  justify-content: flex-start;
}
.omnigate-navbar .navbar-nav {
  gap: 4px;
  margin-left: 8px;
}
.omnigate-navbar .navbar-nav .nav-link {
  color: #111827;
  font-size: 15px;
  font-weight: 700;
  padding: 10px 11px;
  position: relative;
  transition: all 0.3s ease;
}
.omnigate-navbar .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 4px;
  height: 2px;
  border-radius: 20px;
  background: #f97316;
  transform: scaleX(0);
  transform-origin: center;
  transition: all 0.3s ease;
}
.omnigate-navbar .navbar-nav .nav-link:hover, .omnigate-navbar .navbar-nav .nav-link.active {
  color: #f97316;
}
.omnigate-navbar .navbar-nav .nav-link:hover::after, .omnigate-navbar .navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}
.omnigate-navbar {
  /* =========================
     BUTTONS
  ========================= */
}
.omnigate-navbar .navbar-actions .btn {
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  padding: 10px 18px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.omnigate-navbar .navbar-actions .btn-admin-login {
  color: #111827;
  border: 1px solid rgba(17, 24, 39, 0.18);
  background: #ffffff;
}
.omnigate-navbar .navbar-actions .btn-admin-login:hover {
  background: #111827;
  color: #ffffff;
  transform: translateY(-2px);
}
.omnigate-navbar .navbar-actions .btn-register {
  color: #ffffff;
  border: 1px solid transparent;
  background: linear-gradient(135deg, #f97316, #fb923c);
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.28);
}
.omnigate-navbar .navbar-actions .btn-register:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.38);
}
.omnigate-navbar {
  /* =========================
     MOBILE TOGGLE
  ========================= */
}
.omnigate-navbar .navbar-toggler-icon-custom {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #111827;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

/* =====================================================
   NAVBAR RESPONSIVE
===================================================== */
@media (max-width: 1199px) {
  .omnigate-navbar .navbar-logo {
    height: 60px;
  }
  .omnigate-navbar.navbar-scrolled .navbar-logo {
    height: 54px;
  }
  .omnigate-navbar .navbar-nav .nav-link {
    font-size: 14px;
    padding: 10px 8px;
  }
  .omnigate-navbar .navbar-actions .btn {
    padding: 9px 14px;
  }
}
@media (max-width: 991px) {
  .omnigate-navbar {
    padding: 8px 0;
  }
  .omnigate-navbar .navbar-logo {
    height: 56px;
  }
  .omnigate-navbar.navbar-scrolled .navbar-logo {
    height: 52px;
  }
  .omnigate-navbar .navbar-collapse {
    margin-top: 14px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid #e5e7eb;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  }
  .omnigate-navbar .navbar-nav {
    align-items: flex-start !important;
    gap: 2px;
    margin-left: 0;
  }
  .omnigate-navbar .navbar-nav .nav-item {
    width: 100%;
  }
  .omnigate-navbar .navbar-nav .nav-link {
    width: 100%;
    padding: 12px 4px;
    color: #111827;
  }
  .omnigate-navbar .navbar-nav .nav-link::after {
    display: none;
  }
  .omnigate-navbar .navbar-nav .nav-link:hover, .omnigate-navbar .navbar-nav .nav-link.active {
    color: #f97316;
  }
  .omnigate-navbar .navbar-actions {
    width: 100%;
    margin-top: 14px;
    flex-direction: column;
  }
  .omnigate-navbar .navbar-actions .btn {
    width: 100%;
    padding: 12px 18px;
  }
}
@media (max-width: 575px) {
  .omnigate-navbar .navbar-logo {
    height: 50px;
  }
  .omnigate-navbar.navbar-scrolled .navbar-logo {
    height: 48px;
  }
}
/* =====================================================
   NAVBAR END
===================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 30px;
  background: radial-gradient(circle at 15% 20%, rgba(249, 115, 22, 0.28), transparent 28%), radial-gradient(circle at 85% 25%, rgba(37, 99, 235, 0.35), transparent 30%), linear-gradient(135deg, #111827 0%, #172554 58%, #1e3a8a 100%);
  color: #ffffff;
  overflow: hidden;
}
.hero-section .hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
  opacity: 0.45;
  animation: floatShape 7s ease-in-out infinite;
}
.hero-section .hero-shape-1 {
  width: 180px;
  height: 180px;
  background: rgba(249, 115, 22, 0.35);
  left: -60px;
  top: 160px;
}
.hero-section .hero-shape-2 {
  width: 240px;
  height: 240px;
  background: rgba(37, 99, 235, 0.32);
  right: -80px;
  bottom: 90px;
  animation-delay: 1.5s;
}

.hero-content {
  position: relative;
  z-index: 2;
}
.hero-content .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 22px;
}
.hero-content .hero-badge i {
  color: #f97316;
  font-size: 18px;
}
.hero-content h1 {
  font-size: 58px;
  line-height: 1.08;
  font-weight: 800;
  margin-bottom: 22px;
  letter-spacing: -1px;
}
.hero-content p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
  max-width: 570px;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}
.hero-buttons .btn {
  border-radius: 14px;
  padding: 14px 24px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.hero-buttons .btn-hero-primary {
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.35);
}
.hero-buttons .btn-hero-primary i {
  margin-left: 7px;
}
.hero-buttons .btn-hero-primary:hover {
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(249, 115, 22, 0.45);
}
.hero-buttons .btn-hero-outline {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.hero-buttons .btn-hero-outline:hover {
  background: #ffffff;
  color: #111827;
  transform: translateY(-3px);
}

.hero-mini-stats {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
.hero-mini-stats div strong {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
}
.hero-mini-stats div span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 500;
}

.hero-visual {
  position: relative;
  z-index: 2;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-card {
  width: 100%;
  max-width: 520px;
  padding: 24px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  animation: floatCard 5s ease-in-out infinite;
}

.dashboard-top {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}
.dashboard-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}
.dashboard-top span:first-child {
  background: #f97316;
}
.dashboard-top span:nth-child(2) {
  background: #facc15;
}
.dashboard-top span:nth-child(3) {
  background: #22c55e;
}

.dashboard-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.dashboard-title h5 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
}
.dashboard-title p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}
.dashboard-title i {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f97316, #2563eb);
  font-size: 28px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.dashboard-grid .dash-box {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.dashboard-grid .dash-box i {
  font-size: 26px;
  color: #fb923c;
}
.dashboard-grid .dash-box h6 {
  margin: 12px 0 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 600;
}
.dashboard-grid .dash-box strong {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
}

.mobile-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 18px;
  background: #ffffff;
  color: #111827;
  font-weight: 800;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
  animation: floatCard 4s ease-in-out infinite;
}
.mobile-card i {
  color: #f97316;
  font-size: 24px;
}

.mobile-card-1 {
  left: 8px;
  top: 110px;
}

.mobile-card-2 {
  right: 4px;
  bottom: 110px;
  animation-delay: 1s;
}
.mobile-card-2 i {
  color: #2563eb;
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@keyframes floatShape {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-24px) scale(1.06);
  }
}
/* Hero Responsive */
@media (max-width: 991px) {
  .hero-section {
    padding-top: 95px;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 44px;
  }
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons,
  .hero-mini-stats {
    justify-content: center;
  }
  .hero-visual {
    min-height: 480px;
    margin-top: 40px;
  }
  .mobile-card-1 {
    left: 40px;
  }
  .mobile-card-2 {
    right: 40px;
  }
}
@media (max-width: 575px) {
  .hero-section {
    padding-top: 95px;
  }
  .hero-content .hero-badge {
    font-size: 12px;
    padding: 8px 13px;
  }
  .hero-content h1 {
    font-size: 34px;
  }
  .hero-content p {
    font-size: 15px;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .hero-mini-stats {
    gap: 18px;
  }
  .hero-mini-stats div {
    width: 30%;
  }
  .hero-mini-stats div strong {
    font-size: 22px;
  }
  .hero-mini-stats div span {
    font-size: 11px;
  }
  .hero-visual {
    min-height: 430px;
  }
  .dashboard-card {
    padding: 18px;
    border-radius: 24px;
  }
  .dashboard-grid {
    gap: 12px;
  }
  .dashboard-grid .dash-box {
    padding: 15px;
  }
  .dashboard-grid .dash-box strong {
    font-size: 22px;
  }
  .mobile-card {
    font-size: 12px;
    padding: 10px 12px;
  }
  .mobile-card-1 {
    left: 0;
    top: 80px;
  }
  .mobile-card-2 {
    right: 0;
    bottom: 85px;
  }
}
/* =====================================================
   ABOUT SECTION START
===================================================== */
.about-section {
  padding: 110px 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.section-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 22px;
}

.about-content h2 {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 24px;
}
.about-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #6b7280;
  margin-bottom: 18px;
}

.about-feature-list {
  margin-top: 34px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.about-feature-item i {
  color: #22c55e;
  font-size: 20px;
}
.about-feature-item span {
  color: #374151;
  font-size: 15px;
  font-weight: 600;
}

.about-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.about-buttons .btn {
  border-radius: 14px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.about-buttons .btn-about-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.25);
}
.about-buttons .btn-about-primary:hover {
  color: #ffffff;
  transform: translateY(-3px);
}
.about-buttons .btn-about-outline {
  border: 1px solid #d1d5db;
  color: #111827;
  background: #ffffff;
}
.about-buttons .btn-about-outline:hover {
  background: #111827;
  border-color: #111827;
  color: #ffffff;
  transform: translateY(-3px);
}

.about-image-wrapper {
  position: relative;
}

.about-image-card {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}
.about-image-card img {
  width: 100%;
  height: 620px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -o-object-position: center;
     object-position: center;
}

.about-floating-card {
  position: absolute;
  left: -20px;
  bottom: 40px;
  background: #ffffff;
  border-radius: 24px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}
.about-floating-card i {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.about-floating-card h6 {
  font-size: 16px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 4px;
}
.about-floating-card span {
  color: #6b7280;
  font-size: 13px;
  font-weight: 500;
}

/* =====================================================
   ABOUT SECTION RESPONSIVE
===================================================== */
@media (max-width: 991px) {
  .about-section {
    padding: 90px 0;
  }
  .about-content {
    text-align: center;
  }
  .about-content h2 {
    font-size: 38px;
  }
  .about-feature-item {
    justify-content: flex-start;
  }
  .about-feature-list {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .about-buttons {
    justify-content: center;
  }
  .about-image-card img {
    height: 520px;
  }
  .about-floating-card {
    left: 20px;
  }
}
@media (max-width: 575px) {
  .about-section {
    padding: 75px 0;
  }
  .about-content h2 {
    font-size: 30px;
  }
  .about-content p {
    font-size: 15px;
  }
  .about-image-card img {
    height: 420px;
  }
  .about-floating-card {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 18px;
    width: 100%;
  }
  .about-buttons .btn {
    width: 100%;
  }
}
/* =====================================================
   ABOUT SECTION END
===================================================== */
/* =====================================================
   WHY CHOOSE US START
===================================================== */
.why-section {
  padding: 110px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
}

.section-title {
  font-size: 46px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 18px;
}

.section-description {
  font-size: 16px;
  line-height: 1.9;
  color: #6b7280;
}

.why-card {
  position: relative;
  height: 100%;
  padding: 36px 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(226, 232, 240, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  transition: all 0.35s ease;
  overflow: hidden;
}
.why-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  left: 0;
  top: 0;
  background: linear-gradient(90deg, #f97316, #2563eb);
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.35s ease;
}
.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
}
.why-card:hover::before {
  transform: scaleX(1);
}
.why-card:hover .why-icon {
  transform: rotateY(180deg);
}
.why-card h4 {
  font-size: 22px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 16px;
}
.why-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #6b7280;
  margin: 0;
}

.why-icon {
  width: 78px;
  height: 78px;
  border-radius: 24px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(37, 99, 235, 0.12));
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  transition: all 0.6s ease;
}
.why-icon i {
  line-height: 1;
}

/* =====================================================
   WHY CHOOSE US RESPONSIVE
===================================================== */
@media (max-width: 991px) {
  .why-section {
    padding: 90px 0;
  }
  .section-title {
    font-size: 38px;
  }
}
@media (max-width: 575px) {
  .why-section {
    padding: 75px 0;
  }
  .section-title {
    font-size: 30px;
  }
  .section-description {
    font-size: 15px;
  }
  .why-card {
    padding: 28px 24px;
  }
  .why-card h4 {
    font-size: 20px;
  }
  .why-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    font-size: 28px;
  }
}
/* =====================================================
   WHY CHOOSE US END
===================================================== */
/* =====================================================
   COUNTS SECTION START
===================================================== */
.counts-section {
  padding: 25px 0 70px;
  background: #f8fafc;
  position: relative;
}

.counts-wrapper {
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(135deg, #111827 0%, #172554 58%, #1e3a8a 100%);
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.18);
  position: relative;
  overflow: hidden;
}
.counts-wrapper::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.22);
  top: -70px;
  left: -65px;
}
.counts-wrapper::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.24);
  bottom: -85px;
  right: -75px;
}

.count-card {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 24px 18px;
  text-align: center;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.count-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}
.count-card h3 {
  font-size: 34px;
  line-height: 1.1;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}
.count-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 600;
  margin: 0;
}

.count-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.28);
}

/* =====================================================
   COUNTS SECTION RESPONSIVE
===================================================== */
@media (max-width: 991px) {
  .counts-section {
    padding: 15px 0 60px;
  }
  .counts-wrapper {
    padding: 20px;
    border-radius: 24px;
  }
  .count-card {
    padding: 22px 16px;
  }
  .count-card h3 {
    font-size: 30px;
  }
  .count-icon {
    width: 54px;
    height: 54px;
    font-size: 25px;
  }
}
@media (max-width: 575px) {
  .counts-section {
    padding: 10px 0 50px;
  }
  .counts-wrapper {
    padding: 16px;
    border-radius: 22px;
  }
  .count-card {
    padding: 20px 14px;
  }
  .count-card h3 {
    font-size: 28px;
  }
  .count-card p {
    font-size: 13px;
  }
  .count-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    font-size: 23px;
    margin-bottom: 12px;
  }
}
/* =====================================================
   COUNTS SECTION END
===================================================== */
/* =====================================================
   APP MODULES SECTION START
===================================================== */
.modules-section {
  padding: 100px 0;
  background: radial-gradient(circle at 10% 10%, rgba(249, 115, 22, 0.08), transparent 25%), radial-gradient(circle at 90% 20%, rgba(37, 99, 235, 0.1), transparent 25%), #ffffff;
  position: relative;
}

.module-card {
  height: 100%;
  padding: 34px 30px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.module-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  right: -60px;
  top: -60px;
  background: rgba(37, 99, 235, 0.08);
  transition: all 0.35s ease;
}
.module-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 65px rgba(15, 23, 42, 0.12);
}
.module-card:hover::after {
  transform: scale(1.35);
}
.module-card h4 {
  font-size: 23px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 15px;
}
.module-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 24px;
}
.module-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.module-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #374151;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}
.module-card ul li i {
  color: #22c55e;
  font-size: 17px;
}
.module-card ul li:last-child {
  margin-bottom: 0;
}

.module-icon {
  width: 76px;
  height: 76px;
  border-radius: 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 34px;
  position: relative;
  z-index: 2;
}

.module-admin .module-icon {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.28);
}

.module-guard .module-icon {
  background: linear-gradient(135deg, #111827, #374151);
  box-shadow: 0 14px 32px rgba(17, 24, 39, 0.25);
}

.module-resident .module-icon {
  background: linear-gradient(135deg, #f97316, #fb923c);
  box-shadow: 0 14px 32px rgba(249, 115, 22, 0.28);
}

/* =====================================================
   APP MODULES SECTION RESPONSIVE
===================================================== */
@media (max-width: 991px) {
  .modules-section {
    padding: 85px 0;
  }
  .module-card {
    padding: 30px 26px;
  }
}
@media (max-width: 575px) {
  .modules-section {
    padding: 70px 0;
  }
  .module-card {
    padding: 26px 22px;
    border-radius: 24px;
  }
  .module-card h4 {
    font-size: 21px;
  }
  .module-card p {
    font-size: 14px;
  }
  .module-icon {
    width: 66px;
    height: 66px;
    border-radius: 20px;
    font-size: 30px;
  }
}
/* =====================================================
   APP MODULES SECTION END
===================================================== */
/* =====================================================
   FEATURES SECTION START
===================================================== */
.features-section {
  padding: 90px 0;
  background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.08), transparent 22%), linear-gradient(135deg, #111827 0%, #172554 55%, #1e3a8a 100%);
  position: relative;
  overflow: hidden;
}

.dark-badge {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.features-content {
  position: relative;
  z-index: 2;
}

.features-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.18;
  color: #ffffff;
  margin-bottom: 18px;
}

.features-description {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 28px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.feature-item {
  display: flex;
  gap: 12px;
  padding: 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.feature-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.14);
}
.feature-item h5 {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}
.feature-item p {
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
}

.feature-icon {
  min-width: 46px;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  box-shadow: 0 10px 22px rgba(249, 115, 22, 0.24);
}

.features-image-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
}

.features-main-card {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.26);
  animation: floatFeatureCard 5s ease-in-out infinite;
}
.features-main-card img {
  width: 100%;
  height: auto;
  display: block;
}

.security-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 15px;
  border-radius: 16px;
  background: #ffffff;
  color: #111827;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 15px 36px rgba(0, 0, 0, 0.16);
  animation: floatFeatureBadge 4s ease-in-out infinite;
  z-index: 3;
}
.security-badge i {
  color: #2563eb;
  font-size: 18px;
}

.security-badge-1 {
  left: -12px;
  top: 60px;
}

.security-badge-2 {
  right: -12px;
  bottom: 60px;
  animation-delay: 1s;
}
.security-badge-2 i {
  color: #f97316;
}

@keyframes floatFeatureCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes floatFeatureBadge {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}
/* =====================================================
   FEATURES SECTION RESPONSIVE
===================================================== */
@media (max-width: 1199px) {
  .features-title {
    font-size: 38px;
  }
  .features-grid {
    gap: 12px;
  }
  .feature-item {
    padding: 13px;
  }
  .feature-icon {
    min-width: 42px;
    width: 42px;
    height: 42px;
    font-size: 19px;
  }
}
@media (max-width: 991px) {
  .features-section {
    padding: 80px 0;
  }
  .features-content {
    text-align: center;
  }
  .features-title {
    font-size: 36px;
  }
  .features-description {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }
  .features-grid {
    margin-top: 34px;
  }
  .features-image-wrapper {
    margin-top: 38px;
  }
  .security-badge-1 {
    left: 18px;
    top: 18px;
  }
  .security-badge-2 {
    right: 18px;
    bottom: 18px;
  }
}
@media (max-width: 767px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .features-content {
    text-align: left;
  }
  .features-title {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  .features-section {
    padding: 70px 0;
  }
  .features-title {
    font-size: 29px;
  }
  .features-description {
    font-size: 14px;
  }
  .feature-item {
    padding: 14px;
    text-align: left;
  }
  .features-image-wrapper {
    margin-top: 30px;
  }
  .features-main-card {
    border-radius: 22px;
  }
  .security-badge {
    padding: 9px 12px;
    border-radius: 12px;
    font-size: 11px;
    gap: 6px;
  }
  .security-badge i {
    font-size: 15px;
  }
  .security-badge-1 {
    left: 10px;
    top: 10px;
  }
  .security-badge-2 {
    right: 10px;
    bottom: 10px;
  }
}
/* =====================================================
   FEATURES SECTION END
===================================================== */
/* =====================================================
   PLANS SECTION START
===================================================== */
.plans-section {
  padding: 90px 0;
  background: #f8fafc;
  position: relative;
}

.plan-card {
  position: relative;
  height: 100%;
  padding: 30px 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.06);
  transition: all 0.3s ease;
  overflow: hidden;
}
.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.1);
}
.plan-card h4 {
  font-size: 21px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 8px;
}

.plan-top {
  margin-bottom: 22px;
}

.plan-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  font-size: 28px;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.22);
}

.plan-subtitle {
  display: block;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.6;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 13px;
  line-height: 1.5;
}
.plan-features li i {
  color: #22c55e;
  font-size: 16px;
  margin-top: 1px;
}

.plan-note {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 22px;
}

.btn-plan-outline,
.btn-plan-primary,
.btn-plan-dark {
  width: 100%;
  padding: 13px 18px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-plan-outline {
  border: 1px solid #d1d5db;
  color: #111827;
  background: #ffffff;
}
.btn-plan-outline:hover {
  background: #111827;
  border-color: #111827;
  color: #ffffff;
}

.btn-plan-primary {
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(249, 115, 22, 0.24);
}
.btn-plan-primary:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-plan-dark {
  background: linear-gradient(135deg, #111827, #1f2937);
  color: #ffffff;
}
.btn-plan-dark:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.featured-plan {
  border: 2px solid #f97316;
  transform: scale(1.02);
}
.featured-plan .plan-icon {
  background: linear-gradient(135deg, #f97316, #fb923c);
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.26);
}

.premium-plan .plan-icon {
  background: linear-gradient(135deg, #111827, #374151);
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.24);
}

.popular-badge {
  position: absolute;
  top: 16px;
  right: -42px;
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 7px 46px;
  transform: rotate(45deg);
}

/* =====================================================
   PLANS SECTION RESPONSIVE
===================================================== */
@media (max-width: 991px) {
  .plans-section {
    padding: 80px 0;
  }
  .featured-plan {
    transform: none;
  }
}
@media (max-width: 575px) {
  .plans-section {
    padding: 70px 0;
  }
  .plan-card {
    padding: 26px 20px;
    border-radius: 22px;
  }
  .plan-card h4 {
    font-size: 19px;
  }
  .plan-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    font-size: 25px;
  }
  .plan-features li {
    font-size: 12px;
  }
  .popular-badge {
    font-size: 10px;
    padding: 6px 42px;
  }
}
/* =====================================================
   PLANS SECTION END
===================================================== */
/* =====================================================
   CTA SECTION START
===================================================== */
.cta-section {
  padding: 90px 0;
  background: radial-gradient(circle at top right, rgba(249, 115, 22, 0.08), transparent 24%), #ffffff;
  position: relative;
}

.cta-wrapper {
  position: relative;
  padding: 56px;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(135deg, #111827 0%, #172554 55%, #1e3a8a 100%);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.18);
}
.cta-wrapper::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.18);
  top: -110px;
  right: -90px;
}
.cta-wrapper::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.22);
  bottom: -110px;
  left: -80px;
}

.cta-content {
  position: relative;
  z-index: 2;
}
.cta-content h2 {
  font-size: 48px;
  line-height: 1.15;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
}
.cta-content p {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.72);
  max-width: 620px;
  margin-bottom: 32px;
}

.cta-badge,
.app-card-badge {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-outline {
  padding: 14px 24px;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-cta-primary {
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.28);
}
.btn-cta-primary:hover {
  color: #ffffff;
  transform: translateY(-3px);
}

.btn-cta-outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
}
.btn-cta-outline:hover {
  background: #ffffff;
  color: #111827;
  transform: translateY(-3px);
}

.cta-app-card {
  position: relative;
  z-index: 2;
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}
.cta-app-card h4 {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}
.cta-app-card p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.app-download-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.app-download-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px;
  border-radius: 18px;
  background: #ffffff;
  color: #111827;
  transition: all 0.3s ease;
}
.app-download-btn:hover {
  transform: translateY(-4px);
  color: #111827;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}
.app-download-btn span {
  display: block;
  color: #6b7280;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 4px;
}
.app-download-btn strong {
  display: block;
  color: #111827;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}
.app-download-btn .play-icon {
  margin-left: auto;
  font-size: 24px;
  color: #22c55e;
}

.app-download-icon {
  min-width: 52px;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.resident-icon {
  background: linear-gradient(135deg, #f97316, #fb923c);
}

.guard-icon {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

/* =====================================================
   CTA SECTION RESPONSIVE
===================================================== */
@media (max-width: 991px) {
  .cta-section {
    padding: 80px 0;
  }
  .cta-wrapper {
    padding: 44px;
  }
  .cta-content {
    text-align: center;
  }
  .cta-content h2 {
    font-size: 40px;
  }
  .cta-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .cta-buttons {
    justify-content: center;
  }
  .cta-app-card {
    margin-top: 6px;
  }
}
@media (max-width: 575px) {
  .cta-section {
    padding: 70px 0;
  }
  .cta-wrapper {
    padding: 28px 22px;
    border-radius: 26px;
  }
  .cta-content h2 {
    font-size: 30px;
  }
  .cta-content p {
    font-size: 14px;
  }
  .cta-buttons .btn-cta-primary,
  .cta-buttons .btn-cta-outline {
    width: 100%;
    text-align: center;
  }
  .cta-app-card {
    padding: 22px;
    border-radius: 22px;
  }
  .cta-app-card h4 {
    font-size: 22px;
  }
  .app-download-btn {
    padding: 13px;
  }
  .app-download-btn strong {
    font-size: 15px;
  }
  .app-download-icon {
    min-width: 46px;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 21px;
  }
}
/* =====================================================
   CTA SECTION END
===================================================== */
/* =====================================================
   CONTACT SECTION START
===================================================== */
.contact-section {
  padding: 75px 0;
  background: #f8fafc;
  position: relative;
}

.contact-card {
  height: 100%;
  padding: 22px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.05);
}

.contact-card-title {
  margin-bottom: 18px;
}
.contact-card-title h4 {
  font-size: 21px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 6px;
}
.contact-card-title p {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
}

.contact-map-wrapper {
  overflow: hidden;
  border-radius: 18px;
}
.contact-map-wrapper iframe {
  width: 100%;
  height: 390px;
  border: 0;
}

.contact-card .form-control {
  height: 48px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  padding: 12px 14px;
  font-size: 13px;
  color: #111827;
  box-shadow: none;
}
.contact-card .form-control:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}
.contact-card textarea.form-control {
  height: auto;
  resize: none;
  padding-top: 12px;
}

.btn-contact-submit {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 10px 22px rgba(249, 115, 22, 0.18);
}
.btn-contact-submit:hover {
  transform: translateY(-2px);
  color: #ffffff;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.contact-detail-item span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 4px;
}
.contact-detail-item strong {
  display: block;
  font-size: 13px;
  line-height: 1.6;
  color: #111827;
  font-weight: 700;
}

.contact-detail-icon {
  min-width: 44px;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.16);
}

/* =====================================================
   CONTACT SECTION RESPONSIVE
===================================================== */
@media (max-width: 991px) {
  .contact-section {
    padding: 70px 0;
  }
  .contact-map-wrapper iframe {
    height: 300px;
  }
}
@media (max-width: 575px) {
  .contact-section {
    padding: 60px 0;
  }
  .contact-card {
    padding: 18px;
    border-radius: 20px;
  }
  .contact-card-title h4 {
    font-size: 19px;
  }
  .contact-card-title p {
    font-size: 12px;
  }
  .contact-map-wrapper {
    border-radius: 16px;
  }
  .contact-map-wrapper iframe {
    height: 240px;
  }
  .contact-detail-icon {
    min-width: 40px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 16px;
  }
  .contact-detail-item strong {
    font-size: 12px;
  }
}
/* =====================================================
   CONTACT SECTION END
===================================================== */
/* =====================================================
   FOOTER SECTION START
===================================================== */
.footer-section {
  padding: 70px 0 0;
  background: linear-gradient(135deg, #111827 0%, #172554 60%, #111827 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: #ffffff;
}
.footer-logo:hover {
  color: #ffffff;
}
.footer-logo .footer-logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: linear-gradient(135deg, #f97316, #2563eb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ffffff;
}
.footer-logo span {
  display: block;
  font-size: 23px;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
}
.footer-logo small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 500;
}

.footer-brand p {
  max-width: 360px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 22px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: #f97316;
  transform: translateY(-3px);
}

.footer-widget h5 {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 22px;
}
.footer-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-widget ul li {
  margin-bottom: 13px;
}
.footer-widget ul li a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.footer-widget ul li a:hover {
  color: #f97316;
  padding-left: 5px;
}

.footer-app-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-app-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transition: all 0.3s ease;
}
.footer-app-btn:hover {
  background: #ffffff;
  color: #111827;
  transform: translateY(-3px);
}
.footer-app-btn i {
  font-size: 24px;
  color: #22c55e;
}
.footer-app-btn span {
  display: block;
  font-size: 11px;
  line-height: 1;
  opacity: 0.75;
}
.footer-app-btn strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.footer-admin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 14px;
  border-radius: 15px;
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.footer-admin-btn:hover {
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.7;
}
.footer-contact-list li i {
  color: #f97316;
  margin-top: 3px;
}

.footer-contact-btn {
  display: inline-flex;
  margin-top: 8px;
  padding: 12px 18px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.footer-contact-btn:hover {
  background: #ffffff;
  color: #111827;
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 50px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}
.footer-bottom p span {
  color: #f97316;
  font-weight: 700;
}

/* =====================================================
   FOOTER SECTION RESPONSIVE
===================================================== */
@media (max-width: 991px) {
  .footer-section {
    padding-top: 60px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    margin-top: 40px;
  }
}
@media (max-width: 575px) {
  .footer-section {
    padding-top: 50px;
  }
  .footer-logo span {
    font-size: 20px;
  }
  .footer-widget h5 {
    margin-bottom: 16px;
  }
  .footer-bottom {
    padding: 18px 0;
  }
  .footer-bottom p {
    font-size: 12px;
  }
}
/* =====================================================
   FOOTER SECTION END
===================================================== */
/* =====================================================
   FLOATING BUTTONS START
===================================================== */
.scroll-top-btn,
.whatsapp-btn {
  position: fixed;
  right: 22px;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 999;
  transition: all 0.3s ease;
}

/* Scroll Top Button */
.scroll-top-btn {
  bottom: 92px;
  background: #111827;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
}
.scroll-top-btn:hover {
  background: #f97316;
  transform: translateY(-4px);
}
.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* WhatsApp Button */
.whatsapp-btn {
  bottom: 24px;
  background: #22c55e;
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(34, 197, 94, 0.3);
  animation: whatsappPulse 2s infinite;
}
.whatsapp-btn:hover {
  color: #ffffff;
  transform: translateY(-4px);
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}
/* =====================================================
   FLOATING BUTTONS RESPONSIVE
===================================================== */
@media (max-width: 575px) {
  .scroll-top-btn,
  .whatsapp-btn {
    width: 48px;
    height: 48px;
    right: 16px;
    border-radius: 15px;
    font-size: 21px;
  }
  .scroll-top-btn {
    bottom: 78px;
  }
  .whatsapp-btn {
    bottom: 16px;
  }
}
/* =====================================================
   FLOATING BUTTONS END
===================================================== */
/* =====================================================
   REGISTRATION PAGE START
===================================================== */
.registration-page-hero {
  padding: 150px 0 70px;
  background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.12), transparent 26%), linear-gradient(135deg, #111827 0%, #172554 58%, #1e3a8a 100%);
  color: #ffffff;
}

.registration-page-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 22px;
}

.registration-page-hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 18px;
}
.registration-page-hero p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}

.registration-form-section {
  padding: 80px 0;
  background: #f8fafc;
}

.registration-form-card {
  max-width: 1120px;
  margin: 0 auto;
  padding: 34px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
}

.registration-form-heading {
  padding-bottom: 14px;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 10px;
}
.registration-form-heading h4 {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 4px;
}
.registration-form-heading p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

.registration-form-card .form-label {
  font-size: 13px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 7px;
}
.registration-form-card .form-control,
.registration-form-card .form-select {
  height: 52px;
  border-radius: 14px;
  border: 1px solid #d1d5db;
  padding: 13px 16px;
  font-size: 14px;
  color: #111827;
  box-shadow: none;
  background-color: #ffffff;
}
.registration-form-card .form-control:focus,
.registration-form-card .form-select:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}
.registration-form-card textarea.form-control {
  height: auto;
  resize: none;
  padding-top: 14px;
}

.btn-verify-coupon {
  width: 100%;
  height: 52px;
  border-radius: 14px;
  background: #111827;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  transition: all 0.3s ease;
}
.btn-verify-coupon:hover {
  background: #f97316;
  color: #ffffff;
  transform: translateY(-2px);
}

.coupon-message {
  display: none;
  padding: 12px 15px;
  border-radius: 14px;
  background: rgba(34, 197, 94, 0.1);
  color: #15803d;
  font-size: 14px;
  font-weight: 700;
}
.coupon-message i {
  margin-right: 8px;
}

.btn-registration-submit {
  width: 100%;
  height: 56px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  transition: all 0.3s ease;
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.22);
}
.btn-registration-submit:hover {
  color: #ffffff;
  transform: translateY(-3px);
}

/* =====================================================
   REGISTRATION LOCATION BOX START
===================================================== */
.location-box {
  display: flex;
  gap: 18px;
  padding: 20px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
}

.location-icon {
  min-width: 56px;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.location-content h5 {
  font-size: 17px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 6px;
}
.location-content p {
  font-size: 13px;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 14px;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-current-location,
.btn-map-location {
  padding: 11px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  transition: all 0.3s ease;
}
.btn-current-location i,
.btn-map-location i {
  margin-right: 6px;
}

.btn-current-location {
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: #ffffff;
}
.btn-current-location:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-map-location {
  background: #111827;
  color: #ffffff;
}
.btn-map-location:hover {
  background: #2563eb;
  color: #ffffff;
  transform: translateY(-2px);
}

.location-status {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  font-size: 13px;
  font-weight: 700;
}

/* =====================================================
   REGISTRATION LOCATION BOX RESPONSIVE
===================================================== */
@media (max-width: 575px) {
  .location-box {
    flex-direction: column;
    padding: 16px;
  }
  .location-icon {
    min-width: 48px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 21px;
  }
  .location-actions .btn-current-location,
  .location-actions .btn-map-location {
    width: 100%;
  }
}
/* =====================================================
   REGISTRATION LOCATION BOX END
===================================================== */
/* =====================================================
   REGISTRATION PAGE RESPONSIVE
===================================================== */
@media (max-width: 991px) {
  .registration-page-hero {
    padding: 130px 0 60px;
  }
  .registration-page-hero h1 {
    font-size: 38px;
  }
  .registration-form-section {
    padding: 70px 0;
  }
  .registration-form-card {
    padding: 28px;
    border-radius: 26px;
  }
}
@media (max-width: 575px) {
  .registration-page-hero {
    padding: 115px 0 50px;
  }
  .registration-page-hero h1 {
    font-size: 30px;
  }
  .registration-page-hero p {
    font-size: 14px;
  }
  .registration-form-section {
    padding: 55px 0;
  }
  .registration-form-card {
    padding: 22px;
    border-radius: 22px;
  }
  .registration-form-heading h4 {
    font-size: 18px;
  }
  .registration-form-heading p {
    font-size: 13px;
  }
  .registration-form-card .form-control,
  .registration-form-card .form-select {
    height: 48px;
    border-radius: 12px;
    font-size: 13px;
  }
  .btn-verify-coupon {
    height: 48px;
    border-radius: 12px;
  }
  .btn-registration-submit {
    height: 50px;
    border-radius: 14px;
    font-size: 14px;
  }
}
/* =====================================================
   REGISTRATION PAGE END
===================================================== */
/* =====================================================
   LEGAL PAGE START
===================================================== */
.legal-page-section {
  padding: 140px 0 80px;
  background: #f8fafc;
  min-height: 100vh;
}

.legal-page-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 46px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.legal-page-header {
  margin-bottom: 36px;
  padding-bottom: 26px;
  border-bottom: 1px solid #e2e8f0;
}
.legal-page-header span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.legal-page-header h1 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 10px;
}
.legal-page-header p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  font-weight: 600;
}

.legal-content h4 {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 850;
  color: #0f172a;
  margin: 34px 0 12px;
}
.legal-content h4:first-child {
  margin-top: 0;
}
.legal-content p {
  color: #475569;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 500;
  margin-bottom: 14px;
}
.legal-content strong {
  color: #0f172a;
  font-weight: 800;
}
.legal-content a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 700;
}
.legal-content a:hover {
  text-decoration: underline;
}

/* =====================================================
   LEGAL PAGE RESPONSIVE
===================================================== */
@media (max-width: 991px) {
  .legal-page-section {
    padding: 120px 0 70px;
  }
  .legal-page-card {
    padding: 38px 30px;
  }
  .legal-page-header h1 {
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  .legal-page-section {
    padding: 110px 0 60px;
  }
  .legal-page-card {
    padding: 28px 22px;
    border-radius: 24px;
  }
  .legal-page-header h1 {
    font-size: 28px;
  }
  .legal-page-header p {
    font-size: 13px;
  }
  .legal-content h4 {
    font-size: 17px;
    margin: 28px 0 10px;
  }
  .legal-content p {
    font-size: 14px;
    line-height: 1.8;
  }
}
/* =====================================================
   LEGAL PAGE END
===================================================== *//*# sourceMappingURL=style.css.map */