/*/* css/styles.css GLOBALS*/
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Edu+AU+VIC+WA+NT+Pre:wght@400..700&family=Sour+Gummy:ital,wght@0,100..900;1,100..900&display=swap');
body, html {
    font-family: "Sour Gummy";
 height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

html {
  scroll-behavior: smooth;
}

.mobile{
   display: none; 
  }

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container{
    flex: 1;
    padding: 0px 5%;
}

.ab-us{
    display: flex; /* Arrange text and images side by side */
    align-items: flex-start; /* Align items to the top of the container */
    padding: 15px 0px;
}

.ab-us-text{
    flex: 1; /* Text area takes up available space */
    padding: 50px 10px 0px 10px;

}
.ab-us-images{
    position: relative; /* Allows positioning of the second image relative to this container */
    display: flex;
    flex-direction: column;
    width: 245px;/* Stack images vertically */
}

.image1 {
    max-width: 66%; /* Scale the image responsibly */
    display: block; /* Remove inline spacing */
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
     /* Defines a heart shape */
    object-fit: cover; }

.image2 {
    position: absolute; /* Allows you to position it relative to .images */
    top: 50%; /* Start the second image vertically from the middle of the first image */
    left: 0; /* Align it horizontally to the left of the container (or adjust as needed) */
    transform: translateX(50%); /* Center perfectly based on its dimensions */
    max-width: 66%; /* Scale responsibly */
 clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); /* Creates a triangle */
    object-fit: cover;}
.gallery img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}



*{margin:0; padding:0; list-style:none;}
a{text-decoration:none; color:#666;}
a:hover{color:#1bc1a3;}



.top-name{
    font-family: "Edu AU VIC WA NT Pre", cursive;
}

.moto{
    font-family:"Dancing Script";
    max-width: 900px;
    margin: 10px auto 0;
    line-height: 1.3;
}



.slider {
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
  width: min(100%, 1050px);
  height: 0;
  padding-bottom: 35%;
  user-select: none;
  background-color: #1c1c1c;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 11px 22px rgba(0, 0, 0, 0.2), 0 7px 7px rgba(0, 0, 0, 0.24);
}
.slider input {
  display: none;
}
.slider .slide_img {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.slider .slide_img img {
  width: inherit;
  height: inherit;
  object-fit: cover;
}
.slider .slide_img .prev, .slider .slide_img .next {
  width: 6%;
  height: inherit;
  position: absolute;
  top: 0;
  background-color: rgb(177 116 75 / 44%);
  z-index: 99;
  transition: 0.45s;
  cursor: pointer;
  text-align: center;
}
.slider .slide_img .next {
  right: 0;
}
.slider .slide_img .prev {
  left: 0;
}
.slider .slide_img .prev:hover, .slider .slide_img .next:hover {
  transition: 0.3s;
  background-color: rgb(177 116 75 / 85%);
}
.slider .slide_img .prev span, .slider .slide_img .next span {
  position: absolute;
  width: 0px;
  height: 0px;
  border: solid 20px;
  top: 50%;
  transform: translateY(-50%);
}
.slider .slide_img .prev span {
  border-color: transparent #fff transparent transparent;
  right: 35%;
}
.slider .slide_img .next span {
  border-color: transparent transparent transparent #fff;
  left: 35%;
}
.slider #nav_slide {
  width: 100%;
  bottom: 12%;
  height: 11px;
  position: absolute;
  text-align: center;
  z-index: 99;
  cursor: default;
}
.slider #nav_slide .dots {
  top: -5px;
  width: 18px;
  height: 18px;
  margin: 0 3px;
  position: relative;
  border-radius: 100%;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.6);
  transition: 0.4s;
  cursor: pointer;
}
.slider #nav_slide #dot1:hover {
  background: #795548;
}
.slider #nav_slide #dot2:hover {
  background: #F44336;
}
.slider #nav_slide #dot3:hover {
  background: #2196F3;
}
.slider #nav_slide #dot4:hover {
  background: #4CAF50;
}

#i1:checked ~ #one,
#i2:checked ~ #two,
#i3:checked ~ #three,
#i4:checked ~ #four {
  z-index: 9;
  animation: scroll 1s ease-in-out;
}

#i1:checked ~ #nav_slide #dot1 {
  background: #795548;
}

#i2:checked ~ #nav_slide #dot2 {
  background: #F44336;
}

#i3:checked ~ #nav_slide #dot3 {
  background: #2196F3;
}

#i4:checked ~ #nav_slide #dot4 {
  background: #4CAF50;
}



@keyframes scroll {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
.yt {
  margin: 0 auto;
  margin-top: 30px;
  width: 80px;
  height: 40px;
  border-radius: 4px;
  text-align: center;
  background: #2196F3;
  box-shadow: 0 11px 22px rgba(0, 0, 0, 0.2), 0 7px 7px rgba(0, 0, 0, 0.24);
  transition: 0.4s;
  opacity: 0.4;
}
.yt a {
  position: relative;
  text-decoration: none;
  color: #fff;
  font-size: 23px;
  top: 4px;
}

.yt:hover {
  transition: 0.3s;
  box-shadow: none;
  opacity: 0.8;
}



.contact-container {
    display: inline-block;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
    
    text-align: center;
    width: 100%;
}

/* Header Styling */
.contact-container h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #444;
}

/* Contact Info Section */
.contact-info {
  display: inline-block;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1rem;
}

.info-item i {
    font-size: 1.5rem;
    color: #0078d4;
}

