@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --font-primary: 'Poppins', sans-serif;

  /* Font Sizes */
  --fs-xs: 0.75rem;
  /* 12px */
  --fs-sm: 0.875rem;
  /* 14px */
  --fs-base: 1rem;
  /* 16px */
  --fs-md: 1.125rem;
  /* 18px */
  --fs-lg: 1.25rem;
  /* 20px */
  --fs-xl: 1.5rem;
  /* 24px */
  --fs-2xl: 2rem;
  /* 32px */
  --fs-3xl: 2.5rem;
  /* 40px */
  --fs-4xl: 3rem;
  /* 48px */

  /* Weights */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --fw-black: 900;

  /* Line Heights */
  --lh-tight: 1.2;
  --lh-base: 1.5;
  --lh-relaxed: 1.75;

  /* Floating controls (hero) */
}

/* Preloader Styles */
.nv-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #968A81;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  visibility: visible;
  opacity: 1;
}

.nv-preloader--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.nv-preloader__content {
  text-align: center;
}

.nv-preloader__logo {
  width: 200px;
  max-width: 80vw;
  height: auto;
  margin-bottom: 20px;
  animation: nvPulse 2s infinite ease-in-out;
}

.nv-preloader__text {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fs-sm);
  letter-spacing: 2px;
  text-transform: uppercase;
}

@keyframes nvPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga" 0;
}

html,
body {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  font-weight: var(--fw-regular);
  color: #333;
  background-color: #968A81;
  /* Match slider/preloader background */
}

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
big,
blockquote,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
iframe,
img,
input,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
sub,
summary,
sup,
table,
tbody,
td,
textarea,
tfoot,
th,
thead,
time,
tr,
tt,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

ol,
ul {
  list-style: none
}

blockquote,
q {
  quotes: none
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: '';
  content: none
}

table {
  border-collapse: collapse;
  border-spacing: 0
}

a {
  text-decoration: none
}

:focus {
  outline: 0
}

.clear {
  clear: both
}

.imgContent {
  width: calc(100% - 320px);
}

.imgContent img {
  width: 100%;
}

.displayNone {
  display: none !important
}

.mobile {
  display: none;
  position: fixed;
  width: 101%;
  bottom: -5px;
  left: -.5%;
  z-index: 10;
  height: 75px;
  padding: 15px 0;
  background-color: #15214A;
  color: white;
  text-align: center;
}

.form-holder {
  text-align: center;
  width: 320px;
  position: fixed;
  right: 0;
  bottom: 0;
  top: 0;
  box-sizing: border-box;
  padding: 0 25px;
  --nv-form-background-color: #968A81;
  background-color: var(--nv-form-background-color);
  height: 100%;
  display: table;
  box-shadow: 0 0 15px rgb(0 0 0 / 10%);
  z-index: 99
}

.form-inner {
  display: table-cell;
  vertical-align: middle
}

.form-title {
  text-align: center;
  font-size: var(--fs-lg);
  line-height: 1.3;
  margin-bottom: 10px;
  color: #fff;
  margin-top: 20px;
}

.form-title>h1 {
  font-size: var(--fs-lg) !important;
  font-weight: var(--fw-regular);
}

div#nv-hero-slider {
  position: relative;
  z-index: 2;
}

