:root {
  --background: #0F1734;
  --background-100: #1A2748;
  --background-200: #24325C;
  --background-300: #2E3D70;
  --background-400: #384884;
  --background-500: #425398;
  --background-600: #4C5EAC;
  --background-700: #5669C0;
  --background-800: #6074D4;
  --background-900: #6A7FE8;
  --light-background-color: #F6F3EC;
  --accent: #CDF159;
  --content-font-size: 23px;
  --font-family: 'Josefin Sans';
  --heading-font-color: #ffffff;
  --content-font-color: #cfd1e3;
  --dark-font-color: #0F1734;
  --sub-text-font-size: 16px;
}

html {
  font-family: var(--font-family);
  scroll-behavior: smooth;
  background-color: var(--background);
}

body {
  color: var(--content-font-color);
  background-color: var(--background);
}

body.menu-open {
  overflow: hidden;
}

h1 {
  font-family: "Josefin Sans";
  font-weight: 400;
  font-size: clamp(30px, 5vw, 50px);
  padding-top: 12px;
  margin: 0px;
}

h1 span {
  color: rgb(207, 209, 227);
  font-weight: 500;
}

h2 {
  font-family: "Josefin Sans";
  font-size: 50px;
  font-weight: 600;
  margin-top: 0px;
  color: rgb(255, 255, 255);
}

p {
  font-family: "Josefin Sans";
  font-size: var(--content-font-size);
  color: var(--content-font-color);
}

.extra-padding {
  padding-right: 40px;
}

header .logo-col svg {
  width: 250px;
  height: auto;
  fill: rgb(160, 162, 178);
  transition: width 0.3s ease;
}

header .logo-col svg path {
  transition: opacity 0.3s ease;
}

header a {
  display: inline-flex;
  color: rgb(255, 255, 255);
  opacity: 1;
  font-size: clamp(16px, 1.5vw, 24px);
  font-family: var(--font-family);
  margin: 0px clamp(8px, 1.2vw, 20px);
  text-transform: lowercase;
  transition: 300ms;
}

header a:hover {
  opacity: 1;
}

header a:hover svg {
  fill: var(--accent);
}

header a.trading-view svg {
  width: 50px;
}

header a.youtube svg {
  width: 45px;
}

.content h2 {
  margin: 0px;
}

.content p {
  margin: 0px;
  padding: 0px;
  font-size: var(--content-font-size);
}

img {
  width: 100%;
  height: auto;
}

.btn {
  font-family: var(--font-family);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 24px;

  text-align: center;
  background-color: var(--accent);
  padding: 12px 0px;
  /* font-weight: 600; */
  color: var(--background);
  border-radius: 10px;
}

@media (min-width: 600px) {
  .btn {
    width: 600px;
  }
}

a.btn img {
  width: 30px;
}

.btn {
  background-size: 200% 200%;
  transition: all 300ms ease;
  background-position: 80% 50%;
  max-width: 250px;
  cursor: pointer;
}

.btn:hover {
  background-position: 0% 50%;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(205, 241, 89, 0.4);
  filter: brightness(1.1);
}

.btn.outline {
  background-color: transparent;
  color: rgb(255, 255, 255);
  border-style: solid;
  max-width: 250px;
}

.btn.outline:hover {
  background-color: var(--accent);
  color: var(--background);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(205, 241, 89, 0.4);
}

header {
  background-color: rgba(28, 36, 48, 0);
  color: white;
  position: absolute;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease;
}

/* Sticky header state */
header.header-sticky {
  position: fixed;
  top: 0;
  background: var(--background);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

header.header-sticky .header-grid {
  padding: 8px 15px;
}

header.header-sticky .logo-col svg {
  width: 120px;
  height: auto;
}

/* Hide text part of logo when sticky (keep just the icon) */
header.header-sticky .logo-col svg path:not([fill="#CDF159"]) {
  opacity: 0;
  transition: opacity 0.3s ease;
}

header.header-sticky .header-phone.desktop-only {
  display: none;
}

header.header-sticky .header-right {
  gap: 4px;
}

header.header-sticky ul.menu li a {
  font-size: 18px;
  margin: 0 12px;
}

/* Active menu link highlighting */
ul.menu li a {
  position: relative;
  transition: color 0.3s ease;
}

ul.menu li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  border-radius: 2px;
  transition: width 0.3s ease, left 0.3s ease;
}

