*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #258176;
  --primary-dark: #1b6059;
  --primary-footer: #164f47;
  --secondary: #B5DA88;
  --secondary-dark: #96c463;
  --secondary-light: #e8f5d6;
  --yellow: #f4a623;
  --yellow-hover: #e09318;
  --text-dark: #162624;
  --text-mid: #344f4c;
  --text-light: #617874;
  --bg-light: #f4faf6;
  --bg-green-pale: #edf7e8;
  --white: #ffffff;
  --border: #cde8e0;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(37, 129, 118, 0.10);
  --shadow-md: 0 8px 40px rgba(37, 129, 118, 0.14);
  /* aliases for back-compat */
  --teal: var(--primary);
  --teal-dark: var(--primary-dark);
  --teal-footer: var(--primary-footer);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Rubik', sans-serif;
}

/* Header */
.header {
  padding: 20px 0;
  background-color: rgba(255, 255, 255, 0.9);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 20px;
  margin: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 45px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  font-weight: 400;
  font-size: 1rem;
  color: #1f2937;
  /* Same as index.html */
  padding: 10px 0;
  display: inline-block;
  text-decoration: none;
}

.nav-links a:hover {
  color: #1d8f85;
  /* Same as index.html */
}

.nav-links i {
  font-size: 1rem;
  margin-left: 4px;
}

.header .nav-links .nav-book-btn {
  display: none !important;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  border-radius: 12px;
  top: 90%;
  left: 0;
  overflow: hidden;
}

.dropdown-content a {
  color: #1f2937 !important;
  padding: 12px 20px !important;
  text-decoration: none;
  display: block !important;
  font-size: 0.95rem !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background-color: #eef9f8 !important;
  /* Same as index.html primary-light */
  color: #1d8f85 !important;
  /* Same as index.html primary */
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Adjust nav links for dropdown */
.nav-links .dropdown>a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

/* Button styles for navbar */
.header .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 400;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.header .btn-yellow {
  background-color: #ffce00;
  color: #1f2937;
}

.header .btn-yellow:hover {
  background-color: #e6ba00;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 206, 0, 0.3);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 880px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
  /* Account for fixed header */
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 30, 25, .72) 40%, rgba(10, 30, 25, .15) 75%, transparent 100%),
    url('./assets/images/parkhill-banner.png') center/cover no-repeat;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 60px 6%;
  gap: 40px;
}

.hero-content {
  max-width: 520px;
}

.hero-content h1 {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-content h1 em {
  font-style: italic;
  font-size: 0.62em;
  font-weight: 400;
  display: block;
  margin-bottom: 6px;
  opacity: 0.92;
}

.hero-content p {
  color: rgba(255, 255, 255, .85);
  font-size: 14.5px;
  line-height: 1.7;
  max-width: 400px;
}

.hero-cta {
  flex-shrink: 0;
}

.btn-outline-white {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid #fff;
  border-radius: 30px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, color .2s;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(4px);
  white-space: nowrap;
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--primary-dark);
}


/* ── SECTION SHARED ── */
section {
  padding: 72px 6%;
}

.section-tag {
  font-family: 'Rubik', sans-serif;
  font-style: italic;
  color: var(--primary);
  font-size: 16px;
  margin-bottom: 2px;
}

.section-title {
  font-family: 'Rubik', sans-serif;
  color: var(--primary);
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 600;
  margin-bottom: 20px;
}

.section-center {
  text-align: center;
}

.section-center .section-tag,
.section-center .section-title {
  text-align: center;
}

/* ── ABOUT ── */
.about {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Logo Watermark Utility */
.logo-watermark {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: 700px;
  height: 700px;
  background: url("Images/logo.svg") no-repeat center/contain;
  opacity: 0.18;
  filter: none;
}

.watermark-left {
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
}

.watermark-right {
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
}

.about-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1700px;
  margin: auto;
}

.about-text p {
  color: var(--text-mid);
  font-size: 14.5px;
  line-height: 1.8;
  margin-bottom: 14px;
}

