/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Base */
body {
  display: flex;
  font-family: "Lora", Georgia, serif;
  background: #ffffff;


  color: #2b2b2b;
  line-height: 1.7;
}


/* Sidebar */
.sidebar {
  width: 260px;
  min-height: 100vh;
  position: fixed;
  background: #eef4f2;
  padding: 2.5rem 1.5rem;
  border-right: 1px solid #d6e2de;
}

.sidebar-logo {
  width: 220px;
  max-width: 100%;
  display: block;
  margin: 0 auto 3rem auto;
}


.sidebar nav a {
  display: block;
  text-decoration: none;
  color: #1f3f39;
  font-weight: 500;
  padding: 0.75rem 1rem;
  margin-bottom: 0.6rem;
  border-radius: 10px;
  background: #e2ece9;
  transition: background 0.2s ease, transform 0.1s ease;
}

.sidebar nav a:hover {
  background: #d3e4df;
  transform: translateX(2px);
}


/* Main content */
.main-content {
  margin-left: 260px;
  padding: 4rem 6rem 4rem 4rem;
  max-width: 1200px;
  
}


/* Sections */
.section {
  padding: 4rem 0;
}

.section.alt {
  background: #eef4f2;
  border-radius: 14px;
  padding: 4rem;
  margin: 3rem 0;
}

/* Grid */
.section-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
}

/* Typography */
h1, h2 {
  color: #1f3f39;
  margin-bottom: 1.5rem;
}

p {
  margin-bottom: 1.2rem;
}

/* Lists */
.list {
  list-style: disc;
  padding-left: 1.2rem;
}

.list li {
  margin-bottom: 0.6rem;
}


/* Images */
.about-photo {
  width: 100%;
  max-width: 320px;
  border-radius: 14px;
}

.map {
  width: 100%;
  height: 260px;
  border: none;
  border-radius: 14px;
}

.location-address {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: #eef4f2;
  border-radius: 14px;
  text-align: center;
}

.location-address h3 {
  color: #1f3f39;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.location-address p {
  color: #2b2b2b;
  font-size: 1rem;
  line-height: 1.4;
  margin: 0;
}

/* Table */
.availability {
  width: 100%;
  border-collapse: collapse;
}
.availability th,
.availability td {
  border: 1px solid #cfdad6;
  padding: 0.7rem;
}
.availability th {
  background: #dfe9e6;
}

.availability td:not(:first-child),
.availability th:not(:first-child) {
  text-align: center;
}


/* Footer */
footer {
  margin-top: 5rem;
  text-align: center;
  font-size: 0.85rem;
  color: #5f6f6a;
}
.bacp-badge {
  max-width: 320px;
  margin-bottom: 1rem;
}

/* Form Styles */
#contact-form {
  margin-top: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #1f3f39;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #cfdad6;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: #ffffff;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2f6f62;
  box-shadow: 0 0 0 2px rgba(47, 111, 98, 0.1);
}

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

button[type="submit"] {
  padding: 0.75rem 2rem;
  background: #2f6f62;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
}

button[type="submit"]:hover {
  background: #265c52;
}

#form-status {
  margin-top: 1rem;
  font-weight: 500;
}

/* 📱 Mobile */
@media (max-width: 900px) {
  body {
    flex-direction: column;
  }

  .sidebar {
    position: static;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #d6e2de;
  }

  .main-content {
    margin-left: 0;
    padding: 2rem;
  }

  .section-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section.alt {
    padding: 2.5rem;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
    padding: 2.5rem 1.5rem;
  }

  .hero-content {
    width: 100%;
    max-width: 720px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    padding-left: 0;
  }

  .hero-content p {
    padding-left: 0;
    font-size: 1rem;
  }

  .hero-image {
    width: 100%;
    min-height: 240px;
    overflow: hidden;
    border-radius: 14px;
  }

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

/* Bupa link */
/* Bupa link */
.bupa-box {
  margin-top: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, #2f6f62 0%, #265c52 100%);
  border-radius: 16px;
  border: 2px solid #1f4f45;
  box-shadow: 0 4px 12px rgba(47, 111, 98, 0.3);
  color: #ffffff;
}

.bupa-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.bupa-logo {
  height: 48px;
  width: auto;
  filter: brightness(1.1);
}

.bupa-button {
  padding: 0.8rem 2rem;
  background: #ffffff;
  color: #2f6f62;
  text-decoration: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border: 2px solid #ffffff;
}

.bupa-button:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.sidebar-address {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #e2ece9;
  border-radius: 10px;
  text-align: center;
}

.sidebar-address h3 {
  color: #1f3f39;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.sidebar-address p {
  color: #2b2b2b;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #eef4f2 0%, #ffffff 100%);
  border-radius: 14px;
  margin-bottom: 4rem;
  min-height: 300px;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1f3f39;
  padding-left: 1rem;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #2b2b2b;
  padding-left: 1rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: #2f6f62;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: background 0.2s ease;
}

.cta-button:hover {
  background: #265c52;
}

.hero-image {
  padding-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}

.hero-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 100%;
  height: auto;
  display: block;
}