ul.menu li a.active {
  color: var(--accent);
}

ul.menu li a.active::after {
  width: 100%;
  left: 0;
}

/* Header Grid Layout */
.header-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  padding: 15px;
  gap: 20px;
  transition: padding 0.3s ease;
}

.header-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.header-phone {
  text-align: center;
  margin-left: auto;
}

.header-phone a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-family: var(--font-family);
  font-size: 20px;
  text-decoration: none;
  transition: opacity 0.3s ease, font-size 0.3s ease;
}

.header-phone a:hover {
  opacity: 0.8;
}

.header-phone svg {
  color: var(--accent);
}

.header-menu-row {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Hide hamburger menu on desktop */
.menu-toggle {
  display: none;
}

/* Desktop/Mobile visibility helpers */
.mobile-only {
  display: none;
}

.mobile-only.mobile-menu-logo {
  display: none;
}

.desktop-only {
  display: block;
}

/* Mobile phone icon (next to hamburger) */
.mobile-phone-icon {
  display: none;
  color: var(--accent);
  padding: 8px;
  transition: opacity 0.3s ease;
}

.mobile-phone-icon:hover {
  opacity: 0.7;
}

/* Mobile menu phone number */
.mobile-menu-phone {
  display: none;
}

.mobile-menu-logo {
  display: flex;
  justify-content: center;
  padding: 20px 0 30px;
}

.mobile-menu-phone a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--accent) !important;
  font-size: 28px !important;
  padding-bottom: 20px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-phone svg {
  stroke: var(--accent);
}

header.alternate {
  position: relative;
  background-color: rgb(21, 34, 56);
  box-shadow: rgba(0, 0, 0, 0.1) 5px 5px 10px;
}

header img {
  width: clamp(30px, 5vw, 75px);
  margin: 10px 0px;
}

header .row {
  display: flex;
  align-items: center;
}

header .header-col {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px 15px;
}

header ul {
  padding: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
}

header ul li {
  cursor: pointer;
  position: relative;
  font-family: "Open Sans", sans-serif;
  list-style-type: none;
  display: inline-block;
  font-size: 18px;
  text-align: center;
  margin-right: 0px;
  padding: 0px clamp(5px, 1vw, 15px);
}

header ul li a {
  color: rgb(255, 255, 255);
}

header ul li:hover a,
header ul .current a {
  color: var(--accent);
}

header ul li:last-child {
  margin-right: 0px;
}

header .logo-section {
  display: flex;
  align-items: center;
  gap: 0.25vw;
}

.logo-section img {
  margin-right: 10px;
}

.jumbotron .content p {
  color: var(--content-font-color);
}

.content-background {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  top: 0px;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

.jumbotron h1 {
  font-size: clamp(40px, 3.65vw, 60px);
  margin-bottom: 23px;
  font-weight: 400;
  color: rgb(255, 255, 255);
}

.jumbotron h2 {
  font-size: 25px;
  color: var(--accent);
}

.jumbotron {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--background);
  justify-content: center;
  color: rgb(255, 255, 255);
  overflow: hidden;
}

.jumbotron .row {
  display: flex;
  align-items: center;
}

.jumbotron .col-md-6:first-child {
  padding-right: 35px;
}

.blurred-img.cover.loaded img {
  border-radius: 20px;
}

.background-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background-size: cover;
  filter: blur(3px);
}

.jumbotron .content {
  margin: 200px 0px 100px 0px;
  position: relative;
  width: 100%;
  justify-content: center;
}

.jumbotron .content h1,
.jumbotron .content p,
.jumbotron .content img {
  position: relative;
}

