:root {
  --black: #000000;
  --gold: #e2ab64;
  --gold-bright: #f4c67e;
  --gold-deep: #b97f3e;
  --white: #ffffff;
  --muted-white: rgba(255, 255, 255, 0.9);
  --line-gold: rgba(228, 173, 103, 0.55);
  --line-soft: rgba(228, 173, 103, 0.38);
  --line: rgba(228, 173, 103, 0.65);
  --placeholder: rgba(255, 255, 255, 0.45);
  --field-border: rgba(228, 173, 103, 0.55);
  --divider: rgba(228, 173, 103, 0.28);
}
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  /* outline:1px solid red; */
}
*,
*::before,
*::after {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  background: #120b06;
  background: #2b130b;
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
}
body {
  overflow-x: hidden;
}
header {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
}
.container {
  width: 100%;
  max-width: 1380px;
}
.main-page {
  position: relative;
  min-height: 100dvh;
  /* overflow: hidden; */
  background-image: url("../img/index-bg.png");
  background-size: cover;
  background-position: right 0px top 0px;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
}
.main-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(24, 14, 7, 0.95) 0%,
      rgba(24, 14, 7, 0.8) 25%,
      rgba(24, 14, 7, 0.4) 55%,
      rgba(24, 14, 7, 0) 100%
    ),
    /* Sağ üstten aşağı */
      linear-gradient(
        180deg,
        rgba(24, 14, 7, 0.65) 0%,
        rgba(24, 14, 7, 0.25) 35%,
        transparent 80%
      );
  z-index: 1;
  pointer-events: none;
}
.main-page > * {
  position: relative;
  z-index: 2;
}
.about-page {
  position: relative;
  min-height: 100vh;
  /* overflow: hidden; */
  background-image: url("../img/about-bg.jpeg");
  background-size: cover;
  background-position: right 0px top 0px;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
}
.about-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(24, 14, 7, 0.95) 0%,
      rgba(24, 14, 7, 0.8) 25%,
      rgba(24, 14, 7, 0.4) 55%,
      rgba(24, 14, 7, 0) 100%
    ),
    /* Sağ üstten aşağı */
      linear-gradient(
        180deg,
        rgba(24, 14, 7, 0.65) 0%,
        rgba(24, 14, 7, 0.25) 35%,
        transparent 80%
      );
  z-index: 1;
  pointer-events: none;
}
.about-page > * {
  position: relative;
  z-index: 2;
}
.service-page {
  position: relative;
  min-height: 100vh;
  /* overflow: hidden; */
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.12) 0%,
    rgba(0, 0, 0, 0.04) 38%,
    rgba(0, 0, 0, 0.4) 100%
  );
}
.service-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(24, 14, 7, 0.95) 0%,
      rgba(24, 14, 7, 0.8) 25%,
      rgba(24, 14, 7, 0.4) 55%,
      rgba(24, 14, 7, 0) 100%
    ),
    /* Sağ üstten aşağı */
      linear-gradient(
        180deg,
        rgba(24, 14, 7, 0.65) 0%,
        rgba(24, 14, 7, 0.25) 35%,
        transparent 80%
      );
  z-index: 1;
  pointer-events: none;
}
.service-page > * {
  position: relative;
  z-index: 2;
}
.contacts-page {
  position: relative;
  min-height: 100vh;
  /* overflow: hidden; */
  background-image: url("../img/contact-bg.png");
  background-size: cover;
  background-position: left 0px bottom 0px;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
}
.contacts-pagess::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(24, 14, 7, 0.95) 0%,
      rgba(24, 14, 7, 0.8) 25%,
      rgba(24, 14, 7, 0.4) 55%,
      rgba(24, 14, 7, 0) 100%
    ),
    /* Sağ üstten aşağı */
      linear-gradient(
        180deg,
        rgba(24, 14, 7, 0.65) 0%,
        rgba(24, 14, 7, 0.25) 35%,
        transparent 80%
      );
  z-index: 1;
  pointer-events: none;
}
.contacts-page > * {
  position: relative;
  z-index: 2;
}
@media (max-width: 576px) {
  .main-page {
    background-image: url("../img/index-mobile-bg.png");
  }
  .about-page {
    background-image: url("../img/about-mobile-bg.png");
  }
  .service-page {
    /* background-image: url("../img/service-mobile-bg.png"); */
  }
  .service-page::before {background: unset;}
  .contacts-page {
    /* background-image: unset; */
	background-image: url("../img/contact-mobile-bg.png");
  }
}
.site-header {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 20px 0 20px;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0px;
  text-decoration: none;
  color: var(--gold-bright);
}
.brand-logo {
  width: 145px;
  height: 105px;
  position: relative;
  flex-shrink: 0;
}
.brand-logo img {
  display: block;
  width: 100%;
}

