@import url("https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap");

* {
  font-family: "Public Sans", sans-serif !important;
}
:root {
  --dark-blue: #4791c0;
  --br: 10px;
}
.container {
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;
}
button{
    cursor: pointer !important;
}
.header {
  width: 100%;
  background: #fff;
  position: fixed;
  margin: auto;
  z-index: 5;
}
header .container {
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header.scrolled {
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}
/* LOGO */
.logo svg {
  display: block;
  height: 57px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo {
  font-size: 23px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
}

/* MENU */
.menu {
  display: flex;
  gap: 28px;
}

.menu a {
  text-decoration: none;
  color: #000;
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
}

.menu a:hover {
  opacity: 0.6;
}

/* SOCIALS */
.socials {
  display: flex;
  align-items: center;
  gap: 5px;
}

.socials a img {
  width: 37px;
  height: 37px;
  object-fit: cover;
  transition: 0.3s ease;
}

.socials a:hover img {
  opacity: 0.6;
}
/* MOBILE TOGGLE */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-toggle span {
  width: 25px;
  height: 2px;
  background: #000;
  transition: 0.3s;
}

/* ACTIVE ICON */
.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  transform: translateY(-100%);
  transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1000;
}

/* OPEN */
.mobile-menu.active {
  transform: translateY(0);
}

/* INNER */
.mobile-menu-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

/* NAV LINKS */
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 25px;
  text-align: center;
}

.mobile-nav a {
  color: #fff;
  font-size: 26px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: 0.3s;
}

.mobile-nav a:hover {
  color: #ff1e8a;
}

/* SOCIALS */
.mobile-socials {
  display: flex;
  gap: 15px;
}

.mobile-socials img {
  width: 40px;
  height: 40px;
  transition: 0.3s;
}

.mobile-socials a:hover img {
  opacity: 0.6;
}

/* SHOW ONLY MOBILE */
@media (max-width: 1200px) {
  .menu {
    display: none;
  }

  .socials {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }
}
.mobile-nav a {
  opacity: 0;
  transform: translateY(20px);
}

.mobile-menu.active .mobile-nav a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active .mobile-nav a:nth-child(1) {
  transition: 0.3s 0.1s;
}
.mobile-menu.active .mobile-nav a:nth-child(2) {
  transition: 0.3s 0.2s;
}
.mobile-menu.active .mobile-nav a:nth-child(3) {
  transition: 0.3s 0.3s;
}
.mobile-menu.active .mobile-nav a:nth-child(4) {
  transition: 0.3s 0.4s;
}
.mobile-menu.active .mobile-nav a:nth-child(5) {
  transition: 0.3s 0.5s;
}
.mobile-menu.active .mobile-nav a:nth-child(6) {
  transition: 0.3s 0.6s;
}
.mobile-menu.active .mobile-nav a:nth-child(7) {
  transition: 0.3s 0.7s;
}
.menu-close {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-close svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
  transition: 0.3s;
}

/* HOVER EFFECT */
.menu-close:hover svg {
  stroke: #ff1e8a;
  transform: rotate(90deg);
}
.menu-close {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  backdrop-filter: blur(10px);
}
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  margin-bottom: 60px;
}
.hero .container {
  padding: 0;
}
.hero .slide {
  position: relative;
  overflow: hidden;
}

.hero .slide .bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.bg-image.mobile{
    display: none;
}
@media (max-width: 768px){
    .bg-image.mobile{
    display: flex;
    object-position: top;
}
.bg-image.desktop{
    display: none;
}
}

.hero .slide .overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero .slide .content {
  position: relative;
  z-index: 2;
}

/* SLIDER */
.slider {
  height: 100%;
  position: relative;
}

.hero .slide {
  position: absolute;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;

  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
}

/* OVERLAY */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
}

/* TEXT */
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  width: 100%;
  max-width: 900px;
}

.top {
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 20px;
  opacity: 0.7;
}

.content h1 {
  font-size: 70px;
  font-weight: 300;
  line-height: 1.2;
}

/* CITIES */
.cities {
  position: absolute;
  bottom: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 80px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 3px;
}

/* ================= FRAME (FIXED PERFECT) ================= */

.frame {
  position: absolute;
  width: 100px;
  height: 100px;
  pointer-events: none;
  z-index: 10;
}

/* hesab: (100% - 1200px)/2 */
.frame-tl {
  top: 117px;
  left: 12%;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  border-left: 1px solid rgba(255, 255, 255, 0.7);
}

.frame-tr {
  top: 117px;
  right: 12%;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  border-right: 1px solid rgba(255, 255, 255, 0.7);
}

.frame-bl {
  bottom: 40px;
  left: 12%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  border-left: 1px solid rgba(255, 255, 255, 0.7);
}

.frame-br {
  bottom: 40px;
  right: 12%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  border-right: 1px solid rgba(255, 255, 255, 0.7);
}

.title-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 30px;
}
.title-group p {
  max-width: 80%;
}

.title-group h2 {
  font-size: var(--font-size-h2, 2.125rem);
  font-weight: 400;
  letter-spacing: -0.046875rem;
  line-height: 105%;
}

@media (max-width: 599px) {
  .title-group h2 {
    line-height: 125%;
  }
}

video:fullscreen {
  height: unset !important;
  object-fit: contain !important;
  object-position: center !important;
  width: unset !important;
}

.why-choose-container {
  background: #f4f4f4;
  padding: 60px 0;
  position: relative;
}

.why-choose-container .bg-img {
  animation: parallaxScroll linear forwards;
  background: url(/assests/img/back.webp)
    #f4f4f4 0 -9.0834375rem/142.483% 256.373% no-repeat;
  background-blend-mode: luminosity;
  background-position: 35%;
  background-size: 250%;
  bottom: 0;
  left: 0;
  opacity: 0.1;
  position: absolute;
  right: 0;
  top: 0;
  animation-timeline: view();
  animation-range: cover;
}

.why-choose-container .features-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr 1fr 1fr;
}

@media (max-width: 780px) {
  .why-choose-container .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 599px) {
  .why-choose-container .features-grid {
    grid-template-columns: 1fr;
  }
}