.divider-1 {
  background-position: center top;
}

.divider-2 {
  background-position: center center;
}

.divider-3 {
  background-position: center bottom;
}


.section-divider {
  position: relative;
  height: 130px;
  margin: 4rem 0;

  opacity: 0.85;

  background-image: url("assets/forest.jpg");
  background-size: cover;
  background-repeat: no-repeat;

  /* controlled width */
  width: calc(100vw - 260px - 6rem);
}

.section-divider::after {
  content: "";
  position: absolute;
  inset: 0;
 
}

/* Mobile Header */
.mobile-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: #eef4f2;
  border-bottom: 1px solid #d6e2de;
}

.mobile-logo {
  height: 42px;
}

.menu-toggle {
  font-size: 1.8rem;
  color: #1f3f39;
  font-weight: 600;
}


/* Mobile Menu Behaviour */
@media (max-width: 900px) {
  body {
    flex-direction: column;
    overflow-x: hidden;
  }

  .mobile-header {
    display: flex;
  }

  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    z-index: 1000;

    width: 80vw;
    max-width: 300px;
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .sidebar-logo {
    display: none;
  }

  .sidebar-address {
    display: none;
  }

  .main-content {
    margin-left: 0;
    padding: 2rem;
  }

  .section-grid {
    grid-template-columns: 1fr;
  }

  .section-divider {
    width: 100%;
  }
}
@media (max-width: 900px) {
  .section-divider {
    width: 100vw;
    margin-left: -2rem;
    margin-right: -2rem;
    height: 90px;
  }
}

@media (max-width: 900px) {
  .section-media {
    overflow-x: auto;
  }

  .availability {
    min-width: 480px;
  }
}

@media (max-width: 900px) {
  .bacp-badge {
    max-width: 220px;
  }
}

@media (max-width: 900px) {
  .bupa-button {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }

  .bupa-row {
    flex-direction: column;
    gap: 1rem;
  }

  .bupa-logo {
    height: 40px;
  }
}

@media (max-width: 900px) {
  .sidebar-logo {
    width: 200px;
    margin: 0 auto 1.5rem auto;
  }
}

/* ---------- LOGO SIZE OVERRIDES ---------- */

/* Desktop sidebar logo */
.sidebar-logo {
  width: 260px;   /* increase more if you want */
  max-width: 100%;
  margin: 0 auto 3rem auto;
  display: block;
}

/* Mobile top logo */
.mobile-logo {
  height: 80px;   /* THIS is the key change */
  width: auto;
}

#services .section-grid + .section-grid {
  margin-top: 2rem;
}

#services .section-grid {
  gap: 1.25rem;
}

#services .section-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.two-column {
  columns: 3;
  column-gap: 3rem;
}

.two-column li {
  break-inside: avoid;
}


@media (max-width: 900px) {
  #services .section-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .two-column {
  columns: 1;
  column-gap: 3rem;
  
}

.two-column li {
  break-inside: avoid;
}
}

.about-figure {
  text-align: center;
}

.about-quote {
  margin-top: 1.2rem;
  padding: 0.9rem 1.2rem;

  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.6;

  color: #1f3f39;
  background: #eef4f2;

  border-radius: 18px;

  max-width: 340px;
  margin-left: auto;
  margin-right: auto;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}