/* Hero headline (first slide) */
.nv-hero-headline {
  position: absolute;
  left: 24px;
  left: calc(24px + env(safe-area-inset-left));
  bottom: 40px;
  bottom: calc(40px + env(safe-area-inset-bottom));
  z-index: 5;
  max-width: 620px;
  padding: 14px 18px;
  min-height: calc(2.4em + 28px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: none;
  opacity: 1;
  --nv-hero-headline-translate-y: 0px;
  transform: translateY(var(--nv-hero-headline-translate-y));
  transition:
    opacity 520ms ease-in-out,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.nv-hero-headline--delayed {
  opacity: 0;
  --nv-hero-headline-translate-y: 10px;
}

.nv-hero-headline--dismissed {
  opacity: 0;
  --nv-hero-headline-translate-y: 10px;
}

.nv-hero-headline__title {
  margin: 0;
  color: #fff;
  font-weight: var(--fw-light);
  line-height: var(--lh-tight);
  letter-spacing: 0.2px;
  font-size: clamp(1.5rem, 2.6vw, 3rem);
  text-wrap: balance;
  transition:
    opacity 420ms ease-in-out,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.nv-hero-headline__title--hidden {
  opacity: 0;
  transform: translateY(10px);
}

@media (prefers-reduced-motion: reduce) {

  .nv-hero-headline,
  .nv-hero-headline__title,
  .nv-campaign-badge {
    transition: none !important;
  }
}

/* Campaign Badge */
.nv-campaign-badge {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 6px;
  pointer-events: none;
  opacity: 1;
  width: 100%;
  margin: 0 auto 24px;
  --nv-campaign-badge-translate-y: 0px;
  transform: translateY(var(--nv-campaign-badge-translate-y));
  transition:
    opacity 520ms ease-in-out,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.nv-campaign-badge--form {
  padding: 0 10px;
}

.nv-campaign-badge--delayed {
  opacity: 0;
  --nv-campaign-badge-translate-y: 10px;
}

.nv-campaign-badge__header {
  background: rgba(43, 43, 43, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 8px 12px;
  font-weight: var(--fw-medium);
  font-size: 1.1rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.5px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
}

.nv-campaign-badge__body {
  display: flex;
  gap: 6px;
}

.nv-campaign-badge__item {
  background: rgba(43, 43, 43, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 8px 5px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.nv-campaign-badge__value {
  font-size: 2.4rem;
  font-weight: var(--fw-semibold);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 1px;
}

.nv-campaign-badge__symbol {
  font-size: 1rem;
  font-weight: var(--fw-light);
  vertical-align: super;
}

.nv-campaign-badge__label {
  font-size: 0.8rem;
  font-weight: var(--fw-medium);
  margin-top: 4px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.9;
}



@media (max-width: 850px) {
  .nv-hero-headline {
    left: 16px;
    left: calc(16px + env(safe-area-inset-left));
    right: 16px;
    right: calc(16px + env(safe-area-inset-right));
    bottom: auto;
    top: 60px;
    top: calc(60px + env(safe-area-inset-top));
    transform: translateY(var(--nv-hero-headline-translate-y));
    max-width: none;
    padding: 12px 14px;
    min-height: calc(2.6em + 24px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .nv-hero-headline__title {
    font-size: clamp(1.25rem, 5vw, 2.1rem);
    width: 100%;
  }

  .nv-campaign-badge {
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    transform: none;
    margin: 15px 0 20px;
    padding: 0;
    transform: translateY(var(--nv-campaign-badge-translate-y));
  }

  .nv-campaign-badge__header {
    width: 100%;
    box-sizing: border-box;
    font-size: 1rem;
    padding: 10px;
    border-radius: 10px;
    min-height: 45px;
  }

  .nv-campaign-badge__body {
    flex-direction: row;
    gap: 4px;
    width: 100%;
  }

  .nv-campaign-badge__item {
    min-width: 0;
    padding: 8px 5px;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    border-radius: 10px;
    min-height: 55px;
  }

  .nv-campaign-badge__value {
    font-size: 2rem;
  }

  .nv-campaign-badge__label {
    font-size: 0.6rem;
    margin-top: 0;
    text-align: center;
    color: #ffffff;
    font-weight: var(--fw-medium);
  }
}

/* Hero Slider Styles */
.carousel-item {
  background-color: #968A81;
  /* Dark placeholder */
}

.carousel-item img {
  filter: brightness(0.9);
}

.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  z-index: 10;
}

.carousel-indicators {
  margin-bottom: 2rem;
  z-index: 10;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 6px;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
}

.carousel-indicators .active {
  background-color: #fff;
}

/* Mobile: adjust controls */
@media (max-width: 850px) {

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
    /* Hide arrows on mobile for cleaner look, use swipe */
  }

  .carousel-indicators {
    bottom: 80px;
    /* Adjust for mobile headline/cue */
    margin-bottom: 0;
  }
}

/* Mobile "form below" cue on hero */
.nv-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  z-index: 6;
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 999px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.55);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

@media (max-width: 850px) {
  .nv-scroll-cue {
    display: inline-flex;
  }
}

.nv-scroll-cue[data-visible="false"] {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
}

.nv-scroll-cue:hover {
  transform: translateX(-50%) translateY(-1px);
  background: rgba(0, 0, 0, 0.7);
}

.nv-scroll-cue:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.nv-scroll-cue__chevrons {
  position: relative;
  width: 14px;
  height: 20px;
  animation: nvScrollCueBounce 1.4s ease-in-out infinite;
}

.nv-scroll-cue__chevrons::before,
.nv-scroll-cue__chevrons::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255, 255, 255, 0.95);
  border-bottom: 2px solid rgba(255, 255, 255, 0.95);
  transform: translateX(-50%) rotate(45deg);
}

.nv-scroll-cue__chevrons::before {
  top: 0;
  opacity: 0.9;
}

.nv-scroll-cue__chevrons::after {
  top: 8px;
  opacity: 0.55;
}

@keyframes nvScrollCueBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(4px);
  }
}

.carousel-inner.equal-height {
  height: 100vh;
}

@supports (height: 100svh) {
  .carousel-inner.equal-height {
    height: 100svh;
  }
}

.contact_form UL {
  margin: 0;
  padding: 0
}

.contact_form LI {
  margin: 0 0 14px;
  position: relative;
  width: 100%;
  float: left
}

.contact_form .form-text {
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #c1c1c1;
  height: 40px;
  border-radius: 10px;
  padding: 0 20px;
  font-size: var(--fs-sm);
  font-family: var(--font-primary);
  background-color: #e9e8e4;
}

.form-submit {
  width: 100%;
  height: 45px;
  border: 0;
  background-color: #fff;
  text-align: center;
  font-size: var(--fs-md);
  color: var(--nv-form-background-color, #968A81);
  margin: auto;
  margin-top: 0;
  border-radius: 10px;
  font-weight: var(--fw-bold)
}

.form-submit:hover {
  opacity: .7;
  cursor: pointer
}

/* Moved from index.html (validation + anti-spam) */
.error {
  border: 2px solid red
}

.error-message {
  color: red;
  font-size: 11px;
  margin-top: 5px
}

.nv-honeypot {
  position: absolute !important;
  left: -99999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  white-space: nowrap !important
}

/* Keep placeholders readable on the input background */
.contact_form input::placeholder {
  color: var(--nv-form-background-color, #968A81);
  opacity: 1
}

.contact_form input::-webkit-input-placeholder {
  color: var(--nv-form-background-color, #968A81)
}

.contact_form input::-moz-placeholder {
  color: var(--nv-form-background-color, #968A81);
  opacity: 1
}

.contact_form input:-ms-input-placeholder {
  color: var(--nv-form-background-color, #968A81)
}

.contact_form input::-ms-input-placeholder {
  color: var(--nv-form-background-color, #968A81)
}

/* Match checkbox/radio theme with inputs */
.contact_form input[type=radio] {
  accent-color: #e9e8e4
}

/* Checkbox: keep background color, force white checkmark */
.contact_form input[type=checkbox] {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 17px;
  display: inline-grid;
  place-content: center;
  border: 1px solid #c1c1c1;
  border-radius: 4px;
  background-color: #e9e8e4;
  /* match input background */
}

.contact_form input[type=checkbox]::after {
  content: '';
  width: 5px;
  height: 9px;
  border-right: 2px solid var(--nv-form-background-color, #968A81);
  border-bottom: 2px solid var(--nv-form-background-color, #968A81);
  transform: rotate(45deg);
  opacity: 0;
}

.contact_form input[type=checkbox]:checked::after {
  opacity: 1
}

.contact_form input[type=checkbox]:focus-visible {
  outline: 2px solid rgba(255, 255, 255, .7);
  outline-offset: 2px;
}

.phone input {
  border-radius: 10px;
  height: 40px;
  font-family: var(--font-primary)
}

.nv-consent-item input {
  opacity: 1;
}

.nv-consent-item label {
  font-size: var(--fs-xs) !important;
  color: #fff;
  font-weight: var(--fw-regular);
  line-height: 1.35
}

.nv-consent-item label a {
  color: #fff;
  font-weight: inherit
}

.logoForm {
  width: 80%;
  margin: 0 auto 40px;

  /* Yan yana getiren sihirli kodlar: */
  display: flex;
  /* Çocukları yan yana dizer */
  justify-content: center;
  /* Tam ortaya hizalar (İstersen 'space-between' yap iki uca yasla) */
  align-items: center;
  /* Dikey olarak ortalar */
  gap: 30px;
  /* İki logo birbirine yapışmasın, araya 30px boşluk */
}

.logoForm img {
  max-width: 45%;
  /* Yan yana sığmaları için genişliği kısıtlar */
  height: auto;
}

.primaryLogoForm {
  width: 100%;
  margin: 20px auto 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 10px;
}

.primaryLogoForm img {
  width: 240px;
  max-width: 75%;
  height: auto;
}

@media only screen and (max-width: 850px) {
  .primaryLogoForm {
    top: 10px;
    margin-bottom: 30px;
  }
}

.logoForm.logoForm--bottom {
  margin: 36px auto 0;
}

input[type=checkbox]:not(old)+label,
input[type=radio]:not(old)+label {
  display: contents;
  padding-left: 2px;
  background: url(https://sinpaskizilbuk.com/landingyeni/assets/images/form/checks.png) no-repeat 0 0;
  line-height: 17px;
  cursor: pointer;
  font-size: 12px;
}

/* Consent rows: align checkbox + text cleanly */
.nv-consent-item {
  padding: 4px 0
}

.nv-consent-item .agree {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  margin: 0;
  padding: 4px 0
}

.nv-consent-item .agree input[type=checkbox] {
  float: none;
  margin: 2px 0 0
}

.nv-consent-item .agree label {
  display: block !important;
  flex: 1;
  margin: 0;
  background: none !important;
  padding-left: 0 !important;
  line-height: 1.35
}

.nv-consent-item .agree a {
  display: block
}

.phone-number-group {
  display: block
}