/* Image column with offset frame */
.about-image-wrap {
  position: relative;
  padding-bottom: 24px;
  /* room for offset block below */
  padding-right: 24px;
  /* room for offset block right */
}

/* The offset mint-green frame block behind the photo */
.about-image-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  background: #B5DA88;
  border-radius: var(--radius-lg);
  z-index: 0;
}

.about-image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  height: 380px;
  box-shadow: 0 8px 32px rgba(42, 157, 143, 0.12);
}

/* ── FEATURES ── */
.features {
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
  padding: 100px 6%;
}

.features-inner {
  max-width: 1700px;
  position: relative;
  z-index: 1;
  margin: auto;
}

.features-title {
  font-family: 'Rubik', sans-serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 32px;
}

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

.features-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.features-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
  border-bottom: 2px solid var(--secondary-light);
  padding-bottom: 10px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 16px;
  color: var(--text-mid);
}

.feature-item .icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 14px;
  margin-top: 1px;
}

.facility-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}

/* ── LIFE ── */
.life {
  background: var(--white);
  position: relative;
  overflow: hidden;
  padding: 100px 6%;
}

.life-inner {
  max-width: 1700px;
  position: relative;
  z-index: 1;
  margin: auto;
}

.life-subtitle {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.life-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 8px;
}

.life-img {
  border-radius: var(--radius);
  overflow: hidden;
}

.life-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.life-img:hover img {
  transform: scale(1.04);
}

/* ── FAQ ── */
.faq {
  background: var(--bg-light);
  padding: 10px 6%;
  position: relative;
  overflow: hidden;
}

.faq-inner {
  max-width: 860px;
  position: relative;
  z-index: 1;
  margin: auto;
}

.faq-item {
  border-top: 1px solid var(--border);
  padding: 12px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-question-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.faq-answer-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--bg-light);
  padding: 30px 3% 0;
  position: relative;
  z-index: 2;
}

.cta-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  text-align: center;
  box-shadow: 0 8px 48px rgba(0, 0, 0, .12);
  border: 1px solid var(--border);
  position: relative;
  bottom: -72px;
  /* overlap into footer */
  z-index: 10;
}

.cta-card p.pre {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 6px;
}

.cta-card h2 {
  font-family: 'Rubik', sans-serif;
  font-style: italic;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  color: var(--text-dark);
  margin-bottom: 10px;
}

.cta-card .sub {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 30px;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-yellow {
  background: var(--yellow);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .15s;
}

.btn-yellow:hover {
  background: var(--yellow-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--border);
  border-radius: 30px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: border-color .2s, color .2s;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}


/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-wrap {
    max-width: 560px;
  }

  .about-circle-deco {
    display: none;
  }

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


  /* shrink row heights slightly on medium screens */
  .life-grid {
    grid-template-rows: 200px 200px;
  }
}

