/*
Theme Name: golf-landscape-child
Template: golf-landscape
*/
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1080px;
  }
}
body {
  color: #000;
}
.top-header {
  background: #0b2b26;
}
.custom-logo {
  max-width: 65px;
}
.theme-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  display: grid;
  gap: 16px;
}
.theme-list li {
  background: linear-gradient(135deg, #ffffff 0%, #f0f4f3 100%);
  border-radius: 16px;
  padding: 24px 28px 24px 70px;
  box-shadow: 0 3px 15px rgba(11, 43, 38, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 5px solid #0b2b26;
  position: relative;
  overflow: hidden;
}
.theme-list li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0b2b26 0%, #1a4a42 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(11, 43, 38, 0.2);
  transition: all 0.4s ease;
  border: 3px solid rgba(45, 157, 143, 0.2);
}
.theme-list li::after {
  content: "";
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(11, 43, 38, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.4s ease;
}
.theme-list li:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 25px rgba(11, 43, 38, 0.18);
  background: linear-gradient(135deg, #ffffff 0%, #e8f0ee 100%);
  border-left-color: #2d9d8f;
}
.theme-list li:hover::before {
  transform: translateY(-50%) rotate(15deg) scale(1.1);
  background: linear-gradient(135deg, #2d9d8f 0%, #3bb9a8 100%);
  box-shadow: 0 6px 18px rgba(45, 157, 143, 0.3);
}
.theme-list li:hover::after {
  right: -30px;
  background: radial-gradient(circle, rgba(45, 157, 143, 0.08) 0%, transparent 70%);
}
.theme-list li strong {
  display: block;
  color: #0b2b26;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}
.theme-list li:hover strong {
  color: #2d9d8f;
}
.theme-list li {
  color: #1a4a42;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
  position: relative;
  z-index: 1;
}
.theme-list li:nth-child(even) {
  border-left-color: #2d9d8f;
}
.theme-list li:nth-child(even)::before {
  background: linear-gradient(135deg, #2d9d8f 0%, #3bb9a8 100%);
}
.theme-list li:nth-child(even):hover {
  border-left-color: #0b2b26;
}
.theme-list li:nth-child(even):hover::before {
  background: linear-gradient(135deg, #0b2b26 0%, #1a4a42 100%);
}
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.check-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  color: #0b2b26;
  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 500;
}
.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #2d9d8f;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.5;
}
.check-list li strong {
  color: #0b2b26;
}
/* THEME BLOCK — palette: #0b2b26 (primary), #2d9d8f (accent), light bg #f6faf8 */
.theme-block {
  background: #f6faf8;
  border: 1px solid rgba(11, 43, 38, 0.06);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 6px 18px rgba(11, 43, 38, 0.04);
  color: #0b2b26;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
/* Hover lift for interactivity */
.theme-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(11, 43, 38, 0.08);
}
/* Title (the ol heading) */
.theme-block ol {
  margin: 0 0 12px 0;
  padding: 0;
  list-style: none;
}
.theme-block ol li {
  display: inline-block;
  color: #0b2b26;
  padding-bottom: 6px;
  position: relative;
}
/* Accent underline bar under title */
.theme-block ol li::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, #2d9d8f 0%, #1fb3a0 100%);
  border-radius: 4px;
  margin-top: 8px;
  transition: width 0.22s ease;
}
.theme-block:hover ol li::after {
  width: 86px;
}
/* Description list (bulleted) */
.theme-block ul {
  margin: 8px 0 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
/* Each point as a soft pill/card */
.theme-block ul li {
  background: #ffffff;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(11, 43, 38, 0.04);
  color: #113032;
  /* slightly different readable tone */
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: background 0.18s ease, transform 0.18s ease;
}
/* Decorative left badge (accent circle) */
.theme-block ul li::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 50%;
  background: linear-gradient(180deg, #2d9d8f 0%, #1fb3a0 100%);
  box-shadow: 0 2px 6px rgba(45, 157, 143, 0.18);
}
/* Hover effect per item */
.theme-block ul li:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #ffffff, #f3fbf9);
  box-shadow: 0 6px 14px rgba(45, 157, 143, 0.05);
}
/* Emphasize first word / title if any */
.theme-block ul li strong {
  color: #0b2b26;
  font-weight: 700;
}
.casi-brand-col {
  align-items: center;
  gap: 30px;
  padding: 28px 32px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(11, 43, 38, 0.08);
  border: 1px solid rgba(11, 43, 38, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  margin-bottom: 2rem;
}
.casi-brand-col:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(11, 43, 38, 0.18);
}
.casi-brand-col img {
  border-radius: 14px;
  background: #f3f9f8;
  padding: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.casi-brand-col:hover img {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(45, 157, 143, 0.25);
}
.casi-brand-col h3.wp-block-heading {
  font-weight: 800;
  color: #0b2b26;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
  letter-spacing: 0.3px;
  text-transform: capitalize;
}
.casi-brand-col h3.wp-block-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #2d9d8f;
  border-radius: 4px;
  margin-top: 6px;
}
.casi-brand-col p {
  color: #1e3b36;
  margin-top: 0;
}
.count-list {
  counter-reset: count;
  list-style: none;
  padding: 0;
  margin: 1.5em 0;
}
.count-list li {
  counter-increment: count;
  background: #f6fbfa;
  border-left: 4px solid #2d9d8f;
  border-radius: 10px;
  padding: 16px 20px 16px 55px;
  margin-bottom: 14px;
  position: relative;
  color: #0b2b26;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.count-list li::before {
  content: counter(count);
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #2d9d8f;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 3px #f6fbfa;
}
.count-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(13, 43, 38, 0.12);
}
.logic-wrapp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f6fbfa;
  border: 2px solid #2d9d8f;
  border-radius: 16px;
  padding: 18px 24px;
  margin-bottom: 15px;
  gap: 20px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.logic-wrapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(11, 43, 38, 0.15);
}
.logic-img img {
  max-width: 110px;
  height: auto;
  border-radius: 10px;
  background: #fff;
  padding: 6px;
  border: 1px solid #d8ebe8;
  transition: transform 0.3s ease;
}
.logic-wrapp:hover .logic-img img {
  transform: scale(1.05);
}
.logic-main {
  flex: 1;
  min-width: 0;
}
.logic-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0b2b26;
  margin: 0 0 6px;
}
.logic-desc {
  color: #2d9d8f;
  font-size: 1rem;
  margin: 0;
}
.logic-btn a {
  background-color: #2d9d8f;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 20px;
  transition: background 0.3s ease, transform 0.2s ease;
}
.logic-btn a:hover {
  background-color: #0b2b26;
  transform: translateY(-2px);
}
.faq {
  background: #f6fbfa;
  border: 2px solid #2d9d8f;
  border-radius: 18px;
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 4px 15px rgba(11, 43, 38, 0.1);
}
.faq h2 {
  color: #0b2b26;
  margin-bottom: 18px;
  text-align: left;
  border-bottom: 3px solid #2d9d8f;
  padding-bottom: 8px;
}
.faq > p {
  color: #0b2b26;
  margin-bottom: 28px;
}
.faq-item {
  background: #fff;
  border-left: 5px solid #2d9d8f;
  border-radius: 10px;
  padding: 18px 22px;
  margin-bottom: 16px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.faq-item:hover {
  background: #f0faf8;
  box-shadow: 0 4px 10px rgba(45, 157, 143, 0.15);
}
.faq-item h3 {
  color: #0b2b26;
  margin: 0 0 8px;
}
.faq-item p {
  color: #2d9d8f;
  margin: 0;
}
.mb2 {
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .theme-list {
    margin: 28px 0;
    gap: 12px;
  }
  .theme-list li {
    padding: 20px 20px 20px 60px;
    border-radius: 12px;
  }
  .theme-list li::before {
    left: 14px;
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  .theme-list li::after {
    width: 100px;
    height: 100px;
  }
  .theme-list li strong {
    font-size: 16px;
    margin-bottom: 6px;
  }
  .theme-list li {
    font-size: 14px;
  }
  .theme-list li:hover {
    transform: translateX(4px);
  }
  .logic-wrapp {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    padding: 16px;
  }
  .logic-main {
    order: 2;
  }
  .logic-btn {
    order: 3;
  }
  .logic-img img {
    max-width: 140px;
  }
}