.brand-text {
  line-height: 1;
  transform: translateY(2px);
}
.brand-name {
  display: block;
  font-family: "Cinzel", Georgia, serif;
  font-size: 36px;
  line-height: 0.95;
  letter-spacing: 4px;
  color: var(--gold-bright);
  background: linear-gradient(180deg, #f6cd8a 0%, #dfa960 55%, #b97f3e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(246, 199, 127, 0.3);
}
.brand-subtitle {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 2px;
  color: rgba(255, 232, 194, 0.9);
  font-weight: 200;
}
.main-nav {
  /* padding-top: 38px; */
}
.main-nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav li {
  display: flex;
  align-items: center;
}
.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  color: rgba(255, 255, 255, 0.94);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 1.6px;
  font-weight: 500;
}
.main-nav a.active {
  color: #f1e1d2;
  font-weight: 600;
}
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -10px;
  height: 2px;
  background: var(--gold-bright);
  box-shadow: 0 0 8px rgba(246, 199, 127, 0.55);
}
.nav-separator {
  width: 1px;
  height: 30px;
  background: rgba(228, 173, 103, 0.55);
  box-shadow: 0 0 7px rgba(228, 173, 103, 0.2);
}
/* =========================
       HERO
    ========================== */
.hero {
  position: relative;
  z-index: 2;
  flex: 1;
  padding: 26px 60px 0;
  min-height: 500px;
  /* max-width: 780px; */
  align-content: center;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-left: 0px;
  padding-top: 0px;
}
.hero-eyebrow {
  margin: 0 0 16px;
  color: #f1e1d2;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 500;
}
.hero-title {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(52px, 4.9vw, 76px);
  line-height: 1.08;
  letter-spacing: 2px;
  font-weight: 500;
  text-transform: uppercase;
}
.hero-title .line-white {
  display: block;
  color: #f3ede4;
  letter-spacing: -1px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}