.info-item p a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.info-item p a:hover {
    color: #0078d4;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social {
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social.facebook { background: #3b5998; }
.social.twitter { background: #1da1f2; }
.social.instagram { background: #e4405f; }
.social.youtube { background: red; }

.social:hover {
    transform: scale(1.1);
    opacity: 0.9;
}


.title-wrap{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

/**  Honeycrumb */


.honeycomb
{
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  margin-bottom: 50px;
  transform: translateY(80px);
}

.honeycomb-cell
{
  -webkit-box-flex: 0;
  flex: 0 1 45%;
  max-width: 250px;
  height: 137.5px;
  margin: 65.4px 12.5px 25px;
  position: relative;
  padding: 0.5em;
  text-align: center;
  z-index: 1;
  box-shadow: 0px 0px 15px 0 rgba(0,0,0,0.1);
  transition:
    transform var(--ui-hover-duration) var(--ui-hover-easing),
    box-shadow var(--ui-hover-duration) var(--ui-hover-easing);
}
.honeycomb-cell_img
{
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
  transition: filter var(--ui-hover-duration) var(--ui-hover-easing);
}
.honeycomb-cell_title
{
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-hyphens: auto;
  hyphens: auto;
  word-break: break-word;
  text-transform: uppercase;
  color: #d17535;
  font-weight: 700;
  font-size: 1.75em;
  transition: opacity var(--ui-hover-duration) var(--ui-hover-easing);
}
.honeycomb-cell_title > small
{
  font-weight: 300;
  margin-top: 0.25em;
}
.honeycomb-cell::before,
.honeycomb-cell::after
{
  content: '';
}
.honeycomb-cell::before,
.honeycomb-cell::after,
.honeycomb-cell_img
{
  top: -50%;
  left: 0;
  width: 100%;
  height: 200%;
  display: block;
  position: absolute;
  -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: -1;
}
.honeycomb-cell::before
{
  background: #d17535;
  transform: scale(1.055);
}
.honeycomb-cell::after
{
  background: #111111;
  opacity: 0.7;
  transition: opacity var(--ui-hover-duration) var(--ui-hover-easing);
  -webkit-transition: opacity var(--ui-hover-duration) var(--ui-hover-easing);
}
.honeycomb-cell:hover
.honeycomb-cell_title
{
  opacity: 0;
}
.honeycomb-cell:hover
.honeycomb-cell_img
{
  filter: grayscale(0%);
}

.honeycomb-cell:hover
{
    transform: scale(1.2);
    z-index: 10;
}
.honeycomb-cell:hover::before
{
  background: #fc5130;
}
.honeycomb-cell:hover::after
{
  opacity: 0;
}
.honeycomb_Hidden
{
  display: none;
  opacity: 0;
  width: 250px;
  margin: 0 12.5px;
}

/****** Responsive *******/

@media (max-width: 550px) 
{
  .honeycomb-cell 
  {
    margin: 100px 25px;
    width: 250px;
    flex: none;
  }


}


@media (min-width: 550px) and (max-width: 845px) 
{
  .honeycomb-cell:nth-child(3n) 
  {
    margin-right: calc(50% - 125px);
    margin-left: calc(50% - 125px);
  }

  .honeycomb_Hidden:nth-child(3n + 5) 
  {
    display: block;
  }
}


@media (min-width: 845px) and (max-width: 1120px) {
 
  .honeycomb-cell:nth-child(5n + 4) 
  {
    margin-left: calc(50% - 275px);
  }

  .honeycomb-cell:nth-child(5n + 5) 
  {
    margin-right: calc(50% - 275px);
  }

  .honeycomb_Hidden:nth-child(5n), 
  .honeycomb_Hidden:nth-child(5n + 3) 
  {
    display: block;
  }
}
@media (min-width: 1120px) 
{
  .honeycomb-cell:nth-child(7n + 5) {
    margin-left: calc(50% - 400px);
  }

  .honeycomb-cell:nth-child(7n + 7), 
  .honeycomb-cell:nth-child(7n + 5):nth-last-child(2) 
  {
    margin-right: calc(50% - 400px);
  }

  .honeycomb_Hidden:nth-child(7n + 7), 
  .honeycomb_Hidden:nth-child(7n + 9), 
  .honeycomb_Hidden:nth-child(7n + 11) 
  {
    display: block;
  }
}


/** ENd Honeycrumb */

.grid-container {
  columns: 5 200px;
  column-gap: 1.5rem;
  width: 90%;
  margin: 0 auto;
}
.grid-container div {
  width: 150px;
  margin: 0 1.5rem 1.5rem 0;
  display: inline-block;
  width: 100%;
  border: solid 2px black;
  padding: 5px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  transition:
    border-color var(--ui-hover-duration) var(--ui-hover-easing),
    transform var(--ui-hover-duration) var(--ui-hover-easing),
    box-shadow var(--ui-hover-duration) var(--ui-hover-easing);
}
.grid-container div:hover img {
  filter: grayscale(0);
}
.grid-container div:hover video {
  filter: grayscale(0);
}
.grid-container div:hover {
  border-color: coral;
  transform: translateY(-4px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.26);
}
.grid-container div img {
  width: 100%;
  filter: grayscale(100%);
  border-radius: 5px;
  transition: filter var(--ui-hover-duration) var(--ui-hover-easing);
}
.grid-container div video {
  width: 100%;
  filter: grayscale(100%);
  border-radius: 5px;
  transition: filter var(--ui-hover-duration) var(--ui-hover-easing);
}
.grid-container div p {
  margin: 5px 0;
  padding: 0;
  text-align: center;
  font-style: italic;
  display: none;
}

/* Lightbox container */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2200;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: radial-gradient(circle at 50% 24%, rgba(35, 50, 78, 0.72), rgba(3, 7, 17, 0.95) 70%);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s ease;
}

.lightbox.is-open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

/* Imagine/Video Lightbox */
.lightbox-content {
  position: relative;
  z-index: 1;
  width: min(94vw, 1120px);
  max-height: 78vh;
  border-radius: 14px;
  object-fit: contain;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.lightbox img.lightbox-content {
  transform: translate(0, 0) scale(1);
  transform-origin: center center;
  transition: transform var(--ui-hover-duration) var(--ui-hover-easing);
  cursor: zoom-in;
  user-select: none;
  touch-action: none;
}

.lightbox img.lightbox-content.is-zoomed {
  cursor: grab;
}

.lightbox.is-panning img.lightbox-content.is-zoomed {
  cursor: grabbing;
}

.lightbox video.lightbox-content {
  background: #05070d;
}

/* Close button */
.close {
  position: absolute;
  top: 18px;
  right: 24px;
  z-index: 8;
  color: #f4f8ff;
  font-size: 34px;
  font-weight: 700;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  border-radius: 50%;
  background: rgba(11, 19, 34, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.36);
  cursor: pointer;
  pointer-events: auto;
}

.close:hover, .close:focus {
  color: #ffffff;
  background: rgba(21, 35, 60, 0.72);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 7;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(9, 17, 31, 0.62);
  color: #f6fbff;
  font-size: 1.5rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

.lightbox-nav:hover {
  background: rgba(21, 36, 62, 0.82);
  transform: translateY(-50%) scale(1.05);
}

.lightbox-counter {
  position: absolute;
  top: 20px;
  left: 24px;
  z-index: 7;
  padding: 6px 10px;
  font-size: 0.9rem;
  color: #eef6ff;
  border-radius: 999px;
  background: rgba(10, 18, 32, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.24);
  letter-spacing: 0.03em;
}

.lightbox-zoom {
  position: absolute;
  top: 20px;
  right: 76px;
  display: inline-flex;
  gap: 8px;
  z-index: 7;
}

.lightbox-zoom .zoom-btn {
  min-width: 44px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(10, 18, 32, 0.65);
  color: #eef6ff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0 10px;
  cursor: pointer;
  transition:
    background var(--ui-hover-duration) var(--ui-hover-easing),
    transform var(--ui-hover-duration) var(--ui-hover-easing),
    border-color var(--ui-hover-duration) var(--ui-hover-easing);
}

.lightbox-zoom .zoom-btn:hover {
  background: rgba(21, 35, 60, 0.82);
  transform: translateY(-1px);
  border-color: rgba(167, 216, 255, 0.75);
}

.lightbox-video-controls {
  position: relative;
  z-index: 7;
  display: none;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  width: min(94vw, 1120px);
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(8, 16, 29, 0.72);
  border: 1px solid rgba(139, 181, 214, 0.28);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.lightbox-video-controls .video-btn {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  background: rgba(21, 35, 60, 0.74);
  color: #eef6ff;
  cursor: pointer;
  transition:
    transform var(--ui-hover-duration) var(--ui-hover-easing),
    background var(--ui-hover-duration) var(--ui-hover-easing),
    border-color var(--ui-hover-duration) var(--ui-hover-easing);
}

.lightbox-video-controls .video-btn:hover {
  transform: translateY(-1px);
  background: rgba(34, 58, 95, 0.9);
  border-color: rgba(167, 216, 255, 0.75);
}

.lightbox-video-controls .video-time {
  min-width: 94px;
  color: #dfecfb;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.lightbox-video-controls .video-seek {
  flex: 1 1 0;
  min-width: 0;
  accent-color: #2ab5c7;
}

.lightbox-video-controls .video-volume {
  width: 96px;
  flex: 0 0 auto;
  accent-color: #67d6e3;
}

.lightbox-caption {
  color: #e8edf7;
  font-size: 1rem;
  text-align: center;
  margin: 0;
  max-width: min(86vw, 900px);
}

@media (max-width: 700px) {
  .lightbox-nav {
    width: 38px;
    height: 38px;
    font-size: 1.25rem;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-counter {
    top: 14px;
    left: 12px;
    font-size: 0.8rem;
  }

  .lightbox-zoom {
    top: auto;
    right: 12px;
    bottom: 16px;
    gap: 6px;
  }

  .lightbox-zoom .zoom-btn {
    min-width: 40px;
    height: 32px;
    font-size: 0.8rem;
    padding: 0 8px;
  }

  .lightbox-video-controls {
    width: min(94vw, 1120px);
    gap: 6px;
    padding: 8px;
    border-radius: 10px;
  }

  .lightbox-video-controls .video-btn {
    width: 34px;
    height: 34px;
  }

  .lightbox-video-controls .video-time {
    min-width: 62px;
    font-size: 0.7rem;
  }

  .lightbox-video-controls .video-volume {
    display: none;
  }

  .close {
    right: 12px;
    top: 10px;
  }
}

body.lightbox-open .floating-whatsapp,
body.lightbox-open .mobile-sticky-cta {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

body section#hire {
  background: white;
  margin: 60px auto 120px;
  text-align: center;
  padding: 50px 0 110px;
  width: 80%;
  max-width: 1100px;
}


form {
  width: 58.3333333333%;
  margin: 0 auto;
}
form .field {
  width: 100%;
  position: relative;
  margin-bottom: 15px;
}
form .field label {
  text-transform: uppercase;
  position: absolute;
  top: 0;
  left: 0;
  background: #d17535;
  color: white;
  width: 100%;
  padding: 18px 0;
  font-size: 1.45em;
  letter-spacing: 0.075em;
  -webkit-transition: all 333ms ease-in-out;
  -moz-transition: all 333ms ease-in-out;
  -o-transition: all 333ms ease-in-out;
  -ms-transition: all 333ms ease-in-out;
  transition: all 333ms ease-in-out;
}
form .field label + span {
  font-family: "SSStandard";
  opacity: 0;
  color: white;
  display: block;
  position: absolute;
  top: 12px;
  left: 7%;
  font-size: 2.5em;
  text-shadow: 1px 2px 0 #cd6302;
  -webkit-transition: all 333ms ease-in-out;
  -moz-transition: all 333ms ease-in-out;
  -o-transition: all 333ms ease-in-out;
  -ms-transition: all 333ms ease-in-out;
  transition: all 333ms ease-in-out;
}
form .field input[type=text],
form .field textarea {
  border: none;
  background: #E8E9EA;
  width: 80.5%;
  margin: 0;
  padding: 18px 0;
  padding-left: 19.5%;
  color: #313A3D;
  font-size: 1.4em;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
form .field input[type=text]#msg,
form .field textarea#msg {
  height: 18px;
  resize: none;
  -webkit-transition: all 333ms ease-in-out;
  -moz-transition: all 333ms ease-in-out;
  -o-transition: all 333ms ease-in-out;
  -ms-transition: all 333ms ease-in-out;
  transition: all 333ms ease-in-out;
}
form .field input[type=text]:focus, form .field input[type=text].focused,
form .field textarea:focus,
form .field textarea.focused {
  outline: none;
}
form .field input[type=text]:focus#msg, form .field input[type=text].focused#msg,
form .field textarea:focus#msg,
form .field textarea.focused#msg {
  padding-bottom: 150px;
}
form .field input[type=text]:focus + label, form .field input[type=text].focused + label,
form .field textarea:focus + label,
form .field textarea.focused + label {
  width: 18%;
  background: #FD9638;
  color: #313A3D;
}
form .field input[type=text].focused + label,
form .field textarea.focused + label {
  color: #FD9638;
}
form .field:hover label {
  width: 18%;
  background: #313A3D;
  color: white;
}
form input[type=submit] {
  background: #FD9638;
  color: white;
  -webkit-appearance: none;
  border: none;
  text-transform: uppercase;
  position: relative;
  padding: 13px 50px;
  font-size: 1.4em;
  letter-spacing: 0.1em;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  -webkit-transition: all 333ms ease-in-out;
  -moz-transition: all 333ms ease-in-out;
  -o-transition: all 333ms ease-in-out;
  -ms-transition: all 333ms ease-in-out;
  transition: all 333ms ease-in-out;
}
form input[type=submit]:hover {
  background: #313A3D;
  color: #FD9638;
}
form input[type=submit]:focus {
  outline: none;
  background: #cd6302;
}




/* PHONE CSS*/


/* Professional landing page overrides */
:root {
  --bg-main: #f3f0eb;
  --bg-soft: #ede7df;
  --text-main: #1f2937;
  --text-soft: #4b5563;
  --brand: #b56a37;
  --brand-dark: #8f522b;
  --white: #ffffff;
  --header-offset: 126px;
  --scroll-progress: 0%;
  --ui-hover-duration: 240ms;
  --ui-hover-easing: cubic-bezier(0.22, 1, 0.36, 1);
}

html,
body {
  margin: 0;
  height: 100%;
}

body {
  display: block;
  text-align: left;
  color: var(--text-main);
  background: var(--bg-main);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: var(--scroll-progress);
  height: 3px;
  z-index: 2600;
  background: linear-gradient(90deg, #58d7e6 0%, #25b8ca 60%, #1595a8 100%);
  pointer-events: none;
}

.wrapper {
  min-height: 100vh;
}

.container {
  flex: 1;
  padding: 0 5vw;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #d98246 0%, #c56c35 100%);
  backdrop-filter: none;
  color: var(--white);
  border-bottom: none;
  box-shadow: 0 8px 24px rgba(69, 32, 13, 0.25);
  padding: 0.8rem 5vw;
}

body.page-index header {
  position: relative;
  top: auto;
}

header:not(.mobile) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

header:not(.mobile) .title-wrap {
  justify-content: flex-start;
  text-align: left;
  margin-left: 8px;
  flex: 1 1 auto;
  gap: 12px;
}

header:not(.mobile) .brand-logo {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

header:not(.mobile) .brand-logo img {
  width: 90px !important;
  height: 90px !important;
  object-fit: contain;
  filter: drop-shadow(0 3px 6px rgba(131, 69, 32, 0.28));
}

header:not(.mobile) .brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  min-width: 0;
}

header:not(.mobile) .top-name {
  margin: 0;
  line-height: 1.02;
  font-size: clamp(1.35rem, 2.05vw, 2rem);
  text-shadow: 0 1px 0 rgba(77, 35, 12, 0.28);
}

header:not(.mobile) .top-tagline {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(255, 250, 243, 0.94);
  white-space: nowrap;
  line-height: 1.25;
}

header:not(.mobile) nav {
  margin-top: 0;
  justify-content: flex-end;
  flex: 1 1 auto;
  margin-right: 8px;
}

.top-name {
  color: var(--white);
  margin-bottom: 4px;
}

header:not(.mobile) nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.38rem;
  margin-top: 0;
  padding: 5px;
  border-radius: 999px;
  background: rgba(9, 24, 44, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

header:not(.mobile) nav a {
  position: relative;
  color: #fffdfa;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.5rem 0.92rem;
  border-radius: 999px;
  transition:
    color var(--ui-hover-duration) var(--ui-hover-easing),
    background var(--ui-hover-duration) var(--ui-hover-easing),
    transform var(--ui-hover-duration) var(--ui-hover-easing),
    box-shadow var(--ui-hover-duration) var(--ui-hover-easing);
}

header:not(.mobile) nav a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 7px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--ui-hover-duration) var(--ui-hover-easing);
}

header:not(.mobile) nav a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

header:not(.mobile) nav a:hover::after {
  transform: scaleX(1);
}

header:not(.mobile) nav a.is-active,
header:not(.mobile) nav a[aria-current="page"] {
  color: #ffffff;
  background: linear-gradient(90deg, #d98246, #c66e37);
  box-shadow: 0 8px 16px rgba(120, 58, 22, 0.28);
}

header:not(.mobile) nav a.is-active::after,
header:not(.mobile) nav a[aria-current="page"]::after {
  transform: scaleX(1);
  background: rgba(255, 255, 255, 0.88);
}

.lang-switch {
  margin-left: 8px;
  flex: 0 0 auto;
}

.lang-dropdown {
  position: relative;
}

.lang-dropdown .lang-dropdown-toggle {
  min-width: 84px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #fffaf3;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 0.4rem 0.56rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(9, 24, 44, 0.16);
  cursor: pointer;
  transition:
    transform var(--ui-hover-duration) var(--ui-hover-easing),
    background var(--ui-hover-duration) var(--ui-hover-easing),
    border-color var(--ui-hover-duration) var(--ui-hover-easing),
    color var(--ui-hover-duration) var(--ui-hover-easing);
}

.lang-dropdown .lang-dropdown-toggle:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.22);
}

.lang-dropdown .lang-dropdown-toggle i {
  font-size: 0.7rem;
  transition: transform 160ms ease;
}

.lang-dropdown.is-open .lang-dropdown-toggle i {
  transform: rotate(180deg);
}

.lang-dropdown .lang-flag-icon {
  width: 18px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
  flex: 0 0 auto;
}

.lang-dropdown .lang-code {
  display: inline-block;
  line-height: 1;
}

.lang-dropdown .lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 128px;
  padding: 8px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(20, 38, 61, 0.95);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.26);
  display: flex;
  flex-direction: column;
  gap: 5px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 170ms ease, transform 170ms ease, visibility 170ms ease;
}

.lang-dropdown.is-open .lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-dropdown .lang-dropdown-menu a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 9px;
  padding: 8px 10px;
  color: #ecf3fd;
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition:
    background var(--ui-hover-duration) var(--ui-hover-easing),
    border-color var(--ui-hover-duration) var(--ui-hover-easing),
    transform var(--ui-hover-duration) var(--ui-hover-easing);
}

.lang-dropdown .lang-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
}

.lang-dropdown .lang-dropdown-menu a.is-active {
  color: #ffffff;
  background: linear-gradient(90deg, #d98246, #c66e37);
  border-color: rgba(255, 255, 255, 0.42);
}

footer {
  background: #111827;
  color: #d1d5db;
}

.landing-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 0;
  margin-bottom: 0;
  max-width: none;
  padding: 0;
  min-height: calc(100vh - var(--header-offset));
  scroll-margin-top: 110px;
  text-align: left;
}

.landing-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.landing-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  background: #0f172a;
  min-height: calc(100vh - var(--header-offset));
}

.landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.78), rgba(2, 6, 23, 0.3) 45%, rgba(2, 6, 23, 0.15) 100%);
  z-index: 2;
  pointer-events: none;
}