.jumbotron .content::before {
  opacity: 0;
  position: absolute;
  z-index: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("SVG/circle-glow.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  left: 0px;
  transform: scale(3);
}

.background-chart-curve {
  position: absolute;
  width: 100%;
  min-width: 2000px;
  bottom: -4vw;
}

.background-chart-curve img {
  width: 100%;
  max-width: 100%;
}

.cta {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.row.call-to-action {
  display: flex;
}

.call-to-action .background-image {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background-size: cover;
}

.call-to-action .content-side {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  padding: 0px;
}

.call-to-action .content-side .content {
  width: 100%;
  padding: 40px;
  display: flex;
  flex-flow: column;
  gap: 20px;
}

.call-to-action .content span {
  display: block;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  justify-content: center;
}

.form-row input {
  font-family: Sarabun;
  color: rgb(68, 68, 68);
  font-size: 17px;
  padding: 15px;
  width: 280px;
  border-style: none;
  background-color: rgb(231, 232, 239);
  transition: 300ms;
  border-radius: 10px;
}

.form-row input:hover {
  background-color: rgb(255, 255, 255);
}

.form-row button {
  width: 140px;
  background-color: rgb(138, 89, 255);
  color: rgb(255, 255, 255);
  border-style: none;
  border-radius: 10px;
  font-family: Sarabun;
  font-weight: 500;
  font-size: 15px;
}

.form-row button:disabled {
  opacity: 0.7;
}

p.sub-text {
  font-size: 16px;
  color: rgb(160, 162, 178);
}

.default-banner {
  padding: 120px 0px;
  overflow: hidden;
}

.default-banner.meet-joel-banner {}

.meet-joel-banner .content {
  display: flex;
  flex-flow: column;
  gap: 20px;
  padding-left: 30px;
}

h3 {
  margin: 0px;
  font-family: Sarabun;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 31px;
  color: var(--accent);
}

.meet-joel-banner .blurred-img {
  overflow: hidden;
  filter: drop-shadow(rgba(37, 41, 152, 0.31) 0px 4px 52px);
  border-radius: 18px;
}

.meet-joel-banner .row {
  display: flex;
  align-items: center;
}

.social-icon-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}




/*-------------------------------------reviews section-------------------------------------*/

/*-------------------------------------gallery section-------------------------------------*/

.gallery-banner {
  background: var(--background-100);
}

.gallery-banner .section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.pups-heading {
  position: relative;
  display: inline-block;
}

.catz-note {
  position: absolute;
  top: -15px;
  right: -90px;
  font-family: 'Caveat', cursive;
  font-size: 22px;
  color: var(--light-background-color);
  transform: rotate(12deg);
  white-space: nowrap;
  text-shadow: 2px 2px 0 var(--background);
  letter-spacing: 1px;
}

.catz-note::before {
  content: "🐱";
  margin-right: 5px;
}

@media (max-width: 600px) {
  .catz-note {
    position: relative;
    display: block;
    top: 5px;
    right: 0;
    transform: rotate(-3deg);
    font-size: 20px;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.gallery-item {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 52, 0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Gallery loading state */
.gallery-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--content-font-color);
}

/* Hidden items */
.gallery-hidden {
  display: none;
}

.gallery-expanded .gallery-hidden {
  display: block;
  animation: fadeInUp 0.4s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Expand button */
.gallery-expand-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.gallery-expand-btn {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  max-width: 250px;
  transition: all 0.3s ease;
}

.gallery-expand-btn:hover {
  background: var(--accent);
  color: var(--background);
}

/* GLightbox customization */
.goverlay {
  background: rgba(15, 23, 52, 0.95) !important;
}

.gclose, .gnext, .gprev {
  background: var(--accent) !important;
  border: none !important;
}

.gclose svg, .gnext svg, .gprev svg {
  fill: var(--background) !important;
}

/*-------------------------------------reviews section-------------------------------------*/

.reviews-banner .section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.reviews-banner {
  background: linear-gradient(180deg, var(--background) 0%, var(--background-100) 50%, var(--background) 100%);
}


/*-------------------------------------services-------------------------------------*/

.services-banner .row {
  display: flex;
  align-items: center;
}

.services {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-top: 50px;
}

.services-banner h2 {
  margin-bottom: 10px;
}

.services-banner .section-content {
  max-width: 440px;
}

.service {
  display: flex;
  flex-flow: column;
  align-items: center;
}

.service-icon {
  width: 85px;
}

.service h4 {
  font-family: var(--font-family);
  font-size: 22px;
  font-weight: 400;
}

.pricing-row {
  padding: 50px 0px;
  border-bottom-style: solid;
  border-color: var(--background-100);
  display: flex;
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row .section {
  flex: 1 1 0%;
}

.pricing-banner h2,
.pricing-banner-heading {
  font-size: 35px;
  font-weight: 400;
  margin-bottom: 15px;
}

.pricing-banner .service-icon {
  width: 150px;
}

.pricing-banner .heading-section {
  display: flex;
  flex-flow: column;
  gap: 20px;
  text-align: center;
  align-items: center;
}

.pricing-banner .price {
  font-family: var(--font-family);
  font-size: 75px;
  color: var(--heading-font-color);
  line-height: 90%;
}

.pricing-banner .price-description {
  font-family: var(--font-family);
  font-size: 30px;
  letter-spacing: 2px;
}

.pricing-details {
  list-style-type: none;
  padding: 0px;
}

.pricing-details li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

ul.pricing-details {
  font-size: 20px;
  display: flex;
  flex-flow: column;
  justify-content: space-around;
}

/* Discount items styling */
.discount-item {
  color: var(--accent);
  font-weight: 500;
}

.discount-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  flex-shrink: 0;
}

.pricing-banner .col-md-9 {
  display: flex;
  gap: 80px;
}

.paw-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  flex-shrink: 0;
}

.content-col {
  display: inline-block;
}

.content-col p {
  width: 0px;
  min-width: 100%;
}

.banner-default {
  background-color: rgb(244, 244, 244);
  position: relative;
  overflow: hidden;
}

.social-icon-row svg {
  width: 60px;
  fill: rgb(160, 162, 178);
}

.social-icon-row a {
  display: inline-flex;
  color: rgb(255, 255, 255);
  opacity: 0.4;
  font-size: 16px;
  font-family: "Open Sans";
  margin: 0px 20px;
  transition: 300ms;
}

.social-icon-row a:hover {
  opacity: 1;
}

a.trading-view svg {
  width: 70px;
}

a.youtube svg {
  width: 65px;
}

.row.call-to-action {
  position: relative;
  overflow: hidden;
  margin-top: -200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  min-height: 400px;
  background-color: rgb(255, 255, 255);
  border-radius: 20px;
  box-shadow: rgba(84, 21, 219, 0.22) 0px 4px 52px 1px;
}

.row.call-to-action>div {
  padding: 0px;
}

.modal {
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0px;
  left: 0px;
  position: fixed;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000000;
  visibility: hidden;
  transition: 500ms;
  opacity: 0;
  cursor: pointer;
}

.modal.show-modal {
  visibility: visible;
  opacity: 1;
}

.modal .modal-content {
  color: rgb(255, 255, 255);
}

.modal .video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0px;
}

.modal .video-container iframe {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.modal-content {
  position: relative;
  display: block;
  cursor: initial;
  max-width: 1700px;
  width: calc(100% - 100px);
}

.modal-content i.las.la-times {
  position: absolute;
  right: 0px;
  top: -50px;
  font-size: 50px;
  cursor: pointer;
  transition: 300ms;
}

.modal-content i.las.la-times:hover {
  color: rgb(111, 148, 255);
}

.form-group {
  position: relative;
  padding: 10px;
}

.form-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  z-index: 10;
  font-size: 1.35rem;
  line-height: inherit;
}

.form .dropdown {
  position: relative;
}

.form .dropdown-select {
  position: relative;
  font-family: Sarabun;
  font-size: 17px;
  padding: 15px;
  border-style: none;

  border-radius: 10px;
  transition: 0.3s ease-in-out;
}

.custom-select {
  position: relative;
  width: 400px;
  max-width: 100%;
  font-size: 1.15rem;
}

.select-button {
  width: 100%;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  font-family: Sarabun;
  font-size: 17px;
  padding: 15px;
  border-style: none;
  background-color: rgb(231, 232, 239);
  border-radius: 10px;
  transition: 0.3s ease-in-out;
}

.custom-select.active .select-button {
  outline: rgba(138, 89, 255, 0.43) solid 4px;
}

.selected-value {
  text-align: left;
  color: rgb(68, 68, 68);
}

.input .custom-select label {
  color: gray;
  font-size: 14px;
}

.input .custom-select .select-dropdown label {
  color: rgb(68, 68, 68);
}

.input .custom-select .select-button span {
  color: rgb(68, 68, 68);
}

.select-dropdown {
  position: absolute;
  list-style: none;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 25px;

  border-radius: 4px;
  padding: 10px;
  margin-top: 10px;
  max-height: 200px;
  overflow-y: auto;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 99999;
}

.select-dropdown:focus-within {
  box-shadow: rgba(94, 108, 233, 0.6) 0px 10px 25px;
}

.select-dropdown li {
  position: relative;
  cursor: pointer;
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 15px;
}

.select-dropdown li label {
  width: 100%;
  padding: 8px 10px;
  cursor: pointer;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.select-dropdown::-webkit-scrollbar {
  width: 7px;
}

.select-dropdown::-webkit-scrollbar-track {
  background: rgb(241, 241, 241);
  border-radius: 25px;
}

.select-dropdown::-webkit-scrollbar-thumb {
  background: rgb(204, 204, 204);
  border-radius: 25px;
}



.select-dropdown input:focus~label {
  background-color: rgb(223, 223, 223);
}

.select-dropdown input[type="radio"] {
  position: absolute;
  left: 0px;
  opacity: 0;
}

.custom-select.active .arrow {
  transform: rotate(180deg);
}

.custom-select.active .select-dropdown {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}

.contact-banner .section-heading {
  text-align: center;
}

/* Contact info section */
.contact-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
  font-family: var(--font-family);
  font-size: 22px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contact-info-item:hover {
  opacity: 0.8;
}

.contact-info-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

.contact-divider {
  text-align: center;
  margin-bottom: 25px;
  position: relative;
}

.contact-divider::before,
.contact-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 100px);
  height: 1px;
  background: var(--background-300);
}