.hero-title .line-gold {
  display: block;
  background: linear-gradient(180deg, #f6cd8a 0%, #dfa960 55%, #b97f3e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 3px 8px rgba(80, 42, 12, 0.55));
}
.hero-line {
  width: 52px;
  height: 3px;
  margin: 20px 0 20px;
  background: var(--gold-bright);
  box-shadow: 0 0 8px rgba(246, 199, 127, 0.5);
}
.hero-description {
  margin: 0;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
}
.hero-description .gold {
  color: var(--gold-bright);
  font-weight: 400;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  min-width: 302px;
  height: 56px;
  margin-top: 36px;
  padding: 0 24px;
  border: 1px solid var(--line-gold);
  background: rgba(12, 7, 3, 0.45);
  color: var(--gold-bright);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 2.4px;
  font-weight: 400;
}
.hero-cta .arrow {
  font-size: 26px;
  line-height: 1;
  font-weight: 300;
  transform: translateY(-1px);
}
/* =========================
       STATS BAR
    ========================== */
.stats-bar {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 26px 60px 30px;
  background: linear-gradient(180deg, rgba(12, 7, 3, 0.9), rgba(12, 7, 3, 0.8));
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  row-gap: 26px;
}
.stats-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    #d2a15d 25%,
    transparent 50%,
    #d2a15d 75%,
    transparent 100%
  );
}
.stats-grid::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    #d2a15d 25%,
    transparent 50%,
    #d2a15d 75%,
    transparent 100%
  );
}
.stat {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 6px 30px;
}
.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 64px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(228, 173, 103, 0.65) 25%,
    rgba(228, 173, 103, 0.65) 75%,
    transparent
  );
}
.stat-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border: 1.5px solid var(--gold-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  background: rgba(12, 7, 3, 0.35);
  box-shadow: inset 0 0 10px rgba(246, 199, 127, 0.1),
    0 0 10px rgba(228, 173, 103, 0.15);
}
.stat-number {
  margin: 0 0 6px;
  font-family: "Cinzel", Georgia, serif;
  font-size: 34px;
  line-height: 1;
  letter-spacing: 1px;
  font-weight: 500;
  background: linear-gradient(180deg, #f6cd8a 0%, #dfa960 55%, #b97f3e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label {
  margin: 0;
  color: rgba(255, 240, 215, 0.92);
  text-transform: uppercase;
  font-size: 13.5px;
  line-height: 1.2;
  letter-spacing: 0px;
  font-weight: 500;
  white-space: nowrap;
}
/* =========================
       FEATURES
    ========================== */
.features {
  position: relative;
  min-height: 220px;
  background: linear-gradient(180deg, rgba(12, 7, 3, 0.9), rgba(12, 7, 3, 0.8));
}
.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    #d2a15d 25%,
    transparent 50%,
    #d2a15d 75%,
    transparent 100%
  );
}
.features-grid {
  max-width: 1380px;
  margin: 0 auto;
  padding: 15px 30px 15px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.feature {
  position: relative;
  min-height: 170px;
  padding: 0 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.feature:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18px;
  width: 1px;
  height: 166px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(228, 176, 106, 0.66) 18%,
    rgba(228, 176, 106, 0.7) 78%,
    transparent
  );
}
.feature-icon-wrap {
  width: 72px;
  height: 72px;
  margin-bottom: 10px;
  border: 1px solid var(--gold-bright);
  border-radius: 50%;
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 10px rgba(228, 176, 106, 0.12),
    0 0 10px rgba(228, 176, 106, 0.18);
}
.feature img {
  width: 64px;
  height: 64px;
  fill: none;
  stroke: var(--gold-bright);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-title {
  margin: 0 0 9px;
  color: var(--gold-bright);
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 200;
}
.feature-text {
  max-width: 175px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.48;
  font-weight: 300;
}
/* =========================
       SERVICES SECTION
    ========================== */
.services-page {
  position: relative;
  padding: 30px 40px 38px;
}
.services-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
}
.service-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
}
.service-panel {
  position: relative;
  min-height: 557px;
  border: 1px solid var(--line);
  border-radius: 30px;
  /* overflow: hidden; */
  background: rgba(0, 0, 0, 0.36);
  box-shadow: inset 0 0 0 1px rgba(255, 196, 118, 0.05),
    0 0 18px rgba(212, 126, 53, 0.08);
}
.service-panel.left {
  background: url("../img/services-left.png");
  background-size: contain;
  background-position: left bottom;
  background-repeat: no-repeat;
}
.service-panel.right {
  background: url("../img/services-right.png");
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
}
.panel-list {
  position: absolute;
  top: 70px;
  display: grid;
  grid-template-columns: 110px 1fr;
  column-gap: 0;
  row-gap: 0;
  align-items: start;
}
.left .panel-list {
  left: 300px;
}
.right .panel-list {
  left: 56px;
}
.service-icon-column {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 75px;
}
.service-icon-column::before {
  content: "";
  position: absolute;
  top: 88px;
  bottom: 88px;
  width: 1px;
  background: var(--gold-bright);
  opacity: 0.72;
}
.icon-dot {
  position: absolute;
  left: 50%;
  width: 9px;
  height: 9px;
  margin-left: -4.5px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 8px rgba(246, 199, 127, 0.5);
  z-index: 3;
}
.dot-1 {
  top: 118px;
}
.dot-2 {
  top: 270px;
}
.service-icon {
  width: 80px;
  height: 80px;
  border: 1px solid var(--gold-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  background: #130c05;
  box-shadow: inset 0 0 10px rgba(246, 199, 127, 0.08),
    0 0 10px rgba(228, 173, 103, 0.12);
  position: relative;
  z-index: 2;
}
.service-icon img {
  width: 72px;
  height: 72px;
}

.service-texts {
  padding-top: 0px;
  display: flex;
  flex-direction: column;
  gap: 75px;
}
.service-title {
  margin: 0;
  min-height: 80px;
  font-family: "Montserrat", Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: start;
  color: var(--white);
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 400;
}
.right .service-title {
  min-height: 80px;
}
.bottom-cta {
  max-width: 1380px;
  margin: 0 auto;
  margin-top: 39px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 39px;
  padding: 0 13px;
}
.ornament {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 33px;
  min-width: 350px;
}
.ornament-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright));
  opacity: 0.82;
}
.ornament-line.right {
  background: linear-gradient(90deg, var(--gold-bright), transparent);
}
.ornament.right .ornament-line {
  background: linear-gradient(90deg, var(--gold-bright), transparent);
}
.ornament.right .ornament-line.left {
  background: linear-gradient(90deg, transparent, var(--gold-bright));
}
.cta-button {
  width: 100%;
  max-width: 380px;
  height: 75px;
  border: 1px solid var(--gold-bright);
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gold-bright);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 18px;
  padding: 0 14px;
  line-height: 1;
  letter-spacing: 3px;
  font-weight: 400;
  background: rgba(0, 0, 0, 0.32);
  box-shadow: inset 0 0 0 1px rgba(255, 215, 145, 0.05),
    0 0 13px rgba(246, 199, 127, 0.08);
}
.cta-button .arrow {
  font-size: 26px;
  line-height: 1;
  font-weight: 300;
  transform: translateY(-2px);
}
/* =========================
       CONTACT SECTION
    ========================== */
