* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #f9fafb;
  color: #333;
}

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

.section {
  padding: 80px;
  border-radius: 10px;
}

.section--alt {
  background: #f7f9fa;
}

.section--white {
  background: #fff;
}

.section-title span {
  color: #ff6a00;
}

.label {
  color: #ff6a00;
  font-weight: bold;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid-2 {
  grid-template-columns: repeat(2,1fr);
}

.grid-3 {
  grid-template-columns: repeat(3,1fr);
}

.grid-4 {
  grid-template-columns: repeat(4,1fr);
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.section--hero .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.section--hero h1 {
  font-size: 40px;
}

.section--hero span {
  color: #ff6a00;
}

.hero-buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.banner {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
}

.icon-grid {
  margin-top: 30px;
  text-align: center;
}

.icon-grid img {
  width: 80px;
}

.price {
  font-size: 22px;
  margin: 10px 0;
  font-weight: bold;
}

.btn {
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6a00, #ff8c00);
  color: #fff;
}

.btn-outline {
  border: 1px solid #ddd;
  background: #fff;
}

header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 64px solid #0f1729;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.nav-menu {
  display: flex;
  gap: 20px;
}

.nav-menu a {
  text-decoration: none;
  color: #555;
}

.nav-menu a.active {
  color: #ff6a00;
  font-weight: bold;
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .section--hero .hero-content {
    grid-template-columns: 1fr;
  }
}

.card img {
  transition: 0.3s;
  height: 150px;
  width: 150px;
  margin: 0 auto;
  text-align: center;
  object-fit: cover;
  display: flex;
  justify-content: center;
}

.card:hover img {
  transform: scale(1.05);
}

.card:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}

.footer {
  background: #0f172a;
  color: #fff;
  padding: 40px 0;
  margin-top: 60px;
}

.footer-content {
  display: grid;
  gap: 15px;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ddd;
}

.footer-item i {
  color: #ff6a00;
  font-size: 18px;
}

.footer-item a {
  color: #ddd;
  text-decoration: none;
}

.footer-item a:hover {
  color: #ff6a00;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
}

.footer h3, .footer h4 {
  margin-bottom: 10px;
}

.footer-menu {
  list-style: none;
  padding: 0;
}

.footer-menu li {
  margin-bottom: 8px;
}

.footer-menu a {
  color: #ddd;
  text-decoration: none;
}

.footer-menu a:hover {
  color: #ff6a00;
}

.vm-card {
  text-align: center;
}

.vm-icon-wrap {
  width: 120px;
  height: 120px;
  background: #fff3e6;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vm-icon {
  width: 60px;
}

.vm-list {
  padding-left: 20px;
  margin-top: 10px;
  text-align: left;
}

.section-title {
  font-size: 40px;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 15px;
}

.section-desc {
  color: #64748b;
  line-height: 1.8;
  font-size: 16px;
  max-width: 850px;
}

.card h3 {
  font-size: 20px;
  margin: 15px 0 10px;
  color: #0f172a;
}

.card p {
  color: #64748b;
  line-height: 1.7;
}

.card {
  border: 1px solid #eef2f7;
  transition: 0.3s;
}

.card:hover {
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.btn-primary,
.btn-outline {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255,106,0,0.25);
}

.btn-outline:hover {
  border-color: #ff6a00;
  color: #ff6a00;
}

.hero-content p {
  margin-top: 15px;
  color: #64748b;
  line-height: 1.8;
}

.banner {
  display: block;
}

.faq-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  border: 1px solid #e2e8f0;
  transition: 0.3s;
}

.faq-item:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
}

.faq-answer {
  color: #64748b;
  line-height: 1.8;
}

.cta-box {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  padding: 60px;
  border-radius: 24px;
  text-align: center;
}

.cta-box .section-title {
  color: #fff;
}

.cta-box .section-desc {
  color: rgba(255,255,255,0.75);
  margin: 0 auto 25px;
}

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff6a00, #ff8c00);
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255,106,0,0.25);
}

