:root {
  --primary-orange: #d95f00;
  --dark-orange: #a94200;
  --accent-orange: #ff8c1a;
  --ink: #222222;
  --muted: #666666;
  --border: #f4d1a9;
  --soft: #fff7ee;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #ffffff;
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
}

.page-wrapper {
  min-height: 100vh;
}

.topbar {
  position: relative;
  top: auto;
  z-index: 1;
  background: #ffffff;
  border-bottom: 2px solid var(--border);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
  padding: 12px 20px;
}

.topbar .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}

.topbar .container > .brand,
.topbar .container > .main-nav {
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--dark-orange);
}

.brand-logo {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.brand-text strong {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-orange);
  margin: 0;
  line-height: 1;
}

.brand-text small {
  color: #555;
  font-size: 0.95rem;
  margin: 4px 0 0;
  letter-spacing: 0.3px;
}

.brand-note {
  margin-top: 6px;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--dark-orange);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav {
  background: #ffffff;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  padding: 8px 0;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  border: 1px solid #fde1c3;
}

.main-nav a {
  color: #333333;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s ease;
  flex: 0 1 auto;
  text-align: center;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--soft);
  color: var(--dark-orange);
}

.content {
  display: grid;
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 24px 18px 48px;
}

.hero-card,
.card,
.site-footer {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  margin-bottom: 8px;
}

.hero-card {
  text-align: center;
  border-color: var(--primary-orange);
}

.eyebrow {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--dark-orange);
  text-transform: uppercase;
  margin: 0 0 8px;
}

.hero-card h1 {
  color: var(--primary-orange);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0;
  text-transform: uppercase;
}

.hero-card h2 {
  margin: 12px 0 0;
  color: var(--accent-orange);
  font-size: 1.08rem;
}

.hero-copy {
  padding: 24px 0 14px;
}

.hero-copy h1 {
  margin: 14px 0 16px;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.1;
  color: var(--primary-orange);
  opacity: 0;
  transform: translateY(18px);
  animation: slideFade 1.2s ease-out forwards;
}

