/* Reorganized CSS with proper section organization and mobile menu fixes */

/* CSS Variables */
:root {
  --color-primary: #4a6944;
  --color-primary-light: #6a8c64;
  --color-primary-dark: #354b30;

  --color-white: #f5f5f5;
  --color-gray-100: #f0f0f0;
  --color-gray-200: #e6e6e6;
  --color-gray-300: #dcdcdc;
  --color-gray-400: #cdcdcd;
  --color-gray-500: #b0b0b0;
  --color-gray-600: #999999;
  --color-gray-700: #777777;
  --color-gray-800: #555555;
  --color-gray-900: #333333;
  --color-black: #0f0f0f;

  --color-success: #27ae60;
  --color-warning: #f1c40f;
  --color-error: #e74c3c;
  --color-info: #3498db;
  --color-transparent: rgba(0, 0, 0, 0);

  --padding-small: 5px;
  --padding-medium: 10px;
  --padding-large: 20px;

  --breakpoint-small: 768px;
  --breakpoint-medium: 1024px;
  --breakpoint-large: 1280px;

  --radius-none: 0;
  --radius-small: 2px;
  --radius-medium: 4px;
  --radius-large: 8px;
  --radius-round: 50%;

  --font-header: "video", serif;
  --font-text: "Inter", sans-serif;
}

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-text);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-header);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

h1 {
  font-size: 2rem;
}
h2 {
  font-size: 1.75rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}
h5 {
  font-size: 1rem;
}
h6 {
  font-size: 0.875rem;
}

.subtitle {
  line-height: 1.6;
}

hr {
  margin: 1rem 0;
  border: none;
  height: 1px;
  background-color: var(--color-gray-600);
  border-radius: 2px;
}

/* Navigation */
nav.navbar {
  display: flex;
  flex-direction: column;
  background-color: var(--color-primary);
  color: var(--color-white);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 var(--padding-large);
  position: relative;
  min-height: 42px;
}

/* Phone logo styling */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-family: var(--font-header);
}

.navbar-brand i {
  font-size: 1rem;
}

.navbar__menu {
  list-style: none;
  display: flex;
  gap: var(--padding-medium);
  margin: 0;
  padding: 0;
  justify-content: center;
  flex-grow: 1;
  max-width: 600px;
}

.navbar__item a {
  display: inline-block;
  padding: var(--padding-medium);
  color: var(--color-white);
  transition: 0.1s ease;
  font-family: var(--font-header);
  font-size: 1.2rem;
}

.navbar__item a,
.navbar__item a:link,
.navbar__item a:visited,
.navbar__item a:hover,
.navbar__item a:focus,
.navbar__item a:active {
  text-decoration: none !important;
}

.navbar__menu li a:hover {
  background-color: var(--color-primary-dark);
}

.navbar__toggle {
  font-size: 1.5rem;
  color: var(--color-white);
  cursor: pointer;
  display: none !important;
  position: absolute;
  top: 9px;
  right: 13px;
}

.contact-bar {
  flex-basis: 100%;
  display: flex;
  justify-content: center;
  gap: var(--padding-small);
  color: var(--color-white);
  background-color: var(--color-primary-dark);
  padding: var(--padding-small);
}

.contact-bar__text {
  font-weight: 600;
}

.contact-bar__phone,
.contact-bar__email {
  color: var(--color-white);
  text-decoration: none;
}

.contact-bar__phone:hover,
.contact-bar__email:hover {
  color: var(--color-primary-light);
  text-decoration: underline;
}

/* Section Layouts */
.section {
  min-height: 100vh;
  width: 100%;
  background-image: url("../images/background.svg");
  background-color: rgba(255, 255, 255, 0.85);
  background-blend-mode: lighten;
  background-size: 150px;
  background-repeat: repeat;
  padding: var(--padding-large);
}

.section__container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  background-color: var(--color-white);
  padding: var(--padding-large);
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.3);
}

.section__container + .section__container {
  margin-top: var(--padding-large);
}

