/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:        #0d5c47;
  --teal-dark:   #073d30;
  --teal-light:  #178a66;
  --teal-pale:   rgba(225, 245, 238, 0.85);
  --teal-mid:    #4db896;
  --white:       #ffffff;
  --glass:       rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.55);
  --text-dark:   #1a2e28;
  --text-mid:    #3d5c52;
  --text-light:  #6b8f85;
  --border:      rgba(13, 92, 71, 0.15);
  --font-display: 'Rosario', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --transition:  0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

html, body {
  height: 100%;
  overflow: hidden;
  font-family: var(--font-body);
  background: #f0f4f2;
  color: var(--text-dark);
}

/* ── SCREEN SYSTEM ── */
.screen {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateX(40px);
  transition: opacity var(--transition), transform var(--transition);
  overflow: hidden;
}

.screen.active {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}

/* ── HOME SCREEN ── */
#screen-home { background: transparent; }

/* Big faded globe background */
.bg-globe {
  position: absolute;
  inset: 0;
  background-image: url(../images/logo.jpeg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 120%;
  opacity: 1;
  filter: none;
  z-index: 0;
  z-index: 0;
}

/* Soft colour wash over globe */
#screen-home::before { display: none !important; }

/* All home children above bg */
#screen-home > * { position: relative; z-index: 2; }

/* ── HEADER ── */
header { display: none; }

.header-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(13, 92, 71, 0.15);
}

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

.brand-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: #0d3d6e;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.brand-limited {
  font-weight: 400;
  font-size: 13px;
  opacity: 0.7;
  color: var(--teal-dark);
}

/* ── TOP NAV ── */
.top-nav {
  display: none;
}

.nzbn-badge {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--teal-dark);
  letter-spacing: 0.03em;
  margin-bottom: 2px;
}

.nav-contact-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.nav-contact-list span,
.nav-contact-list a {
  font-size: 14px;
  color: var(--teal-dark);
  text-decoration: none;
  font-weight: 600;
  line-height: 1.6;
  display: block;
  padding: 0 16px 0 0;
  border-right: 1.5px solid rgba(13,92,71,0.25);
  margin-right: 16px;
}

.nav-contact-list span:last-child,
.nav-contact-list a:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.nzbn-badge {
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--teal-dark) !important;
  letter-spacing: 0.04em;
}

.nav-contact-list span,
.nav-contact-list a {
  cursor: default;
  text-decoration: none;
  color: var(--text-mid) !important;
}

/* ── HOME MAIN ── */
.home-main {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0;
  gap: 0;
  overflow: hidden;
  background: transparent;
  margin-top: 0;
  height: 100%;
}

.service-column {
  width: 240px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 20px 16px;
  background: rgba(255,255,255,0.97);
  border-right: 1.5px solid rgba(13,92,71,0.15);
  z-index: 2;
}

.right-panel {
  flex: 1;
  display: flex;
  flex-direction: row;
  overflow: hidden;
}

.right-image {
  flex: 1;
  background-image: url(images/backround.png);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.right-text {
  width: 280px;
  flex-shrink: 0;
  overflow-y: auto;
  padding: 20px 20px;
  background: rgba(255,255,255,0.97);
  border-left: 1.5px solid rgba(13,92,71,0.12);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.intro-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 12px;
}

.intro-body {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 10px;
}

.disclaimer-block {
  border-top: 1.5px solid rgba(13,92,71,0.12);
  padding-top: 16px;
}

.disclaimer-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--teal-dark);
  margin-bottom: 6px;
}

.disclaimer-body {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.7;
  font-style: italic;
}

/* Hero title */
.hero-center { text-align: center; }

.hero-title {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 72px;
  font-weight: 900;
  color: var(--teal-dark);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  line-height: 1;
}

.hero-ltd {
  font-size: 36px;
  font-weight: 700;
  vertical-align: middle;
  opacity: 0.7;
  color: var(--teal-dark);
}

.service-lines {
  list-style: none;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  text-align: left;
}

.service-lines li {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.svc-dash {
  color: var(--teal-mid);
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}

/* ── SERVICE GRID ── */
.service-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.svc-block {
  background: linear-gradient(135deg, #2a6fba 0%, #4090d0 100%);
  border: 2px solid #2060a0;
  box-shadow: 0 4px 14px rgba(40, 90, 180, 0.3);
  border-radius: 14px;
  padding: 16px 18px;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition);
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
}

.svc-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.svc-block:hover {
  background: linear-gradient(135deg, #3a80ca 0%, #50a0e0 100%);
  border-color: #3a80ca;
  box-shadow: 0 6px 20px rgba(40, 90, 180, 0.4);
  transform: translateY(-2px);
}

.svc-block:hover::before { transform: scaleX(1); }

.svc-block-inner { display: flex; flex-direction: column; gap: 3px; }

.svc-icon { font-size: 22px; margin-bottom: 6px; display: block; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2)); }

.svc-block h2 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  letter-spacing: 0.02em;
}