.why-choose-container .features-grid .features-item {
  align-items: center;
  background: var(--white, #fff);
  border: 0.0625rem solid
    var(--gray-light-border-color, hsla(0, 0%, 61%, 0.302));
  border-radius: var(--border-radius, 0.625rem);
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  justify-content: center;
  padding: 1.875rem;
  text-align: center;
}

.why-choose-container .features-grid .features-item .text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.why-choose-container .features-grid .features-item .text h3 {
  color: #444;
  font-size: var(--font-size-title-m, 1.25rem);
  font-weight: 400;
  letter-spacing: -0.015625rem;
}

.why-choose-container .features-grid .features-item .text p {
  color: var(--Body-Font-Gray, #787878);
  font-size: var(--font-size-small, 0.875rem);
  font-weight: 400;
  line-height: 125%;
}

@keyframes parallaxScroll {
  to {
    background-position-y: 100%;
  }
}
.blog-container {
  padding: 60px 20px;
}

/* GRID */
.small-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* CARD */
.small {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* IMAGE */
.small img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
  transition: 0.5s ease;
  overflow: hidden;
}
.small a {
  overflow: hidden;
}
.small:hover img {
  transform: scale(1.08);
}
/* TITLE */
.small h3 {
  margin-top: 15px;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.3;
  color: #333;
}

/* LINK RESET */
.small a {
  text-decoration: none;
}

/* SHOW MORE */
.show-more {
  margin-top: 30px;
  text-align: right;
}

.show-more a {
  color: #4791c0;
  font-weight: 700;
  text-decoration: underline;
}

.show-more a:hover {
  text-decoration: none;
}

video:fullscreen {
  height: unset !important;
  object-fit: contain !important;
  object-position: center !important;
  width: unset !important;
}

.faq-container {
  background: #f4f4f4;
  padding: 3.125rem 0;
  position: relative;
}

.faq-container .bg-img {
  animation: parallaxScroll linear forwards;
  background: url(/assests/img/back.webp)
    #f4f4f4 0 -8.573375rem/144.143% 166.319% no-repeat;
  background-blend-mode: luminosity;
  background-position-y: 0;
  background-size: cover;
  bottom: 0;
  left: 0;
  opacity: 0.1;
  position: absolute;
  right: 0;
  top: 0;
  animation-timeline: view();
  animation-range: cover;
}

.faq-container .container {
  display: flex;
  flex-direction: column;
  gap: 1.5625rem;
}

.faq-container .container .faq-grid label {
  cursor: pointer;
}

.faq-container .container .faq-grid .faq-item {
  background: #fff;
  border: 0.0625rem solid #f6f6f6;
  overflow: hidden;
  padding: 2.5rem 3.75rem;
  position: relative;
}

@media (max-width: 599px) {
  .faq-container .container .faq-grid .faq-item {
    padding: 1.25rem 15px;
  }
}

@media (hover: hover) {
  .faq-container .container .faq-grid .faq-item:hover label {
    color: var(--link-color, #4791c0) !important;
  }
}

.faq-container .container .faq-grid .faq-item input {
  display: none;
  left: -99999px;
  opacity: 0;
  position: absolute;
  top: -99999px;
  visibility: hidden;
}

.faq-container
  .container
  .faq-grid
  .faq-item
  input:checked
  ~ .faq-header
  .open-close {
  background: var(--gray-600-default, #444);
  rotate: 45deg;
  transition: 0.3s ease; /* əlavə edildi */
}

.faq-container
  .container
  .faq-grid
  .faq-item
  input:checked
  ~ .faq-header
  .open-close
  svg
  path {
  fill: #fff;
}

.faq-container
  .container
  .faq-grid
  .faq-item
  input:checked
  ~ .faq-header
  .faq-content {
  max-height: 1000vh;
}

/* ✅ SMOOTH əlavə */
.faq-container .container .faq-grid .faq-item .faq-content {
  font-size: var(--font-size-normal, 1rem);
  font-weight: 400;
  line-height: 125%;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.5s ease,
    opacity 0.4s ease;
  opacity: 0;
}

.faq-container
  .container
  .faq-grid
  .faq-item
  input:checked
  ~ .faq-header
  .faq-content {
  opacity: 1;
}

.faq-container
  .container
  .faq-grid
  .faq-item
  input:checked
  ~ .faq-header
  .container-1 {
  gap: 1.25rem;
}

.faq-container .container .faq-grid .faq-item .faq-header {
  align-items: start;
  display: flex;
  gap: 3.125rem;
  width: 100%;
}

@media (max-width: 599px) {
  .faq-container .container .faq-grid .faq-item .faq-header {
    gap: 1rem;
  }
}

.faq-container .container .faq-grid .faq-item .faq-header .container-1 {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0;
  transition: gap 0.3s ease; /* əlavə edildi */
}

.faq-container .container .faq-grid .faq-item .faq-header .container-2 {
  align-items: center;
  display: flex;
  gap: 1.5625rem;
  min-height: 2.8125rem;
}

.faq-container .container .faq-grid .faq-item .faq-header .number {
  color: var(--gray-200, #c2c2c2);
  font-size: var(--font-size-title-xxxl, 2.8125rem);
  font-weight: 700;
  letter-spacing: 0.015625rem;
  line-height: 100%;
}

@media (min-width: 1024px) {
  .faq-container .container .faq-grid .faq-item .faq-header .number {
    transform: scale(1.2);
  }
}

@media (max-width: 1023px),
  only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .faq-container .container .faq-grid .faq-item .faq-header .number {
    font-size: 7.5rem;
    left: 0;
    opacity: 0.12;
    position: absolute;
    top: 0;
  }
}

.faq-container .container .faq-grid .faq-item .faq-header h3 {
  font-size: var(--font-size-h3, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.015625rem;
  z-index: 1;
}

.faq-container .container .faq-grid .faq-item .faq-header .open-close {
  background: var(--Background-bg-secondary, #f3f5f6);
  border-radius: 100%;
  cursor: pointer;
  display: grid;
  flex-shrink: 0;
  height: 2.5rem;
  margin-left: auto;
  place-content: center;
  width: 2.5rem;
  transition: 0.3s ease; /* əlavə edildi */
}

.faq-container .container .faq-grid .faq-item .faq-content p:not(:first-child),
.faq-container
  .container
  .faq-grid
  .faq-item
  .faq-content
  ul:not(:first-child) {
  margin-block-start: 0.625rem;
}

.faq-container .container .faq-grid .faq-item .faq-content p:not(:last-child),
.faq-container .container .faq-grid .faq-item .faq-content ul:not(:last-child) {
  margin-block-end: 0.625rem;
}

@keyframes parallaxScroll {
  to {
    background-position-y: 100%;
  }
}

footer {
  background: #2e6e9b
    url("/assests/img/escort-girls-footer.webp") no-repeat
    bottom;
  color: #fff;
  contain-intrinsic-size: 750px;
  content-visibility: auto;
  order: 9999;
  padding: 2.5rem 0;
}

footer a {
  color: #fff;
  font-size: var(--font-size-small, 0.875rem);
  font-weight: 400;
  line-height: 135%;
  text-decoration: none;
}

@media (hover: hover) {
  footer a:hover {
    text-decoration: underline !important;
  }
}

footer hr {
  opacity: 0.1;
}

footer .container {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  max-width: 1100px;
}

footer .footer-links {
  display: flex;
  gap: 1.25rem;
  justify-content: space-between;
  width: 100%;
}

@media (max-width: 1023px),
  only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  footer .footer-links {
    flex-wrap: wrap;
    justify-content: start;
  }
}

footer .footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin: 0;
  padding: 0;
}

@media (max-width: 1023px),
  only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  footer .footer-links ul {
    width: 14.375rem;
  }
}

@media (max-width: 599px) {
  footer .footer-links ul {
    width: 9.8125rem;
  }
}

footer .footer-links ul li {
  list-style-type: none;
}

footer .footer-links ul li .category-text {
  color: var(--white, #fff);
  font-size: var(--font-size-normal, 1rem);
  font-weight: 700;
  line-height: 125%;
  margin: 0.25rem 0;
}

footer .footer-links ul li a {
  display: block;
  margin: 0.5rem 0;
}

footer .footer-info {
  display: flex;
  gap: 1.25rem;
}

@media (max-width: 599px) {
  footer .footer-info {
    flex-direction: column;
    gap: 1.875rem;
  }
}

footer .footer-info .network {
  height: 16px;
  width: 206px;
}

footer .footer-info p {
  color: #fff;
  font-size: var(--font-size-small, 0.875rem);
  font-weight: 400;
  line-height: 135%;
}

footer .footer-info p span.opacity {
  opacity: 0.7;
}

footer .footer-info p.header {
  color: var(--white, #fff);
  font-size: var(--font-size-normal, 1rem);
  font-weight: 700;
  line-height: 125%;
  opacity: 1;
}

footer .footer-info .column {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

footer .footer-info .column a {
  opacity: 1;
}

footer .footer-info .human-traffic {
  display: flex;
  gap: 0.75rem;
}

footer .footer-info .human-traffic .hand {
  flex-shrink: 0;
  height: 103px;
  width: 89px;
}

@media (max-width: 599px) {
  footer .footer-info .human-traffic {
    border-top: 0.0625rem solid hsla(0, 0%, 100%, 0.1);
    flex-direction: column;
    padding-top: 1.875rem;
  }

  footer .footer-info .human-traffic .hand {
    margin: 0 auto;
  }
}

footer .footer-info .human-traffic a {
  font-weight: 700;
}

footer .partner-sites {
  margin: 0;
  padding: 0;
  text-align: center;
}

footer .partner-sites li {
  color: var(--white, #fff);
  display: inline;
  font-size: var(--font-size-small, 0.875rem);
  font-weight: 400;
  line-height: 200%;
  list-style-type: none;
  padding: 6px 0;
}

footer .partner-sites li:not(:first-child):before {
  content: " • ";
}

footer .footer-details {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-size: 0.875rem;
  font-weight: 400;
  gap: 1.25rem;
  justify-content: center;
  line-height: 130%;
  width: 100%;
}

footer .footer-details .copyright {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: center;
}

footer .footer-details .copyright p {
  color: var(--white, #fff);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 130%;
  opacity: 0.6;
  text-align: center;
}

footer .footer-details .copyright a.rta {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='51' height='21' fill='none' viewBox='0 0 51 21'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath stroke='%23fff' d='M.703 20.434v-19h49v19z'/%3E%3Cpath fill='%23fff' d='M4.114 18.79V3.077h36.728l5.853 15.711h-5.033l-.764-2.589h-5.48l-.754 2.59H29.75l4.403-11.806H27.71v11.805H22.9V6.984h-4.759c.078.933-.055 1.91-.53 2.73-.664 1.134-1.792 1.872-3.05 2.153 1.06.194 2.036 1.347 2.539 2.378l2.327 4.544h-5.436l-2.57-4.794c-.466-.883-.969-1.57-2.05-1.57h-.424v6.364zm35.775-5.981-1.722-5.636-1.711 5.636h3.433M8.945 9.403h2.103c1.197 0 2.252-.403 2.252-1.555 0-1.517-1.13-1.575-2.244-1.575H8.942v3.13z'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M.203.934h50v20h-50z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  height: 21px;
  opacity: 0.5;
  text-indent: -99999px;
  width: 51px;
}

footer .footer-details .copyright a.dmca {
  background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="71" height="21" fill="none" viewBox="0 0 71 21"><path fill="%23fff" d="M9.632 2.698c-2.757 0-5.257 1.47-6.654 3.823-1.36 2.389-1.36 5.293 0 7.645a7.65 7.65 0 0 0 6.654 3.823c2.72 0 5.22-1.433 6.616-3.823 1.36-2.352 1.36-5.256 0-7.645-1.397-2.353-3.896-3.823-6.616-3.823m0 17.056c-3.382 0-6.47-1.765-8.16-4.705-1.691-2.904-1.691-6.47 0-9.41A9.43 9.43 0 0 1 9.631.934c3.345 0 6.432 1.8 8.123 4.705 1.691 2.94 1.691 6.506 0 9.41a9.34 9.34 0 0 1-8.123 4.705m4.153-11.138L9.08 13.321l-.625.625-.625-.625-2.352-2.352-.625-.625 1.25-1.213.625.624 1.727 1.728 4.08-4.08.625-.625 1.25 1.213zM22.614 1.126h5.191q1.535 0 2.476.417a4 4 0 0 1 1.566 1.196q.618.78.895 1.812.278 1.035.278 2.191 0 1.813-.417 2.816a4.66 4.66 0 0 1-1.142 1.674q-.732.67-1.573.895-1.149.308-2.083.308h-5.192zm3.494 2.562v6.178h.856q1.095 0 1.559-.239.462-.246.725-.848.261-.61.262-1.967 0-1.798-.586-2.461-.587-.663-1.944-.663zM33.838 1.126h4.597l1.774 6.881 1.767-6.88h4.582v11.308h-2.854V3.811l-2.214 8.624h-2.584l-2.207-8.624v8.624h-2.861zM55.337 7.815l3.062.925q-.309 1.288-.972 2.152a4.2 4.2 0 0 1-1.65 1.304q-.98.44-2.5.44-1.845 0-3.016-.532-1.165-.54-2.014-1.89T47.4 6.758q0-2.808 1.489-4.312Q50.383.934 53.115.934q2.136 0 3.355.864 1.227.864 1.821 2.653l-3.086.687q-.161-.518-.339-.756a2 2 0 0 0-.717-.617 2.06 2.06 0 0 0-.95-.216q-1.187 0-1.82.956-.478.71-.478 2.23 0 1.881.57 2.584.572.694 1.605.694 1.004 0 1.512-.563.517-.563.749-1.635M66.075 10.568h-3.981l-.548 1.867h-3.571l4.25-11.309h3.81l4.251 11.31H66.63zm-.733-2.445-1.25-4.065-1.242 4.065zM22.57 20.828v-6.184h2.333q.616 0 .941.059.455.076.764.291.308.21.493.595.19.384.19.844 0 .788-.502 1.337-.503.544-1.814.544h-1.586v2.514zm.819-3.244h1.599q.793 0 1.126-.295.333-.296.333-.831a1.1 1.1 0 0 0-.198-.662.9.9 0 0 0-.515-.367q-.206-.055-.763-.055h-1.582zM27.852 20.828v-6.184h2.742q.826 0 1.257.169.43.165.688.586.258.422.257.932 0 .659-.426 1.11-.426.45-1.316.574.324.155.494.308.358.329.679.822l1.076 1.683h-1.03l-.818-1.286a12 12 0 0 0-.59-.853 1.8 1.8 0 0 0-.418-.413 1.2 1.2 0 0 0-.372-.164 2.5 2.5 0 0 0-.455-.03h-.95v2.746zm.818-3.455h1.76q.56 0 .877-.114a.95.95 0 0 0 .481-.37q.165-.258.165-.558a.92.92 0 0 0-.321-.721q-.317-.283-1.004-.283H28.67zM33.34 17.816q0-1.54.827-2.409.827-.873 2.135-.873.855 0 1.544.41.687.408 1.046 1.143.363.73.363 1.657 0 .942-.38 1.684-.379.742-1.076 1.126-.696.38-1.501.38-.874 0-1.561-.422a2.7 2.7 0 0 1-1.042-1.152 3.5 3.5 0 0 1-.355-1.544m.844.013q0 1.118.6 1.763.602.642 1.51.642.923 0 1.518-.65.6-.65.6-1.844 0-.755-.258-1.316a1.93 1.93 0 0 0-.747-.873 2 2 0 0 0-1.101-.312q-.869 0-1.498.599-.624.595-.624 1.99M41.394 20.828v-5.454h-2.038v-.73h4.902v.73h-2.046v5.454zM44.625 20.828v-6.184h4.472v.73h-3.654v1.894h3.422v.725h-3.422V20.1h3.797v.73zM54.29 18.66l.818.207q-.256 1.008-.928 1.54-.666.527-1.633.527-1 0-1.628-.405-.624-.41-.953-1.181a4.2 4.2 0 0 1-.325-1.658q0-.966.367-1.684a2.53 2.53 0 0 1 1.05-1.092q.683-.375 1.502-.376.928 0 1.56.473.634.472.883 1.329l-.806.19q-.216-.675-.625-.983-.408-.308-1.029-.308-.712 0-1.194.341a1.8 1.8 0 0 0-.67.92q-.195.574-.195 1.186 0 .788.228 1.379.233.585.717.877.486.292 1.05.291.689 0 1.165-.396t.646-1.177M57.2 20.828v-5.454h-2.037v-.73h4.902v.73h-2.046v5.454zM60.432 20.828v-6.184h4.471v.73H61.25v1.894h3.421v.725h-3.42V20.1h3.796v.73zM65.684 20.828v-6.184h2.13q.721 0 1.101.088.532.123.907.443.49.414.73 1.06.245.64.245 1.467 0 .704-.165 1.25-.165.543-.422.902-.257.354-.565.56a2.3 2.3 0 0 1-.738.309q-.43.105-.992.105zm.818-.73h1.32q.613 0 .958-.113.351-.114.557-.321.292-.291.451-.78.165-.494.165-1.194 0-.97-.32-1.49-.317-.523-.773-.7-.329-.126-1.058-.126h-1.3z"/></svg>');
  height: 21px;
  opacity: 0.5;
  text-indent: -99999px;
  width: 71px;
}

footer .footer-details .follow-us {
  align-items: center;
  display: flex;
  gap: 1.25rem;
  justify-content: center;
}

footer .footer-details .follow-us .x-logo {
  color: #fff !important;
  cursor: pointer;
}

@media (hover: hover) {
  footer .footer-details .follow-us .x-logo:hover {
    color: #000 !important;
  }
}

footer .footer-details .language-switcher {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin: 0;
  padding: 0;
  text-align: center;
}

footer .footer-details .language-switcher li {
  color: var(--white, #fff);
  display: inline;
  font-size: var(--font-size-small, 0.875rem);
  font-weight: 400;
  line-height: 200%;
  list-style-type: none;
  opacity: 1;
}

footer .footer-details .language-switcher li span {
  opacity: 0.7;
}

/* SECTION */
.contact-section {
  background: #0f0f0f;
  padding: 60px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* TEXTURE (FIXED — klik bloklamasın) */
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assests/img/texture.png");
  opacity: 1;
  z-index: 1;
  pointer-events: none; /* 🔥 ƏN VACİB FIX */
}

/* CONTAINER */
.contact-wrapper {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 50px;
  position: relative;
  z-index: 2;
}

/* LEFT SIDE */
.contact-info {
  flex: 1;
}

/* UBELLA */
.contact-info .subtitle {
  color: #4791c0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
}

/* CONTACT */
.contact-info h2 {
  font-size: 40px;
  font-weight: 400;
  margin: 10px 0 50px;
  line-height: 1.1;
}

/* INFO ROW */
.info-row {
  display: flex;
  margin-bottom: 35px;
  align-items: flex-start;
}

/* LABEL */
.label {
  min-width: 130px;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
}

/* VALUE */
.value p {
  margin: 0;
  font-size: 18px;
  color: #a9a9a9;
  line-height: 1.6;
}

.value a {
  color: inherit;
  text-decoration: none;
}

.value a:hover {
  text-decoration: underline;
}

/* ================= FORM ================= */

.contact-form {
  width: 100%;
}

/* ROW */
.form-row {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
}

.form-row.full {
  display: block;
}

/* FIELD */
.field {
  position: relative;
  flex: 1;
  display: block;
}

/* INPUT + TEXTAREA */
.field input,
.field textarea {
  width: 100%;
  border: none;
  outline: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0 19px 0 58px;
  height: 66px;
  position: relative;
  z-index: 2;
}

.field textarea {
  height: 220px;
  padding-top: 30px;
  resize: none;
}

/* PLACEHOLDER FIX */
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

/* ICON */
.icon {
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  z-index: 1;
  pointer-events: none; /* 🔥 CLICK FIX */
}

.textarea .icon {
  top: 30px;
  transform: none;
}

.icon svg {
  width: 14px;
  height: 14px;
  fill: #4791c0;
}

/* FOCUS */
.field input:focus,
.field textarea:focus {
  background: rgba(255, 255, 255, 0.12);
}

.animated-button {
  position: relative;
  display: inline-block;
  padding: 20px 40px;
  border: none;
  font-size: 14px;
  background-color: #4791c0;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  color: white;
  cursor: pointer;
  overflow: hidden;
  transition: 0.3s;
}

.animated-button:hover {
  opacity: 0.7;
}

@media (max-width: 992px) {
  .contact-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .form-row {
    flex-direction: column;
  }
}
.models-section {
  padding: 60px 0;
}

/* GRID */
.models-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.model-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

/* IMAGE */
.model-card img {
  display: block;
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: 0.5s;
}

.model-card:hover img {
  transform: scale(1.08);
}

/* DARK OVERLAY (BİREBİR) */
.model-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 20%,
    rgba(0, 0, 0, 0.4) 50%,
    transparent 100%
  );
}

/* BADGES */
.badges {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.badge {
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  color: white;
  border-radius: 4px;
  text-align: center;
  line-height: 1.1;
}

/* EXACT COLORS */
.badge.new {
  background: linear-gradient(135deg, #6fd3ff, #7a6cff);
}

.badge.vip {
  background: linear-gradient(135deg, #ff7b7b, #ff2e63);
}

.badge.real {
  background: linear-gradient(135deg, #3fd58f, #2a9d8f);
}

/* INFO */
.model-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

/* NAME */
.model-info h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
}

/* CITY */
.model-info p {
  margin: 5px 0 0;
  font-size: 16px;
  color: #ccc;
}

/* HEART */
.heart svg {
  width: 25px;
  height: 25px;
  opacity: 0.9;
  transition: 0.3s;
}

.heart:hover svg path {
  stroke: red;
  fill: red;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .models-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .models-grid {
    grid-template-columns: 1fr;
  }
}

.animated-button {
  text-decoration: none;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.breadcrumb-content {
  display: flex;
  align-items: center;
  padding: 100px 0 60px 0;
  gap: 5px;
  flex-wrap: wrap;
}
.fullTextStyle {
  padding-top: 0 !important;
}
.breadcrumb-content > svg:first-child {
  color: #757575;
}
.breadcrumb a {
  color: #757575;
  font-weight: bold;
  text-decoration: none;
}
a {
  text-decoration: none;
}

/* SECTION */
.contact-inner {
  background: #f4f4f4;
  padding: 60px 0;
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
}

/* LEFT IMAGE */
.contact-image img {
  width: 100%;
  height: 780px;
  object-fit: cover;
}

/* RIGHT SIDE */
.contact-content {
  padding: 80px 0;
}

/* TITLE */
.contact-content h2 {
  font-size: 60px;
  font-weight: 300;
  font-family: serif;
  margin-bottom: 20px;
  color: #333;
}

/* TEXT */
.contact-content p {
  font-size: 17px;
  color: #777;
  margin-bottom: 50px;
  line-height: 1.7;
  max-width: 500px;
}

.contact-messengers {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: -15px 0 35px;
  flex-wrap: nowrap;
}

.contact-messengers a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f5f5f5;
  transition: 0.2s ease;
}

.contact-messengers a:hover {
  background: #e9f3fa;
}

.contact-messengers img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.contact-content p a {
  color: #444;
  text-decoration: none;
}

.contact-content p a:hover {
  text-decoration: underline;
}

/* FORM */
.contact-form-minimal {
  width: 100%;
}

/* ROW */
.contact-form-minimal .row {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

/* INPUTS */
.contact-form-minimal input,
.contact-form-minimal textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #cccccc8d;
  background: transparent;
  padding: 20px 0;
  font-size: 14px;
  letter-spacing: 2px;
  outline: none;
}

/* TEXTAREA */
.contact-form-minimal textarea {
  height: 120px;
  resize: none;
  margin-bottom: 40px;
}

/* FOCUS EFFECT */
.contact-form-minimal input:focus,
.contact-form-minimal textarea:focus {
  border-bottom: 1px solid #000;
}

/* BUTTON */
.contact-form-minimal button {
  padding: 15px 35px;
  background: transparent;
  border: 1px solid #000;
  font-size: 14px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: 0.3s;
}

/* HOVER */
.contact-form-minimal button:hover {
  background: #000;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  #minimalForm,
  #minimalFormResponse {
    display: none;
  }

  .contact-content {
    padding: 0px;
  }
  .contact-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
  }
  .contact-content h2 {
    font-size: 36px !important;
    font-weight: 300;
    font-family: serif;
    margin-bottom: 20px;
    color: #333;
  }
  .contact-form-minimal .row {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    flex-direction: column;
  }
}

.Tabs_button__F1b7d:focus-visible {
  color: #121214;
}

.Tabs_button__F1b7d:focus-visible .Tabs_wrapper__2b_4x > :first-child {
  color: #4f4e57;
  background-color: #dae3e3;
}

.Tabs_button__F1b7d:focus-visible .Tabs_wrapper__2b_4x > :nth-child(2) {
  color: var(--color-green);
  background-color: #eaedf6;
}

@supports not selector(:focus-visible) {
}

.switch:has(.circle:checked) {
  background: var(--color-offwhite);
}

.switch:has(.circle:checked) > .sun {
  opacity: 1;
}

.switch:has(.circle:checked) > .moon {
  opacity: 0;
}
.mapboxgl-ctrl button:not(:disabled):hover {
  background-color: rgb(0 0 0/5%);
}

.mapboxgl-ctrl-group button:focus:focus-visible {
  box-shadow: 0 0 2px 2px #0096ff;
}

.mapboxgl-ctrl-group button:focus:not(:focus-visible) {
  box-shadow: none;
}

.mapboxgl-ctrl button:not(:disabled):hover {
  background-color: rgb(0 0 0/5%);
}

.mapboxgl-ctrl-group button:focus:focus-visible {
  box-shadow: 0 0 2px 2px #0096ff;
}

.mapboxgl-ctrl-group button:focus:not(:focus-visible) {
  box-shadow: none;
}
/* Right Card - Contact Center */

.text-styles ul li::marker {
  color: #92b33d;
}

.page-catalog2-main-list-item-ava-list:focus-visible {
  outline: none;
}

.quote-form-submit:hover:not(:disabled) svg {
  transform: translateX(4px);
}

.mapboxgl-ctrl button:not(:disabled):hover {
  background-color: rgb(0 0 0/5%);
}

.mapboxgl-ctrl-group button:focus:focus-visible {
  box-shadow: 0 0 2px 2px #0096ff;
}

.mapboxgl-ctrl-group button:focus:not(:focus-visible) {
  box-shadow: none;
}

.phone-input:has(input:focus) {
  border-color: #006525;
}
.news-detail {
  padding: 60px 0;
  position: relative;
}

.news-detail__container {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 60px;
}

/* TITLE */

.news-detail__title {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 24px;
}

.news-detail__content-date {
  color: #999;
  font-size: 14px;
  margin-bottom: 24px;
  padding-top: 24px;
  border-top: 1px solid #e6e6e6;
}
/* CONTENT */

.news-detail__content-area {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-detail__content-area p {
  font-size: 16px;
  line-height: 24px;
}

/* Rich text styles for internal pages (blogs/services) */
.fullTextStyle .news-detail__content-area h1,
.fullTextStyle .news-detail__content-area h2,
.fullTextStyle .news-detail__content-area h3,
.fullTextStyle .news-detail__content-area h4,
.fullTextStyle .news-detail__content-area h5,
.fullTextStyle .news-detail__content-area h6 {
  color: #1f1f1f;
  font-weight: 700;
  line-height: 1.3;
  margin: 26px 0 14px;
}

.fullTextStyle .news-detail__content-area h1 {
  font-size: 34px;
}

.fullTextStyle .news-detail__content-area h2 {
  font-size: 30px;
}

.fullTextStyle .news-detail__content-area h3 {
  font-size: 26px;
}

.fullTextStyle .news-detail__content-area h4 {
  font-size: 22px;
}

.fullTextStyle .news-detail__content-area h5 {
  font-size: 19px;
}

.fullTextStyle .news-detail__content-area h6 {
  font-size: 17px;
}

.fullTextStyle .news-detail__content-area p,
.fullTextStyle .news-detail__content-area ul,
.fullTextStyle .news-detail__content-area ol {
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.7;
  color: #3f3f3f;
}

.fullTextStyle .news-detail__content-area ul,
.fullTextStyle .news-detail__content-area ol {
  padding-left: 24px;
}

.fullTextStyle .news-detail__content-area ul {
  list-style: disc;
}

.fullTextStyle .news-detail__content-area ol {
  list-style: decimal;
}

.fullTextStyle .news-detail__content-area li {
  margin: 0 0 10px;
}

.fullTextStyle .news-detail__content-area li::marker {
  color: var(--dark-blue);
}

.fullTextStyle .news-detail__content-area strong,
.fullTextStyle .news-detail__content-area b {
  font-weight: 700;
  color: #1f1f1f;
}

.fullTextStyle .news-detail__content-area i,
.fullTextStyle .news-detail__content-area em {
  font-style: italic;
}

/* BUTTON */

.news-detail__btn {
  display: inline-block;
  background: var(--dark-blue);
  color: #fff;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
  border: 2px solid var(--dark-blue);
  transition: 0.4s ease;
}
.news-detail__btn:hover {
  background-color: #fff;
  color: var(--dark-blue);
}
/* IMAGE */

.news-detail__image img {
  width: 100%;
  border-radius: var(--br);
  margin-top: 24px;
  max-height: 550px;
  object-fit: cover;
}
.news-detail__image {
  border-radius: var(--br);
}

/* NAVIGATION */

.news-navigation {
  border-top: 1px solid #e6e6e6;
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  margin-top: 40px;
}

.news-navigation__container {
  display: flex;
  flex-direction: column;
}
.news-navigation__container p {
  font-size: 12px;
  opacity: 0.7;
}
.news-navigation__link {
  font-weight: 500;
  margin-bottom: 10px;
}

.news-navigation__link_right {
  text-align: right;
}

/* SUBSCRIBE */

.news-subscribe {
  background: #f4f4f4;
  padding: 40px;
  border-radius: 10px;
}

.news-detail__sidebar {
  position: sticky;
  top: 110px;
  align-self: start;
}

.news-subscribe__title {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 22px;
}

.news-subscribe__subtitle {
  margin-bottom: 24px;
  font-size: 16px;
  opacity: 0.7;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  color: #6d6d6d;
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 14px 24px;
  border-radius: 40px;
  border: 1px solid transparent;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0;
  font-size: 13px;
}
.news-subscribe__btn {
  width: 100%;
  padding: 16px;
  border-radius: 40px;
  font-weight: 600;
}

@media (max-width: 992px) {
  .news-detail__container {
    grid-template-columns: 1fr;
  }
  .news-detail__sidebar {
    position: static;
  }
}
@media (max-width: 768px) {
  .news-navigation {
    display: none;
  }
  .news-subscribe {
    background: #f4f4f4;
    padding: 40px 20px;
    border-radius: 10px;
  }
  .news-detail__title {
    font-size: 26px;
  }
}

.services-page {
  padding: 20px 0 80px;
}

.services-page .title-group {
  margin-bottom: 24px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-category-card {
  display: flex;
  align-items: center;
  min-height: 110px;
  padding: 20px;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  background: #fff;
  transition: 0.25s ease;
}

.service-category-card h3 {
  font-size: 22px;
  line-height: 1.2;
  color: #2f2f2f;
}

.service-category-card:hover {
  border-color: #4791c0;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(71, 145, 192, 0.12);
}

.services-footer-info .column {
  max-width: 540px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.footer-socials a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  transition: 0.2s ease;
}

.footer-socials a:hover {
  background: #e9f3fa;
}

.footer-socials img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-category-card h3 {
    font-size: 20px;
  }
}

.services-footer {
  background: #2f6f9c;
  padding: 44px 0 24px;
}

.site-footer {
  background: #2f6f9c;
  padding: 44px 0 24px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.site-footer__title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
}

.site-footer__list {
  display: grid;
  gap: 10px;
}

.site-footer__list a {
  color: #e7f1f8;
  font-size: 15px;
}

.footer-article-link {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.site-footer__seo {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.site-footer__seo p {
  color: #d9eaf7;
  font-size: 14px;
  line-height: 1.6;
}

.site-footer__bottom {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.site-footer__bottom p {
  color: #d9eaf7;
  font-size: 14px;
}

.services-footer__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.services-footer__title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
}

.services-footer__list {
  display: grid;
  gap: 10px;
}

.services-footer__list a {
  color: #e7f1f8;
  font-size: 15px;
}

.services-footer__bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.services-footer__bottom p {
  color: #d9eaf7;
  font-size: 14px;
}

@media (max-width: 768px) {
  .services-footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .services-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

.about-hero-full {
  position: relative;
  width: 100%;
  height: 100vh;

  background: url("/assests/img/about.webp")
    center/cover no-repeat;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  padding: 0 8%;
  margin-bottom: 60px;
}
@media (max-width: 768px){
    .about-hero-full{
        background: url("https://www.womenontopp.com/wp-content/uploads/2024/10/How-to-Spot-a-Gaslighter-Recognizing-Emotional-Manipulation.jpg") center/cover no-repeat;
    }
}

/* DARK OVERLAY (premium feel) */
.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.214);
}

/* CONTENT */
.about-hero__content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  color: #fff;
}

/* TAG */
.about-tag {
  font-size: 14px;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 25px;
  display: inline-block;
}

/* TITLE */
.about-hero__content h1 {
  font-size: 76px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 30px;
}

/* TEXT */
.about-hero__content p {
  font-size: 17px;
  line-height: 1.8;
  color: #ddd;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-hero-full {
    justify-content: center;
    text-align: center;
    padding: 0 20px;
  }

  .about-hero__content h1 {
    font-size: 42px;
  }
}
.about-intro {
  padding: 60px 0;
}

/* CONTAINER */
.about-intro__container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  padding: 0 20px;
}

/* TEXT */
.about-intro__text h2 {
  font-size: 64px;
  font-weight: 400;
  color: #2a2a2a;
  margin-bottom: 30px;
}
.padding-top {
  padding-top: 0 !important;
}
.about-intro__text p {
  font-size: 18px;
  line-height: 1.5;
  color: #666;
  margin-bottom: 20px;
  max-width: 520px;
}

/* IMAGE */
.about-intro__image {
  width: 100%;
}

.about-intro__image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-intro__container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-intro__text {
    text-align: center;
    margin: 0 auto;
  }

  .about-intro__text p {
    max-width: 100%;
  }
}
.model-inner {
  background: #0b0b0f;
  padding: 60px 0 !important;
  color: #fff;
}

.model-inner__container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* LEFT */
.model-gallery .main-image img {
  width: 100%;
  border-radius: 16px;
  height: 500px;
  object-fit: contain;
}

.thumbs {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.thumbs img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
}

.thumbs .thumb-video video,
.thumbs .thumb-video {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  display: block;
}

.thumbs .thumb-video {
  position: relative;
}

.thumb-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 22px;
  text-shadow: 0 0 6px rgba(0,0,0,0.8);
  pointer-events: none;
  line-height: 1;
}

.main-video video {
  width: 100%;
  border-radius: 16px;
  height: 500px;
  object-fit: cover;
}

/* RIGHT */
.model-info-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-box {
  background: #111321;
  padding: 20px;
  border-radius: 14px;
  font-size: 16px;
}

.info-box span {
  color: #ff4d6d;
  margin-left: 5px;
}

.name h2 {
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.verified svg {
  width: 28px;
  height: 28px;

  margin-left: 8px;
}

.phone {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.phone > span a {
  color: #fff;
  text-decoration: none;
}

.phone > span a:hover {
  text-decoration: underline;
}

.actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
}

.actions a {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0f1220;
  transition: 0.2s ease;
}

.actions a:hover {
  background: #1a1f35;
}

.actions svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.actions img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.actions a[aria-label="MAX"] {
  background: #fff;
}

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

/* PRICE */
.price-box {
  border: 2px solid #ff4d6d;
  border-radius: 16px;
  padding: 20px;
}

.price-box h4 {
  margin-bottom: 15px;
}

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

.price-grid div {
  background: #111321;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
}

.price-grid span {
  display: block;
  font-size: 14px;
  color: #aaa;
}

.price-grid b {
  font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .model-inner__container {
    grid-template-columns: 1fr;
  }
}

/* GRID */
.info-grid {
  display: grid;
  gap: 20px;
}

.info-grid.stats {
  grid-template-columns: repeat(3, 1fr);
}

.info-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

/* BOX */
.info-box {
  background: #0f1220;
  border-radius: 16px;
  padding: 25px;
  position: relative;
  font-size: 16px;
  color: #fff;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

/* LABEL (Рост, Возраст...) */
.info-box .label2 {
  position: absolute;
  top: -12px;
  left: 20px;
  background: #ff5a2f;
  color: #fff;
  font-size: 13px;
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 600;
}

/* VALUE */
.info-box p {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
}

/* INLINE TEXT */
.info-box span {
  color: #ff5a2f;
  font-weight: 500;
}

/* PRICE BOX */
.price-box {
  border: 2px solid #ff5a2f;
  border-radius: 18px;
  padding: 30px 20px 20px;
  position: relative;
  margin-top: 20px;
}

/* TITLE (top-left çıxıntı) */
.price-title {
  position: absolute;
  top: -12px;
  left: 20px;
  background: #ff5a2f;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

/* PRICE GRID */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* ITEM */
.price-item {
  background: #0f1220;
  padding: 20px;
  border-radius: 14px;
  text-align: center;
  position: relative;
}

/* BADGE */
.price-item .badge {
  position: absolute;
  top: -12px;
  left: 15px;
  background: #ff5a2f;
  color: #fff;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 20px;
}

/* PRICE TEXT */
.price-item p {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}
.title-group {
  max-width: 70%;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .contact-content h2 {
    font-size: 51px;
    font-weight: 300;
    font-family: serif;
    margin-bottom: 20px;
    color: #333;
  }
  .models-section.models .models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .models-section.models .models-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px;
  }

  .content h1 {
    font-size: 45px;
    font-weight: 300;
    line-height: 1.2;
  }
  .frame-tl {
    top: 97px;
    left: 6%;
    border-top: 1px solid rgba(255, 255, 255, 0.7);
    border-left: 1px solid rgba(255, 255, 255, 0.7);
  }
  .frame-tr {
    top: 97px;
    right: 6%;
    border-top: 1px solid rgba(255, 255, 255, 0.7);
    border-right: 1px solid rgba(255, 255, 255, 0.7);
  }
  .frame-bl {
    bottom: 20px;
    left: 6%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    border-left: 1px solid rgba(255, 255, 255, 0.7);
  }
  .frame-br {
    bottom: 20px;
    right: 6%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    border-right: 1px solid rgba(255, 255, 255, 0.7);
  }
  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 20px;
  }
  .title-group {
    margin-bottom: 10px;
  }
  .site-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-intro__text h2 {
    font-size: 53px;
    font-weight: 400;
    color: #2a2a2a;
    margin-bottom: 30px;
  }
  .about-hero-full {
    margin-bottom: 0;
  }
  .contact-grid {
    gap: 20px;
  }
  .contact-content h2 {
    font-size: 42px;
    font-weight: 300;
    font-family: serif;
    margin-bottom: 20px;
    color: #333;
  }
}

@media (max-width: 768px) {
  .model-info-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    order: -1;
  }
  .about-intro__text p {
    font-size: 16px;
    line-height: 1.3;
    color: #666;
    margin-bottom: 20px;
    max-width: 520px;
  }
  .about-intro__image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
  }
  .about-intro__container {
    gap: 0;
  }
  .faq-container .container .faq-grid .faq-item .faq-header h3 {
    font-size: 22px !important;
    font-weight: 700;
    letter-spacing: -0.015625rem;
    z-index: 1;
  }
  .contact-info h2 {
    font-size: 33px;
    font-weight: 400;
    margin: 10px 0 50px;
    line-height: 1.1;
  }
  .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    position: relative;
    z-index: 2;
  }
  .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    position: relative;
    z-index: 2;
  }
  .contact-info h2 {
    font-size: 22px;
    font-weight: 400;
    margin: 10px 0 50px;
    line-height: 1.1;
  }
  .title-group {
    max-width: 100%;
  }
  .animated-button {
    position: relative;
    display: inline-block;
    padding: 15px 28px;
    border: none;
    font-size: 12px;
    background-color: #4791c0;
    border-radius: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    color: white;
    cursor: pointer;
    overflow: hidden;
    transition: 0.3s;
  }
  .models-section.models .models-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 20px;
  }
  .title-group h2 {
    font-size: 25px;
    font-weight: 400;
    letter-spacing: -0.046875rem;
    line-height: 105%;
  }
  .cities {
    position: absolute;
    bottom: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    color: #fff;
    font-size: 12px;
    letter-spacing: 3px;
    flex-direction: column;
    align-items: center;
  }
  .content h1 {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.2;
  }
  .info-grid.stats {
    grid-template-columns: 1fr;
  }

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

  .price-grid {
    grid-template-columns: 1fr;
  }
  .logo {
    font-size: 21px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
  }
  .title-group p {
    max-width: 100%;
  }
  .small-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .small h3 {
    margin-top: 10px;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    color: #333;
  }
  .small img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.5s ease;
    overflow: hidden;
  }
  .model-gallery .main-image img {
    width: 100%;
    border-radius: 16px;
    height: 340px;
    object-fit: cover;
  }
}