.page__container {
  max-width: 1080px;
  margin: 0 auto;
  background-color: var(--color-success);
}

.container__db {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 0rem;
  justify-content: center;
}

/* Card Components */
.item-card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: var(--radius-medium);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex: 1 1 100%;
  max-width: 100%;
  justify-content: space-between;
  position: relative;
}

.item-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  aspect-ratio: 1/1;
}

.item-card h2 {
  font-size: 1.25rem;
  margin: 1rem 1rem 0.5rem;
  color: #222;
}

.item-card p {
  margin: 0.25rem 1rem;
  line-height: 1.5;
  color: #444;
}

.item-card a {
  margin: 0.25rem 1rem;
}

.item-card p:last-child {
  margin: 0rem 1rem 0.5rem;
}

.item-card p strong {
  color: var(--color-black);
}

.status {
  font-weight: bold;
  margin: 0.5rem 1rem 1rem;
}

.sold-out {
  color: var(--color-error) !important;
}

.available {
  color: var(--color-success) !important;
}

.fit-pill {
  padding: 3px 5px;
  background-color: var(--color-success);
  border-radius: 10px;
  color: var(--color-white);
}

/* Service Cards */
.service__card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 1.5rem 0;
  background: var(--color-white);
  border-radius: var(--radius-small);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(74, 105, 68, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(74, 105, 68, 0.1);
}

.service__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(74, 105, 68, 0.15);
  border-color: var(--color-primary-light);
}

.service__img {
  position: relative;
  overflow: hidden;
  max-height: 250px;
  height: 100%;
}

.service__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(74, 105, 68, 0.7) 0%,
    rgba(53, 75, 48, 0.3) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.service__card:hover .service__img::before {
  opacity: 1;
}

.service__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service__card:hover .service__img img {
  transform: scale(1.1);
}

.service__info {
  padding: 2rem;
  position: relative;
  background: var(--color-white);
}

.service__info h2 {
  font-size: 1.6rem;
  color: var(--color-primary-dark);
  margin-bottom: 1rem;
  font-weight: 700;
  font-family: var(--font-header);
  position: relative;
  display: inline-block;
}

.service__info h2::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-primary-light)
  );
  border-radius: 2px;
  transition: width 0.4s ease;
}

.service__card:hover .service__info h2::after {
  width: 100%;
}

.service__info p {
  font-size: 1rem;
  color: var(--color-gray-700);
  line-height: 1.7;
  margin: 0;
}

.service__number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  z-index: 3;
  transition: all 0.3s ease;
}

.service__card:hover .service__number {
  background: var(--color-primary-dark);
  transform: scale(1.1);
}

/* Modal Components */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background-color: #fff;
  margin: 10vh auto;
  padding: 2rem;
  border-radius: var(--radius-large);
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.close {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-gray-800);
}

.modal-btn {
  margin: 0.5rem 1rem 1rem;
  padding: 0.5rem 1rem;
  border: none;
  background-color: var(--color-transparent);
  color: var(--color-white);
  border: solid 2px var(--color-white);
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s ease;
  position: absolute;
  bottom: 0;
  width: calc(100% - 2rem);
}

.modal-btn:hover {
  background-color: rgba(245, 245, 245, 0.5);
}

.modal-img {
  width: 100%;
}

.prev,
.next {
  cursor: pointer;
}

.next {
  float: right;
}

/* Slider Components */
.splide {
  min-height: 70vh;
}

