/* Compiled from SCSS - Layout Styles */

/* Beautiful Modal Styles */
.modal {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-content {
  border: none;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: visible;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.modal.show .modal-content {
  transform: scale(1);
}

.modal-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
}

/* Video Modal Specific Styles */
.modal-video .modal-dialog {
  max-width: 60vw;
  max-height: 60vh;
}

.modal-video iframe {
  width: 100%;
  height: 350px;
}

.modal-video .modal-body.loading::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #035B9B;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 1;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.modal-video .modal-body.loading iframe {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-video .modal-body iframe {
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* Modal Content Enhancements */
.modal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  pointer-events: none;
  border-radius: inherit;
}

/* Enhanced Button Styles */
.modal .btn {
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  padding: 0.75rem 1.5rem;
}

.modal .btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.modal .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.modal .btn-light {
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal .btn-light:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
}

/* Custom Close Button */
.modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #333;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.modal__close:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
  color: #e74c3c;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Alternative Close Button for Regular Modals */
.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #333;
  transition: all 0.3s ease;
  z-index: 1000;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 1);
  color: #e74c3c;
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Smaller modal sizes */
.modal-dialog {
  max-width: 500px;
}

.modal-lg {
  max-width: 600px;
}

.modal-xl {
  max-width: 800px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .modal__close {
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .modal-close-btn {
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
  }

  .modal-video .modal-dialog {
    max-width: 80vw;
    max-height: 50vh;
  }

  .modal-video iframe {
    height: 250px;
  }
}

/* Layout CSS - Exact conversion from _layout.scss */

.v-lazy-image {
  width: 100%;
}

.mb-72,
.mb72 {
  margin-bottom: 72px;
}

.mt72 {
  margin-bottom: 72px;
}

button.splide__arrow.splide__arrow--next::before {
  content: "\f178";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

button.splide__arrow.splide__arrow--prev::before {
  content: "\f177";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

button.splide__arrow.splide__arrow svg {
  display: none !important;
}

div.socials {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
}

div.socials a {
  background: unset;
  border-radius: 100%;
  color: #515151;
  font-size: 16px;
  height: 32px;
  line-height: 32px;
  margin-left: 11px;
  text-align: center;
  padding-right: 16px;
}

div.socials a:first-child {
  margin-left: 0;
}

nav.navbar.navbar-expand-lg {
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  align-items: flex-start;
}

nav.navbar.navbar-expand-lg .navbar-top {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

nav.navbar.navbar-expand-lg .navbar-top .rightside {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-between;
  align-items: center;
}

nav.navbar.navbar-expand-lg .navbar-top .rightside .socials::after {
  content: "";
  width: 2px;
  height: 22px;
  background: #DFDFE0;
  margin: 0 32px;
  display: block;
}

nav.navbar.navbar-expand-lg div#navbarNavDropdown {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-content: center;
  width: 100%;
}

nav.navbar.navbar-expand-lg div#navbarNavDropdown ul.navbar-nav li {
  padding: 0 20px;
}

nav.navbar.navbar-expand-lg div#navbarNavDropdown ul.navbar-nav li:first-child {
  padding-left: 0;
}

nav.navbar.navbar-expand-lg div#navbarNavDropdown ul.navbar-nav li a {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
  color: #262729;
  padding: 0;
  color: #000000;
}

nav.navbar.navbar-expand-lg div#navbarNavDropdown ul.navbar-nav li ul.dropdown-menu.show {
  margin-top: 36px;
  padding: 32px;
  padding-bottom: 16px;
  border: unset !important;
  border-radius: 10px;
  box-shadow: 0px 0 50px 0px rgb(0 0 0 / 10%),
    0px 0 30.5526px rgb(0 0 0 / 4%);
}

