:root {
  --clr-bg: #f4f0ea;
  --clr-text: #2f2f2f;
  --clr-accent: #b85c38;
  --transition: 0.3s ease-in-out;
  --font-title: "Press Start 2P", cursive;
  --font-body: "Courier Prime", monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  line-height: 1.4;
}
a {
  color: var(--clr-accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vt-container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.vt-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.vt-header .vt-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vt-logo {
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: var(--clr-accent);
}
.vt-nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
  transition: max-height var(--transition);
}
.vt-nav ul.vt-open {
  max-height: 500px;
}
.vt-nav a {
  padding: 8px;
}

.vt-has-dropdown {
  position: relative;
}
.vt-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 2px solid var(--clr-accent);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition);
}
.vt-has-dropdown:hover .vt-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.vt-dropdown li a {
  display: block;
  padding: 6px 12px;
}

.vt-menu-toggle {
  display: none;
  font-size: 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
}

.vt-hero {
  position: relative;
  height: 60vh;
  background: url("../assets/images/hero.jpeg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1s ease-out;
}
.vt-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
}
.vt-hero__content {
  position: relative;
  text-align: center;
}
.vt-hero__content h1 {
  font-family: var(--font-title);
  font-size: 2rem;
  margin-bottom: 16px;
}
.vt-hero__content p {
  margin-bottom: 24px;
}
.vt-btn {
  display: inline-block;
  padding: 10px 20px;
  background: var(--clr-accent);
  color: #fff;
  border: 2px solid #000;
  animation: btn-pop 0.6s infinite alternate;
}
@keyframes btn-pop {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}

.vt-about h2,
.vt-services h2,
.vt-promo h2,
.vt-contact h2 {
  font-family: var(--font-title);
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--clr-accent);
}
.vt-about p,
.vt-about ul {
  margin-bottom: 12px;
}
.vt-about ul li {
  margin-left: 16px;
  list-style: disc;
}

.vt-services .vt-cards {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.vt-card {
  background: #fff;
  border: 2px dashed var(--clr-accent);
  padding: 16px;
  flex: 1 1 calc(33% - 16px);
  min-width: 200px;
  animation: fadeInUp 0.8s ease both;
}
.vt-card:nth-child(1) {
  animation-delay: 0.2s;
}
.vt-card:nth-child(2) {
  animation-delay: 0.4s;
}
.vt-card:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vt-promo {
  background: #fffbe6;
  border-top: 4px solid var(--clr-accent);
  text-align: center;
}
.vt-promo p {
  font-size: 1.1rem;
  animation: fadeIn 1s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.vt-contact p {
  margin-bottom: 8px;
}

.vt-footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}
.vt-footer a {
  color: #eee;
}
.vt-footer a:hover {
  color: var(--clr-accent);
}

@media (max-width: 768px) {
  .vt-nav ul {
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background: #fff;
    max-height: 0;
    overflow: hidden;
    width: 200px;
  }
  .vt-menu-toggle {
    display: block;
  }
  .vt-services .vt-cards {
    flex-direction: column;
  }
}

.vt-services-list {
  padding: 60px 20px;
  background: #f4f1ea;
  font-family: "Courier New", Courier, monospace;
  color: #333;
}
.vt-services-list h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 1px;
  text-shadow: 1px 1px 0 #fff;
}
.vt-services-list__items {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 900px;
}
.vt-services-list__item {
  background: #fff;
  border: 2px solid #ccc;
  padding: 20px;
  margin-bottom: 20px;
  transition: background 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.vt-services-list__item:hover {
  background: #e9e4da;
  transform: translateX(10px);
}
.vt-services-list__item::before {
  content: "»";
  font-size: 1.5rem;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
}
.vt-services-list__item a {
  font-size: 1.5rem;
  font-weight: bold;
  color: #222;
  text-decoration: none;
  margin-left: 30px;
}
.vt-services-list__item p {
  margin: 8px 0 0 30px;
  line-height: 1.4;
  font-style: italic;
  color: #555;
}

.vt-services-list__item {
  box-shadow: inset 0 0 0 1px #ddd, 4px 4px 0 rgba(0, 0, 0, 0.1);
}
.vt-services-list__item:hover {
  box-shadow: inset 0 0 0 1px #aaa, 6px 6px 0 rgba(0, 0, 0, 0.15);
}

@media (max-width: 600px) {
  .vt-services-list h2 {
    font-size: 2rem;
  }
  .vt-services-list__item {
    padding: 16px;
  }
  .vt-services-list__item a {
    font-size: 1.25rem;
  }
  .vt-services-list__item p {
    margin-left: 25px;
  }
}

.vt-promotions-list {
  padding: 60px 20px;
  background: #e8e2d8;
  font-family: "Courier New", Courier, monospace;
  color: #333;
}
.vt-promotions-list h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 1px;
  text-shadow: 1px 1px 0 #fff;
}
.vt-promotions-list__items {
  list-style: none;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
}
.vt-promotions-list__item {
  background: #fff;
  border: 2px solid #bbb;
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: inset 0 0 0 1px #ddd, 3px 3px 0 rgba(0, 0, 0, 0.1);
}
.vt-promotions-list__item:hover {
  background: #f2ebe0;
  transform: translateX(8px);
  box-shadow: inset 0 0 0 1px #999, 5px 5px 0 rgba(0, 0, 0, 0.15);
}
.vt-promotions-list__item::before {
  content: "✦";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: #999;
}
.vt-promotions-list__item a {
  display: block;
  margin-left: 30px;
  font-size: 1.4rem;
  font-weight: bold;
  color: #222;
  text-decoration: none;
}
.vt-promotions-list__item p {
  margin: 8px 0 0 30px;
  color: #555;
  font-style: italic;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .vt-promotions-list h2 {
    font-size: 2rem;
  }
  .vt-promotions-list__item {
    padding: 16px;
  }
  .vt-promotions-list__item a {
    font-size: 1.2rem;
  }
  .vt-promotions-list__item p {
    margin-left: 25px;
  }
}