.contact-page {
  position: relative;
  padding: 10px 82px 10px;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
}
.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 615px;
  column-gap: 60px;
  align-items: start;
}
/* Left column */
.contact-intro {
  padding-left: 0px;
  padding-top: 40px;
  max-width: 560px;
}
.intro-eyebrow {
  margin: 0 0 14px;
  color: var(--gold-bright);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 3px;
  font-weight: 400;
}
.intro-title {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  color: var(--gold-bright);
  text-transform: uppercase;
  font-size: 58px;
  line-height: 0.98;
  letter-spacing: 1px;
  font-weight: 500;
  text-shadow: 0 0 12px rgba(246, 199, 127, 0.22), 0 4px 0 rgba(96, 51, 24, 0.5);
}
.intro-title.line-gold {
  display: block;
  background: linear-gradient(180deg, #f6cd8a 0%, #dfa960 55%, #b97f3e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 3px 8px rgba(80, 42, 12, 0.55));
}
.intro-line {
  width: 62px;
  height: 2px;
  margin: 30px 0 28px;
  background: var(--gold-bright);
  box-shadow: 0 0 8px rgba(246, 199, 127, 0.45);
}
.intro-text {
  margin: 0;
  max-width: 400px;
  color: var(--muted-white);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 300;
}
.contact-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 0px 0 20px 0;
  max-width: 470px;
  margin-left: 88px;
}

.contact-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border: 1px solid var(--gold-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  box-shadow: inset 0 0 8px rgba(246, 199, 127, 0.1),
    0 0 8px rgba(228, 173, 103, 0.14);
}
.contact-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold-bright);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-label {
  margin: 0 0 5px;
  color: var(--gold-bright);
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 2.4px;
  font-weight: 400;
  line-height: 1;
}
.contact-value {
  margin: 0;
  color: var(--muted-white);
  font-size: 16px;
  line-height: 1.25;
  font-weight: 300;
}