nav.navbar.navbar-expand-lg div#navbarNavDropdown ul.navbar-nav li ul.dropdown-menu.show::before {
  content: "\A";
  border-style: solid;
  border-width: 20px 14px 20px 0;
  border-color: transparent #fff transparent transparent;
  position: absolute;
  left: 30%;
  transform: rotate(90deg);
  top: -22px;
}

nav.navbar.navbar-expand-lg div#navbarNavDropdown ul.navbar-nav li ul.dropdown-menu.show li {
  padding: 0 !important;
}

nav.navbar.navbar-expand-lg div#navbarNavDropdown ul.navbar-nav li ul.dropdown-menu.show li .dropdown-item {
  padding-bottom: 16px;
}

nav.navbar.navbar-expand-lg div#navbarNavDropdown ul.navbar-nav li ul.dropdown-menu.show li .dropdown-item:hover,
nav.navbar.navbar-expand-lg div#navbarNavDropdown ul.navbar-nav li ul.dropdown-menu.show li .dropdown-item:focus {
  background: unset !important;
}

nav.navbar.navbar-expand-lg .navbar-right {
  transition: all 0.15s ease-in-out;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-end;
  align-items: center;
  margin-left: auto;
}

nav.navbar.navbar-expand-lg .navbar-right .nav-rest {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  position: relative;
}

nav.navbar.navbar-expand-lg .navbar-right .nav-rest a {
  height: 50px;
  width: 50px;
  color: #646565;
  margin-left: 32px;
  text-decoration: unset !important;
  background: #fff;
  border: 1px solid #646565;
  border-radius: 120px;
  font-weight: 800;
  font-size: 14px;
  line-height: 47px;
}

nav.navbar.navbar-expand-lg .navbar-right .nav-rest ul.dropdown-menu.show {
  left: 134px !important;
  min-width: 48px !important;
  width: 80px !important;
  display: flex !important;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

nav.navbar.navbar-expand-lg .navbar-right .nav-rest ul.dropdown-menu a {
  border: unset !important;
  margin: 0 !important;
}

nav.navbar.navbar-expand-lg .navbar-right .nav-rest .nav-search {
  text-align: center;
}

nav.navbar.navbar-expand-lg .navbar-right .nav-rest a.lang-switcher {
  padding: 0px 23px;
  min-width: 82px;
  width: auto;
}

.search-box {
  border: 1px solid #646565 !important;
  border-radius: 30px;
  width: auto;
  min-width: 54px;
  height: 54px;
  background: unset !important;
  margin-left: 40px;
  position: relative;
}

.search-box .input-search {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  height: 50px;
  width: 50px;
  border: unset !important;
  padding: 10px;
  background: unset !important;
  outline: none;
  border-radius: 10px;
  transition: all 0.15s ease-in-out;
  padding-right: 40px;
  color: #042552;
}

.search-box .input-search::placeholder {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #9a9ea6;
}

.search-box .btn-search {
  padding: 0 !important;
  height: 50px;
  width: 50px;
  line-height: 50px;
  color: #646565;
  border: unset !important;
  text-decoration: unset !important;
  background: unset !important;
  font-size: 20px;
  outline: none;
  cursor: pointer;
  position: absolute;
  right: 0px;
  pointer-events: painted;
  outline: unset !important;
}

.search-box .btn-search:focus {
  border-left-color: #fff;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  transition: all 500ms cubic-bezier(0, 0.11, 0.35, 2);
}

.search-box .btn-search:focus~.input-search {
  width: 240px;
  border-radius: 10px;
  background-color: #fff;
  transition: all 500ms cubic-bezier(0, 0.11, 0.35, 2);
}

.search-box .input-search:focus {
  width: 240px;
  border-radius: 10px;
  transition: all 500ms cubic-bezier(0, 0.11, 0.35, 2);
}

#sut-yemleri .card-bg-holder {
  background: rgba(49, 162, 98, 0.7);
}

div#besi-yemleri .card-bg-holder {
  background: rgba(145, 18, 32, 0.7);
}