.landing-hero .slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  padding-bottom: 0;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  background: #000;
}

.landing-hero .slider .slide_img img {
  object-fit: cover;
}

.hero-overlay-content {
  position: relative;
  z-index: 4;
  width: min(900px, 90%);
  text-align: center;
  color: var(--white);
  margin-bottom: 9vh;
  pointer-events: auto;
}

.shape-divider {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  pointer-events: none;
}

.shape-divider svg {
  display: block;
  width: 100%;
}

.shape-divider-hero-about {
  bottom: -1px;
  z-index: 5;
}

.shape-divider-hero-about svg {
  height: clamp(78px, 11vw, 138px);
}

.shape-divider-hero-about path {
  fill: #f8f6f2;
}

body.page-index .site-footer {
  border-top: 0;
}

body.page-contact .container {
  padding: 0;
}

body.page-contact .contact-page-section {
  margin-top: 0;
  border-top: 0;
}

body.page-contact .site-footer.site-footer-compact {
  margin-top: 0;
}

body.page-contact .site-footer.site-footer-compact .footer-bottom-bar {
  border-top: 0;
}

body.page-index:not(.hero-ready) .hero-overlay-content .hero-kicker,
body.page-index:not(.hero-ready) .hero-overlay-content .moto,
body.page-index:not(.hero-ready) .hero-overlay-content .hero-author,
body.page-index:not(.hero-ready) .hero-overlay-content .hero-cta {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(6px);
}