@keyframes slideFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-highlight {
  margin: 16px 0 0;
  font-size: clamp(1.25rem, 2.4vw, 1.45rem);
  font-weight: 900;
  color: #ffffff;
  background: linear-gradient(135deg, #d95f00, #ffb54d);
  border-left: 5px solid #ff9b00;
  padding: 16px 18px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(217, 95, 0, 0.18);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  animation: blinkGlow 1.8s ease-in-out infinite;
}

@keyframes blinkGlow {
  0%, 100% {
    transform: scale(1) translateY(0);
    box-shadow: 0 18px 40px rgba(217, 95, 0, 0.18), inset 0 0 0 rgba(255, 255, 255, 0);
    opacity: 1;
  }
  50% {
    transform: scale(1.02) translateY(-2px);
    box-shadow: 0 22px 48px rgba(217, 95, 0, 0.28), inset 0 0 18px rgba(255, 255, 255, 0.18);
    opacity: 0.98;
  }
}

.lead {
  max-width: 740px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.btn {
  display: inline-block;
  padding: 11px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.btn-primary {
  background: var(--primary-orange);
  color: white;
}

.btn-secondary {
  background: var(--soft);
  color: var(--dark-orange);
  border: 1px solid #f5d0a9;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.card h3,
.site-footer h3 {
  margin-top: 0;
  color: var(--dark-orange);
}

.card ul {
  padding-left: 18px;
}

.card li {
  margin-bottom: 6px;
}

.placement-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.placement-card {
  background: #fff7ee;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
}

.placement-card h4 {
  margin: 0 0 8px;
  color: var(--dark-orange);
}

.placement-card p {
  margin: 0;
  color: #5b4d3f;
}

.hero-image,
.card img,
.iso-card img,
img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-image {
  margin-top: 16px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid #f3dcc2;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.card img,
.iso-card img {
  border-radius: 16px;
  margin-top: 16px;
  border: 1px solid #f3dcc2;
}

.iso-card {
  display: grid;
  gap: 14px;
  align-items: center;
}

.iso-card img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 16px;
  border: 1px solid #f3dcc2;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.iso-card p {
  margin: 0;
  color: var(--muted);
}

.main-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}

.main-content {
  min-height: 360px;
}

.enquiry-panel {
  position: sticky;
  top: 110px;
  background: #fffaf4;
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: 18px;
}

.enquiry-panel h4 {
  margin: 0 0 10px;
  color: var(--dark-orange);
}

.enquiry-panel label {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 8px;
  color: #5e3a0f;
}

.enquiry-panel input,
.enquiry-panel select,
.enquiry-panel textarea {
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  border-radius: 12px;
  border: 1px solid #f0c992;
  background: #ffffff;
  color: #222;
}

.enquiry-panel .btn-apply {
  margin-top: 16px;
  display: block;
  text-align: center;
  background: var(--primary-orange);
  color: #fff;
  padding: 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
}

.site-footer {
  text-align: center;
  margin-top: 10px;
  padding-bottom: 38px;
}

.site-footer p {
  margin: 8px 0;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 22px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: grid;
  place-items: center;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  z-index: 12000;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.06);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
}

.floating-enquiry {
  position: fixed;
  right: 18px;
  bottom: 108px;
  background: var(--primary-orange);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  z-index: 12000;
}

.bottom-cta {
  position: relative;
  background: #fff7ee;
  color: #4f2b01;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 18px;
  align-items: center;
  z-index: 9998;
  border-top: 1px solid var(--border);
}

.bottom-cta .cta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.bottom-cta .cta-apply {
  background: var(--primary-orange);
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 900px) {
  .content {
    padding: 16px 14px 280px;
  }

  .main-layout {
    grid-template-columns: 1fr;
  }

  .enquiry-panel {
    position: relative;
    top: 0;
  }

  .placement-panel {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
  }

  .bottom-cta {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .bottom-cta .cta-item {
    width: 100%;
    justify-content: center;
  }

  .topbar .container {
    padding: 0 18px;
    flex-direction: column;
    align-items: stretch;
  }

  .topbar .container > .brand {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .topbar .container > .main-nav {
    justify-content: center;
    width: 100%;
  }

  .brand {
    flex-wrap: wrap;
  }

  .main-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    justify-items: center;
    gap: 6px;
    padding: 10px 12px;
    width: 100%;
  }

  .main-nav a {
    flex: none;
    width: 100%;
    white-space: normal;
    word-break: break-word;
    hyphens: auto;
    min-width: 0;
    font-size: 0.95rem;
    padding: 8px 10px;
  }
}

@media (max-width: 700px) {
  .topbar {
    padding: 10px 12px;
  }

  .topbar .container {
    gap: 10px;
    flex-direction: column;
    align-items: stretch;
  }

  .brand {
    align-items: flex-start;
    gap: 10px;
    width: 100%;
  }

  .brand-logo {
    width: 72px;
    height: 72px;
  }

  .brand-text {
    width: calc(100% - 92px);
  }

  .brand-text strong {
    font-size: 2rem;
  }

  .brand-text small {
    font-size: 0.85rem;
  }

  .main-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    justify-items: center;
    gap: 6px;
    width: 100%;
  }

  .main-nav a {
    padding: 8px 10px;
    font-size: 0.88rem;
    flex: none;
    width: 100%;
    text-align: center;
    word-break: break-word;
  }

  .content {
    padding: 16px 12px 140px;
  }

  .hero-card,
  .card,
  .site-footer {
    padding: 18px;
  }

  .info-grid,
  .placement-panel {
    grid-template-columns: 1fr;
  }

  .main-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: clamp(1.9rem, 6vw, 2.8rem);
  }

  .hero-buttons {
    gap: 12px;
  }

  .hero-buttons a {
    width: 100%;
  }

  .bottom-cta {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .bottom-cta .cta-item {
    width: 100%;
    justify-content: center;
  }

  .whatsapp-float {
    width: 64px;
    height: 64px;
    right: 14px;
    bottom: 18px;
  }

  .whatsapp-float svg {
    width: 30px;
    height: 30px;
  }

  .floating-enquiry {
    right: 14px;
    bottom: 94px;
    padding: 10px 14px;
    font-size: 0.92rem;
  }

  .bottom-cta {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: 12px;
  }

  .content {
    padding: 16px 12px 24px;
  }
}

@media (max-width: 500px) {
  .topbar {
    padding: 10px 10px;
  }

  .brand-text strong {
    font-size: 1.75rem;
  }

  .brand-text small,
  .brand-note {
    font-size: 0.78rem;
    line-height: 1.3;
  }

  .main-nav {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 4px;
  }

  .main-nav a {
    font-size: 0.82rem;
    padding: 8px 8px;
  }

  .bottom-cta {
    padding: 12px 12px;
  }
}