/* Right column - form card */
.contact-card {
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  background: #190904;
  padding: 44px 44px 48px;
  box-shadow: inset 0 0 0 1px rgba(255, 205, 130, 0.04),
    0 0 22px rgba(224, 150, 60, 0.1);
  backdrop-filter: blur(2px);
}
.card-title {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  background: linear-gradient(180deg, #f6cd8a 0%, #dfa960 55%, #b97f3e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
  font-size: 38px;
  line-height: 1;
  letter-spacing: 3px;
  font-weight: 500;
}
.card-title-line {
  width: 70px;
  height: 2px;
  margin: 22px 0 36px;
  background: var(--gold-bright);
  box-shadow: 0 0 8px rgba(246, 199, 127, 0.45);
}
.form-label-custom {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-bright);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 400;
}
.form-control-custom {
  width: 100%;
  height: 52px;
  padding: 0 18px;
  border: 1px solid var(--field-border);
  border-radius: 6px;
  background: rgba(25 9 4);
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 300;
  outline: none;
}
textarea.form-control-custom {
  height: 168px;
  padding: 14px 18px;
  resize: vertical;
  line-height: 1.5;
}
.form-control-custom::placeholder {
  color: var(--placeholder);
}
.form-control-custom:focus {
  border-color: var(--gold-bright);
  box-shadow: 0 0 8px rgba(246, 199, 127, 0.25);
  background: rgba(0, 0, 0, 0.5);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 24px;
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 28px;
}
.form-row .form-group {
  margin-bottom: 0;
}
.send-button {
  width: 420px;
  max-width: 100%;
  height: 62px;
  margin-top: 12px;
  border: 1px solid var(--gold-bright);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  background: rgba(0, 0, 0, 0.3);
  color: var(--gold-bright);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 3px;
  font-weight: 400;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
}
.send-button .arrow {
  font-size: 32px;
  line-height: 1;
  font-weight: 300;
  transform: translateY(-2px);
}
.send-button:hover {
  background: rgba(246, 199, 127, 0.08);
  color: var(--gold-bright);
}

/* =========================
       RESPONSIVE
    ========================== */
/* Büyük Laptop */
@media (max-width: 1440px) {
  .hero {
    padding-left: 40px;
    padding-right: 40px;
  }

  .stat {
    padding: 6px 18px;
    gap: 16px;
  }
  .stat-number {
    font-size: 29px;
  }
  .stat-label {
    font-size: 12px;
    white-space: normal;
  }
}

/* Laptop */
@media (max-width: 1200px) {
  .services-page {
    padding-top: 110px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .services-page {
    padding: 60px 26px 40px;
  }
  .service-panels {
    grid-template-columns: 1fr 1fr;
  }
  .left .panel-list {
    left: 50%;
    transform: translateX(-38%);
  }
  .service-title {
    font-size: 16px;
  }
  .bottom-cta {
    grid-template-columns: 1fr;
    gap: 22px;
    justify-items: center;
  }
  .ornament {
    width: 100%;
    min-width: 0;
    max-width: 520px;
  }
  .ornament.right {
    display: none;
  }
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 56px;
	column-gap: 10px;
  }
      .intro-title {
        font-size: clamp(28px, 13vw, 58px);
    }
}