.hero-kicker {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.9rem;
}

.moto {
  margin: 0;
  max-width: 100%;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
  color: var(--white);
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
}

.hero-author {
  margin-top: 1rem;
  font-weight: 600;
  text-align: center;
}

.hero-cta {
  margin-top: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.97rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition:
    transform var(--ui-hover-duration) var(--ui-hover-easing),
    background var(--ui-hover-duration) var(--ui-hover-easing),
    color var(--ui-hover-duration) var(--ui-hover-easing),
    border-color var(--ui-hover-duration) var(--ui-hover-easing),
    box-shadow var(--ui-hover-duration) var(--ui-hover-easing);
}

.hero-btn:hover {
  transform: translateY(-2px);
}

.hero-btn-primary {
  color: #ffffff;
  background: linear-gradient(90deg, #d98246 0%, #c56c35 55%, #a85628 100%);
  box-shadow: 0 12px 22px rgba(197, 108, 53, 0.34);
}

.hero-btn-primary:hover {
  color: #ffffff;
  background: linear-gradient(90deg, #e08d52 0%, #cd733c 55%, #b05f30 100%);
}

.hero-btn-secondary {
  color: #edf6ff;
  background: rgba(15, 23, 42, 0.35);
  border-color: rgba(255, 255, 255, 0.62);
}

.hero-btn-secondary:hover {
  color: #ffffff;
  background: rgba(15, 23, 42, 0.6);
  border-color: rgba(255, 255, 255, 0.82);
}

body.page-index.hero-ready .hero-overlay-content .hero-kicker {
  animation: heroRevealKicker 1200ms cubic-bezier(0.22, 1, 0.36, 1) 260ms forwards;
}

body.page-index.hero-ready .hero-overlay-content .moto {
  animation: heroReveal 1450ms cubic-bezier(0.22, 1, 0.36, 1) 520ms forwards;
}

body.page-index.hero-ready .hero-overlay-content .hero-author {
  animation: heroRevealAuthor 1300ms cubic-bezier(0.22, 1, 0.36, 1) 860ms forwards;
}

body.page-index.hero-ready .hero-overlay-content .hero-cta {
  animation: heroReveal 1200ms cubic-bezier(0.22, 1, 0.36, 1) 1050ms forwards;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroRevealKicker {
  from {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(6px);
  }
  to {
    opacity: 0.9;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroRevealAuthor {
  from {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(6px);
  }
  to {
    opacity: 0.92;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-overlay-content .hero-kicker,
  .hero-overlay-content .moto,
  .hero-overlay-content .hero-author,
  .hero-overlay-content .hero-cta {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none !important;
  }
}

.landing-about-section {
  background: linear-gradient(180deg, #f8f6f2 0%, #efe8df 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 8vw;
  box-sizing: border-box;
}

.landing-about-section .landing-inner {
  position: relative;
  z-index: 2;
}

.landing-about-section .ab-us {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 0;
}

.landing-about-section .ab-us-text {
  padding: 0;
  text-align: left;
}

.landing-about-section .ab-us-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.landing-about-section .ab-us-text p {
  color: var(--text-soft);
  font-size: 1.1rem;
  line-height: 1.75;
  margin: 0;
}

.landing-about-section .ab-us-text p + p {
  margin-top: 18px;
}

.landing-about-section .ab-us-images {
  width: 100%;
  position: relative;
  min-height: 600px;
}

.landing-about-section .image1,
.landing-about-section .image2 {
  clip-path: none;
  max-width: none;
  width: min(340px, 80%);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 35px rgba(17, 24, 39, 0.18);
}

.landing-about-section .image1 {
  position: absolute;
  top: -50px;
  left: 0;
  z-index: 2;
}

.landing-about-section .image2 {
  position: absolute;
  top: calc(50% - 68px);
  left: 56%;
  transform: translateX(-50%);
  z-index: 3;
}

.landing-contact {
  background: #f7f4ef;
  display: flex;
  align-items: center;
  padding: 80px 8vw;
  box-sizing: border-box;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0;
}

.landing-contact .landing-inner {
  width: min(920px, 100%);
  text-align: center;
}

.landing-contact h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.landing-contact .contact-lead {
  margin: 0 auto 26px;
  max-width: 700px;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.landing-contact #hire {
  background: transparent;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: none;
}

.landing-contact form {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}

.landing-contact form .field label {
  background: var(--brand);
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.landing-contact form .field input[type=text],
.landing-contact form .field textarea {
  text-transform: none;
  border-radius: 0;
  font-size: 1.06rem;
}

.landing-contact form .field input[type=text]:focus + label,
.landing-contact form .field input[type=text].focused + label,
.landing-contact form .field textarea:focus + label,
.landing-contact form .field textarea.focused + label {
  background: #f0b17f;
}

.landing-contact form input[type=submit] {
  background: var(--brand);
  border-radius: 8px;
}

.landing-contact form input[type=submit]:hover {
  background: var(--brand-dark);
  color: #fff;
}

@media screen and (max-width: 900px) {
  .landing-section {
    min-height: calc(100vh - var(--header-offset));
  }

  .landing-hero {
    min-height: 88vh;
  }

  .landing-about-section,
  .landing-contact {
    padding: 56px 7vw;
  }

  .shape-divider-hero-about svg {
    height: clamp(62px, 16vw, 100px);
  }

  .landing-about-section .ab-us {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .landing-about-section .ab-us-text {
    text-align: center;
  }

  .landing-about-section .ab-us-images {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: stretch;
  }

  .landing-about-section .image1,
  .landing-about-section .image2 {
    position: static;
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
  }
}

@media screen and (max-width: 685px) {
  :root {
    --header-offset: 64px;
  }

  header:not(.mobile) {
    display: none;
  }

  header.mobile {
    display: block;
    padding: 0;
    min-height: 64px;
  }

  header.mobile .mobile-bar {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    box-sizing: border-box;
  }

  header.mobile .title-wrap {
    margin: 0;
    justify-content: flex-start;
    text-align: left;
    gap: 10px;
    max-width: calc(100% - 62px);
  }

  header.mobile .brand-logo {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  header.mobile .title-wrap img {
    width: 32px !important;
    height: 32px !important;
    flex: 0 0 auto;
  }

  header.mobile .brand-text {
    min-width: 0;
  }

  header.mobile .top-name {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100vw - 130px);
  }

  header.mobile .mobile-menu-toggle {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0;
    cursor: pointer;
  }

  header.mobile .mobile-menu-toggle span {
    width: 18px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  header.mobile.is-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

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

  header.mobile.is-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  header.mobile .mobile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 1095;
  }

  header.mobile.is-open .mobile-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  header.mobile .mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(82vw, 320px);
    height: 100dvh;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    background: #fff8ef;
    box-shadow: -12px 0 30px rgba(0, 0, 0, 0.24);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 80px 18px 18px;
    box-sizing: border-box;
    margin-top: 0;
  }

  header.mobile.is-open .mobile-nav {
    transform: translateX(0);
  }

  header.mobile .mobile-nav a {
    color: #1f2937;
    background: #ffffff;
    border-radius: 10px;
    padding: 11px 12px;
    font-size: 0.98rem;
    font-weight: 700;
    margin: 0;
    border: 1px solid #f0d8c3;
    transition:
      color var(--ui-hover-duration) var(--ui-hover-easing),
      background var(--ui-hover-duration) var(--ui-hover-easing),
      transform var(--ui-hover-duration) var(--ui-hover-easing),
      border-color var(--ui-hover-duration) var(--ui-hover-easing);
  }

  header.mobile .mobile-nav a:hover {
    color: #8f522b;
    background: #fff2e5;
    transform: translateX(2px);
    border-color: #e7be9d;
  }

  .lang-switch-mobile {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #ebd8c8;
    width: 100%;
  }

  .lang-switch-mobile .lang-dropdown-toggle {
    width: 100%;
    min-width: 0;
    color: #8f522b;
    border-color: #e2bf9f;
    background: #fffdf8;
    justify-content: space-between;
    font-size: 0.84rem;
    border-radius: 10px;
  }

  .lang-switch-mobile .lang-dropdown-toggle:hover {
    background: #fff2e5;
    border-color: #cf996f;
  }

  .lang-switch-mobile .lang-dropdown-menu {
    position: static;
    margin-top: 8px;
    min-width: 0;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #ead0bb;
    background: #fffdf8;
    box-shadow: none;
    gap: 4px;
  }

  .lang-switch-mobile .lang-dropdown-menu a {
    color: #704126;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 8px 9px;
  }

  .lang-switch-mobile .lang-dropdown-menu a:hover {
    background: #fff2e5;
    border-color: #e2bf9f;
    transform: translateY(0);
  }

  .lang-switch-mobile .lang-dropdown-menu a.is-active {
    color: #ffffff;
    border-color: #bf6a35;
    background: linear-gradient(90deg, #d98246 0%, #c56c35 100%);
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  .hero-overlay-content {
    margin-bottom: 6vh;
  }

  .hero-cta {
    width: 100%;
    gap: 10px;
  }

  .hero-btn {
    min-width: 0;
    width: min(100%, 280px);
    padding: 10px 14px;
    font-size: 0.92rem;
  }

  .landing-contact form .field label {
    font-size: 0.82rem;
  }

  .landing-about-section .ab-us-images {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: stretch;
  }

  .landing-about-section .image1,
  .landing-about-section .image2 {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: none;
    aspect-ratio: 4 / 5;
    min-height: 0;
    object-fit: cover;
  }
}

html.page-index,
body.page-index {
  scroll-snap-type: y mandatory;
}

html.page-index .landing-section,
body.page-index .landing-section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

html.page-index .site-footer,
body.page-index .site-footer {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.landing-hero .slider .slide_img {
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 540ms ease;
}

.landing-hero .slider .slide_img.is-active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.landing-hero .slider .slide_img .prev,
.landing-hero .slider .slide_img .next {
  border: 0;
  padding: 0;
}

.landing-hero .slider.is-single .slide_img .prev,
.landing-hero .slider.is-single .slide_img .next {
  display: none;
}

.landing-hero .slider .slide_img .prev,
.landing-hero .slider .slide_img .next {
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.35), 0 8px 18px rgba(0, 0, 0, 0.35);
  z-index: 7;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--ui-hover-duration) var(--ui-hover-easing),
    box-shadow var(--ui-hover-duration) var(--ui-hover-easing),
    transform var(--ui-hover-duration) var(--ui-hover-easing);
}

.landing-hero .slider .slide_img .prev {
  left: 18px;
}

.landing-hero .slider .slide_img .next {
  right: 18px;
}

.landing-hero .slider .slide_img .prev:hover,
.landing-hero .slider .slide_img .next:hover {
  background: rgba(30, 41, 59, 0.78);
  box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.7), 0 10px 20px rgba(0, 0, 0, 0.45);
  transform: translateY(-50%) scale(1.05);
}

.landing-hero .slider .slide_img .prev span,
.landing-hero .slider .slide_img .next span {
  position: static;
  width: 10px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  top: auto;
  left: auto;
  right: auto;
}

.landing-hero .slider .slide_img .prev span {
  transform: rotate(135deg);
}

.landing-hero .slider .slide_img .next span {
  transform: rotate(-45deg);
}

@media screen and (max-width: 685px) {
  .landing-hero .slider .slide_img .prev,
  .landing-hero .slider .slide_img .next {
    width: 34px;
    height: 34px;
  }

  .landing-hero .slider .slide_img .prev {
    left: 10px;
  }

  .landing-hero .slider .slide_img .next {
    right: 10px;
  }
}

body.page-dogs .dogs-group {
  width: min(1320px, 100%);
  margin: 28px auto 6px;
}

body.page-dogs .container {
  padding-bottom: 120px;
}

body.page-dogs .dogs-group + .dogs-group {
  margin-top: 46px;
}

body.page-dogs .dogs-group h2 {
  text-align: left;
  color: #8f522b;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 10px 10px;
}

body.page-dogs .honeycomb {
  transform: none;
  margin: 0 auto 36px;
  max-width: 1320px;
  gap: 30px 20px;
  padding-top: 12px;
}

body.page-dogs .honeycomb-cell {
  flex: 0 1 300px;
  max-width: 300px;
  height: 165px;
  margin: 0 !important;
}

body.page-dogs .honeycomb-children .honeycomb-cell {
  margin: 0 !important;
  width: 100%;
  max-width: 300px;
  height: 258px;
  overflow: visible;
  box-shadow: none;
}

body.page-dogs .honeycomb-children {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  column-gap: 20px;
  row-gap: 16px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 8px;
  padding-bottom: 24px;
}

body.page-dogs .honeycomb-children .honeycomb-cell {
  grid-column: span 2;
  justify-self: center;
  align-self: start;
}

body.page-dogs .honeycomb-children .honeycomb-cell:nth-child(5n + 1) {
  grid-column: 1 / span 2;
}

body.page-dogs .honeycomb-children .honeycomb-cell:nth-child(5n + 2) {
  grid-column: 3 / span 2;
}

body.page-dogs .honeycomb-children .honeycomb-cell:nth-child(5n + 3) {
  grid-column: 5 / span 2;
}

body.page-dogs .honeycomb-children .honeycomb-cell:nth-child(5n + 4) {
  grid-column: 2 / span 2;
}

body.page-dogs .honeycomb-children .honeycomb-cell:nth-child(5n + 5) {
  grid-column: 4 / span 2;
}

body.page-dogs .honeycomb-children .honeycomb-cell:nth-child(5n + 4),
body.page-dogs .honeycomb-children .honeycomb-cell:nth-child(5n + 5) {
  transform: translateY(-72px);
}

body.page-dogs .honeycomb-children .honeycomb-cell:nth-child(6),
body.page-dogs .honeycomb-children .honeycomb-cell:nth-child(7),
body.page-dogs .honeycomb-children .honeycomb-cell:nth-child(8) {
  transform: translateY(-144px);
}

body.page-dogs .honeycomb-children .honeycomb-cell::before,
body.page-dogs .honeycomb-children .honeycomb-cell::after,
body.page-dogs .honeycomb-children .honeycomb-cell_img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

body.page-dogs .honeycomb-cell_title {
  font-size: 2rem;
}

body.page-dogs .honeycomb-cell:hover {
  transform: scale(1.08);
}

body.page-dogs .honeycomb-children .honeycomb-cell:nth-child(5n + 4):hover,
body.page-dogs .honeycomb-children .honeycomb-cell:nth-child(5n + 5):hover {
  transform: translateY(-72px) scale(1.08);
}

body.page-dogs .honeycomb-children .honeycomb-cell:nth-child(6):hover,
body.page-dogs .honeycomb-children .honeycomb-cell:nth-child(7):hover,
body.page-dogs .honeycomb-children .honeycomb-cell:nth-child(8):hover {
  transform: translateY(-144px) scale(1.08);
}

body.page-dogs .honeycomb_Hidden {
  display: none !important;
}

@media (max-width: 900px) {
  body.page-dogs .dogs-group h2 {
    text-align: center;
    margin-left: 0;
    margin-bottom: 18px;
    position: relative;
    z-index: 6;
  }

  body.page-dogs .honeycomb {
    justify-content: center;
    gap: 24px 16px;
    margin-bottom: 24px;
    padding-top: 0;
    align-items: flex-start;
  }

  body.page-dogs .honeycomb-children {
    display: flex;
    gap: 24px 16px;
    padding-top: 6px;
    padding-bottom: 10px;
  }

  body.page-dogs .honeycomb-children .honeycomb-cell,
  body.page-dogs .honeycomb-children .honeycomb-cell:nth-child(5n + 4),
  body.page-dogs .honeycomb-children .honeycomb-cell:nth-child(5n + 5),
  body.page-dogs .honeycomb-children .honeycomb-cell:nth-child(6),
  body.page-dogs .honeycomb-children .honeycomb-cell:nth-child(7),
  body.page-dogs .honeycomb-children .honeycomb-cell:nth-child(8) {
    transform: none;
  }

  body.page-dogs .dogs-group:first-of-type .honeycomb-cell {
    flex: 0 1 300px;
    width: 100%;
    max-width: 300px;
    height: 258px;
    margin: 0 0 20px !important;
    padding: 0;
    box-shadow: none !important;
  }

  body.page-dogs .honeycomb-cell::before,
  body.page-dogs .honeycomb-cell::after,
  body.page-dogs .honeycomb-cell_img {
    top: 0;
    height: 100%;
    -webkit-clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  }

  body.page-dogs .honeycomb-cell_img {
    filter: grayscale(0%) !important;
  }

  body.page-dogs .honeycomb-cell::after {
    opacity: 0.32;
  }

  body.page-dogs .honeycomb-cell:hover,
  body.page-dogs .honeycomb-children .honeycomb-cell:nth-child(5n + 4):hover,
  body.page-dogs .honeycomb-children .honeycomb-cell:nth-child(5n + 5):hover,
  body.page-dogs .honeycomb-children .honeycomb-cell:nth-child(6):hover,
  body.page-dogs .honeycomb-children .honeycomb-cell:nth-child(7):hover,
  body.page-dogs .honeycomb-children .honeycomb-cell:nth-child(8):hover {
    transform: none !important;
  }

  body.page-dogs .honeycomb-cell:hover .honeycomb-cell_title {
    opacity: 1;
  }
}

body.page-dogs .dog-details {
  width: min(1260px, 100%);
  margin: 10px auto 0;
}

body.page-dogs .dog-details h2 {
  text-align: left;
  color: #8f522b;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 16px 10px;
}

body.page-dogs .dog-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 22px;
  align-items: center;
  background: radial-gradient(circle at 14% 12%, #ffffff 0%, #fff7ee 46%, #f1c8aa 72%, #d98246 100%);
  border: 1px solid #eadbcf;
  border-radius: 14px;
  padding: 20px;
  margin: 0 0 22px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  scroll-margin-top: 90px;
  transition:
    transform var(--ui-hover-duration) var(--ui-hover-easing),
    box-shadow var(--ui-hover-duration) var(--ui-hover-easing),
    border-color var(--ui-hover-duration) var(--ui-hover-easing);
}

body.page-dogs .dog-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 10px;
}

body.page-dogs .dog-card h3 {
  margin: 0 0 8px;
  color: #8f522b;
  font-size: 1.72rem;
}

body.page-dogs .dog-card p {
  margin: 0 0 8px;
  line-height: 1.62;
  color: #2f3a48;
  font-size: 1.06rem;
}

body.page-dogs .dog-card p:last-child {
  margin-bottom: 0;
}

body.page-dogs .dog-card:target {
  border-color: #d98246;
  box-shadow: 0 0 0 2px rgba(217, 130, 70, 0.25), 0 10px 22px rgba(0, 0, 0, 0.1);
}

body.page-dogs .dog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.12);
}

@media (max-width: 900px) {
  body.page-dogs .dog-details h2 {
    text-align: center;
    margin-left: 0;
  }

  body.page-dogs .dog-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body.page-dogs .dog-card img {
    height: 230px;
  }
}

@media screen and (max-width: 900px) {
  html.page-index,
  body.page-index {
    scroll-snap-type: y proximity;
  }

  html.page-index .landing-section,
  body.page-index .landing-section {
    scroll-snap-stop: normal;
  }
}

@media (min-width: 901px) {
  html.page-index,
  body.page-index {
    scrollbar-width: none;
  }

  html.page-index::-webkit-scrollbar,
  body.page-index::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
}

/* Footer redesign */
.site-footer {
  background: radial-gradient(circle at 8% 0%, #145a69 0%, #0d3540 46%, #0a2730 100%);
  color: #e9f8fb;
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer .footer-shell {
  width: min(1260px, 100%);
  margin: 0 auto;
  padding: 44px 5vw 26px;
  box-sizing: border-box;
}

.site-footer .footer-top {
  display: grid;
  grid-template-columns: 1.05fr 1.3fr;
  gap: 34px;
  align-items: start;
}

.site-footer .footer-brand {
  background: rgba(8, 29, 36, 0.55);
  border: 1px solid rgba(130, 205, 221, 0.24);
  border-radius: 16px;
  padding: 22px;
}

.site-footer .footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.site-footer .footer-logo-row img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.site-footer .footer-logo-row h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #f2fdff;
}

.site-footer .footer-brand p {
  margin: 0 0 16px;
  line-height: 1.65;
  color: #cde6ec;
}

.site-footer .footer-socials {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.site-footer .footer-socials a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #0f3a46;
  background: #5ed3e0;
  transition:
    transform var(--ui-hover-duration) var(--ui-hover-easing),
    filter var(--ui-hover-duration) var(--ui-hover-easing),
    background var(--ui-hover-duration) var(--ui-hover-easing);
}

.site-footer .footer-socials a:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.site-footer .back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  color: #eaf8fb;
  padding: 9px 12px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition:
    background var(--ui-hover-duration) var(--ui-hover-easing),
    color var(--ui-hover-duration) var(--ui-hover-easing),
    transform var(--ui-hover-duration) var(--ui-hover-easing);
}

.site-footer .back-to-top:hover {
  background: rgba(255, 255, 255, 0.09);
  color: #ffffff;
  transform: translateY(-2px);
}

.site-footer .footer-contact {
  background: #f0f4f5;
  border-radius: 16px;
  padding: 24px;
  color: #0d2730;
}

.site-footer .footer-contact h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  line-height: 1.05;
  color: #0e1a1f;
}

.site-footer .footer-contact > p {
  margin: 12px 0 20px;
  text-align: center;
  color: #324952;
}

.site-footer .footer-contact-form {
  width: 100%;
  margin: 0;
}

.site-footer #hire {
  background: transparent;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: none;
}

.site-footer #hire form {
  width: 100%;
  max-width: none;
}

.site-footer #hire .field {
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.site-footer #hire .field label {
  position: static;
  top: auto;
  left: auto;
  width: auto;
  padding: 0;
  margin: 0;
  order: -1;
  background: transparent;
  color: #24424b;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer #hire .field input[type=text],
.site-footer #hire .field input[type=email],
.site-footer #hire .field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #c5d6db;
  border-radius: 10px;
  background: #ffffff;
  color: #1f2f36;
  padding: 12px 14px;
  margin: 0;
  text-transform: none;
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.35;
  background-image: linear-gradient(90deg, #2ab5c7, #67d6e3);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 2px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-size 0.28s ease;
}

.site-footer #hire .field input[type=text]:focus + label,
.site-footer #hire .field input[type=text].focused + label,
.site-footer #hire .field input[type=email]:focus + label,
.site-footer #hire .field input[type=email].focused + label,
.site-footer #hire .field textarea:focus + label,
.site-footer #hire .field textarea.focused + label {
  width: auto;
  background: transparent;
  color: #24424b;
}

.site-footer #hire .field:hover label {
  width: auto;
  background: transparent;
  color: #24424b;
}