.splide__container {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.splide__slide {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.splide__slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.splide__cover {
  position: absolute;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(0, 0, 0, 0.6) 75%,
    rgba(0, 0, 0, 0.8) 100%
  );
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.splide__logo {
  width: min(450px, 65vw);
}

/* Footer */
footer {
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: var(--padding-medium);
  color: var(--color-white);
  background-color: var(--color-black);
}

footer i {
  color: var(--color-white);
}

.footer-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-bottom: var(--padding-small);
}

.icon-circle {
  border: 2px solid var(--color-white);
  border-radius: var(--radius-round);
  padding: var(--padding-small);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
}

.icon-circle i {
  transform-origin: center center;
  font-size: 20px;
}

.icon-circle:hover i {
  transform: scale(1.1);
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
  .navbar__menu {
    max-width: unset;
    display: block;
    top: 30px;
  }

  .navbar__item {
    display: none;
  }

  .navbar__item.show {
    display: block;
  }

  .navbar__toggle {
    display: block !important;
  }
}

@media (min-width: 600px) {
  .item-card {
    flex: 1 1 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.75rem;
  }
  h4 {
    font-size: 1.5rem;
  }
  h5 {
    font-size: 1.25rem;
  }
  h6 {
    font-size: 1rem;
  }

  .service__card {
    grid-template-columns: 1fr 1fr;
    margin: 1.5rem 0;
  }

  .service__card.reverse {
    direction: rtl;
  }

  .service__card.reverse .service__info {
    direction: ltr;
  }

  .service__img {
    height: 100%;
  }

  .service__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem;
  }

  .service__info h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .service__info p {
    font-size: 1.1rem;
  }
}

@media (min-width: 960px) {
  .item-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    max-width: calc(33.333% - 1.5rem);
  }
}

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

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

/* Contact form styles that integrate with existing design system */

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--color-gray-100);
  border-radius: var(--radius-medium);
  border-left: 4px solid var(--color-primary);
  transition: all 0.3s ease;
  align-items: center;
}

.contact__info-item:hover {
  background-color: var(--color-gray-200);
  transform: translateX(5px);
}

.contact__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-round);
  flex-shrink: 0;
  font-size: 1.2rem;
}

.contact__details h3 {
  font-family: var(--font-header);
  color: var(--color-primary-dark);
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.contact__details p {
  color: var(--color-gray-700);
  line-height: 1.4;
  margin: 0;
}

.contact__form {
  background-color: var(--color-white);
  padding: var(--padding-large);
  border-radius: var(--radius-medium);
  box-shadow: 0 4px 20px rgba(74, 105, 68, 0.08);
  border: 1px solid rgba(74, 105, 68, 0.1);
}

.form__group {
  margin-bottom: 1.5rem;
}

.form__group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--color-gray-800);
  font-family: var(--font-header);
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--color-gray-300);
  border-radius: var(--radius-medium);
  font-family: var(--font-text);
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: var(--color-white);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(74, 105, 68, 0.1);
}

.form__group input:invalid:not(:focus):not(:placeholder-shown),
.form__group select:invalid:not(:focus),
.form__group textarea:invalid:not(:focus):not(:placeholder-shown) {
  border-color: var(--color-error);
}

.form__group textarea {
  resize: vertical;
  min-height: 120px;
}

.form__group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.25rem;
  padding-right: 2.5rem;
  appearance: none;
}

.contact__submit {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-light)
  );
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-medium);
  font-family: var(--font-header);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(74, 105, 68, 0.3);
}

.contact__submit:hover {
  background: linear-gradient(
    135deg,
    var(--color-primary-dark),
    var(--color-primary)
  );
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 105, 68, 0.4);
}

.contact__submit:active {
  transform: translateY(0);
}

.contact__submit i {
  transition: transform 0.3s ease;
}

.contact__submit:hover i {
  transform: translateX(3px);
}

.contact__success {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    rgba(39, 174, 96, 0.1),
    rgba(39, 174, 96, 0.05)
  );
  border: 2px solid var(--color-success);
  border-radius: var(--radius-medium);
  margin-top: 2rem;
}

.contact__success i {
  font-size: 3rem;
  color: var(--color-success);
  margin-bottom: 1rem;
}

.contact__success h3 {
  color: var(--color-success);
  margin-bottom: 0.5rem;
  font-family: var(--font-header);
}

.contact__success p {
  color: var(--color-gray-700);
  margin: 0;
}

@media (min-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
  }

  .form__group {
    margin-bottom: 1.5rem;
  }

  .contact__submit {
    align-self: flex-start;
    padding: 1rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .contact__info {
    position: sticky;
    top: 2rem;
  }
}









