:root {
  --vlcc-orange: #f36f21;
  --vlcc-dark: #222222;
  --vlcc-light: #ffffff;
  --vlcc-grey: #f6f6f6;
  --vlcc-accent: #ff9a4d;
  --max-width: 1200px;
  --radius: 14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--vlcc-grey);
  color: var(--vlcc-dark);
  line-height: 1.6;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

/* Global */

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

/* Header / Hero */

header {
  background: linear-gradient(
      120deg,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.1)
    ),
    url("https://images.pexels.com/photos/3738362/pexels-photo-3738362.jpeg?auto=compress&cs=tinysrgb&w=1600")
      center/cover no-repeat;
  color: #fff;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(6px);
}

.logo-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.logo-box {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  background: var(--vlcc-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
}

.nav-links a {
  opacity: 0.9;
}

.nav-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.hero {
  padding: 50px 16px 60px;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 32px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7cf59b;
}

.hero h1 {
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  margin: 14px 0 10px;
  line-height: 1.1;
}

.hero h1 span {
  color: var(--vlcc-accent);
}

.hero p.lead {
  font-size: 0.98rem;
  max-width: 520px;
  opacity: 0.92;
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border-radius: 999px;
  padding: 11px 22px;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  text-decoration: none;
}

.btn-primary {
  background: var(--vlcc-orange);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
  background: #ff7f32;
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-meta {
  margin-top: 16px;
  font-size: 0.8rem;
  opacity: 0.9;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.96);
  color: #222;
  padding: 18px 18px 20px;
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.hero-card h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.hero-card p {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 12px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
  font-size: 0.8rem;
}

.hero-grid div {
  padding: 8px 10px;
  border-radius: 10px;
  background: #f7f7f7;
}

/* Franchise disclaimer section */

.franchise-section {
  padding: 40px 0;
  background: #fff3e0;
}

.franchise-section-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.6;
}

.franchise-section h2 {
  color: #d35400;
  margin-bottom: 10px;
}

/* Sections */

section {
  padding: 60px 0;
}

h2.section-title {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 8px;
}

.section-subtitle {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  max-width: 520px;
  margin: 0 auto 32px;
}

/* Services */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px 18px 20px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.tag {
  display: inline-block;
  font-size: 0.72rem;
  padding: 2px 9px;
  border-radius: 999px;
  background: #ffe5d3;
  color: #a54200;
  margin-bottom: 6px;
}

.card p {
  font-size: 0.86rem;
  color: #555;
  margin-bottom: 8px;
}

.card ul {
  list-style: none;
  font-size: 0.8rem;
  color: #555;
  padding-left: 0;
}

.card ul li::before {
  content: "•";
  margin-right: 6px;
  color: var(--vlcc-orange);
}

/* Amenities */

.amenities-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.amenity {
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: #fff;
}

/* About / owner */

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 28px;
  align-items: start;
}

.highlight-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
  font-size: 0.85rem;
}

.highlight-box h3 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.highlight-box p {
  margin-bottom: 4px;
}

.owner-line {
  font-weight: 600;
  margin-top: 6px;
}

/* Testimonials */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.testimonial {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px 18px 20px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.07);
  font-size: 0.85rem;
}

.testimonial-name {
  font-weight: 600;
  margin-top: 8px;
  font-size: 0.9rem;
}

.testimonial small {
  color: #888;
}

/* Contact & map */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 28px;
  align-items: stretch;
}

.contact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px 18px 20px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.07);
  font-size: 0.86rem;
}

.contact-card h3 {
  margin-bottom: 10px;
}

.contact-item {
  margin-bottom: 6px;
}

.contact-item span {
  font-weight: 600;
}

form {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

input,
textarea {
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 0.85rem;
  resize: vertical;
  font-family: inherit;
}

button[type="submit"] {
  border: none;
}

iframe {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 260px;
  border-radius: var(--radius);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.07);
}

/* Footer */

footer {
  background: #111;
  color: #ccc;
  padding: 18px 0;
  font-size: 0.8rem;
  margin-top: 20px;
}

footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

footer a {
  color: #eee;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-inner,
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  header {
    min-height: 100vh;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }

  .hero-card {
    margin-top: 10px;
  }

  .hero {
    padding-top: 30px;
  }
}