.site-footer #hire .field label + span {
  display: none;
}

.site-footer #hire .contact-hp {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  left: -9999px !important;
}

.site-footer #hire .field textarea {
  min-height: 112px;
  resize: vertical;
}

.site-footer #hire .field textarea#msg,
.site-footer #hire .field textarea#msg.focused,
.site-footer #hire .field textarea#msg:focus {
  height: auto;
  padding-bottom: 12px;
}

.site-footer #hire .field input[type=text]:focus,
.site-footer #hire .field input[type=email]:focus,
.site-footer #hire .field textarea:focus {
  outline: none;
  border-color: #2ab5c7;
  box-shadow: 0 0 0 3px rgba(42, 181, 199, 0.18);
}

.site-footer #hire .field:hover input[type=text],
.site-footer #hire .field:hover input[type=email],
.site-footer #hire .field:hover textarea,
.site-footer #hire .field input[type=text]:focus,
.site-footer #hire .field input[type=email]:focus,
.site-footer #hire .field textarea:focus {
  background-size: 100% 2px;
}

.site-footer #hire .field input.invalid,
.site-footer #hire .field textarea.invalid {
  border-color: #d65757;
  box-shadow: 0 0 0 3px rgba(214, 87, 87, 0.14);
}

.site-footer #hire .form-status {
  margin-top: 10px;
  min-height: 1.2em;
  font-size: 0.88rem;
  color: #4b6170;
}