.vt-service-overview {
  background: #f4efe7;
  padding: 60px 20px;
  font-family: "Courier New", Courier, monospace;
  color: #333;
}
.vt-service-overview__title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-shadow: 1px 1px 0 #fff;
}
.vt-service-overview__intro {
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
}
.vt-service-overview__features {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
}
.vt-service-overview__features li {
  background: #fff;
  border: 1px solid #ccc;
  padding: 12px 16px;
  margin-bottom: 12px;
  position: relative;
}
.vt-service-overview__features li::before {
  content: "✔";
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: green;
}

.vt-service-details {
  background: #ece3d6;
  padding: 60px 20px;
  font-family: "Courier New", Courier, monospace;
  color: #222;
}
.vt-service-details__heading {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 1px 1px 0 #fff;
}
.vt-service-details__text {
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.6;
}
.vt-service-details__steps {
  max-width: 800px;
  margin: 0 auto 30px;
  padding-left: 20px;
}
.vt-service-details__steps li {
  margin-bottom: 18px;
  line-height: 1.5;
}
.vt-service-details__steps li strong {
  color: #005500;
}
.vt-service-details__conclusion {
  max-width: 700px;
  margin: 0 auto;
  font-style: italic;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .vt-service-overview__title,
  .vt-service-details__heading {
    font-size: 2rem;
  }
  .vt-service-overview__intro,
  .vt-service-details__text,
  .vt-service-details__conclusion {
    font-size: 0.95rem;
  }
  .vt-service-details__steps {
    padding-left: 0;
    list-style-position: inside;
  }
}

.vt-pricing {
  background: #f4efe7;
  padding: 80px 20px;
  font-family: "Courier New", Courier, monospace;
  color: #333;
}
.vt-pricing__title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-shadow: 1px 1px 0 #fff;
}
.vt-pricing__subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.5;
}

.vt-pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.vt-plan {
  background: #fff;
  border: 2px solid #ccc;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s;
}
.vt-plan:hover {
  transform: translateY(-8px);
  border-color: #888;
}

.vt-plan__name {
  font-size: 1.6rem;
  margin-bottom: 12px;
  text-align: center;
  color: #005500;
}
.vt-plan__price {
  font-size: 2.4rem;
  text-align: center;
  margin: 8px 0 20px;
}
.vt-plan__price span {
  display: block;
  font-size: 0.8rem;
  color: #666;
  margin-top: 4px;
}

.vt-plan__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}
.vt-plan__features li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
  line-height: 1.4;
}
.vt-plan__features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: green;
}

