:root {
  --ink: #172554;
  --muted: #5b6475;
  --line: #d9e2f1;
  --soft: #f7faff;
  --white: #ffffff;
  --teal: #0f766e;
  --green: #16a34a;
  --navy: #14213d;
  --blue: #2563eb;
  --gold: #f59e0b;
  --card: #ffffff;
  --shadow: 0 18px 50px rgba(37, 99, 235, 0.10);
}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

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

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

.container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.topbar {
  background: var(--navy);
  color: #fff;
  font-size: 14px;
}

.topbar-inner {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
}

.brand-logo {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  flex: 0 0 auto;
}

.brand-logo.fallback::after {
  content: "SK";
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: var(--teal);
  color: #fff;
  font-weight: 900;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 17px;
}

.brand small {
  display: block;
  color: var(--muted);
  font-weight: 700;
  max-width: 340px;
}

.main-nav,
.header-actions,
.lang {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.main-nav a {
  font-weight: 800;
  color: #22324a;
  padding: 8px 6px;
}

.lang a,
.btn {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  transition: 0.25s ease;
}

.lang a.active,
.btn-primary {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.btn-search {
  background: linear-gradient(135deg, #f97316, #ec4899);
  border-color: transparent;
  color: #fff;
}

.btn-search:hover {
  filter: brightness(1.05);
}

.btn:hover {
  transform: translateY(-1px);
}
.service-modern-card:hover,
.service-card:hover {
  transform: translateY(-4px);
  transition: 0.25s ease;
}
.hero-premium {
  background:
    radial-gradient(circle at top left, rgba(249,115,22,0.12), transparent 30%),
    radial-gradient(circle at right top, rgba(236,72,153,0.10), transparent 28%),
    radial-gradient(circle at right bottom, rgba(37,99,235,0.10), transparent 30%),
    linear-gradient(180deg, #fff8f4 0%, #f3f7ff 100%);
  padding: 18px 0 44px;
}


.hero-premium-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-panel-card,
.service-modern-card,
.review-modern-card,
.camp-preview-card,
.form-panel-modern,
.about-band-card,
.panel,
.card {
  border-radius: 8px;
}

.hero-copy {
  padding: 34px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.1;
}

h1 {
  font-size: 48px;
  letter-spacing: 0;
  max-width: 680px;
}


h2 {
  font-size: 38px;
}

h3 {
  font-size: 28px;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.hero-text {
  max-width: 720px;
  font-size: 20px;
}
.services-hero h1 {
  max-width: 620px;
}

.services-hero .panel {
  background: linear-gradient(180deg, #ffffff 0%, #fff7ed 100%);
  border: 1px solid #ffd7b8;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.hero-points span {
  background: rgba(15,118,110,0.08);
  color: var(--ink);
  border: 1px solid rgba(15,118,110,0.14);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 700;
}

.hero-panel-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 22px;
  height: 100%;
}

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

.mini-stats div {
  background: var(--soft);
  border: 1px solid var(--line);
  padding: 14px;
  border-radius: 8px;
}

.mini-stats strong {
  display: block;
  font-size: 24px;
  color: var(--teal);
  transition: 0.3s ease;
}

.section {
  padding: 76px 0;
}

.section.alt {
  background: var(--soft);
}

.section-highlight {
  padding-top: 0;
}

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

.trust-item {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 22px;
  border-radius: 8px;
}

.trust-item strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

.modern-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 28px;
}

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

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

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

.service-grid-modern {
  align-items: stretch;
}

.service-modern-card,
.service-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fdfcff 100%);
  border: 1px solid #d9e2f1;
  box-shadow: var(--shadow);
  padding: 16px;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-modern-card::before,
.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #f97316, #ec4899, #2563eb);
}

.service-media {
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}

.service-media img {
  width: 100%;
  height: 105px;
  object-fit: cover;
  display: block;
}

.service-detail-media {
  margin-bottom: 18px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}

.service-detail-media img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  display: block;
}

.badge {
  display: inline-flex;
  width: fit-content;
  background: linear-gradient(135deg, #fff1e8, #ffe4f1);
  border: 1px solid #ffd2e6;
  color: #c2410c;
  padding: 6px 11px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 14px;
}


.about-band {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: center;
}

.about-band-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 26px;
}

.about-band-card ul {
  margin: 0;
  padding-left: 18px;
}
.camp-preview-media {
  margin-bottom: 14px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 9;
}

.camp-preview-media {
  margin-bottom: 14px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 9;
}

.camp-preview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



.camp-preview-card,
.review-modern-card,
.form-panel-modern,
.panel,
.card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 24px;
}

.reviews-slider {
  display: grid;
  grid-template-columns: 48px minmax(0, 980px) 48px;
  justify-content: center;
  gap: 18px;
  align-items: center;
}

.reviews-track-wrap {
  overflow: hidden;
  width: 100%;
}