.site-footer #hire .form-status.is-success {
  color: #1e7c3d;
}

.site-footer #hire .form-status.is-error {
  color: #b74545;
}

.site-footer #hire input[type=submit] {
  margin-top: 10px;
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 13px 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #2bb6c8, #17a2b8);
  color: #f6fdff;
  cursor: pointer;
  transition:
    transform var(--ui-hover-duration) var(--ui-hover-easing),
    filter var(--ui-hover-duration) var(--ui-hover-easing),
    box-shadow var(--ui-hover-duration) var(--ui-hover-easing);
}

.site-footer #hire input[type=submit]:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(17, 128, 143, 0.32);
}

.site-footer .footer-info-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 16px;
}

.site-footer .footer-info-card {
  background: #e9eff1;
  border: 1px solid #d5e2e6;
  border-radius: 14px;
  padding: 22px 16px 18px;
  text-align: center;
  color: #1d2d34;
  position: relative;
  padding-top: 54px;
  transition:
    transform var(--ui-hover-duration) var(--ui-hover-easing),
    box-shadow var(--ui-hover-duration) var(--ui-hover-easing),
    border-color var(--ui-hover-duration) var(--ui-hover-easing);
}

.site-footer .footer-icon {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #24b9ca;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 8px 18px rgba(36, 185, 202, 0.4);
  transition:
    transform var(--ui-hover-duration) var(--ui-hover-easing),
    box-shadow var(--ui-hover-duration) var(--ui-hover-easing);
}