.contact-divider::before {
  left: 0;
}

.contact-divider::after {
  right: 0;
}

.contact-divider span {
  color: var(--content-font-color);
  font-size: 16px;
  padding: 0 20px;
  background: transparent;
}

.contact-divider::before,
.contact-divider::after {
  background: var(--background-200);
}

.contact-form {
  background: var(--background);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: var(--accent);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 0 15px var(--accent), 0 0 30px rgba(205, 241, 89, 0.5);
}

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

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-family: var(--font-family);
  font-size: 20px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: 20px;
  border-style: none;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: var(--background-100);
  color: #ffffff;
  font-family: var(--font-family);
  transition: all 300ms ease;
}

.contact-form input[type="text"]:hover,
.contact-form input[type="email"]:hover,
.contact-form input[type="tel"]:hover,
.contact-form textarea:hover {
  background: var(--background-200);
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus {
  outline-color: var(--background-600);
  outline-style: solid;
  outline-width: 5px;
}

.contact-form input[type="tel"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form .vue-select {
  position: relative;
  width: 100%;
  font-family: var(--font-family);
}

.contact-form .vue-select-button {
  width: 100%;
  padding: 20px;
  border: none;
  border-radius: 4px;
  background-color: var(--background-100);
  color: #ffffff;
  font-size: 16px;
  font-family: var(--font-family);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 300ms ease;
  text-align: left;
}

.contact-form .vue-select-button:focus {
  outline-color: var(--background-600);
  outline-style: solid;
  outline-width: 5px;
}

.contact-form .vue-select-button:hover {
  background: var(--background-200);
}

.contact-form .vue-select.active .vue-select-button {
  outline-color: var(--background-600);
  outline-style: solid;
  outline-width: 5px;
}

.contact-form .vue-select-value {
  color: #ffffff;
}

.contact-form .vue-select-arrow {
  display: flex;
  align-items: center;
  color: #ffffff;
  transition: transform 300ms ease;
}

.contact-form .vue-select.active .vue-select-arrow {
  transform: rotate(180deg);
}

.contact-form .vue-select-dropdown {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  background-color: var(--background-100);
  border-radius: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 100;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  max-height: 250px;
  overflow-y: auto;
}

.contact-form .vue-select-dropdown li {
  position: relative;
}

.contact-form .vue-select-dropdown li label {
  display: block;
  padding: 15px 20px;
  cursor: pointer;
  color: #ffffff;
  font-family: var(--font-family);
  background-color: var(--background-100);
}

.contact-form .vue-select-dropdown li:hover label,
.contact-form .vue-select-dropdown li:focus-within label {
  background-color: var(--background-200);
}


.contact-form button[type="submit"] {
  font-family: var(--font-family);
  background-color: var(--background-100);
  color: var(--background);
  cursor: pointer;
  background-color: var(--accent);
  margin-left: auto;
  margin-right: auto;
  border-style: solid;
  border-color: var(--accent);
}

.contact-form button[type="submit"]:hover {
  background-color: #d9f76b;
}

.contact-form button[type="submit"]:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.contact-form button[type="submit"].is-loading {
  position: relative;
  color: transparent;
}

.contact-form button[type="submit"].is-loading .btn-text {
  color: var(--background);
}

.contact-form button[type="submit"] .btn-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: 10px;
  border: 2px solid var(--background);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.contact-form .submit-error {
  text-align: center;
  margin-bottom: 20px;
  color: #ff6b6b;
  font-size: 14px;
}

/* Thank You Message */
.thank-you-message {
  text-align: center;
  padding: 60px 40px;
}

.thank-you-message .thank-you-icon {
  color: var(--accent);
  margin-bottom: 24px;
}

.thank-you-message h3 {
  font-family: var(--header-font-family);
  font-size: 32px;
  color: var(--text-color);
  margin: 0 0 16px 0;
}

.thank-you-message p {
  font-size: 18px;
  color: var(--text-color);
  opacity: 0.8;
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto;
}

.thank-you-message .thank-you-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 12px 24px;
  background: var(--accent);
  color: var(--background);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
}

.thank-you-message .thank-you-phone:hover {
  background: #d9f76b;
}

/* Contact section gradient background */
.contact-glow-bg {
  background: radial-gradient(ellipse at 50% 0%, var(--background-400) 0%, var(--background) 60%);
  position: relative;
}

.contact-banner {
  position: relative;
}

.banner-wrapper {
  position: absolute;
  background-image: url('path/to/your/image.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
  opacity: 0.5;
}

.banner-wrapper img {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 100%;
  min-width: 100%;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(27 47 120 / 91%);
  /* Adjust the last value (0.5) for darkness */
}

.container {
  position: relative;
  z-index: 1;
}

form .form-group {
  flex: 1 1 0%;
}

form input,
form textarea {
  font-size: 20px;
  font-family: var(--font-family);
}

.input select:focus {
  outline: none;
}

.input.check-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.input label,
.input span {
  color: gray;
}

.input input,
.input .form-group {
  font-family: Sarabun;
  color: rgb(68, 68, 68);
  font-size: 17px;
  padding: 15px;
  width: 100%;
  border-style: none;
  background-color: rgb(231, 232, 239);
  transition: 300ms;
  border-radius: 10px;
}

.input .form-group select {
  background-color: transparent;
  border-style: none;
  width: 100%;
}

.input input[type="checkbox"] {
  width: initial;
}



.submit button span {
  color: rgb(255, 255, 255);
}

.submit button .loader {
  display: none;
}

.submit button.loading span {
  display: none;
}

.submit button.loading .loader {
  display: inline-block;
}

.submit button:hover {
  background-color: rgb(158, 117, 255);
}

.submit button:disabled {
  opacity: 0.7;
  background-color: rgb(138, 89, 255);
}

footer {
  padding: 200px 0px;
}

footer .row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

footer .logo-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

footer .row>div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  gap: 20px;
}

.footer-logo-icon {
  max-width: 80px;
}

.footer-logo-text {
  color: var(--background-400);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(30px, 5vw, 50px);
}

.footer-logo-text span {
  color: rgb(207, 209, 227);
  font-weight: 500;
}

@media (max-width: 1279px) {
  h2 {
    font-size: 40px;
  }

  .modal {
    display: flex;
    align-items: flex-start;
    padding: 100px 20px;
    overflow-y: scroll;
  }

  .audio-download-modal .row>div:first-child {
    padding: 100px 20px;
  }

  .audio-download-modal .row>div:last-child {
    padding: 100px 40px;
  }

  form label {
    display: block;
  }

  .audio-download-modal .row>div {
    width: 100%;
  }

  .audio-download-modal .row {
    display: flex;
    flex-flow: column;
    align-items: center;
    margin: 0px;
  }

  .modal-content {
    display: flex;
    width: 800px;
  }
}

@media (max-width: 1199px) {}

@media (max-width: 991px) {

  h2 {
    font-size: 35px;
  }

  header ul {
    /* display: none; */
  }

  /* Header mobile layout */
  .header-grid {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
  }

  .header-right {
    width: 100%;
    flex-direction: row;
    justify-content: flex-end;
  }

  /* Hide desktop phone, show mobile elements */
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block;
  }

  .mobile-menu-logo.mobile-only {
    display: block;
  }

  .mobile-phone-icon {
    display: flex;
    align-items: center;
  }

  .mobile-menu-phone {
    display: block;
  }

  .header-menu-row {
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
  }

  header .logo-section {
    padding: 0;
  }

  header .logo-col svg {
    width: 140px;
  }

  img.logo-icon {
    width: 60px;
  }

  img.logo-text {
    width: 350px;
  }

  .default-banner {
    padding: 0px 15px;
  }

  .default-banner .row {
    flex-wrap: wrap;
    gap: 30px 0px;
  }

  .default-banner .row>div {
    margin-left: auto;
    margin-right: auto;
  }

  /* mobile menu */
  .menu-toggle {
    position: relative;
    z-index: 1000;
    transition: all 0.3s ease;
    display: block;
    cursor: pointer;
  }

  .menu-toggle.is-active {
    position: fixed;
    /* top: 20px;
    right: 20px; */
  }

  .menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #F6F3EC;
    margin: 5px 0;
    transition: 0.4s;
  }

  .menu {
    position: fixed;
    z-index: 1000;
    top: 0px;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(180deg, var(--background) 0%, var(--background-200) 100%);
    backdrop-filter: blur(10px);
    transition: 0.4s;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 0px;
    padding: 50px 20px 40px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .menu.is-active {
    left: 0;
  }

  .menu li {
    margin: 15px 0;
  }

  .menu a {
    font-size: 35px;
  }

  .header-menu-row {
    position: relative;
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
    z-index: 999999;
  }

  .menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #F6F3EC;
    margin: 5px 0;
    transition: all 0.3s ease;
  }

  .menu-toggle.is-active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .navbar-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .jumbotron .content {
    position: relative;
    width: 100%;
    text-align: center;
  }

  .cta {
    justify-content: center;
    margin-top: 40px;

  }

  .navbar-nav.is-active {
    display: flex;
  }

  .call-to-action .photo-side {
    display: none;
  }

  .default-banner.meet-joel-banner {
    padding: 50px 0px;
  }

  .meet-joel-banner .row {
    display: flex;
    flex-flow: column;
    gap: 40px;
  }

  .meet-joel-banner .blurred-img {
    max-width: 400px;
    margin-right: auto;
    margin-left: auto;
  }

  .hide-tablet {
    display: none;
  }

  .reviews-banner .section-heading {
    text-align: center;
  }
}