/* Mobil */
@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 0px 0px;
  }
  .site-header .container {
    display: unset;
    max-width: unset;
    width: unset;
    padding: 0px 0px;
  }
  .brand {
    gap: 12px;
  }
  .brand-logo {
    width: 82px;
    height: 58px;
  }
  .brand-logo img {
    width: 100%;
    height: 100%;
  }
  .brand-name {
    font-size: 29px;
    letter-spacing: 5px;
  }
  .brand-subtitle {
    margin-top: 7px;
    font-size: 10px;
    letter-spacing: 4px;
  }
  .main-nav {
    padding-top: 15px;
  }
  .main-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 12px;
  }
  .main-nav a {
    padding: 9px 14px;
    font-size: 13px;
    letter-spacing: 1.2px;
  }
  .main-nav a.active::after {
    left: 14px;
    right: 14px;
    bottom: -6px;
  }
  .nav-separator {
    height: 22px;
  }
  .hero {
    padding: 5px 22px 0;
  }
  .hero-eyebrow {
    font-size: 14px;
    letter-spacing: 1px;
  }
  .hero-title {
    font-size: 32px;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero-cta {
    width: 100%;
    max-width: 340px;
    min-width: 0;
  }
  .stats-bar {
    padding: 20px 10px;
  }
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .stat::after {
    display: none !important;
  }
  .stat {
    padding: 0;
  }
  .features {
    min-height: auto;
  }
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
    padding: 18px 8px 20px;
    gap: 0;
  }
  .feature {
    min-height: auto;
    padding: 0 8px;
  }
  .feature:not(:last-child)::after {
    height: 120px;
    top: 10px;
  }
  .feature-icon-wrap {
    width: 52px;
    height: 52px;
    margin-bottom: 10px;
  }
  .feature img {
    width: 28px;
    height: 28px;
  }
  .feature-title {
    font-size: 13px;
    line-height: 1.3;
    margin-bottom: 8px;
  }
  .feature-text {
    font-size: 11px;
    line-height: 1.35;
    max-width: 100%;
  }
  .contact-page {
    padding: 36px 20px 64px;
  }
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 56px;
  }
  .intro-eyebrow {
    font-size: 16px;
    letter-spacing: 2.4px;
  }
  .intro-title {
    font-size: clamp(28px, 13vw, 58px);
  }
  .intro-text {
    font-size: 18px;
  }
  .contact-item {
    gap: 18px;
    padding: 16px 0;
  }
  .contact-icon {
    width: 48px;
    height: 48px;
  }
  .contact-icon svg {
    width: 24px;
    height: 24px;
  }
  .contact-label {
    font-size: 15px;
    letter-spacing: 2px;
  }
  .contact-value {
    font-size: 16px;
  }
  .contact-card {
    padding: 34px 24px 40px;
    border-radius: 18px;
  }
  .card-title {
    font-size: 32px;
  }
  .card-title-line {
    margin: 18px 0 28px;
  }
  .form-row {
    grid-template-columns: 1fr;
    row-gap: 24px;
    margin-bottom: 24px;
  }
  .form-group {
    margin-bottom: 24px;
  }
  .form-label-custom {
    font-size: 15px;
  }
  .send-button {
    width: 100%;
    height: 58px;
    gap: 26px;
    font-size: 17px;
    letter-spacing: 2.4px;
  }
  .send-button .arrow {
    font-size: 28px;
  }
}