div#kucukbas-yemleri .card-bg-holder {
  background: rgba(223, 53, 47, 0.7);
}

div#kanatli-yemleri .card-bg-holder {
  background: rgba(87, 41, 114, 0.7);
}

div#tamamlayici-yemler .card-bg-holder {
  background: rgba(222, 53, 46, 0.7);
}

div#buzagi-yemleri .card-bg-holder {
  background: rgba(0, 108, 153, 0.7);
}

.team-block {
  position: relative;
  display: flex;
  background: #00538b;
  margin-left: -12px;
  margin-right: -12px;
  min-height: 300px;
  flex-wrap: wrap;
  flex-direction: row;
}

.team-block img {
  max-width: 50% !important;
  margin-bottom: 0 !important;
  position: relative;
  object-fit: cover;
  object-position: center;
}

.team-block .details {
  max-width: 50%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  padding: 24px;
  z-index: 99;
}

.team-block .details .name {
  color: #fff;
}

.team-block .details .title {
  color: #fff;
  font-weight: 500;
  margin-bottom: 8px;
}

.team-block .details .desc {
  color: #fff;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 1px;
}

.team-block .arrow {
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.team-block .arrow:after {
  content: "";
  width: 40px;
  height: 40px;
  background: #00538b;
  z-index: 12;
  display: flex;
  transform: rotate(45deg);
  align-items: center;
}

.team-row .col-lg-6:nth-child(1) .right {
  display: none !important;
}

.team-row .col-lg-6:nth-child(2) .right {
  display: none !important;
}

.team-row .col-lg-6:nth-child(3) .left {
  display: none !important;
}

.team-row .col-lg-6:nth-child(4) .left {
  display: none !important;
}

.team-row .col-lg-6:nth-child(5) .right {
  display: none !important;
}

.team-row .col-lg-6:nth-child(6) .right {
  display: none !important;
}

.team-row .col-lg-6:nth-child(7) .left {
  display: none !important;
}

.team-row .col-lg-6:nth-child(8) .left {
  display: none !important;
}

/* Footer Styles */
.footer {
  background: #FBFBFB;
  padding: 48px 0 24px 0;
}

.footer .corpprate {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-end;
  align-items: center;
}

.footer .corpprate a,
.footer .corpprate a:hover,
.footer .corpprate a:focus {
  text-decoration: unset !important;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 26px;
  text-align: right;
  color: #232323;
}

.footer .corpprate .seperator.d-none.d-lg-block {
  margin: 0 8px;
  color: rgba(4, 37, 82, 0.7);
}

.footer p {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  max-width: 480px;
  color: rgba(35, 35, 35, 0.9);
  opacity: 0.8;
}

.footer .footer-about img {
  width: 102px;
  margin-bottom: 24px;
}

.footer h6 {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #232323;
  margin-bottom: 24px;
}

.footer ul.nav {
  padding: 0;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: center;
  align-items: flex-start;
}

.footer ul.nav li {
  margin-bottom: 15px;
}

.footer ul.nav li a {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  cursor: pointer;
  color: rgba(35, 35, 35, 0.7);
  text-decoration: none !important;
}

.footer ul.nav li a:hover {
  color: rgba(35, 35, 35, 1);
}

.footer .row.sub-footer {
  padding-top: 24px;
}

.footer .row.sub-footer p,
.footer .row.sub-footer p a,
.footer .row.sub-footer p a:hover {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 26px;
  color: #232323;
  text-decoration: unset !important;
}

.footer .footer-socials {
  margin-bottom: 24px;
}

.footer .footer-logo-2 {
  display: block;
  text-decoration: none;
}
hr.nav {
  border-top: 1px solid #DFDFE0 !important;
  margin-top: 28px;
  margin-bottom: 12px;
  opacity: 1 !important;
  color: #DFDFE0;
  width: 100%;
  margin-left: calc(-0.5 * var(--bs-gutter-x));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
}