/* Add this to your existing CSS file */

@media (max-width: 768px) {
  .header-grid {
    padding: 10px 15px;
  }
}

@media (max-width: 767px) {
  .jumbotron .content {
    position: relative;
    width: 100%;
    text-align: center;
    margin: 200px 0px 0px 0px;
  }

  .default-banner.meet-joel-banner {
    padding: 100px 0px 50px 0px;
  }

  .default-banner {
    padding: 50px 0px;
  }

  img.logo-icon {
    width: 51px;
  }

  img.logo-text {
    width: 300px;
  }
}

@media (max-width: 600px) {
  header .logo-col svg {
    width: 130px;
  }

  .form-row {
    display: flex;
    flex-flow: column;
  }

  .form-row input {
    width: 100%;
  }

  .form-row button {
    width: 100%;
    padding: 15px;
  }

  .contact-form .vue-select,
  .contact-form .vue-select-button {
    width: 100%;
  }

  .cta > a {
    flex: 1;
  }

  /* Services section - stack icons on mobile */
  .services {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .services-banner .section-content {
    max-width: 100%;
    text-align: center;
  }

  .services-banner .section-heading {
    text-align: center;
  }

  .services-banner h2,
  .pricing-banner h2 {
    font-size: 28px;
  }

  /* Pricing section - single column on mobile */
  .pricing-row {
    flex-direction: column;
    text-align: center;
  }

  .pricing-row .col-md-3,
  .pricing-row .col-md-9 {
    width: 100%;
  }

  .pricing-banner .col-md-9 {
    flex-direction: column;
    gap: 40px;
  }

  .pricing-details li {
    justify-content: center;
  }

  /* Hide carousel arrows on mobile */
  .carousel-btn {
    display: none;
  }
}

@media (max-width: 500px) {
  
}