.svc-block p { font-size: 12px; color: #ffffff; font-weight: 600; text-shadow: 0 1px 3px rgba(0,0,0,0.2); }

.svc-arrow {
  font-size: 22px;
  color: #ffffff;
  font-weight: 900;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  transition: transform var(--transition);
}

.svc-block:hover .svc-arrow { transform: translateX(4px); }

/* ── ENQUIRY BUTTON ── */
.enquiry-header-btn {
  background: var(--teal-dark);
  border: none;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 11px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.03em;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(13,92,71,0.2);
}

.enquiry-header-btn:hover {
  background: var(--teal);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(13,92,71,0.3);
}

/* ── SUB SCREENS ── */
.sub-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 36px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.sub-header h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--teal);
}

.back-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--transition);
}

.back-btn:hover {
  background: var(--teal-pale);
  color: var(--teal);
  border-color: var(--teal-mid);
}

.enquiry-nav-btn {
  background: var(--teal);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 9px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  cursor: pointer;
  transition: background var(--transition);
}

.enquiry-nav-btn:hover { background: var(--teal-light); }

.sub-content {
  flex: 1;
  overflow-y: auto;
  padding: 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #f0f8f4;
}

.sub-intro {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--teal-pale);
  border-radius: 12px;
  padding: 20px 24px;
}

.sub-icon { font-size: 28px; flex-shrink: 0; }

.sub-intro p {
  font-size: 15px;
  color: var(--teal-dark);
  line-height: 1.7;
  margin-top: 4px;
}

.sub-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.sub-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: box-shadow var(--transition);
}

.sub-card:hover { box-shadow: 0 4px 16px rgba(13,92,71,0.08); }

.sub-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 8px;
}

.sub-card p { font-size: 13px; color: var(--text-mid); line-height: 1.6; }

.card-enquiry-btn {
  margin-top: 12px;
  background: var(--teal);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 8px 14px;
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
  transition: background var(--transition);
}

.card-enquiry-btn:hover { background: var(--teal-light); }

/* ── ENQUIRY SCREEN ── */
#screen-enquiry { background: #f0f8f4; }

.enquiry-content {
  flex: 1;
  overflow-y: auto;
  padding: 28px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.enquiry-intro {
  max-width: 560px;
  width: 100%;
  margin-bottom: 20px;
}

.enquiry-intro p {
  font-size: 14px;
  color: var(--text-mid);
  background: var(--teal-pale);
  border-radius: 10px;
  padding: 14px 18px;
  line-height: 1.6;
}

.enquiry-form {
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}

.form-group label {
  font-size: 12px;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--text-dark);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal-mid);
  box-shadow: 0 0 0 3px rgba(29, 158, 117, 0.1);
}

.form-group textarea { resize: vertical; min-height: 80px; }

.submit-btn {
  width: 100%;
  padding: 13px;
  background: var(--teal);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition);
}

.submit-btn:hover { background: var(--teal-light); }

.enquiry-success {
  text-align: center;
  padding: 40px 20px;
  max-width: 400px;
  margin: 0 auto;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: var(--teal-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--teal);
  margin: 0 auto 16px;
}

.enquiry-success h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--teal);
  margin-bottom: 8px;
}

.enquiry-success p { font-size: 15px; color: var(--text-mid); margin-bottom: 24px; }

.back-home-btn {
  background: var(--teal);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 11px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  cursor: pointer;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--teal-mid); border-radius: 10px; }

/* Tagline */
.hero-tagline {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-mid);
  margin-bottom: 16px;
  font-style: italic;
  letter-spacing: 0.01em;
}

/* SVG icons in service blocks */
.svc-icon svg {
  color: var(--text-mid);
  display: block;
}

/* Bigger service block padding */
.svc-block {
  padding: 20px 22px !important;
}

/* Column headers */
.col-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1.5px solid rgba(13,92,71,0.12);
  flex-shrink: 0;
  background: rgba(255,255,255,0.97);
}

.col-header-right {
  justify-content: flex-end;
  border-bottom: 1.5px solid rgba(13,92,71,0.12);
}

/* Update service column to be flex column with header */
.service-column {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  padding: 0 !important;
}

.service-column .service-grid {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

/* Right text panel header */
.right-text {
  display: flex !important;
  flex-direction: column !important;
  padding: 0 !important;
}

.right-text .intro-block,
.right-text .disclaimer-block {
  padding: 0 20px;
}

.right-text .intro-block {
  padding-top: 16px;
  flex: 1;
  overflow-y: auto;
}

.right-text .disclaimer-block {
  padding-bottom: 16px;
}

/* Contact info at bottom of left column */
.contact-info {
  border-top: 1.5px solid rgba(13,92,71,0.12);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.97);
}

.contact-item {
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.6;
}

.contact-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--teal-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  width: 42px;
  flex-shrink: 0;
}

.contact-info-top {
  padding: 10px 16px;
  border-bottom: 1.5px solid rgba(13,92,71,0.12);
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(255,255,255,0.97);
}

/* ── SERVICE PAGE LAYOUT ── */
.svc-page {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 860px;
}

.svc-page-intro h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 14px;
}

.svc-page-intro p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 10px;
}

.svc-page-services {
  background: var(--teal-pale);
  border-radius: 12px;
  padding: 20px 24px;
}