.vt-plan__btn {
  display: block;
  text-align: center;
  padding: 12px 0;
  background: #005500;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s;
}
.vt-plan__btn:hover {
  background: #004400;
}

.vt-plan--basic {
  border-color: #888;
}
.vt-plan--standard {
  border-color: #005500;
}
.vt-plan--premium {
  border-color: #550000;
}

@media (max-width: 768px) {
  .vt-pricing {
    padding: 60px 10px;
  }
  .vt-pricing__title {
    font-size: 2.2rem;
  }
  .vt-plan__price {
    font-size: 2rem;
  }
}

.vt-promo-detail {
  background: #f4efe7;
  padding: 80px 20px;
  font-family: "Courier New", Courier, monospace;
  color: #333;
}
.vt-promo-detail__title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 40px;
  letter-spacing: 1px;
  text-shadow: 1px 1px 0 #fff;
}
.vt-promo-detail__content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.vt-promo-detail__text {
  flex: 1 1 400px;
  line-height: 1.6;
}
.vt-promo-detail__text p {
  margin-bottom: 24px;
}
.vt-promo-detail__text ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.vt-promo-detail__text ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
}
.vt-promo-detail__text ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: green;
}
.vt-promo-detail__btn {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 32px;
  background: #005500;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
}
.vt-promo-detail__btn:hover {
  background: #004400;
}
.vt-promo-detail__image {
  flex: 1 1 300px;
  text-align: center;
}
.vt-promo-detail__image img {
  max-width: 100%;
  border: 2px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .vt-promo-detail__content {
    flex-direction: column;
    gap: 24px;
  }
  .vt-promo-detail__title {
    font-size: 2.2rem;
  }
}

.title_background {
  background: #f8f4ee;
  padding: 40px 0;
  border-bottom: 2px solid #d1c7bb;
}
.title_background .container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.title_background .title {
  margin: 0;
  font-family: "Courier New", Courier, monospace;
  font-size: 2rem;
  color: #3b372f;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
}
.title_background .title::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background: #3b372f;
  margin: 12px auto 0;
}

.text_background {
  padding: 60px 20px;
}
.text_background .container {
  max-width: 800px;
  margin: 0 auto;
}
.text_background .text {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.75;
  color: #4a413f;
  text-align: justify;
  text-justify: inter-word;
  white-space: pre-wrap;
}

@media (max-width: 768px) {
  .title_background {
    padding: 30px 0;
  }
  .title_background .title {
    font-size: 1.6rem;
  }
  .text_background {
    padding: 40px 15px;
  }
  .text_background .text {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

.about-us-section {
  background: #f3f1ec;
  padding: 80px 20px;
}
.about-us-container {
  max-width: 1200px;
  margin: 0 auto;
}
.about-us-title {
  font-family: "Courier New", Courier, monospace;
  font-size: 2.5rem;
  color: #b85c38;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}
.about-us-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: #555;
  margin: 12px auto 0;
}
.about-us-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.about-us-column p {
  font-family: Georgia, serif;
  font-size: 1rem;
  line-height: 1.75;
  color: #4a413f;
  margin-bottom: 24px;
  text-align: justify;
}
@media (max-width: 768px) {
  .about-us-section {
    padding: 60px 15px;
  }
  .about-us-title {
    font-size: 2rem;
  }
  .about-us-columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.consultation-section {
  padding: 80px 20px;
  border-top: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
}
.consultation-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.consultation-title {
  font-family: "Courier New", Courier, monospace;
  font-size: 2.25rem;
  color: #b85c38;
  margin-bottom: 16px;
}
.consultation-lead {
  font-family: Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.consultation-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px;
  max-width: 700px;
  text-align: left;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.consultation-list li {
  background: #f9f7f5;
  padding: 16px 20px;
  border-radius: 6px;
  font-family: Roboto, sans-serif;
  font-size: 1rem;
  color: #444;
  display: flex;
  align-items: center;
}
.consultation-list li::before {
  content: "";
  margin-right: 12px;
  font-size: 1.2rem;
}
.consultation-cta {
  text-align: center;
}
.consult-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #333;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-family: "Courier New", Courier, monospace;
  transition: background 0.3s;
}
.consult-btn:hover {
  background: #555;
}

@media (max-width: 768px) {
  .consultation-section {
    padding: 60px 15px;
  }
  .consultation-title {
    font-size: 1.8rem;
  }
}