@media (max-width: 1024px) {

  /* Mobile Menu for Medium Devices */
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background-color: #1d8f85;
    padding: 100px 40px;
    gap: 25px;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
  }

  .nav-links.active {
    left: 0;
  }

  .header .btn-yellow {
    display: none;
  }

  .nav-links a {
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    text-decoration: none;
  }

  .nav-links a:hover {
    color: #ffce00;
    /* Use index.html secondary color */
  }

  .header .nav-links a.nav-book-btn {
    display: inline-block !important;
    margin-top: 20px;
    text-align: center;
    border-bottom: none;
    padding: 15px;
    font-size: 1rem;
    background-color: #ffce00;
    color: #1f2937;
  }

  .mobile-menu-toggle {
    display: block;
    position: relative;
    z-index: 2001;
    transition: color 0.3s ease;
  }

  .mobile-menu-toggle.active {
    color: #1d8f85;
  }

  .dropdown-content {
    position: static;
    display: block;
    box-shadow: none;
    background-color: transparent;
    padding-left: 20px;
    margin-top: 0;
    width: 100%;
  }

  .dropdown-content a {
    border-bottom: none !important;
    font-size: 1.1rem !important;
    padding: 10px 0 !important;
    color: rgba(255, 255, 255, 0.8) !important;
  }

  .dropdown-content a:hover {
    background-color: transparent !important;
    color: #ffce00 !important;
  }

  .hero {
    min-height: 420px;
  }

  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 5%;
    gap: 24px;
  }

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

  .hero-cta {
    align-self: flex-start;
  }

  section {
    padding: 52px 5%;
  }

  /* tablet: 2-col, 3-row — reset all inline placements */
  .life-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
  }

  .life-grid .life-img:nth-child(1) {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  .life-grid .life-img:nth-child(2) {
    grid-column: 2 !important;
    grid-row: 1 !important;
  }

  .life-grid .life-img:nth-child(3) {
    grid-column: 1 !important;
    grid-row: 2 !important;
  }

  .life-grid .life-img:nth-child(4) {
    grid-column: 2 !important;
    grid-row: 2 !important;
  }

  .life-grid .life-img:nth-child(5) {
    grid-column: 1 !important;
    grid-row: 3 !important;
  }

  .life-grid .life-img:nth-child(6) {
    grid-column: 2 !important;
    grid-row: 3 !important;
  }

  .facility-two-col {
    grid-template-columns: 1fr;
  }


  .cta-card {
    padding: 36px 24px;
  }

  .features-card {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {

  /* mobile: 1-col stack — reset all inline placements */
  .life-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 200px);
  }

  .life-grid .life-img {
    grid-column: 1 !important;
  }

  .life-grid .life-img:nth-child(1) {
    grid-row: 1 !important;
  }

  .life-grid .life-img:nth-child(2) {
    grid-row: 2 !important;
  }

  .life-grid .life-img:nth-child(3) {
    grid-row: 3 !important;
  }

  .life-grid .life-img:nth-child(4) {
    grid-row: 4 !important;
  }

  .life-grid .life-img:nth-child(5) {
    grid-row: 5 !important;
  }

  .life-grid .life-img:nth-child(6) {
    grid-row: 6 !important;
  }

}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

.hero-content h1 {
  animation: fadeUp .8s ease both;
}

.hero-content p {
  animation: fadeUp .8s .15s ease both;
}

.hero-content a {
  animation: fadeUp .8s .28s ease both;
}

/* ── BLOG ── */
.blog {
  background: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1700px;
  margin: auto;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s ease;
  border: 1px solid var(--border);
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-date {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

.blog-body {
  padding: 24px;
}

.blog-body h3 {
  font-size: 17px;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-body p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 20px;
}

.read-more {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 13.5px;
  display: inline-block;
  transition: color .2s;
}

.read-more:hover {
  color: var(--primary-dark);
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1700px;
  margin: auto;
}

.testimonial-card {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
}

.stars {
  color: var(--yellow);
  font-size: 18px;
  margin-bottom: 16px;
}

.quote {
  font-style: italic;
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.author {
  font-weight: 700;
  color: var(--primary);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── CAREERS ── */
.careers {
  background: var(--bg-green-pale);
}

.careers-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1700px;
  margin: auto;
}

.careers-image-wrap {
  position: relative;
  padding-top: 24px;
  padding-left: 24px;
}

.careers-image-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  background: var(--primary);
  border-radius: var(--radius-lg);
  z-index: 0;
  opacity: 0.2;
}

.careers-image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--radius-lg);
  height: 380px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

/* ── LOCATION & CONTACT ── */
.location-contact {
  background: var(--white);
  padding-top: 140px;
}

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  max-width: 1700px;
  margin: auto;
}

.simple-contact-form .form-group {
  margin-bottom: 16px;
}

.simple-contact-form input,
.simple-contact-form textarea {
  width: 100%;
  padding: 12px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14.5px;
  background: var(--bg-light);
  transition: border-color .2s;
}

.simple-contact-form input:focus,
.simple-contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.map-side {
  height: 100%;
  min-height: 400px;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: #e5e3df url('https://upload.wikimedia.org/wikipedia/commons/e/e0/Placeholder_LC_Online_Site_Step_2_Map.png') center/cover no-repeat;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-info {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.map-info h4 {
  color: var(--primary);
  margin-bottom: 8px;
}