.team-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: 0.3s;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.06);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
}

.team-card h3 {
  margin-bottom: 5px;
}

.team-card p {
  color: #64748b;
}

.testimonial-card {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.06);
}

.testimonial-photo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.testimonial-text {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-card h4 {
  margin-bottom: 3px;
}

.testimonial-card span {
  color: #94a3b8;
  font-size: 14px;
}

.stats-grid {
  text-align: center;
}

.stats-card {
  background: #fff;
  border-radius: 16px;
  padding: 35px 20px;
  border: 1px solid #e2e8f0;
}

.stats-card h3 {
  font-size: 42px;
  color: #ff6a00;
  margin-bottom: 10px;
}

.stats-card p {
  color: #64748b;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  transition: 0.3s;
}

.gallery-item {
  overflow: hidden;
  border-radius: 16px;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.video-wrap {
  margin-top: 30px;
}

.video-player {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.tabs-buttons {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.tabs-btn {
  border: none;
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 12px 18px;
  border-radius: 12px;
  cursor: pointer;
  transition: .2s;
  font-weight: 600;
}

.tabs-btn.active {
  background: #ff6a00;
  color: #fff;
  border-color: #ff6a00;
}

.tabs-content {
  display: none;
}

.tabs-content.active {
  display: block;
}

.vm-card {
  text-align: center;
}

.vm-card .vm-list {
  text-align: left;
  margin-top: 15px;
}

.vm-card h3 {
  margin-top: 15px;
}

.hero-buttons .btn {
  min-width: 170px;
}

.section--hero .banner {
  max-width: 500px;
}

.tabs-content .section-title span {
  color: #ff6a00;
}

@media (max-width: 768px) {

  .section {
    padding: 70px 20px;
  }

  .section-title {
    font-size: 30px;
  }

  .section--hero h1 {
    font-size: 32px;
  }

  .cta-box {
    padding: 35px 25px;
  }

}

.btn-primary {
  background: linear-gradient(135deg, #ff6a00, #ff8c00) !important;
  border: none !important;
  color: #fff !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #e65f00, #ff7b00) !important;
  color: #fff !important;
}

.btn-outline {
  background: #fff !important;
  border: 1px solid #e2e8f0 !important;
  color: #0f172a !important;
}

.btn-outline:hover {
  border-color: #ff6a00 !important;
  color: #ff6a00 !important;
  background: #fff7f1 !important;
}

.dynamic-grid{
    display:grid;
    gap:24px;
    margin-top:30px;
}

.dynamic-grid.cols-1{
    grid-template-columns:repeat(1,minmax(0,1fr));
    max-width:500px;
    margin-left:auto;
    margin-right:auto;
}

.dynamic-grid.cols-2{
    grid-template-columns:repeat(2,minmax(0,1fr));
    max-width:900px;
    margin-left:auto;
    margin-right:auto;
}

.dynamic-grid.cols-3{
    grid-template-columns:repeat(3,minmax(0,1fr));
}

.dynamic-grid.cols-4{
    grid-template-columns:repeat(4,minmax(0,1fr));
}

.hero-slider {
    position: relative;
    width: 100%;
    min-height: 420px;
    border-radius: 24px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity .6s ease;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
    position: relative;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 999;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: none;
    background: rgba(255,106,0,.25);
    cursor: pointer;
    transition: all .3s ease;
    padding: 0;
}

.hero-dot.active {
    width: 34px;
    background: #ff6a00;
}

.hero-slide.banner {
    width: 100%;
    height: auto;
    display: block;
}

@media(max-width:992px){

    .dynamic-grid.cols-4{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .dynamic-grid.cols-3{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

}

@media(max-width:768px){

    .dynamic-grid,
    .dynamic-grid.cols-1,
    .dynamic-grid.cols-2,
    .dynamic-grid.cols-3,
    .dynamic-grid.cols-4{
        grid-template-columns:repeat(1,minmax(0,1fr));
    }

}