:root {
  --primary: #1b9db1;
  --primary-dark: #138294;
  --text: #2d2d2d;
  --muted: #6b6b6b;
  --bg: #ffffff;
  --light: #f5f7f8;
  --accent: #ff8a00;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.top-strip {
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  text-align: center;
  padding: 11px 0;
}

.navbar {
  background: #fff;
  border-bottom: 1px solid #e6e6e6;
  padding: 10px 0; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--primary);
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--primary);
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 16px;
  text-transform: uppercase;
  color: #555;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a {
  color: #2d2d2d;
  font-weight: 500;
  text-transform: none;

}

.nav-links a:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: #f04a4a;
  color: #fff;
}

.btn-outline {
  border-color: #fff;
  color: #fff;
}

.hero {
  position: relative;
  min-height: 380px;
  background: center/cover no-repeat;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 70px 0 90px;
}

.hero h1 {
  font-size: clamp(26px, 3vw, 40px);
  margin: 0 0 10px;
}

.hero p {
  margin: 0 0 22px;
  color: #e8e8e8;
  font-size: 20px;
}

.hero-buttons {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  width: 200px;
}

.hero-buttons .btn {
  background: #fff;
  color: #333;
}

.hero-buttons .btn-outline {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

section {
  padding: 40px 0;
}

.section-title {
  font-size: 30px;
  margin-bottom: 8px;
}

.section-subtitle {
  color: var(--muted);
  font-size: 18px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.step-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.step-card img {
  height: 140px;
  width: 100%;
  object-fit: cover;
}

.step-body {
  padding: 16px;
  display: flex;
}

.step-body span {
  color: var(--primary);
  /* font-weight: 700; */
  font-size: 40px;
  display: block;
  margin-right: 10px;
}

.step-body h4 {
  margin: 8px 0 0;
  font-size: 24px;
  font-weight: normal;
}

.section-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
}

.section-actions .btn {
  background: var(--primary);
  color: #fff;
}

.section-actions .btn-link {
  color: var(--primary);
  background: transparent;
  border: none;
  padding: 10px 0;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.partner-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 20px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.partner-avatar {
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--light);
}

.partner-initial {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  border: 3px solid var(--light);
}

.partner-info h4 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.partner-company {
  margin: 0 0 4px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.partner-type {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

.partner-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 12px;
  font-weight: 600;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.room-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  text-align: center;
  font-size: 16px;
  padding-bottom: 10px;
}

.room-card img {
  height: 100px;
  width: 100%;
  object-fit: cover;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.testimonial-card {
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.testimonial-card img {
  height: 150px;
  width: 100%;
  object-fit: cover;
}

.testimonial-body {
  padding: 14px 16px 18px;
  font-size: 16px;
  color: #5a5a5a;
}

.testimonial-body strong {
  display: block;
  margin-top: 10px;
  color: #333;
}

.suppliers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  align-items: center;
  margin-top: 24px;
}

.supplier-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 18px;
  text-align: center;
}

.promo-strip {
  background: #fff4e6;
  border-radius: 12px;
  padding: 18px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 30px;
}

.promo-strip h3 {
  margin: 0 0 8px;
}

.promo-strip .btn {
  background: var(--accent);
  color: #fff;
}

.cta {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 50px 0;
}

.cta h2 {
  margin: 0 0 16px;
}

.footer {
  background: #0b0b0b;
  color: #8a8a8a;
  padding: 40px 0 20px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}

.footer h4 {
  color: #fff;
  font-size: 13px;
}

.footer a {
  color: inherit;
  display: block;
  margin: 6px 0;
}

.footer-bottom {
  margin-top: 24px;
  border-top: 1px solid #222;
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 820px) {
  .nav-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-actions {
    justify-content: center;
  }

  .promo-strip {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (min-width: 1440px) {
  .container {
    max-width: 1450px !important;
    padding: 0 60px;
  }
}

@media (min-width: 1920px) {
  .container {
    min-width: 1450px;
    padding: 0;
  }
}