/* Küçük Mobil */
@media (max-width: 576px) {
  .main-nav {
    padding-top: 10px;
  }
  .main-nav a {
    font-size: 12px;
    padding: 9px 10px;
  }
  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0px;
  }
  .hero-title {
    font-size: 28px;
  }
  .hero-description {
    max-width: 270px;
    font-size: 12px;
  }
  .hero {
    padding: 15px 22px 10px;
    min-height: unset;
  }
  .hero-cta {
    width: auto;
    font-size: 12px;
    height: 50px;
    line-height: 1;
    letter-spacing: 1px;
  }
  .stats-bar {
    padding: 15px 5px;
  }
  .stat {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8px 2px;
    gap: 8px;
  }
  .stat-icon {
    width: 42px;
    height: 42px;
  }
  .stat-icon img {
    width: 22px;
    height: 22px;
  }
  .stat-number {
    font-size: 18px;
  }
  .stat-label {
    font-size: 9px;
    line-height: 1.2;
    min-height: 20px;
  }
  .about-page.hero.container {
    /* margin: 0; */
    display: flex;
    /* padding: 4% 40px; */
    align-content: center;
    align-items: center;
  }
  .features-grid {
    padding: 15px 4px;
  }

  .feature {
    padding: 0 3px;
    border-bottom: none;
  }

  .feature-icon-wrap {
    width: 42px;
    height: 42px;
    margin-bottom: 8px;
  }

  .feature img {
    width: 22px;
    height: 22px;
  }

  .feature-title {
    font-size: 10px;
    line-height: 1.2;
    margin-bottom: 6px;
  }

  .feature-text {
    font-size: 8px;
    line-height: 1.2;
  }

  .feature:not(:last-child)::after {
    height: 95px;
  }
  .services-page {
    padding: 22px 9px 9px;
  }
  .service-panel {
    min-height: 257px;
  }
  .service-panels {
    grid-template-columns: 1fr 1fr;
  }
  .panel-list {
    top: 25px;
    grid-template-columns: 66px 1fr;
  }
  .service-icon-column {
    gap: 28px;
  }
  .dot-1 {
    top: 61px;
  }
  .dot-2 {
    top: 139px;
  }
  .service-icon {
    width: 50px;
    height: 50px;
  }
  .service-icon img {
    width: 42px;
    height: 42px;
  }
  /* .left .panel-list{ */
  /* left: 50%; */
  /* transform: translateX(-38%); */
  /* } */
  .service-texts {
    gap: 28px;
  }
  .service-title {
    font-size: 14px;
    min-height: 50px;
    font-weight: 200;
  }

  .right .service-title {
    min-height: 50px;
  }
  .bottom-cta {
    gap: 8px;
  }
  .bottom-cta img {
    height: 48px;
  }
  .cta-button {
    width: 100%;
    max-width: 460px;
    height: 58px;
    gap: 5px;
    font-size: 16px;
    letter-spacing: 1px;
  }
  .cta-button .arrow {
    font-size: 24px;
  }
  .service-panels {
    grid-template-columns: 1fr;
  }
  .left .panel-list {
    left: unset;
    transform: none;
    right: 15px;
  }
  .right .panel-list {
    left: 20px;
  }
  .contact-page {
    padding: 15px 15px 15px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
  .intro-title {
    font-size: 32px;
  }
  .intro-eyebrow {
    font-size: 14px;
    letter-spacing: 2.4px;
  }
  .intro-text {
    font-size: 16px;
  }
  .contact-list {
    margin-top: 15px;
  }
  .contact-item {
    gap: 20px;
    padding: 0px 0 20px 0;
    margin-left: 28px;
  }
}

/* Çok Küçük Mobil */
@media (max-width: 375px) {
  .main-nav a {
    font-size: 12px;
    padding: 9px 10px;
  }
  .hero {
    padding: 15px 22px 10px;
    min-height: unset;
  }
  .hero-title {
    font-size: 24px;
  }
  .hero-description {
    max-width: 205px;
    font-size: 9px;
  }
  .left .panel-list {
    left: unset;
    transform: none;
    right: 15px;
  }
  .right .panel-list {
    left: 20px;
  }
  .intro-title {
    font-size: 28px;
  }
}


/* Uyarı Mesajı */
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px; }
  .alert h4 {
    margin-top: 0;
    color: inherit; }
  .alert .alert-link {
    font-weight: bold; }
  .alert > p,
  .alert > ul {
    margin-bottom: 0; }
  .alert > p + p {
    margin-top: 5px; }
.alert-dismissable,
.alert-dismissible {
  padding-right: 35px; }
  .alert-dismissable .close,
  .alert-dismissible .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit; }
.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d; }
  .alert-success hr {
    border-top-color: #c9e2b3; }
  .alert-success .alert-link {
    color: #2b542c; }
.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f; }
  .alert-info hr {
    border-top-color: #a6e1ec; }
  .alert-info .alert-link {
    color: #245269; }
.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b; }
  .alert-warning hr {
    border-top-color: #f7e1b5; }
  .alert-warning .alert-link {
    color: #66512c; }
.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442; }
  .alert-danger hr {
    border-top-color: #e4b9c0; }
  .alert-danger .alert-link {
    color: #843534; }