.reviews-track {
  display: flex;
  gap: 18px;
  transition: transform 0.4s ease;
  will-change: transform;
}

.review-slide {
  flex: 0 0 calc((100% - 18px) / 2);
  max-width: calc((100% - 18px) / 2);
  box-sizing: border-box;
}

.review-modern-card {
  padding: 16px;
  min-height: 155px;
  height: 100%;
}

.review-modern-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.review-modern-card p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.reviews-nav {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.reviews-nav:hover {
  background: var(--soft);
}

.stars {
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.enquiry-band {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: start;
}

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

.field.full {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 11px 13px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}
.services-dashboard-hero {
  background:
    radial-gradient(circle at top left, rgba(249,115,22,0.12), transparent 30%),
    radial-gradient(circle at right top, rgba(236,72,153,0.10), transparent 28%),
    radial-gradient(circle at right bottom, rgba(37,99,235,0.10), transparent 30%),
    linear-gradient(180deg, #fff8f4 0%, #f3f7ff 100%);
  padding: 28px 0 36px;
}

.services-dashboard-shell {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: start;
}

.services-dashboard-intro h1 {
  max-width: 620px;
  margin-bottom: 10px;
}

.services-dashboard-intro p {
  max-width: 700px;
}

.services-stats-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.services-stat-card {
  background: linear-gradient(180deg, #ffffff 0%, #fff7fb 100%);
  border: 1px solid #ffd7ea;
  border-radius: 8px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.services-stat-card strong {
  display: block;
  font-size: 24px;
  color: #c2410c;
  margin-bottom: 4px;
}

.services-dashboard-side {
  position: sticky;
  top: 96px;
}

.services-quick-panel {
  background: linear-gradient(180deg, #ffffff 0%, #fff7ed 100%);
  border: 1px solid #ffd7b8;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 22px;
}

.services-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.services-grid-head {
  margin-bottom: 18px;
}

.services-dashboard-grid {
  align-items: stretch;
}

.service-search-bar {
  margin-bottom: 24px;
}

.service-search-bar input {
  width: 100%;
  min-height: 54px;
  border: 1px solid #ffd2e6;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #fff7fb 100%);
  padding: 12px 16px;
  font-size: 16px;
  box-shadow: var(--shadow);
}

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

.service-card .actions,
.service-modern-card .actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
}

.service-card .actions .btn,
.service-modern-card .actions .btn {
  min-height: 38px;
  padding: 7px 8px;
  font-size: 13px;
  white-space: nowrap;
}

.site-footer {
  background: var(--navy);
  color: #fff;
  padding: 46px 0;
}

.site-footer p,
.site-footer a {
  color: #d7e3f0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 24px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  background: var(--green);
  color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 900;
  box-shadow: var(--shadow);
}

@media (max-width: 980px) {
  .hero-premium-grid,
  .grid-2,
  .about-band,
  .enquiry-band,
  .footer-grid,
  .trust-strip,
  .services-dashboard-shell,
  .services-stats-strip {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .services-dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .modern-head {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 980px) {
  .review-slide {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 980px) {
  .reviews-slider {
    grid-template-columns: 40px minmax(0, 100%) 40px;
    gap: 12px;
  }

  .reviews-track {
    gap: 12px;
  }

  .review-slide {
    flex: 0 0 calc((100% - 12px) / 2);
    max-width: calc((100% - 12px) / 2);
  }

  .review-modern-card {
    padding: 14px;
    min-height: 145px;
  }
}

@media (max-width: 640px) {
  .reviews-slider {
    grid-template-columns: 1fr;
  }

  .reviews-nav {
    display: none;
  }

  .reviews-track {
    gap: 0;
  }

  .review-slide {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .review-modern-card {
    padding: 12px;
    min-height: 130px;
  }

  .review-modern-card h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .review-modern-card p {
    font-size: 13px;
    line-height: 1.45;
  }

  .stars {
    font-size: 17px;
    margin-bottom: 6px;
  }
}

@media (max-width: 720px) {
  .topbar-inner,
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0;
  }

  .form-grid,
  .mini-stats {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 32px;
  }

  .hero-text {
    font-size: 18px;
  }

  .brand small {
    max-width: none;
  }
}

@media (max-width: 520px) {
  .grid-3,
  .services-dashboard-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-modern-card,
  .service-card {
    padding: 14px;
    min-height: auto;
  }

  .service-media {
    margin-bottom: 12px;
  }

  .service-media img {
    height: 150px;
  }

  .service-card h3,
  .service-modern-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .service-card p,
  .service-modern-card p {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .service-card .actions,
  .service-modern-card .actions {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .service-card .actions .btn,
  .service-modern-card .actions .btn {
    min-height: 38px;
    padding: 7px 8px;
    font-size: 13px;
  }

  .badge {
    margin-bottom: 10px;
    padding: 5px 9px;
    font-size: 12px;
  }
}
