@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

 .item h5 {
  font-size: 12px;
  padding: 4px 8px;
 }

header {
  position: relative;
  min-height: 100vh;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 0;
}

 .desc-box p {
  font-size: 10px;
  padding: 4px 8px;
 }

a {
  text-decoration: none;
  color: inherit;
}

img {
  object-fit: cover;
}

/* ================= MOBILE-FIRST BODY ================= */
body {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #1a1a1a;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ================= MODERN NAVIGATION ================= */
nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 16px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo .brand {
  color: goldenrod;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  color: goldenrod;
  gap: 10px;
}

.logo i {
  font-size: 24px;
  color: goldenrod;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  width: 100%;
}

.links a {
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  color: #4a5568;
  background: #f7fafc;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.links a:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
}

.contact {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.contact button {
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact button:not(.signup) {
  background: transparent;
  color: #4a5568;
  border: 2px solid #e2e8f0;
}

.contact button.signup {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: 2px solid transparent;
}

.contact button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* ================= SLEEK HELP BAR ================= */
.help-bar {
  background: linear-gradient(135deg, #1a1a1a, #2d3748);
  color: white;
  padding: 16px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.help-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.help-bar .location {
  font-size: 12px;
  opacity: 0.8;
  margin-bottom: 8px;
}

.help-bar > a {
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  display: inline-block;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.help-bar > a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* ================= HERO HEADER ================= */
/*header {
  padding: 60px 20px;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
} */

header .left {
  z-index: 2;
  margin-bottom: 40px;
}

header .left h1 span {
  font-size: 42px;
  color: white;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  display: block;
}

header .left h2 {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  margin-bottom: 16px;
}

header .left p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin: 24px 0 40px;
  max-width: 600px;
}

header .left a {
  background: white;
  color: #667eea;
  padding: 18px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

header .left a:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  background: transparent;
  color: white;
  border: 2px solid white;
}

header img {
  width: 300px;
  height: 380px;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  z-index: 2;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.2);
}

/* ================= MODERN SEPARATORS ================= */
h2.separator,
.expect-separator {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 20px 32px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin: 50px auto 40px;
  width: fit-content;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
}

h2.separator::before,
.expect-separator::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 4s infinite;
}

/* ================= CARD-BASED SELLERS SECTION ================= */
.sellers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 0 20px;
  margin: 40px 0;
}

.sellers .expect,
.sellers .expect-expect {
  background: white;
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(102, 126, 234, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.sellers .expect::before,
.sellers .expect-expect::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.sellers .expect:hover,
.sellers .expect-expect:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
  border-color: #667eea;
}

.sellers .expect img,
.sellers .expect-expect img {
  max-height: 80px;
  margin-bottom: 20px;
  filter: brightness(1.1);
}

.sellers .expect a,
.sellers .expect-expect a {
  color: #2d3748;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.sellers .expect:hover a,
.sellers .expect-expect:hover a {
  color: #667eea;
}

/* ================= SLEEK PACKAGE CARDS ================= */
.Package-Category {
  padding: 0 20px;
  margin-top: 50px;
}

.Package-Category .category {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.Package-Category .category a {
  background: white;
  color: #4a5568;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.Package-Category .category a:hover,
.Package-Category .category a.active {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
}

.Package-Category .Package-Info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 20px 0;
}

.Package-Category .Package-Info .item {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(102, 126, 234, 0.1);
  transition: all 0.4s ease;
  position: relative;
}

.Package-Category .Package-Info .item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.15);
}

.Package-Category .Package-Info .item img {
  width: 100%;
  object-fit: cover;   /* fills the box, crops overflow */
  border: none;
  border-radius: 0;
}

.Package-Category .Package-Info .item .info {
  padding: 16px;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 0;
}

.Package-Category .Package-Info .item .info h5 {
  font-size: 16px;
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: 10px;
  background: none;
  border: none;
  padding: 0;
  line-height: 1.3;
}

.Package-Category .Package-Info .item .info .product {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  color: #667eea;
}

.Package-Category .Package-Info .item .info .product i {
  font-size: 10px;
}

.Package-Category .Package-Info .item .info .product p a {
  font-size: 10px;
  color: #4a5568;
  font-weight: 500;
}

.Package-Category .Package-Info .item .duration {
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.Package-Category .Package-Info .item .duration p {
  background: #f8fafc;
  color: #4a5568;
  font-size: 10px;
  padding: 6px 12px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  margin: 0;
  font-weight: 500;
}

.Package-Category .Package-Info .item .duration a {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 10px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.Package-Category .Package-Info .item .duration a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

/* ================= MODERN VIEW MORE BUTTON ================= */
.view-more {
  margin: 50px 0;
  display: flex;
  justify-content: center;
}

.view-more button {
  background: white;
  border: 2px solid #667eea;
  color: #667eea;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 200px;
}

.view-more button:hover {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.3);
}

.view-more button a {
  color: inherit;
  display: block;
  width: 100%;
}

/* ================= MODERN FAQ SECTION ================= */
.FAQ {
  padding: 0 20px;
  margin: 60px 0 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.FAQ .faq-item {
  background: white;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(102, 126, 234, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.FAQ .faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.FAQ .faq-item:hover::before {
  transform: scaleY(1);
}

.FAQ .faq-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 45px rgba(102, 126, 234, 0.15);
  border-color: #667eea;
}

.FAQ .faq-item img {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  object-fit: cover;
  border: 2px solid #f1f5f9;
}

.FAQ .faq-item .faq-info h4 {
  font-size: 18px;
  color: #1a1a1a;
  margin-bottom: 8px;
  font-weight: 600;
}

.FAQ .faq-item .faq-info p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

.faq-item i.fas.fa-crown {
  color: #f59e0b;
  font-size: 24px;
}

/* ================= PREMIUM FOOTER ================= */
footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d3748 100%);
  color: white;
  padding: 60px 20px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm10 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

footer h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  z-index: 2;
  position: relative;
}

footer .right {
  z-index: 2;
  position: relative;
}

footer .right .links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

footer .right .links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 20px;
}

footer .right .links a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

footer .right .social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
}

footer .right .social i {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .right .social i:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

footer .right p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ================= RESPONSIVE BREAKPOINTS ================= */
@media (min-width: 480px) {
  .sellers {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .FAQ {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  nav {
    flex-wrap: nowrap;
    padding: 20px 40px;
  }
  
  .links {
    margin-top: 0;
    width: auto;
  }
  
  .contact {
    margin-top: 0;
  }
  
  header {
    padding: 80px 40px;
  }
  
  .sellers {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 40px;
  }
  
  .Package-Category {
    padding: 0 40px;
  }
  
  .Package-Category .Package-Info {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .FAQ {
    padding: 0 40px;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  footer {
    padding: 80px 40px 50px;
  }
}

@media (min-width: 1024px) {
  header {
    flex-direction: row;
    text-align: left;
    padding: 0 80px;
    min-height: calc(100vh - 80px);
  }
  
  header .left {
    flex: 1;
    margin-bottom: 0;
    margin-right: 60px;
  }
  
  .sellers {
    grid-template-columns: repeat(4, 1fr);
    padding: 0 80px;
  }
  
  .Package-Category {
    padding: 0 80px;
  }
  
  .Package-Category .Package-Info {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .FAQ {
    padding: 0 80px;
    grid-template-columns: repeat(4, 1fr);
  }
  
  footer {
    padding: 100px 80px 60px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  
  footer .right .links,
  footer .right .social {
    justify-content: flex-end;
  }
  
  footer .right p {
    text-align: right;
  }
}

/* ================= EXTRA ANIMATIONS ================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sellers .expect,
.sellers .expect-expect,
.Package-Category .Package-Info .item,
.FAQ .faq-item {
  animation: fadeInUp 0.6s ease-out;
}

/* ================= HIDDEN ELEMENTS ================= */
.Extra-Info {
  display: none;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  object-fit: cover;
}

/* ================= MOBILE-FIRST BODY ================= */
body {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #1a1a1a;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ================= MODERN NAVIGATION ================= */
nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 16px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  color: #667eea;
  gap: 10px;
}

.logo i {
  font-size: 24px;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  width: 100%;
}

.links a {
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  color: #4a5568;
  background: #f7fafc;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.links a:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
}

.contact {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.contact button {
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact button:not(.signup) {
  background: transparent;
  color: #4a5568;
  border: 2px solid #e2e8f0;
}

.contact button.signup {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: 2px solid transparent;
}

.contact button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* ================= SLEEK HELP BAR ================= */
.help-bar {
  background: linear-gradient(135deg, #1a1a1a, #2d3748);
  color: white;
  padding: 16px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.help-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.help-bar .location {
  font-size: 12px;
  opacity: 0.8;
  margin-bottom: 8px;
}

.help-bar a {
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  display: inline-block;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.help-bar a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* ================= MODERN SEPARATORS ================= */
h2.separator {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 20px 32px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin: 50px auto 40px;
  width: fit-content;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
}

h2.separator::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 4s infinite;
}

/* ================= ENHANCED EXTRA INFO CARDS ================= */
.Extra-Info .item {
  background: white;
  border-radius: 20px;
  padding: 28px 24px;
  margin-bottom: 24px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(102, 126, 234, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.Extra-Info .item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.Extra-Info .item:hover::before {
  transform: scaleY(1);
}

.Extra-Info .item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 45px rgba(102, 126, 234, 0.15);
  border-color: #667eea;
}

/* ================= SLEEK PACKAGE OPTIONS ================= */
.Package-Options {
  padding: 0 20px;
  margin: 50px 0;
}

.Package-Options .Packages {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 20px 0;
}

.Package-Options .Packages .item {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(102, 126, 234, 0.1);
  transition: all 0.4s ease;
  position: relative;
}

.Package-Options .Packages .item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 45px rgba(102, 126, 234, 0.15);
  border-color: #667eea;
}

.Package-Options .Packages .item .info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.Package-Options .Packages .item .info h5 {
  font-size: 16px;
  color: #1a1a1a;
  font-weight: 600;
  background: #f8fafc;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  display: inline-block;
  margin-bottom: 8px;
}

.Package-Options .Packages .item .info a {
  color: #667eea;
  font-size: 14px;
  font-weight: 500;
  background: #f8fafc;
  padding: 6px 12px;
  border-radius: 15px;
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: all 0.3s ease;
}

.Package-Options .Packages .item .info a:hover {
  background: #667eea;
  color: white;
  border-color: #667eea;
}

.Package-Options .Packages .item .bid {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.Package-Options .Packages .item .bid p {
  background: #f8fafc;
  color: #4a5568;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  margin: 0;
  font-weight: 500;
}

.Package-Options .Packages .item .bid a,
.Package-Options .Packages .item .btc a {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.Package-Options .Packages .item .bid a:hover,
.Package-Options .Packages .item .btc a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* ================= MODERN VIEW MORE BUTTON ================= */
.view-more {
  margin: 50px 0;
  display: flex;
  justify-content: center;
}

.view-more button {
  background: white;
  border: 2px solid #667eea;
  color: #667eea;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 200px;
}

.view-more button:hover {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.3);
}

/* ================= COMPACT PACKAGE CATEGORY ================= */
.Package-Category {
  padding: 0 20px;
  margin-top: 50px;
}

.Package-Category .category {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 30px;
}

.Package-Category .category a {
  background: white;
  color: #4a5568;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.Package-Category .category a:hover,
.Package-Category .category a.active {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
}

.Package-Category .Package-Info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 20px 0;
}

.Package-Category .Package-Info .item {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(102, 126, 234, 0.1);
  transition: all 0.4s ease;
  position: relative;
}

.Package-Category .Package-Info .item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.12);
}

.Package-Category .Package-Info .item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.Package-Category .Package-Info .item .info {
  padding: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.Package-Category .Package-Info .item .info h5 {
  font-size: 14px;
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
}

.Package-Category .Package-Info .item .info p a {
  font-size: 12px;
  color: #667eea;
  font-weight: 500;
}

.Package-Category .Package-Info .item .duration {
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.Package-Category .Package-Info .item .duration p {
  background: #f8fafc;
  color: #4a5568;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  margin: 0;
  font-weight: 500;
}

.Package-Category .Package-Info .item .duration a {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.Package-Category .Package-Info .item .duration a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* ================= MODERN FAQ SECTION ================= */
.FAQ {
  padding: 0 20px;
  margin: 60px 0 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.FAQ .faq-item {
  background: white;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(102, 126, 234, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.FAQ .faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.FAQ .faq-item:hover::before {
  transform: scaleY(1);
}

.FAQ .faq-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 45px rgba(102, 126, 234, 0.15);
  border-color: #667eea;
}

.FAQ .faq-item img {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid #f1f5f9;
}

.FAQ .faq-item .faq-info h4 {
  font-size: 16px;
  color: #1a1a1a;
  margin-bottom: 6px;
  font-weight: 600;
}

.FAQ .faq-item .faq-info p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
}

.faq-item i.fas.fa-crown {
  color: #f59e0b;
  font-size: 20px;
}

/* ================= PREMIUM FOOTER ================= */
footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d3748 100%);
  color: white;
  padding: 50px 20px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm10 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

footer h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  z-index: 2;
  position: relative;
}

footer .right {
  z-index: 2;
  position: relative;
}

footer .right .links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}

footer .right .links a {
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 6px 12px;
  border-radius: 15px;
  color: #64748b;
}

footer .right .links a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

footer .right .social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

footer .right .social i {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .right .social i:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

footer .right p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* ================= RESPONSIVE BREAKPOINTS ================= */
@media (min-width: 480px) {
  .Package-Category .Package-Info {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .Package-Category .Package-Info .item img {
    height: 140px;
  }
}

@media (min-width: 768px) {
  nav {
    flex-wrap: nowrap;
    padding: 20px 40px;
  }
  
  .links {
    margin-top: 0;
    width: auto;
  }
  
  .contact {
    margin-top: 0;
  }
  
  .Package-Options .Packages {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .Package-Category {
    padding: 0 40px;
  }
  
  .Package-Category .Package-Info {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .Package-Category .Package-Info .item img {
    height: 160px;
  }
  
  .FAQ {
    padding: 0 40px;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  footer {
    padding: 60px 40px 40px;
  }
}

@media (min-width: 1024px) {
  .Package-Options {
    padding: 0 80px;
  }
  
  .Package-Options .Packages {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  
  .Package-Options .Packages .item img {
    height: 280px;
  }
  
  .Package-Category {
    padding: 0 80px;
  }
  
  .Package-Category .Package-Info {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .FAQ {
    padding: 0 80px;
    grid-template-columns: repeat(3, 1fr);
  }
  
  footer {
    padding: 80px 80px 50px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  
  footer .right {
    width: 70%;
    align-items: flex-end;
  }
  
  footer .right .links,
  footer .right .social {
    justify-content: flex-end;
  }
  
  footer .right p {
    text-align: right;
  }
}

@media (min-width: 1200px) {
  .Package-Options .Packages {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .FAQ {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ================= EXTRA ANIMATIONS ================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.Package-Options .Packages .item,
.Package-Category .Package-Info .item,
.FAQ .faq-item {
  animation: fadeInUp 0.6s ease-out;
}

/* ================= HIDDEN ELEMENTS ================= */
.Extra-Info {
  display: none;
}