.map-info p {
  font-size: 13.5px;
  color: var(--text-mid);
  margin-bottom: 12px;
}

/* ── RESPONSIVE OVERRIDES ── */
@media (max-width: 1024px) {

  .blog-grid,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── MOBILE NAV FIXES ── */
@media (max-width: 768px) {
  .nav {
    padding: 0 16px;
    height: 60px;
  }

  .nav-logo-brand {
    font-size: 11px;
  }

  .nav-logo-icon-svg {
    height: 28px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .blog-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .careers-inner,
  .location-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ── SMOOTH SCROLLING ── */
:target {
  scroll-margin-top: 80px;
}

/* ── UTILITY CLASSES (needed for newsletter & footer) ── */
.container {
  width: 100%;
  max-width: 1700px;
  margin: auto;
  margin: 0 auto;
  padding: 0 20px;
}

.relative-container {
  position: relative;
}

.italic-serif {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
}

.font-poppins-italic-semibold {
  font-family: 'Poppins', sans-serif !important;
  font-style: italic !important;
  font-weight: 600 !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 400;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn-yellow {
  background-color: #ffce00;
  color: #1f2937;
}

.btn-yellow:hover {
  background-color: #e6ba00;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 206, 0, 0.3);
}

.btn-outline-dark {
  padding: 12px 35px;
  border: 1px solid var(--text-dark);
  border-radius: 50px;
  color: var(--text-dark);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* Newsletter & Footer */
.newsletter-section {
  position: relative;
  z-index: 10;
  margin-bottom: -135px;
  /* Creates the overlap on desktop */
}

.newsletter-card {
  background-color: #fff;
  padding: 60px 40px;
  border-radius: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: var(--text-dark);
  max-width: 900px;
  margin: 0 auto;
}

.pattern-bg {
  background-image: url('./assets/images/newsletter-bg.png');
  background-size: auto;
  background-position: center;
}

.newsletter-card h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.newsletter-card p {
  color: #666;
  margin-bottom: 30px;
  font-size: 1rem;
}

.newsletter-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer {
  background-color: var(--primary-dark);
  background-image: url('./assets/images/footer-bg.svg');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding-top: 180px;
  padding-bottom: 40px;
  position: relative;
}

.footer-main-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 60px;
  position: relative;
}

.footer-left {
  max-width: 450px;
}

.footer-main-heading {
  font-size: 2.2rem;
  margin: 25px 0;
  line-height: 1.2;
  color: #fff;
}

.footer-heart-graphic {
  display: none;
}

.footer-main-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.5;
}

.footer-right-contact {
  text-align: left;
  z-index: 2;
}

.footer-right-contact h4 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: #fff;
}

.contact-line {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

.white-text {
  color: #fff;
  font-weight: 500;
}

.pill-btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  margin-top: 25px;
  font-weight: 600;
}

.footer-links-row {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 0;
  margin-bottom: 30px;
}

.footer-nav-links {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.footer-nav-links a {
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.footer-nav-links a i {
  font-size: 0.7rem;
}

.footer-bottom-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.copyright-text a {
  text-decoration: underline;
  color: rgba(255, 255, 255, 0.6);
}

.designer-logo {
  color: var(--secondary);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .newsletter-section {
    margin-bottom: 0;
    background-color: #fff;
    border-top: 1px solid #e0e0e0;
  }

  .newsletter-card {
    padding: 40px 20px !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .footer {
    padding-top: 60px;
  }

  .footer-main-content {
    flex-direction: column;
    gap: 50px;
  }

  .footer-nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-main-content {
    flex-direction: column;
    gap: 50px;
  }

  .footer-nav-links a:nth-child(3),
  .footer-nav-links a:nth-child(4),
  .footer-nav-links a:nth-child(5) {
    display: none;
  }
}

@media (max-width: 480px) {
  .footer {
    padding-top: 40px;
  }

  .newsletter-btns {
    flex-direction: column;
    gap: 15px;
  }

  .footer-main-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 40px;
  }

  .footer-right-contact {
    text-align: center;
  }

  .footer-heart-graphic {
    display: none;
  }

  .footer-nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .footer-bottom-strip {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}