.svc-page-services h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 12px;
}

.svc-page-services ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.svc-page-services ul li {
  font-size: 14px;
  color: var(--text-mid);
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}

.svc-page-services ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 900;
  font-size: 16px;
}

.svc-page-services.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.svc-page-closing p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 10px;
  font-style: italic;
}

.svc-page-closing .card-enquiry-btn {
  margin-top: 8px;
  font-size: 15px;
  padding: 12px 28px;
}



/* ── FULL PAGE SERVICE LAYOUT (no scroll) ── */
.svc-full-page {
  flex: 1;
  display: flex;
  flex-direction: row;
  gap: 0;
  overflow: hidden;
  height: calc(100vh - 56px);
}

.svc-left {
  flex: 1;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  border-right: 1.5px solid rgba(13,92,71,0.1);
  background: #f8fdf9;
  overflow-y: auto;
}

.svc-left h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 4px;
}

.svc-left p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
}

.svc-right {
  width: 300px;
  flex-shrink: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0;
  background: #f0f8f4;
}

.svc-mini-card {
  padding: 24px 20px;
  border-right: 1.5px solid rgba(13,92,71,0.1);
  border-bottom: 1.5px solid rgba(13,92,71,0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: white;
  transition: background var(--transition);
}

.svc-mini-card:hover {
  background: var(--teal-pale);
}

.svc-mini-card h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--teal-dark);
}

.svc-mini-card p {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Mini list inside cards */
.mini-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mini-list li {
  font-size: 12px;
  color: var(--text-mid);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}

.mini-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 900;
}

/* ── MOBILE RESPONSIVE ── */
@media (max-width: 768px) {

  /* Home screen */
  .home-main {
    flex-direction: column !important;
    height: auto !important;
    overflow-y: auto !important;
    padding: 16px !important;
    gap: 16px !important;
  }

  .service-column {
    width: 100% !important;
    border-right: none !important;
    border-bottom: 1.5px solid rgba(13,92,71,0.15);
  }

  .col-header {
    padding: 10px 14px !important;
  }

  .service-column .service-grid {
    padding: 12px !important;
    gap: 10px !important;
    justify-content: flex-start !important;
  }

  .service-grid {
    width: 100% !important;
  }

  .svc-block {
    padding: 14px 16px !important;
  }

  .right-panel {
    flex-direction: column !important;
    width: 100% !important;
  }

  .right-image {
    height: 200px !important;
    width: 100% !important;
  }

  .right-text {
    width: 100% !important;
    border-left: none !important;
    border-top: 1.5px solid rgba(13,92,71,0.12);
    padding: 16px !important;
  }

  .contact-info-top {
    padding: 8px 14px !important;
  }

  .brand-name {
    font-size: 13px !important;
  }

  .logo {
    width: 38px !important;
    height: 38px !important;
  }

  /* Sub screens */
  .sub-header {
    padding: 10px 14px !important;
  }

  .sub-header h2 {
    font-size: 16px !important;
  }

  .svc-full-page {
    flex-direction: column !important;
    height: auto !important;
    overflow-y: auto !important;
  }

  .svc-left {
    padding: 16px !important;
    overflow-y: visible !important;
  }

  .svc-right {
    width: 100% !important;
    grid-template-columns: 1fr 1fr !important;
    border-top: 1.5px solid rgba(13,92,71,0.12);
  }

  .svc-mini-card {
    padding: 14px 12px !important;
  }

  /* Enquiry screen */
  .enquiry-content {
    padding: 16px !important;
  }

  .form-row {
    grid-template-columns: 1fr !important;
  }

  /* Header enquiry button */
  .enquiry-header-btn {
    font-size: 12px !important;
    padding: 8px 12px !important;
  }

  .col-header-right {
    padding: 10px 14px !important;
  }

  /* Sub content */
  .sub-content {
    padding: 16px !important;
  }

  .sub-cards {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .svc-right {
    grid-template-columns: 1fr !important;
  }

  .hero-title {
    font-size: 36px !important;
  }

  .contact-item {
    font-size: 11px !important;
  }
}

/* ── MOBILE HOME IMPROVEMENTS ── */
@media (max-width: 768px) {

  /* Show background image on mobile */
  #screen-home {
    background: #f0f8f4 !important;
  }

  /* Remove empty space - tighten everything up */
  .contact-info-top {
    padding: 6px 14px 10px !important;
    gap: 3px !important;
  }

  .service-column .service-grid {
    padding: 10px 12px 12px !important;
    gap: 10px !important;
  }

  /* Make enquiry button fixed at bottom */
  .col-header-right {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: white !important;
    border-top: 1.5px solid rgba(13,92,71,0.15) !important;
    padding: 12px 20px !important;
    z-index: 999 !important;
    justify-content: center !important;
  }

  .enquiry-header-btn {
    width: 100% !important;
    font-size: 15px !important;
    padding: 12px !important;
    text-align: center !important;
  }

  /* Add padding at bottom so tabs not hidden behind button */
  .service-column {
    padding-bottom: 70px !important;
  }

  /* Hide right panel image on mobile - not needed */
  .right-panel {
    display: none !important;
  }
}