.site-footer .footer-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.12);
  border-color: #bcd3d9;
}

.site-footer .footer-info-card:hover .footer-icon {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 12px 20px rgba(36, 185, 202, 0.46);
}

.site-footer .footer-info-card h4 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.site-footer .footer-info-card p {
  margin: 4px 0;
  color: #3b4e57;
}

.site-footer .footer-info-card a {
  color: #2f8ea1;
}

.site-footer .footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 20, 25, 0.45);
  padding: 10px 5vw;
  text-align: center;
}

.site-footer .footer-bottom-bar p {
  margin: 0;
  color: #c5dce2;
  font-size: 0.88rem;
}

@media (max-width: 960px) {
  .site-footer .footer-top {
    grid-template-columns: 1fr;
  }

  .site-footer .footer-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-footer .footer-shell {
    padding: 30px 16px 16px;
  }

  .site-footer .footer-contact {
    padding: 16px;
  }

  .site-footer .footer-contact h2 {
    font-size: 1.9rem;
  }
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2300;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 11px 14px;
  color: #ffffff;
  background: linear-gradient(90deg, #1fa661, #1c8f56);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 12px 24px rgba(10, 56, 35, 0.36);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    transform var(--ui-hover-duration) var(--ui-hover-easing),
    box-shadow var(--ui-hover-duration) var(--ui-hover-easing),
    filter var(--ui-hover-duration) var(--ui-hover-easing);
}

.floating-whatsapp i {
  font-size: 1.08rem;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(10, 56, 35, 0.4);
  filter: brightness(1.04);
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 685px) {
  .floating-whatsapp {
    display: none;
  }

  body {
    padding-bottom: 72px;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2400;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(6, 24, 30, 0.96);
    border-top: 1px solid rgba(110, 178, 192, 0.42);
    backdrop-filter: blur(6px);
  }

  .mobile-sticky-cta a {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #effafe;
    font-weight: 700;
    letter-spacing: 0.02em;
    font-size: 0.9rem;
    border-right: 1px solid rgba(110, 178, 192, 0.25);
    transition:
      background var(--ui-hover-duration) var(--ui-hover-easing),
      color var(--ui-hover-duration) var(--ui-hover-easing);
  }

  .mobile-sticky-cta a:last-child {
    border-right: 0;
  }

  .mobile-sticky-cta .mobile-cta-whatsapp {
    background: linear-gradient(90deg, rgba(28, 147, 87, 0.92), rgba(22, 124, 73, 0.92));
  }

  .mobile-sticky-cta .mobile-cta-contact {
    background: linear-gradient(90deg, rgba(35, 125, 143, 0.92), rgba(20, 96, 113, 0.92));
  }
}

