@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
body {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
}

select {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
}

:root {
  --app-height: 100%;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

a {
  font-weight: 500;
}

select,
button,
input[type=text],
input[type=email],
input[type=password],
textarea {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
}

strong,
b {
  font-weight: 900;
}

/*1199, 1366*/
.container {
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .container {
    max-width: 1193px;
  }
}
@media (max-width: 1140px) {
  .container {
    max-width: 992px;
  }
}
@media (max-width: 1140px) {
  .container {
    max-width: 992px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
header {
  background: #fff;
  box-shadow: 0px 21px 19px 0px rgba(0, 0, 0, 0.09);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 5;
}
header .header-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
header .logo-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
}
header .logo-area a {
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
}
header .logo-area a img {
  display: block;
}
header .nav-area {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  padding-top: 10px;
  position: relative;
  padding-right: 15px;
}
header .nav-area .top-nav {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
header .nav-area .top-nav ul {
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
header .nav-area .top-nav ul li a {
  font-size: 15px;
  color: #bdbdbd;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s;
  padding: 5px;
  display: block;
}
header .nav-area .top-nav ul li a:hover {
  color: #00b6c9;
}
header .nav-area .main-nav {
  width: 100%;
}
header .nav-area .main-nav ul {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}
header .nav-area .main-nav ul a {
  font-weight: 500;
  font-size: 16px;
  color: #255468;
  text-decoration: none;
  transition: color 0.2s;
  padding: 7px 0px;
  display: block;
  position: relative;
  /* overflow: hidden; */
}
header .nav-area .main-nav ul a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: #0cafb6;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
header .nav-area .main-nav ul a:hover::after {
  transform: scaleX(1);
}
header .nav-area .main-nav ul a:hover {
  color: #0cafb6;
}
header .header-icons .header-boxes {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  cursor: pointer;
}
header .header-icons .header-boxes .header-box {
  background: #fff;
  border-radius: 0px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  font-size: 12px;
  color: #000000;
}
header .header-icons .header-boxes .header-box img {
  display: block;
}
header .header-icons .header-boxes .user-box {
  background: #00b6c9;
}
header .header-icons .header-boxes .user-box img {
  filter: brightness(0) invert(1);
}
header .header-icons .header-boxes .currency-box {
  border: 2px solid #efefef;
}
header .header-icons .header-boxes .currency-box .currency-symbol {
  font-family: Arial, sans-serif;
}
header .header-icons .header-boxes .lang-box {
  gap: 6px;
  flex-direction: column;
  border: 2px solid #efefef;
  padding: 5px;
}
header .header-icons .header-boxes .lang-box img {
  display: block;
}
header .header-icons .header-boxes .lang-box span {
  display: block;
  font-size: 9px;
}

.home-slider {
  position: relative;
}
.home-slider .imgc img {
  width: 100%;
  display: block;
  height: 390px;
}
.home-slider .desc {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
}
.home-slider .desc .container {
  height: 100%;
}
.home-slider .desc .con {
  font-size: 35px;
  color: #fff;
  height: 100%;
  font-weight: 300;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 70px;
}
.home-slider .desc .con p {
  position: relative;
  display: inline-block;
  z-index: 2;
  line-height: 39px;
}
.home-slider .desc .con p strong {
  font-weight: 700;
}
.home-slider .desc .con p::after {
  position: absolute;
  left: -15px;
  right: -15px;
  bottom: -2px;
  content: "";
  z-index: -1;
  display: block;
  height: 12px;
  background: #13bfc7;
}

/* Umre search form overlay */
.home-search {
  position: relative;
  margin-top: -47px;
  z-index: 3;
  margin-bottom: 20px;
}
.home-search .umre-search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  background: #fff;
  border-radius: 1px;
  border: 2px solid #e0e0e0;
  padding: 9px 18px 7px 4px;
}
.home-search .umre-field {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: transparent;
  min-width: 200px;
  flex-grow: 1;
}
.home-search .umre-field .icon {
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-search .umre-field .control {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.home-search .umre-field .control label {
  font-size: 13px;
  color: #2b2b2b;
  font-weight: 800;
  margin-bottom: 0px;
}
.home-search .umre-field .control input[type=text],
.home-search .umre-field .control select.form-control {
  border: none;
  outline: none;
  font-size: 14px;
  padding: 4px 0;
  background: transparent;
  color: #6d6d6d;
  font-weight: 400;
  position: relative;
}
.home-search .umre-field .control input[type=text]::-moz-placeholder, .home-search .umre-field .control select.form-control::-moz-placeholder {
  color: #6d6d6d;
}
.home-search .umre-field .control input[type=text]::placeholder,
.home-search .umre-field .control select.form-control::placeholder {
  color: #6d6d6d;
}
.home-search .umre-field .control select.form-control {
  left: -3px;
}
.home-search .umre-field::after {
  content: "";
  position: absolute;
  right: -7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: #e0e0e0;
  opacity: 0.75;
}
.home-search .btn-action {
  background: #fff;
  border: none;
  color: #2a455c;
  padding: 12px 15px;
  font-weight: 800;
  cursor: pointer;
  min-height: 52px;
  position: relative;
  font-size: 16px;
}
.home-search .btn-action::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: #e0e0e0;
  opacity: 0.8;
}

@media (max-width: 992px) {
  .home-search .umre-search-form {
    flex-wrap: wrap;
  }
  .home-search .umre-field {
    min-width: 100%;
  }
  .home-search {
    margin-top: 0;
  }
}
.home-rk .con .rkcontrol {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 5px;
}
.home-rk .con .rkcontrol span {
  color: #bababa;
  font-weight: 900;
  font-size: 11px;
  display: flex;
  align-items: center;
  margin-right: 6px;
}
.home-rk .con .rkcontrol span svg {
  margin-left: 5px;
  width: 16px;
  height: 16px;
}
.home-rk .con .rkcontrol a {
  color: #848484;
  font-weight: 900;
  font-size: 11px;
  display: flex;
  align-items: center;
}
.home-rk .con .rkimg a {
  display: block;
}
.home-rk .con .rkimg a img {
  width: 100%;
  display: block;
}

.umre-list {
  padding: 10px 0 14px;
}
.umre-list .home-rk {
  margin-top: 15px;
  margin-bottom: 15px;
}
.umre-list .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.umre-list .head h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #2a455c;
}
.umre-list .head .btn-sort {
  display: inline-flex;
  align-items: center;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  color: #c1c1c1;
  text-decoration: none;
  border: 1px solid #d9d9d9;
  transition: background-color 0.2s ease;
}
.umre-list .head .btn-sort img {
  margin-left: 6px;
  height: 20px;
  opacity: 0.3;
}
.umre-list .head .btn-sort:hover {
  background-color: #ececec;
}
.umre-list .tur-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.umre-list .tur-card {
  border: 1px solid #d0d0d0;
  padding: 12px;
}
.umre-list .tur-card .thumb {
  display: block;
  position: relative;
  border: 1px solid #d5d5d5;
  background: #fff;
}
.umre-list .tur-card .thumb img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.umre-list .tur-card .thumb .card-pin {
  position: absolute;
  right: 9px;
  top: 9px;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: #15bac1;
}
.umre-list .tur-card .body {
  text-align: center;
  padding: 8px 3px 0;
  padding-top: 0;
}
.umre-list .tur-card .body h3 {
  margin: 10px 0 8px;
  min-height: 56px;
  font-size: 17px;
  line-height: 1.05;
  color: #1c1c1c;
  font-weight: 900;
  letter-spacing: -0.4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.umre-list .tur-card .date-airline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 2px solid #d2d2d2;
  border-bottom: 2px solid #d2d2d2;
  padding: 9px 0;
  margin-bottom: 4px;
  min-height: 44px;
}
.umre-list .tur-card .date-airline .date {
  display: inline-flex;
  align-items: center;
  color: #2a2a2a;
  font-size: 13px;
  font-weight: 700;
}
.umre-list .tur-card .date-airline .date img {
  margin-right: 6px;
}
.umre-list .tur-card .date-airline .date svg {
  width: 16px;
  height: 16px;
  fill: #243f5a;
  margin-right: 6px;
  flex-shrink: 0;
}
.umre-list .tur-card .date-airline .airline {
  min-width: 84px;
}
.umre-list .tur-card .date-airline .airline img {
  max-width: 82px;
}
.umre-list .tur-card .price {
  color: #16afb8;
  font-size: 32px;
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -1px;
  margin-top: 8px;
}
.umre-list .tur-card .price-note {
  color: #4e4e4e;
  font-size: 12px;
  margin: 0 0 10px;
}
.umre-list .tur-card .actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 11px;
}
.umre-list .tur-card .actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.umre-list .tur-card .actions a:hover {
  transform: translateY(-2px);
  opacity: 0.9;
  background-color: #2a455c;
}
.umre-list .tur-card .actions .btn-incele {
  background: #15aeb7;
}
a:hover .umre-list .tur-card .actions .btn-incele {
  background: rgb(18.375, 152.25, 160.125);
}
.umre-list .tur-card .actions .btn-karsilastir {
  background: #c7c7ca;
}
a:hover .umre-list .tur-card .actions .btn-karsilastir {
  background: rgb(185.8990825688, 185.8990825688, 189.6009174312);
}
.umre-list .tur-card .firma-logo {
  min-height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.umre-list .tur-card .firma-logo img {
  max-height: 40px;
  max-width: 150px;
  width: auto;
  display: block;
}
@media (max-width: 992px) {
  .umre-list .tur-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .umre-list .head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .umre-list .tur-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .umre-list .tur-card .thumb img {
    height: 195px;
  }
  .umre-list .tur-card .body h3 {
    min-height: 0;
  }
}
.umre-list .tur-btn {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 20px;
}
.umre-list .tur-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 100px;
  background: linear-gradient(90deg, #15aeb7 0%, #2a455c 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.umre-list .tur-btn a:hover {
  opacity: 0.9;
}

.tour-companies {
  margin-bottom: 30px;
}
.tour-companies .head {
  text-align: center;
  margin-bottom: 30px;
}
.tour-companies .head h2 {
  font-weight: 800;
  color: #2a455c;
  font-size: 26px;
}
.tour-companies .head p {
  font-size: 16px;
  font-weight: 400;
  color: #666;
}
.tour-companies .tour-company-list {
  overflow: hidden;
  padding-bottom: 15px;
}
.tour-companies .tour-company-list .company-card {
  height: 100%;
  border: 1px solid #ddd;
  background: #fff;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.tour-companies .tour-company-list .company-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.tour-companies .tour-company-list .company-card .logo {
  padding: 20px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #ddd;
}
.tour-companies .tour-company-list .company-card .logo img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.tour-companies .tour-company-list .company-card .info {
  padding: 15px;
  text-align: center;
}
.tour-companies .tour-company-list .company-card .info h3 {
  color: #2a455c;
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 5px 0;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tour-companies .tour-company-list .company-card .info .subtitle {
  color: #999;
  font-size: 12px;
  margin-bottom: 5px;
}
.tour-companies .tour-company-list .company-card .info .score {
  color: #1cb8b8;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}
.tour-companies .tour-company-list .company-card .info .stars {
  display: flex;
  justify-content: center;
  gap: 3px;
}
.tour-companies .more-btn {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 20px;
}
.tour-companies .more-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 100px;
  background: linear-gradient(90deg, #15aeb7 0%, #2a455c 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.tour-companies .more-btn a:hover {
  opacity: 0.9;
}

.home-comments {
  margin-bottom: 50px;
}
.home-comments .head {
  text-align: center;
  margin-bottom: 30px;
}
.home-comments .head h2 {
  font-weight: 800;
  color: #2a455c;
  font-size: 26px;
}
.home-comments .comment-list {
  overflow: hidden;
  padding-bottom: 20px;
}
.home-comments .comment-card {
  border: 2px solid #ddd;
  background: #fff;
  display: flex;
  flex-direction: column;
  height: auto;
}
.home-comments .comment-card .card-header {
  display: flex;
  border-bottom: 2px solid #ddd;
}
.home-comments .comment-card .card-header .user-info {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 15px;
  border-right: 2px solid #ddd;
}
.home-comments .comment-card .card-header .user-info .user-avatar {
  margin-right: 15px;
}
.home-comments .comment-card .card-header .user-info .user-details {
  display: flex;
  flex-direction: column;
}
.home-comments .comment-card .card-header .user-info .user-details .user-name {
  font-weight: 700;
  font-size: 14px;
  color: #333;
  margin-bottom: 4px;
}
.home-comments .comment-card .card-header .user-info .user-details .stars {
  display: flex;
  gap: 2px;
}
.home-comments .comment-card .card-header .company-logo {
  width: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.home-comments .comment-card .card-header .company-logo img {
  max-width: 100%;
  max-height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.home-comments .comment-card .card-body {
  padding: 25px 20px;
  text-align: center;
}
.home-comments .comment-card .card-body h4 {
  font-weight: 700;
  font-size: 16px;
  color: #222;
  margin-bottom: 15px;
}
.home-comments .comment-card .card-body p {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
  margin: 0;
}
.home-comments .more-btn {
  display: flex;
  justify-content: center;
  margin-top: 5px;
  margin-bottom: 20px;
}
.home-comments .more-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 100px;
  background: linear-gradient(90deg, #15aeb7 0%, #2a455c 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.home-comments .more-btn a:hover {
  opacity: 0.9;
}

footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #244f69 0%, #10b8be 100%);
  color: #ffffff;
}
footer::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 93%;
  background-image: url("../img/footer-bg.png");
  background-position: right 100px bottom;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
footer .fcon {
  position: relative;
  z-index: 2;
  padding: 28px 0 15px;
}
footer .fhead {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 18px;
}
footer .fhead-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
}
footer .fhead-logo img {
  max-width: 100%;
  height: auto;
}
footer .fhead-apps {
  flex: 0 0 auto;
  margin-left: auto;
  text-align: left;
}
footer .fhead-apps img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 10px;
}
footer .fhead-apps p {
  margin: 0;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.3px;
  white-space: nowrap;
}
footer .fmenu {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 0.8fr 1.1fr;
  gap: 18px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.4);
  padding: 28px 0 26px;
  margin-bottom: 12px;
}
footer .fmenu-col h4 {
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}
footer .fmenu-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer .fmenu-col li {
  margin-bottom: 4px;
  line-height: 1.15;
}
footer .fmenu-col li:last-child {
  margin-bottom: 0;
}
footer .fmenu-col a {
  text-decoration: none;
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
  display: block;
}
footer .fcontact {
  border-left: 3px solid rgba(255, 255, 255, 0.4);
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
}
footer .fcontact-head {
  display: flex;
  align-items: center;
  gap: 10px;
}
footer .fcontact-head img {
  width: 60px;
  height: auto;
  flex-shrink: 0;
}
footer .fcontact-text span {
  display: block;
  font-size: 17px;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 6px;
  white-space: nowrap;
}
footer .fcontact-text strong {
  display: block;
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}
footer .fsocial-title {
  margin: 18px 0 8px;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
  font-weight: 400;
}
footer .fsocial-title strong {
  font-weight: 700;
}
footer .fsocial {
  display: flex;
  align-items: center;
  gap: 8px;
}
footer .fsocial a {
  line-height: 0;
  text-decoration: none;
  color: #ffffff;
}
footer .fsocial img {
  display: block;
}
footer .fsocial-link {
  font-size: 17px;
  line-height: 1;
  margin-left: 4px;
  white-space: nowrap;
}
footer .fcopy {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  margin-top: 14px;
  white-space: nowrap;
}

@media (max-width: 1140px) {
  footer .fhead {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
  }
  footer .fhead-logo {
    position: static;
    left: auto;
    transform: none;
    justify-content: center;
  }
  footer .fhead-apps {
    margin-left: 0;
    text-align: center;
  }
  footer .fmenu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
  footer .fcontact {
    grid-column: 1/-1;
    border-left: 0;
    border-top: 2px solid rgba(255, 255, 255, 0.45);
    padding-left: 0;
    padding-top: 16px;
  }
  footer .fcontact-text span,
  footer .fcontact-text strong {
    white-space: normal;
  }
}
@media (max-width: 768px) {
  footer .fcon {
    padding: 24px 0 18px;
  }
  footer .fmenu {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 0;
  }
  footer .fmenu-col h4,
  footer .fmenu-col a {
    white-space: normal;
  }
  footer .fcontact {
    padding-top: 14px;
  }
  footer .fcopy {
    white-space: normal;
  }
}
.tour-head {
  background-color: #f7f9f9;
  padding-top: 100px;
  position: relative;
  border-bottom: 2px solid #e1e6e9;
  height: 200px;
  margin-top: 71px;
}
.tour-head .tour-head-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.tour-head .tour-head-wrapper::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -5px;
  width: 100%;
  height: 200px;
  background-image: url("../img/tur-head-bg.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: auto 100%;
  pointer-events: none;
}
.tour-head .tour-head-left {
  padding-bottom: 30px;
}
.tour-head .tour-head-left h1 {
  color: #354e66;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 6px 0;
}
.tour-head .tour-head-left .tour-head-info {
  display: flex;
  gap: 30px;
}
.tour-head .tour-head-left .tour-head-info .info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #354e66;
  font-size: 14px;
  font-weight: 600;
}
.tour-head .tour-head-left .tour-head-info .info-item img {
  height: auto;
}
.tour-head .tour-head-right .price-box {
  background-color: #2a455c;
  color: #fff;
  padding: 30px 0px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  width: 290px;
}
.tour-head .tour-head-right .price-box h2 {
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 5px 0;
}
.tour-head .tour-head-right .price-box p {
  font-size: 12px;
  margin: 0;
  font-weight: 400;
  color: #e2e8f0;
}

.tour-content {
  padding-top: 40px;
  padding-bottom: 60px;
  background-color: #fff;
}
.tour-content .tour-content-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
}
.tour-content .tour-content-left {
  flex: 1;
}
.tour-content .tour-content-left .flight-route-con {
  border-bottom: 2px solid #e1e6e9;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.tour-content .tour-content-left .flight-route-con .flight-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 70%;
}
.tour-content .tour-content-left .flight-route-con .flight-route .route-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.tour-content .tour-content-left .flight-route-con .flight-route .route-item img {
  height: auto;
}
.tour-content .tour-content-left .flight-route-con .flight-route .route-item .route-info {
  display: flex;
  flex-direction: column;
}
.tour-content .tour-content-left .flight-route-con .flight-route .route-item .route-info .label {
  font-size: 12px;
  color: #7a8a9a;
  font-weight: 500;
}
.tour-content .tour-content-left .flight-route-con .flight-route .route-item .route-info .date {
  font-size: 15px;
  font-weight: 800;
  color: #000;
}
.tour-content .tour-content-left .flight-route-con .flight-route .route-item .route-info .loc {
  font-size: 13px;
  color: #354e66;
  font-weight: 600;
}
.tour-content .tour-content-left .flight-route-con .flight-route .route-line {
  flex: 1;
  border-top: 2px dashed #b5c3d0;
  margin: 0 15px;
  height: 1px;
}
.tour-content .tour-content-left .tour-details-grid {
  display: flex;
  gap: 30px;
}
.tour-content .tour-content-left .tour-details-grid .tour-gallery {
  width: 350px;
}
.tour-content .tour-content-left .tour-details-grid .tour-gallery .main-image {
  position: relative;
  margin-bottom: 15px;
  overflow: hidden;
}
.tour-content .tour-content-left .tour-details-grid .tour-gallery .main-image img {
  width: 100%;
  display: block;
  height: 330px;
  -o-object-fit: cover;
     object-fit: cover;
}
.tour-content .tour-content-left .tour-details-grid .tour-gallery .thumb-images {
  display: flex;
  gap: 10px;
}
.tour-content .tour-content-left .tour-details-grid .tour-gallery .thumb-images a {
  display: block;
  flex: 0 0 33.33333%;
}
.tour-content .tour-content-left .tour-details-grid .tour-gallery .thumb-images a img {
  width: 100%;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}
.tour-content .tour-content-left .tour-details-grid .tour-tabs-content {
  flex: 1;
}
.tour-content .tour-content-left .tour-details-grid .tour-tabs-content .tabs-header {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid #e1e6e9;
  margin-bottom: 25px;
}
.tour-content .tour-content-left .tour-details-grid .tour-tabs-content .tabs-header a {
  font-size: 15px;
  font-weight: 800;
  color: #7a8a9a;
  text-decoration: none;
  padding-bottom: 10px;
  border-bottom: 3px solid transparent;
}
.tour-content .tour-content-left .tour-details-grid .tour-tabs-content .tabs-header a.active {
  color: #1aadc0;
  border-bottom-color: #1aadc0;
}
.tour-content .tour-content-left .tour-details-grid .tour-tabs-content .tab-body .tab-pane {
  display: none;
}
.tour-content .tour-content-left .tour-details-grid .tour-tabs-content .tab-body .tab-pane.active {
  display: block;
}
.tour-content .tour-content-left .tour-details-grid .tour-tabs-content .tab-body .tab-gallery-list p,
.tour-content .tour-content-left .tour-details-grid .tour-tabs-content .tab-body .tab-terms p {
  font-size: 14px;
  color: #000;
  font-weight: 500;
  line-height: 1.6;
  margin: 0 0 12px 0;
}
.tour-content .tour-content-left .tour-details-grid .tour-tabs-content .tab-body .tab-gallery-list ul,
.tour-content .tour-content-left .tour-details-grid .tour-tabs-content .tab-body .tab-terms ul {
  margin: 0;
  padding-left: 18px;
}
.tour-content .tour-content-left .tour-details-grid .tour-tabs-content .tab-body .tab-gallery-list ul li,
.tour-content .tour-content-left .tour-details-grid .tour-tabs-content .tab-body .tab-terms ul li {
  font-size: 14px;
  color: #354e66;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 6px;
}
.tour-content .tour-content-left .tour-details-grid .tour-tabs-content .tab-body .day-item {
  margin-bottom: 25px;
}
.tour-content .tour-content-left .tour-details-grid .tour-tabs-content .tab-body .day-item h3 {
  font-size: 15px;
  font-weight: 800;
  color: #000;
  margin: 0 0 5px 0;
}
.tour-content .tour-content-left .tour-details-grid .tour-tabs-content .tab-body .day-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: #354e66;
  margin: 0 0 10px 0;
}
.tour-content .tour-content-left .tour-details-grid .tour-tabs-content .tab-body .day-item p {
  font-size: 14px;
  color: #000;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}
.tour-content .tour-content-right {
  width: 290px;
  margin-top: -30px;
  z-index: 2;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
.tour-content .tour-content-right .pricing-panel {
  background: #fff;
  padding: 0;
  border: none;
}
.tour-content .tour-content-right .pricing-panel .pricing-panel-body {
  padding: 20px;
  padding-bottom: 0;
}
.tour-content .tour-content-right .pricing-panel .pricing-item {
  display: flex;
  border: 2px solid #e1e6e9;
  margin-bottom: 20px;
}
.tour-content .tour-content-right .pricing-panel .pricing-item .room-type {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 8px;
  gap: 8px;
  border-right: 2px solid #e1e6e9;
}
.tour-content .tour-content-right .pricing-panel .pricing-item .room-type div {
  display: flex;
  flex-direction: column;
}
.tour-content .tour-content-right .pricing-panel .pricing-item .room-type div strong {
  font-size: 11px;
  font-weight: 800;
  color: #000;
  margin-bottom: 2px;
}
.tour-content .tour-content-right .pricing-panel .pricing-item .room-type div span {
  font-size: 10px;
  color: #7a8a9a;
  font-weight: 500;
  text-transform: uppercase;
}
.tour-content .tour-content-right .pricing-panel .pricing-item .price {
  width: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 0;
}
.tour-content .tour-content-right .pricing-panel .pricing-item .price strong {
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 6px 0px;
  gap: 4px;
}
.tour-content .tour-content-right .pricing-panel .pricing-item .price strong span {
  font-size: 10px;
  font-weight: 700;
  color: #000;
}
.tour-content .tour-content-right .pricing-panel .pricing-item .price strong.sar {
  color: #000;
  border-bottom: 2px solid #e1e6e9;
}
.tour-content .tour-content-right .pricing-panel .pricing-item .price strong.usd {
  color: #1aadc0;
}
.tour-content .tour-content-right .pricing-panel .pricing-item .price strong.usd span {
  color: #1aadc0;
}
.tour-content .tour-content-right .pricing-panel .kids-pricing-title {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 0 10px 0;
}
.tour-content .tour-content-right .pricing-panel .kids-pricing-title span {
  font-size: 13px;
  font-weight: 700;
  color: #000;
}
.tour-content .tour-content-right .pricing-panel .kids-pricing {
  display: flex;
  justify-content: space-between;
  padding: 0;
  gap: 15px;
  margin-bottom: 20px;
}
.tour-content .tour-content-right .pricing-panel .kids-pricing .kid-box {
  flex: 1;
  border: 2px solid #e1e6e9;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 9px 10px;
  gap: 2px;
  border-radius: 0px;
}
.tour-content .tour-content-right .pricing-panel .kids-pricing .kid-box .kid-box-top {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
}
.tour-content .tour-content-right .pricing-panel .kids-pricing .kid-box .kid-box-top span {
  font-size: 14px;
  font-weight: 800;
  color: #000;
}
.tour-content .tour-content-right .pricing-panel .kids-pricing .kid-box strong {
  font-size: 18px;
  font-weight: 800;
  color: #1aadc0;
}
.tour-content .tour-content-right .pricing-panel .kids-pricing .kid-box strong span {
  font-size: 10px;
  color: #1aadc0;
}
.tour-content .tour-content-right .pricing-panel .btn-website {
  display: block;
  background: linear-gradient(to right, #26acbe, #29556d);
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin: 0 20px 20px 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}
.tour-content .tour-content-right .pricing-panel .btn-website:hover {
  background: linear-gradient(to right, #1f8e9d, #1e3f52);
}

@media (max-width: 991px) {
  .tour-head .tour-head-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .tour-head .tour-head-left {
    padding-bottom: 20px;
  }
  .tour-head .tour-head-left h1 {
    font-size: 24px;
  }
  .tour-head .tour-head-left .tour-head-info {
    justify-content: center;
    flex-direction: column;
    gap: 15px;
  }
  .tour-head .tour-head-right {
    width: 100%;
  }
  .tour-head .tour-head-right .price-box {
    padding: 20px;
  }
  .tour-content .tour-content-wrapper {
    flex-direction: column;
  }
  .tour-content .tour-details-grid {
    flex-direction: column;
  }
  .tour-content .tour-details-grid .tour-gallery {
    width: 100%;
  }
  .tour-content .tour-details-grid .tour-gallery .main-image img {
    width: 100%;
    height: auto;
  }
  .tour-content .tour-details-grid .tour-tabs-content .tabs-header {
    flex-wrap: wrap;
    gap: 10px;
  }
  .tour-content .flight-route {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .tour-content .flight-route .route-line {
    display: none;
  }
  .tour-content .tour-content-right {
    width: 100%;
    margin-top: 20px;
  }
}
.firma-head {
  margin-top: 71px;
  margin-top: 120px;
  margin-bottom: 50px;
  padding: 0;
  background: #ffffff;
}
.firma-head .container {
  padding: 0;
  max-width: 100%;
}
.firma-head .firma-card {
  background: #eef0f2;
  min-height: auto;
  border-top: 1px solid #e5e8eb;
  border-bottom: 1px solid #e2e5e8;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.firma-head .firma-card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  height: 150px;
}
.firma-head .firma-card-inner::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 44%;
  height: 100%;
  background-image: url("../img/tur-head-bg.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: auto 100%;
  pointer-events: none;
}
.firma-head .firma-logo-wrap {
  flex: 0 0 170px;
  display: flex;
  justify-content: center;
  border: 9px solid #eef0f2;
  border-radius: 50%;
}
.firma-head .firma-logo-ring {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #f0f2f4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.firma-head .firma-logo-inner {
  width: 146px;
  height: 146px;
  border-radius: 50%;
  border: 7px solid #28455e;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.firma-head .firma-logo-inner img {
  width: 75%;
  max-height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.firma-head .firma-main-content {
  flex: 1 1 auto;
  min-width: 0;
  padding-top: 0;
}
.firma-head .firma-main-content h1 {
  margin: 0 0 6px;
  color: #28455e;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 9px;
}
.firma-head .firma-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.firma-head .firma-contact-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  color: #212121;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
}
.firma-head .firma-contact-list li:last-child {
  margin-bottom: 0;
}
.firma-head .firma-contact-list a {
  color: #212121;
  text-decoration: none;
}
.firma-head .firma-contact-list .icon-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #14afbe;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 20px;
}
.firma-head .firma-contact-list .icon-dot svg {
  width: 11px;
  height: 11px;
  display: block;
}
.firma-head .firma-score-social {
  width: auto;
  flex: 0 0 auto;
  margin-left: auto;
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  padding: 0;
}
.firma-head .firma-rating-row {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
}
.firma-head .yorum-count {
  color: #8b8f95;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}
.firma-head .rating-box strong {
  display: block;
  color: #28455e;
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  text-align: left;
  letter-spacing: -0.4px;
  margin-bottom: 2px;
}
.firma-head .stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.firma-head .stars svg {
  width: 18px;
  height: 18px;
  color: #d8dce0;
  display: block;
}
.firma-head .stars svg.active {
  color: #0fb5c3;
}
.firma-head .firma-social-wrap {
  margin-top: 0;
  text-align: right;
  position: relative;
  z-index: 2;
}
.firma-head .firma-social-wrap p {
  margin: 0 0 8px;
  color: #2d2d2d;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}
.firma-head .social-icons {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.firma-head .social-icons a {
  width: 23px;
  height: 23px;
  border-radius: 6px;
  background: #0bb5c3;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.firma-head .social-icons a:hover {
  background: #0a9cab;
}
.firma-head .social-icons svg {
  width: 16px;
  height: 16px;
  display: block;
}

.firma-cont .tabs-cont {
  margin-top: 40px;
  margin-bottom: 50px;
}
.firma-cont .tabs-cont .firma-tabs {
  display: flex;
  border: 1px solid #d8dce0;
  background: #fff;
  margin-bottom: 30px;
}
.firma-cont .tabs-cont .firma-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 10px;
  cursor: pointer;
  position: relative;
  text-align: center;
  color: #28455e;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
  border-right: 1px solid #d8dce0;
  letter-spacing: -0.2px;
}
.firma-cont .tabs-cont .firma-tab:last-child {
  border-right: none;
}
.firma-cont .tabs-cont .firma-tab svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}
.firma-cont .tabs-cont .firma-tab.active {
  background-color: #14afbe;
  color: #fff;
  border-right-color: #14afbe;
}
.firma-cont .tabs-cont .firma-tab.active::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 12px 12px 0;
  border-style: solid;
  border-color: #14afbe transparent transparent transparent;
  z-index: 2;
}
.firma-cont .tabs-cont .firma-tab:hover:not(.active) {
  background-color: #f7f9fa;
}
.firma-cont .tabs-cont .firma-tabs-content .firma-tab-pane {
  display: none;
}
.firma-cont .tabs-cont .firma-tabs-content .firma-tab-pane.active {
  display: block;
}
.firma-cont .tabs-cont .firma-tabs-content .firma-comments {
  background: linear-gradient(180deg, #f7fbfd 0%, #ffffff 100%);
  border: 1px solid #e5edf2;
  border-radius: 0px;
  padding: 26px;
}
.firma-cont .tabs-cont .firma-tabs-content .firma-contact-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  border: 1px solid #dce6ec;
  background: #ffffff;
}
.firma-cont .tabs-cont .firma-tabs-content .contact-info-column {
  background: linear-gradient(180deg, #e9f6fb 0%, #f7fbfe 100%);
  padding: 28px;
  border-right: 1px solid #dce6ec;
}
.firma-cont .tabs-cont .firma-tabs-content .contact-title-block {
  margin-bottom: 22px;
}
.firma-cont .tabs-cont .firma-tabs-content .contact-title-block h3 {
  margin: 0 0 8px;
  color: #1f3f58;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.3px;
}
.firma-cont .tabs-cont .firma-tabs-content .contact-title-block p {
  margin: 0;
  color: #4c677b;
  font-size: 14px;
  line-height: 1.6;
}
.firma-cont .tabs-cont .firma-tabs-content .contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #cfe2ee;
  border-bottom: 1px solid #cfe2ee;
  margin-bottom: 20px;
}
.firma-cont .tabs-cont .firma-tabs-content .contact-info-item {
  padding: 12px 0;
  border-bottom: 1px solid #dbeaf3;
}
.firma-cont .tabs-cont .firma-tabs-content .contact-info-item:last-child {
  border-bottom: none;
}
.firma-cont .tabs-cont .firma-tabs-content .contact-info-item .label {
  display: block;
  color: #5a7a91;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.firma-cont .tabs-cont .firma-tabs-content .contact-info-item strong,
.firma-cont .tabs-cont .firma-tabs-content .contact-info-item a {
  color: #214761;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  text-decoration: none;
}
.firma-cont .tabs-cont .firma-tabs-content .contact-map-placeholder {
  min-height: 120px;
  border: 1px dashed #b6d2e3;
  background: repeating-linear-gradient(-45deg, #edf7fc, #edf7fc 10px, #f7fcff 10px, #f7fcff 20px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.firma-cont .tabs-cont .firma-tabs-content .contact-map-placeholder span {
  color: #3d6480;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.firma-cont .tabs-cont .firma-tabs-content .contact-form-column {
  padding: 28px;
}
.firma-cont .tabs-cont .firma-tabs-content .contact-form-column h4 {
  margin: 0 0 20px;
  color: #1f3f58;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.2px;
}
.firma-cont .tabs-cont .firma-tabs-content .firma-contact-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}
.firma-cont .tabs-cont .firma-tabs-content .firma-contact-form .form-field.full {
  grid-column: 1/-1;
}
.firma-cont .tabs-cont .firma-tabs-content .firma-contact-form .form-field label {
  display: block;
  margin-bottom: 7px;
  color: #33576f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}
.firma-cont .tabs-cont .firma-tabs-content .firma-contact-form .form-field input,
.firma-cont .tabs-cont .firma-tabs-content .firma-contact-form .form-field textarea {
  width: 100%;
  border: 1px solid #cadce8;
  background: #fbfdff;
  color: #27485f;
  font-size: 14px;
  padding: 12px 13px;
  border-radius: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.firma-cont .tabs-cont .firma-tabs-content .firma-contact-form .form-field input:focus,
.firma-cont .tabs-cont .firma-tabs-content .firma-contact-form .form-field textarea:focus {
  outline: none;
  border-color: #15b6c4;
  box-shadow: 0 0 0 3px rgba(21, 182, 196, 0.16);
  background: #ffffff;
}
.firma-cont .tabs-cont .firma-tabs-content .firma-contact-form .form-field textarea {
  resize: vertical;
  min-height: 120px;
}
.firma-cont .tabs-cont .firma-tabs-content .btn-contact-submit {
  border: none;
  background: linear-gradient(90deg, #0ca9b8 0%, #1a7ea9 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 12px 22px;
  border-radius: 0;
  cursor: pointer;
  transition: filter 0.2s ease;
}
.firma-cont .tabs-cont .firma-tabs-content .btn-contact-submit:hover {
  filter: brightness(0.95);
}
.firma-cont .tabs-cont .firma-tabs-content .comments-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}
.firma-cont .tabs-cont .firma-tabs-content .comments-head h3 {
  margin: 0;
  color: #1f3f58;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.3px;
}
.firma-cont .tabs-cont .firma-tabs-content .comments-head span {
  color: #4b6d86;
  background: #e7f4fb;
  border: 1px solid #cfe8f5;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.firma-cont .tabs-cont .firma-tabs-content .comments-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.firma-cont .tabs-cont .firma-tabs-content .comment-card {
  width: 100%;
  background: #ffffff;
  border: 1px solid #dfeaf0;
  border-radius: 0px;
  padding: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  /*&:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(13, 52, 79, 0.14);
  }*/
}
.firma-cont .tabs-cont .firma-tabs-content .comment-card p {
  margin: 12px 0 0;
  color: #38566d;
  font-size: 14px;
  line-height: 1.55;
}
.firma-cont .tabs-cont .firma-tabs-content .comment-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.firma-cont .tabs-cont .firma-tabs-content .profile-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(140deg, #15b9c7 0%, #2f88b5 100%);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.firma-cont .tabs-cont .firma-tabs-content .profile-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}
.firma-cont .tabs-cont .firma-tabs-content .comment-meta {
  min-width: 0;
}
.firma-cont .tabs-cont .firma-tabs-content .comment-meta h4 {
  margin: 0 0 4px;
  color: #1f3f58;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.firma-cont .tabs-cont .firma-tabs-content .comment-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.firma-cont .tabs-cont .firma-tabs-content .comment-stars svg {
  width: 15px;
  height: 15px;
  color: #d8e1e8;
}
.firma-cont .tabs-cont .firma-tabs-content .comment-stars svg.active {
  color: #ffc646;
}

@media (max-width: 1140px) {
  .firma-head .firma-card {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }
  .firma-head .firma-card-inner {
    gap: 20px;
    padding: 12px 0;
  }
  .firma-head .firma-main-content {
    flex: 1 1 auto;
  }
  .firma-head .firma-main-content h1 {
    font-size: 28px;
  }
  .firma-head .firma-contact-list li {
    font-size: 13px;
  }
  .firma-head .firma-score-social {
    width: auto;
    flex: 0 0 auto;
  }
  .firma-head .yorum-count {
    font-size: 13px;
  }
  .firma-head .rating-box strong {
    font-size: 24px;
  }
  .firma-head .stars svg {
    width: 16px;
    height: 16px;
  }
  .firma-head .firma-social-wrap p {
    font-size: 14px;
  }
  .firma-cont .tabs-cont .firma-tabs-content .comment-card {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .firma-head {
    margin-top: 62px;
    padding: 16px 0 20px;
  }
  .firma-head .firma-card {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }
  .firma-head .firma-card-inner {
    gap: 12px;
    padding: 10px 14px;
    flex-wrap: wrap;
  }
  .firma-head .firma-logo-wrap {
    flex-basis: 100%;
    order: 1;
  }
  .firma-head .firma-logo-ring {
    width: 130px;
    height: 130px;
    border-width: 6px;
  }
  .firma-head .firma-logo-inner {
    width: 112px;
    height: 112px;
    border-width: 6px;
  }
  .firma-head .firma-logo-inner img {
    max-height: 70px;
  }
  .firma-head .firma-main-content {
    flex-basis: 100%;
    order: 2;
  }
  .firma-head .firma-main-content h1 {
    font-size: 24px;
    margin-bottom: 5px;
  }
  .firma-head .firma-score-social {
    flex-basis: 100%;
    order: 3;
    gap: 10px;
  }
  .firma-head .firma-rating-row {
    gap: 16px;
  }
  .firma-head .yorum-count {
    font-size: 12px;
  }
  .firma-head .rating-box strong {
    font-size: 20px;
  }
  .firma-head .stars svg {
    width: 14px;
    height: 14px;
  }
  .firma-head .firma-social-wrap p {
    font-size: 12px;
    margin-bottom: 6px;
  }
  .firma-head .social-icons a {
    width: 28px;
    height: 28px;
  }
  .firma-head .social-icons svg {
    width: 14px;
    height: 14px;
  }
  .firma-head .firma-contact-list li {
    font-size: 12px;
  }
  .firma-cont .tabs-cont {
    margin-top: 20px;
  }
  .firma-cont .tabs-cont .firma-tabs {
    flex-direction: column;
  }
  .firma-cont .tabs-cont .firma-tab {
    border-right: none;
    border-bottom: 1px solid #d8dce0;
    padding: 14px 10px;
  }
  .firma-cont .tabs-cont .firma-tab:last-child {
    border-bottom: none;
  }
  .firma-cont .tabs-cont .firma-tab.active::after {
    display: none;
  }
  .firma-cont .tabs-cont .firma-tabs-content .firma-contact-panel {
    grid-template-columns: 1fr;
  }
  .firma-cont .tabs-cont .firma-tabs-content .contact-info-column {
    border-right: none;
    border-bottom: 1px solid #dce6ec;
    padding: 18px;
  }
  .firma-cont .tabs-cont .firma-tabs-content .contact-form-column {
    padding: 18px;
  }
  .firma-cont .tabs-cont .firma-tabs-content .contact-form-column h4 {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .firma-cont .tabs-cont .firma-tabs-content .firma-contact-form .form-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .firma-cont .tabs-cont .firma-tabs-content .btn-contact-submit {
    width: 100%;
  }
  .firma-cont .tabs-cont .firma-tabs-content .firma-comments {
    padding: 16px;
    border-radius: 14px;
  }
  .firma-cont .tabs-cont .firma-tabs-content .comments-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .firma-cont .tabs-cont .firma-tabs-content .comments-head h3 {
    font-size: 20px;
  }
  .firma-cont .tabs-cont .firma-tabs-content .comments-grid {
    gap: 10px;
  }
  .firma-cont .tabs-cont .firma-tabs-content .comment-card {
    width: 100%;
  }
  .firma-cont .tabs-cont .firma-tabs-content .comment-card p {
    min-height: auto;
    font-size: 13px;
  }
}
.page-head {
  background-color: #f7f9f9;
  padding-top: 100px;
  position: relative;
  border-bottom: 2px solid #e1e6e9;
  margin-top: 71px;
}
.page-head .page-head-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.page-head .page-head-wrapper::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -5px;
  width: 100%;
  height: 200px;
  background-image: url("../img/tur-head-bg.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: auto 100%;
  pointer-events: none;
}
.page-head .page-head-left {
  padding-bottom: 57px;
}
.page-head .page-head-left h1 {
  color: #2a455c;
  font-size: 34px;
  font-weight: 600;
  margin: 0 0 6px 0;
}
.page-head .page-head-left p {
  font-weight: 300;
  font-size: 19px;
}

.page-content {
  padding: 48px 0 64px;
}
.page-content .con {
  margin: 0 auto;
}
.page-content .page-text {
  color: #334e5c;
  font-size: 17px;
  line-height: 1.85;
}
.page-content .page-text p {
  margin: 0 0 18px;
}
.page-content .page-text h2,
.page-content .page-text h3,
.page-content .page-text h4 {
  color: #2a455c;
  font-weight: 600;
  line-height: 1.35;
  margin: 28px 0 12px;
}
.page-content .page-text h2 {
  font-size: 28px;
}
.page-content .page-text h3 {
  font-size: 24px;
}
.page-content .page-text h4 {
  font-size: 20px;
}
.page-content .page-text ul,
.page-content .page-text ol {
  margin: 0 0 20px;
  padding-left: 24px;
}
.page-content .page-text ul li,
.page-content .page-text ol li {
  margin-bottom: 10px;
}
.page-content .page-text ul li::marker {
  color: #3e6e8a;
}
.page-content .page-text a {
  color: #2f738d;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.page-content .page-text a:hover {
  color: #1f4d61;
}
.page-content .page-text strong,
.page-content .page-text b {
  color: #213847;
  font-weight: 700;
}

@media (max-width: 991px) {
  .page-content {
    padding: 40px 0 56px;
  }
  .page-content .page-text {
    font-size: 16px;
    line-height: 1.8;
  }
}
.page-tur-firmalari {
  padding: 40px 0;
  background-color: #f9f9f9;
}
.page-tur-firmalari .page-tur-con {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.page-tur-firmalari .tf-search-bar {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 10px 20px;
  gap: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}
.page-tur-firmalari .tf-search-bar .input-wrapper {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 15px;
}
.page-tur-firmalari .tf-search-bar .input-wrapper svg {
  flex-shrink: 0;
}
.page-tur-firmalari .tf-search-bar .input-wrapper input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  color: #333;
}
.page-tur-firmalari .tf-search-bar .input-wrapper input::-moz-placeholder {
  color: #999;
  font-weight: 500;
}
.page-tur-firmalari .tf-search-bar .input-wrapper input::placeholder {
  color: #999;
  font-weight: 500;
}
.page-tur-firmalari .tf-search-bar .btn-search {
  background: none;
  border: none;
  border-left: 1px solid #e0e0e0;
  padding-left: 20px;
  font-weight: 700;
  color: #1a3d5c;
  font-size: 16px;
  cursor: pointer;
  transition: color 0.3s;
}
.page-tur-firmalari .tf-search-bar .btn-search:hover {
  color: #00b4b4;
}
.page-tur-firmalari .tf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 992px) {
  .page-tur-firmalari .tf-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .page-tur-firmalari .tf-grid {
    grid-template-columns: 1fr;
  }
}
.page-tur-firmalari .tf-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.page-tur-firmalari .tf-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
.page-tur-firmalari .tf-card .tf-card-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
  min-height: 90px;
}
.page-tur-firmalari .tf-card .tf-card-header .tf-logo img {
  max-width: 120px;
  max-height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.page-tur-firmalari .tf-card .tf-card-header .tf-rating-box {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}
.page-tur-firmalari .tf-card .tf-card-header .tf-rating-box .tf-score {
  font-weight: 800;
  color: #1a3d5c;
  font-size: 18px;
}
.page-tur-firmalari .tf-card .tf-card-header .tf-rating-box .tf-stars-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-tur-firmalari .tf-card .tf-card-header .tf-rating-box .tf-stars-row .tf-reviews {
  color: #666;
  font-size: 13px;
  font-weight: 500;
}
.page-tur-firmalari .tf-card .tf-card-header .tf-rating-box .tf-stars-row .tf-stars {
  display: flex;
  gap: 2px;
  font-size: 14px;
}
.page-tur-firmalari .tf-card .tf-card-header .tf-rating-box .tf-stars-row .tf-stars .star.filled {
  color: #00b4b4;
}
.page-tur-firmalari .tf-card .tf-card-header .tf-rating-box .tf-stars-row .tf-stars .star.half {
  color: #d0d0d0;
  position: relative;
}
.page-tur-firmalari .tf-card .tf-card-header .tf-rating-box .tf-stars-row .tf-stars .star.half::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  overflow: hidden;
  color: #00b4b4;
}
.page-tur-firmalari .tf-card .tf-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.page-tur-firmalari .tf-card .tf-card-body .tf-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a3d5c;
  text-decoration: none;
  margin-bottom: 5px;
  transition: color 0.3s;
  display: block;
}
.page-tur-firmalari .tf-card .tf-card-body .tf-card-title:hover {
  color: #00b4b4;
}
.page-tur-firmalari .tf-card .tf-card-body .tf-info-row {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: #333;
  font-size: 14px;
  line-height: 1.5;
}
.page-tur-firmalari .tf-card .tf-card-body .tf-info-row svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.page-tur-firmalari .tf-card .tf-card-body .tf-info-row span {
  font-weight: 500;
}/*# sourceMappingURL=style.css.map */