@charset "UTF-8";

/* Fonts */
:root {
  --default-font: "Poppins",  sans-serif;
  --heading-font: "Poppins",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
  
}

:root { 
  --background-color: #ffffff; 
  --default-color: #666666;
  --heading-color: #000000;
  --accent-color: #313131; 
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

:root {
  --nav-color: #999999;
  --nav-hover-color: #000000;
  --nav-mobile-background-color: #ffffff; 
  --nav-dropdown-background-color: #ffffff; 
  --nav-dropdown-color: #666666;
  --nav-dropdown-hover-color: #313131; 
}

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #e3e3e3;
  --heading-color: #ffffff;
  --accent-color: #bdb5b5;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
/* =========================
   HEADER BASE
========================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 997;

  padding: 18px 0;
  background: transparent;

  transition: all 0.35s ease;
}

/* =========================
   HEADER OVERLAY (ilk hali)
========================= */
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.25) 35%,
    rgba(0, 0, 0, 0.1) 70%,
    transparent 100%
  );

  transition: all 0.35s ease;
}

/* içerik üstte */
.header .container,
.header .container-fluid,
.header .container-xl {
  position: relative;
  z-index: 2;
}

/* =========================
   SCROLL OLUNCA (ASIL OLAY BURASI 🔥)
========================= */
.header.scrolled {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  padding: 12px 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

/* overlay'i azalt */
.header.scrolled::before {
  opacity: 0;
}

.logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 140px;   /* logona göre ayarla */
  height: 42px;   /* logona göre ayarla */
}

.logo-img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 38px;
  width: auto;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

/* ilk durumda açık logo görünsün */
.logo-light {
  opacity: 1;
  visibility: visible;
}

/* koyu logo gizli */
.logo-dark {
  opacity: 0;
  visibility: hidden;
}

/* scroll olunca değiştir */
.header.scrolled .logo-light {
  opacity: 0;
  visibility: hidden;
}

.header.scrolled .logo-dark {
  opacity: 1;
  visibility: visible;
}

.header .logo {
  line-height: 1;
  position: relative;
  z-index: 1002;
  text-decoration: none;
}

.logo-img {
  height: 38px;
  width: auto;
  display: block;
  transition: all 0.3s ease;
}


.header .logo h1,
.header .sitename {
  font-size: 25px;
  margin: 0;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: -0.03em;
  transition: color 0.3s ease;
}

.header .logo span,
.header .sitename span {
  font-weight: 200;
}

#header {
  transition: transform 0.35s ease;
}

.hide-header {
  transform: translateY(-100%);
}

.scrolled .header {
  background: rgb(255, 255, 255);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
  padding: 14px 0;
}

.scrolled .header::before {
  opacity: 0;
}

.scrolled .header .logo h1,
.scrolled .header .sitename {
  color: #1f1f1f;
}

@media (max-width: 1199.98px) {
  .header {
    padding: 14px 0;
  }

  .header .logo h1,
  .header .sitename {
    font-size: 22px;
  }
}

@media (max-width: 767.98px) {
  .header {
    padding: 12px 0;
  }

  .header .logo h1,
  .header .sitename {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
    position: relative;
    z-index: 1001;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu ul > li:not(:first-child)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 22px;
    background: rgba(255, 255, 255, 0.18);
    opacity: 1;
    pointer-events: none;
    transition: background 0.3s ease;
  }

  .scrolled .navmenu ul > li:not(:first-child)::before {
    background: rgba(31, 31, 31, 0.10);
  }

  .navmenu ul > li:not(:first-child) > a,
  .navmenu ul > li:not(:first-child) > a:focus {
    padding-left: 22px;
  }

  .navmenu a,
  .navmenu a:focus {
    color: rgba(255, 255, 255, 0.92);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .scrolled .navmenu a,
  .scrolled .navmenu a:focus {
    color: #1f1f1f;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #ffffff;
  }

  .scrolled .navmenu li:hover > a,
  .scrolled .navmenu .active,
  .scrolled .navmenu .active:focus {
    color: #000000;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.97);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 0;
    z-index: 99;
    min-width: 220px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
  }

  .navmenu .dropdown ul li {
    min-width: 220px;
  }

  .navmenu .dropdown ul a {
    padding: 12px 18px;
    font-size: 14px;
    text-transform: none;
    color: #1f1f1f;
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: #000000;
    background: rgba(0, 0, 0, 0.03);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

  .mobile-nav-toggle {
    display: none !important;
  }
}

/* Mobile */
@media (max-width: 1199px) {
  .header-cta {
    display: none !important;
  }

  .mobile-nav-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
    width: 42px;
    height: 42px;
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1002;
    margin-right: 0;
  }

  .scrolled .mobile-nav-toggle {
    color: #1f1f1f;
  }

  .navmenu {
    padding: 0;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(12, 12, 12, 0.30);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .navmenu > ul {
    display: block !important;
    list-style: none;
    position: absolute;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 85vw);
    padding: 84px 18px 18px 18px;
    margin: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.98);
    overflow-y: auto;
    transform: translateX(110%);
    transition: transform 0.35s ease;
    z-index: 1001;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.12);
  }

  .navmenu ul li {
    display: block !important;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }

  .navmenu ul li:last-child {
    border-bottom: none;
  }

  .navmenu ul > li:not(:first-child)::before {
    display: none !important;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #1f1f1f !important;
    padding: 16px 14px;
    font-family: var(--nav-font);
    font-size: 18px;
    font-weight: 300;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    text-decoration: none;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    flex-shrink: 0;
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static !important;
    display: none !important;
    z-index: 99;
    padding: 8px 0;
    margin: 0 0 12px 0;
    background: rgba(245, 245, 245, 0.96);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: none;
    transition: all 0.35s ease-in-out;
    border-radius: 8px;
    opacity: 1 !important;
    visibility: visible !important;
    min-width: 100%;
    top: auto !important;
    left: auto !important;
  }

  .navmenu .dropdown ul li {
    min-width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .navmenu .dropdown ul li:last-child {
    border-bottom: none;
  }

  .navmenu .dropdown ul a {
    font-size: 15px;
    padding: 13px 16px;
    color: #1f1f1f !important;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.06);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block !important;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navmenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-nav-active .navmenu > ul {
    transform: translateX(0);
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #1f1f1f;
    position: fixed;
    font-size: 32px;
    top: 18px;
    right: 18px;
    z-index: 1003;
  }
}

/*--------------------------------------------------------------
# Header CTA Button
--------------------------------------------------------------*/
.header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 136px;
  height: 46px;
  padding: 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.header-btn:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.70);
  color: #ffffff;
  transform: translateY(-1px);
}

.scrolled .header-btn {
  color: #1f1f1f;
  border-color: rgba(31, 31, 31, 0.16);
  background: rgba(255, 255, 255, 0.34);
}

.scrolled .header-btn:hover {
  background: rgba(31, 31, 31, 0.04);
  border-color: rgba(31, 31, 31, 0.28);
  color: #000000;
}


/*--------------------------------------------------------------
# Taşmahal Stone / Light Luxury Footer
--------------------------------------------------------------*/
.footer-stone-light {
  --stone-bg-1: #ebe7e1;
  --stone-bg-2: #dfd8d0;
  --stone-surface: rgba(255, 255, 255, 0.34);
  --stone-border: rgba(56, 49, 43, 0.10);
  --stone-border-soft: rgba(56, 49, 43, 0.06);
  --stone-heading: #2f2a26;
  --stone-text: rgba(47, 42, 38, 0.74);
  --stone-muted: rgba(47, 42, 38, 0.52);
  --stone-link: rgba(47, 42, 38, 0.78);
  --stone-hover: #171513;

  position: relative;
  overflow: hidden;
  color: var(--stone-text);
  background:
    radial-gradient(circle at 15% 18%, rgba(255,255,255,0.58), transparent 22%),
    radial-gradient(circle at 84% 76%, rgba(255,255,255,0.24), transparent 20%),
    linear-gradient(180deg, var(--stone-bg-1) 0%, var(--stone-bg-2) 100%);
}

.footer-stone-light::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.14), transparent 26%),
    linear-gradient(0deg, rgba(255,255,255,0.10), rgba(255,255,255,0.02));
  pointer-events: none;
}

.footer-stone-light::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1180px, calc(100% - 24px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(56, 49, 43, 0.05) 18%,
    rgba(56, 49, 43, 0.18) 50%,
    rgba(56, 49, 43, 0.05) 82%,
    transparent 100%
  );
}

.footer-stone-light .footer-top {
  position: relative;
  z-index: 2;
  padding: 95px 0 54px;
}

.footer-stone-light .footer-about {
  padding-right: 44px;
}

.footer-stone-light .logo {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 24px;
  position: relative;
}

.footer-stone-light .logo::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 62px;
  height: 1px;
  background: linear-gradient(90deg, rgba(47,42,38,0.28), transparent);
}

.footer-stone-light .brand-main {
  color: var(--stone-heading);
  font-family: var(--heading-font);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-stone-light .brand-sub {
  color: rgba(47, 42, 38, 0.52);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.footer-stone-light .footer-desc {
  max-width: 445px;
  margin: 34px 0 30px;
  color: var(--stone-text);
  font-size: 14px;
  line-height: 2.05;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.footer-stone-light .social-links {
  display: flex;
  gap: 10px;
}

.footer-stone-light .social-links a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 50%;
  color: rgba(47, 42, 38, 0.74);
  border: 1px solid rgba(47, 42, 38, 0.10);
  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  transition: all 0.32s ease;
}

.footer-stone-light .social-links a:hover {
  transform: translateY(-2px);
  color: var(--stone-hover);
  background: rgba(255, 255, 255, 0.52);
  border-color: rgba(47, 42, 38, 0.18);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

.footer-stone-light h4 {
  position: relative;
  margin-bottom: 22px;
  padding-bottom: 13px;
  color: var(--stone-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
}

.footer-stone-light h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, rgba(47,42,38,0.24), transparent);
}

.footer-stone-light .footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-stone-light .footer-links ul li {
  margin-bottom: 14px;
}

.footer-stone-light .footer-links ul li:last-child {
  margin-bottom: 0;
}

.footer-stone-light .footer-links ul a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: var(--stone-link);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  transition: all 0.28s ease;
}

.footer-stone-light .footer-links ul a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: rgba(47, 42, 38, 0.32);
  transition: width 0.28s ease;
}

.footer-stone-light .footer-links ul a:hover {
  color: var(--stone-hover);
}

.footer-stone-light .footer-links ul a:hover::after {
  width: 100%;
}

.footer-stone-light .footer-contact p {
  margin-bottom: 10px;
  color: var(--stone-text);
  font-size: 14px;
  line-height: 1.9;
  font-weight: 300;
}

.footer-stone-light .footer-contact strong {
  display: inline-block;
  min-width: 18px;
  margin-right: 12px;
  color: var(--stone-heading);
  font-weight: 500;
}

.footer-stone-light .footer-contact span {
  color: var(--stone-text);
}

.footer-stone-light .footer-bottom {
  position: relative;
  z-index: 2;
  margin-top: 26px;
  padding: 26px 0 34px;
  border-top: 1px solid var(--stone-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-stone-light .footer-bottom p,
.footer-stone-light .footer-bottom .credits {
  margin: 0;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--stone-muted);
}

.footer-stone-light .footer-bottom p span {
  color: var(--stone-heading);
  font-weight: 500;
}

.footer-stone-light .footer-bottom .credits a {
  color: var(--stone-heading);
  text-decoration: none;
  position: relative;
}

.footer-stone-light .footer-bottom .credits a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: rgba(47, 42, 38, 0.20);
  transition: background 0.28s ease;
}

.footer-stone-light .footer-bottom .credits a:hover::after {
  background: rgba(47, 42, 38, 0.42);
}

@media (max-width: 1199.98px) {
  .footer-stone-light .footer-about {
    padding-right: 18px;
  }
}

@media (max-width: 991.98px) {
  .footer-stone-light .footer-top {
    padding: 76px 0 40px;
  }

  .footer-stone-light .footer-about {
    padding-right: 0;
  }

  .footer-stone-light .footer-desc {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .footer-stone-light .footer-top {
    padding: 58px 0 24px;
  }

  .footer-stone-light .brand-main {
    font-size: 25px;
    letter-spacing: 0.06em;
  }

  .footer-stone-light .brand-sub {
    font-size: 10px;
    letter-spacing: 0.22em;
  }

  .footer-stone-light .footer-desc {
    margin: 30px 0 24px;
    font-size: 13px;
    line-height: 1.95;
  }

  .footer-stone-light h4 {
    margin-bottom: 18px;
    padding-bottom: 12px;
  }

  .footer-stone-light .footer-links ul li {
    margin-bottom: 12px;
  }

  .footer-stone-light .footer-bottom {
    margin-top: 16px;
    padding: 18px 0 24px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}


/*--------------------------------------------------------------
# Global Footer / Taşmahal Stone
# Mevcut HTML yapısına sadık, sadece stil yenilenmiş hal
--------------------------------------------------------------*/
.footer {
  --footer-bg: #fafafa;
  --footer-bg-soft: #fafafa;
  --footer-line: rgba(45, 39, 34, 0.14);
  --footer-line-soft: rgba(45, 39, 34, 0.08);
  --footer-heading: #26211d;
  --footer-text: rgba(38, 33, 29, 0.76);
  --footer-muted: rgba(38, 33, 29, 0.54);
  --footer-link: rgba(38, 33, 29, 0.76);
  --footer-hover: #161310;

  color: var(--footer-text);
  background: linear-gradient(180deg, var(--footer-bg-soft) 0%, var(--footer-bg) 100%);
  font-size: 14px;
  padding-bottom: 0;
  position: relative;
}

/* tam genişlik üst çizgi */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--footer-line);
}

.footer .footer-top {
  padding-top: 78px;
  padding-bottom: 12px;
  border-top: 0;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 26px;
  text-decoration: none;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 8px;
}

.footer .footer-about .logo .sitename {
  margin: 0;
  color: var(--footer-heading);
  font-size: 30px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-family: var(--default-font);
}

.footer .footer-about .logo .sitename span {
  font-weight: 300;
  opacity: 0.72;
}

.footer .footer-about p {
  max-width: 440px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.95;
  font-weight: 300;
  color: var(--footer-text);
  font-family: var(--default-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 0;
  border: 1px solid var(--footer-line);
  font-size: 15px;
  color: var(--footer-link);
  margin-right: 10px;
  text-decoration: none;
  background: transparent;
  transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.footer .social-links a:last-child {
  margin-right: 0;
}

.footer .social-links a:hover {
  color: var(--footer-hover);
  border-color: rgba(38, 33, 29, 0.24);
  background: rgba(255, 255, 255, 0.16);
}

.footer h4 {
  color: var(--footer-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--footer-line);
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  display: none;
}

.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: var(--footer-link);
  display: inline-block;
  line-height: 1.6;
  text-decoration: none;
  font-weight: 300;
  transition: color 0.25s ease;
}

.footer .footer-links ul a:hover {
  color: var(--footer-hover);
}

.footer .footer-contact p {
  margin-bottom: 6px;
  color: var(--footer-text);
  line-height: 1.8;
  font-weight: 300;
}

.footer .footer-contact p strong {
  color: var(--footer-heading);
  font-weight: 500;
}

.footer .copyright {
  display: none;
}

.footer .credits {
  margin-top: 0;
  font-size: 13px;
}

.footer .footer-bottom {
  margin-top: 34px;
  padding: 24px 0;
  border-top: 1px solid var(--footer-line);
  background-color: transparent;
}

.footer .footer-bottom .footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer .footer-bottom .footer-bottom-content p {
  margin: 0;
  color: var(--footer-muted);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.footer .footer-bottom .footer-bottom-content p strong,
.footer .footer-bottom .footer-bottom-content p .sitename {
  color: var(--footer-heading);
  font-weight: 500;
}

.footer .footer-bottom .footer-bottom-content .credits {
  font-size: 13px;
  color: var(--footer-muted);
  font-weight: 300;
}

.footer .footer-bottom .footer-bottom-content .credits a {
  color: var(--footer-heading);
  text-decoration: none;
  font-weight: 400;
  transition: opacity 0.25s ease;
}

.footer .footer-bottom .footer-bottom-content .credits a:hover {
  opacity: 0.72;
  text-decoration: none;
}

@media (max-width: 991.98px) {
  .footer .footer-top {
    padding-top: 64px;
  }

  .footer .footer-about {
    margin-bottom: 8px;
  }

  .footer .footer-about p {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer .footer-bottom .footer-bottom-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .footer {
    font-size: 13px;
  }

  .footer .footer-top {
    padding-top: 54px;
    padding-bottom: 4px;
  }

  .footer .footer-about .logo {
    margin-bottom: 22px;
  }

  .footer .footer-about .logo .sitename {
    font-size: 24px;
    letter-spacing: 0.06em;
  }

  .footer .footer-about p {
    font-size: 13px;
    line-height: 1.9;
  }

  .footer h4 {
    font-size: 11px;
    letter-spacing: 0.16em;
    padding-bottom: 12px;
    margin-bottom: 16px;
  }

  .footer .footer-links ul li {
    padding: 7px 0;
  }

  .footer .social-links a {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .footer .footer-bottom {
    margin-top: 22px;
    padding: 18px 0 22px;
  }

  .footer .footer-bottom .footer-bottom-content p,
  .footer .footer-bottom .footer-bottom-content .credits {
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  text-align: center;
  padding: 40px 0 20px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .breadcrumbs {
  margin-bottom: 1.5rem;
}

.page-title .breadcrumbs .breadcrumb {
  justify-content: center;
  margin: 0;
  padding: 0;
  background: none;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item.active {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a:hover {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a i {
  font-size: 0.9rem;
  margin-right: 0.2rem;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title .title-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 0;
}

.page-title .title-wrapper h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 400;
  color: var(--heading-color);
}

.page-title .title-wrapper p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-title .title-wrapper h1 {
    font-size: 2rem;
  }

  .page-title .title-wrapper p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .page-title .title-wrapper h1 {
    font-size: 1.75rem;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 87px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
/* SECTION TITLE */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

/* BAŞLIK (AYNI KALDI) */
.section-title h2 {
  font-size: 2rem;
  color: #565a5d;
  margin: 0 0 18px;
}

/* ANA ÇİZGİ */
.section-title .section-line {
  position: relative;
  width: 100%;
  max-width: 360px;
  height: 1px;
  background: #565a5d;
  margin: 0 auto;
}

/* ORTA BLOK (KESKİN VURGU) */
.section-title .section-line::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 90px;
  height: 3px;
  background: #565a5d;
  transform: translate(-50%, -50%);
}

@media (max-width: 576px) {

  .section-title .section-line {
    max-width: 200px;
    height: 1px;
    background: #565a5d;
    position: relative;
  }

  .section-title .section-line::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0px; /* 👉 kritik fix */
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: #565a5d;
  }

}

/* =========================
   Ana Sayfa Ürünler
========================= */

.home-products-showcase {
  padding: 68px 0;
  background: #ffffff;
  overflow: hidden;
}

.home-products-showcase .container-fluid {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.products-showcase-shell {
  position: relative;
  width: 100%;
  padding: 0 44px;
}

.products-showcase-viewport {
  width: 100%;
  overflow: hidden;
}

.products-showcase-track {
  display: flex;
  align-items: stretch;
  gap: 18px;
  width: max-content;
  will-change: transform;
}

.product-showcase-card {
  position: relative;
  flex: 0 0 320px;
  width: 320px;
  overflow: hidden;
  background: #f4f4f2;
}

.product-showcase-image {
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.product-showcase-card img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.product-showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.60) 0%,
    rgba(0, 0, 0, 0.22) 30%,
    rgba(0, 0, 0, 0.06) 56%,
    rgba(0, 0, 0, 0) 78%
  );
}

.product-showcase-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 3;
}

.product-showcase-category {
  display: inline-block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 10px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-showcase-overlay h3 {
  position: relative;
  margin: 0;
  padding-bottom: 11px;
  color: #ffffff;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.product-showcase-overlay h3::after {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  margin-top: 9px;
  background: rgba(255, 255, 255, 0.72);
}

.product-showcase-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.96);
  text-decoration: none;
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-showcase-link::after {
  content: "";
  width: 14px;
  height: 1px;
  background: currentColor;
  opacity: 0.85;
  transition: width 0.3s ease;
}

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

.product-showcase-card:hover .product-showcase-link {
  transform: translateX(2px);
}

.product-showcase-card:hover .product-showcase-link::after {
  width: 18px;
}

.products-showcase-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  width: 40px;
  height: 40px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.92);
  color: #383838;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.products-showcase-arrow:hover {
  background: #ffffff;
  color: #111111;
}

.products-showcase-prev {
  left: 0;
}

.products-showcase-next {
  right: 0;
}

.products-showcase-arrow i {
  font-size: 18px;
  line-height: 1;
}

@media (min-width: 768px) {
  .products-showcase-viewport {
    cursor: grab;
  }

  .products-showcase-viewport.is-grabbing {
    cursor: grabbing;
  }
}

@media (max-width: 1199.98px) {
  .products-showcase-shell {
    padding: 0 36px;
  }

  .product-showcase-card {
    flex: 0 0 300px;
    width: 300px;
  }

  .product-showcase-card img {
    height: 210px;
  }
}

@media (max-width: 991.98px) {
  .home-products-showcase {
    padding: 58px 0;
  }

  .products-showcase-shell {
    padding: 0 30px;
  }

  .products-showcase-track {
    gap: 16px;
  }

  .product-showcase-card {
    flex: 0 0 280px;
    width: 280px;
  }

  .product-showcase-card img {
    height: 198px;
  }

  .product-showcase-overlay h3 {
    font-size: 18px;
  }
}

@media (max-width: 767.98px) {
  .home-products-showcase {
    padding: 50px 0;
  }

  .home-products-showcase .container-fluid {
    padding-left: 14px;
    padding-right: 14px;
  }

  .products-showcase-shell {
    padding: 0;
  }

  .products-showcase-viewport {
    overflow-x: auto !important;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    cursor: grab;
  }

  .products-showcase-viewport:active {
    cursor: grabbing;
  }

  .products-showcase-viewport::-webkit-scrollbar {
    display: none;
  }

  .products-showcase-track {
    gap: 14px;
    width: max-content;
  }

  .product-showcase-card {
    flex: 0 0 260px;
    width: 260px;
    scroll-snap-align: start;
  }

  .product-showcase-card img {
    height: 190px;
  }

  .product-showcase-overlay {
    left: 16px;
    right: 16px;
    bottom: 14px;
  }

  .product-showcase-category {
    margin-bottom: 7px;
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .product-showcase-overlay h3 {
    font-size: 17px;
    font-weight: 600;
    padding-bottom: 10px;
  }

  .product-showcase-overlay h3::after {
    width: 32px;
    margin-top: 8px;
    background: rgba(255, 255, 255, 0.68);
  }

  .product-showcase-link {
    font-size: 9px;
    letter-spacing: 0.11em;
  }

  .product-showcase-link::after {
    width: 12px;
  }

  .products-showcase-arrow {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .home-products-showcase {
    padding: 46px 0;
  }

  .home-products-showcase .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
  }

  .products-showcase-track {
    gap: 12px;
  }

  .product-showcase-card {
    flex: 0 0 230px;
    width: 230px;
  }

  .product-showcase-card img {
    height: 170px;
  }

  .product-showcase-category {
    margin-bottom: 6px;
    font-size: 8px;
  }

  .product-showcase-overlay h3 {
    font-size: 15px;
    padding-bottom: 8px;
  }

  .product-showcase-overlay h3::after {
    width: 26px;
    margin-top: 6px;
  }

  .product-showcase-link {
    font-size: 8px;
  }
}


/*--------------------------------------------------------------
# Home Portfolio
--------------------------------------------------------------*/
.home-portfolio {
  padding: 96px 0;
  background: #f7f7f5;
  position: relative;
  overflow: hidden;
}

.home-portfolio .container {
  position: relative;
  z-index: 2;
}

.home-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 120px;
  gap: 16px;
}

/* Kart */
.home-portfolio-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-width: 0;
  text-decoration: none;
  background: #d9d9d9;
  isolation: isolate;
}

.home-portfolio-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.85s ease;
  will-change: transform;
}

.home-portfolio-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.52) 0%,
    rgba(0, 0, 0, 0.24) 40%,
    rgba(0, 0, 0, 0.08) 68%,
    rgba(0, 0, 0, 0) 100%
  );
  opacity: 0.94;
  transition: opacity 0.35s ease;
}

.home-portfolio-content {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 2;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.home-portfolio-content h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.22;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.home-portfolio-content span {
  position: relative;
  display: inline-block;
  padding-bottom: 3px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-portfolio-content span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.74);
  transform: scaleX(0.55);
  transform-origin: left;
  transition: transform 0.3s ease;
}

/* Dengeli boyut sistemi */
.card-large {
  grid-row: span 3;
}

.card-medium {
  grid-row: span 2;
}

/* Hover */
@media (hover: hover) and (pointer: fine) {
  .home-portfolio-card:hover img {
    transform: scale(1.07);
  }

  .home-portfolio-card:hover .home-portfolio-content {
    opacity: 1;
    transform: translateY(0);
  }

  .home-portfolio-card:hover .home-portfolio-content span::after {
    transform: scaleX(1);
  }
}

/* Desktop */
@media (min-width: 992px) {
  .home-portfolio-content {
    opacity: 0;
    transform: translateY(14px);
  }
}

/* Tablet */
@media (max-width: 991.98px) {
  .home-portfolio {
    padding: 78px 0;
  }

  .home-portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 110px;
    gap: 14px;
  }

  .card-large {
    grid-row: span 3;
  }

  .card-medium {
    grid-row: span 2;
  }

  .home-portfolio-content {
    left: 18px;
    right: 18px;
    bottom: 18px;
    opacity: 1;
    transform: translateY(0);
  }

  .home-portfolio-content h3 {
    font-size: 18px;
  }

  .home-portfolio-content span {
    font-size: 10px;
    letter-spacing: 0.1em;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .home-portfolio {
    padding: 68px 0;
  }

  .home-portfolio-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: unset;
    gap: 12px;
  }

  .card-large,
  .card-medium {
    grid-row: auto;
    min-height: 240px;
  }

  .card-large {
    min-height: 280px;
  }

  .home-portfolio-content {
    left: 18px;
    right: 18px;
    bottom: 18px;
    opacity: 1;
    transform: translateY(0);
  }

  .home-portfolio-content h3 {
    font-size: 18px;
    line-height: 1.24;
  }

  .home-portfolio-content span {
    font-size: 10px;
    letter-spacing: 0.09em;
  }
}

/* Small Mobile */
@media (max-width: 479.98px) {
  .home-portfolio {
    padding: 60px 0;
  }

  .home-portfolio-grid {
    gap: 10px;
  }

  .card-large,
  .card-medium {
    min-height: 220px;
  }

  .card-large {
    min-height: 255px;
  }

  .home-portfolio-content {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .home-portfolio-content h3 {
    font-size: 17px;
  }

  .home-portfolio-content span {
    font-size: 9.5px;
  }
}

/*--------------------------------------------------------------
# HERO
--------------------------------------------------------------*/
.hero {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  padding: 0;
  margin: 0;
    z-index: 1;

}

/* Background Slider */
.hero .hero-media.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero .hero-cta a {
  position: relative;
  z-index: 20;
}

.hero .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  filter: blur(14px);
  transition:
    opacity 1.6s ease,
    filter 1.8s ease,
    transform 6s ease,
    visibility 1.6s ease;
  will-change: opacity, filter, transform;
}

.hero .hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  filter: blur(0);
  z-index: 1;
}

.hero .hero-slide.prev {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  filter: blur(12px);
  z-index: 0;
}

.hero .hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.92) contrast(0.96) saturate(0.9);
}

/* Soft Luxury Overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(26, 20, 16, 0.42) 0%,
      rgba(26, 20, 16, 0.26) 16%,
      rgba(26, 20, 16, 0.14) 30%,
      rgba(26, 20, 16, 0.05) 46%,
      rgba(26, 20, 16, 0.00) 64%
    ),
    linear-gradient(
      180deg,
      rgba(255,255,255,0.04) 0%,
      rgba(255,255,255,0.00) 40%,
      rgba(0,0,0,0.08) 100%
    );
}




/* Container */
.hero .container {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 90%;
  display: flex;
  align-items: flex-end;
}

/* Layout */
.hero .hero-inner {
  width: 100%;
  display: flex;
  align-items: flex-end;
  height: 100%;
}

/* Content */
.hero .hero-content {
  position: relative;
  z-index: 10;
  max-width: 560px;
  padding-left: 8px;
  padding-bottom: 80px;
}

.hero .hero-content p,
.hero .hero-cta {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.hero::before,
.hero .hero-decor {
  pointer-events: none;
}

/* Title */
.hero .hero-content h1 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
  font-weight: 300;
  margin: 0 0 18px 0;
  color: #fff;
  letter-spacing: -0.02em;
  text-shadow: 0 8px 22px rgba(0,0,0,0.16);
}

.hero .hero-content h1 span {
  font-weight: 200;
  opacity: 0.96;
}

/* Description */
.hero .hero-content p {
  max-width: 52ch;
  margin: 0 0 24px 0;
  color: rgba(255,255,255,0.82);
  font-size: 0.84rem;
  line-height: 1.55;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* CTA */
.hero .hero-cta {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 0;
}

.hero .hero-cta a {
  position: relative;
  z-index: 20;
  min-width: 170px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 0;
}

/* DOT NAVIGATION */
.hero .hero-dots {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 6;

  display: flex;
  gap: 10px;
  align-items: center;
}

/* dot */
.hero .hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

/* active dot */
.hero .hero-dot.active {
  width: 20px;
  border-radius: 10px;
  background: #ffffff;
}

/* hover */
.hero .hero-dot:hover {
  background: rgba(255,255,255,0.7);
}

/* Primary Button */
.hero .hero-cta .btn-primary {
  background: #f4f0e8;
  color: #1c1a17;
  border: 1px solid #f4f0e8;
}

.hero .hero-cta .btn-primary:hover {
  background: #ffffff;
  color: #111;
  border-color: #ffffff;
}

/* Secondary Button */
.hero .hero-cta .btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.65);
}

.hero .hero-cta .btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: #fff;
  color: #fff;
}

/* Responsive */

@media (max-width: 768px) {
  .hero {
    height: 78vh !important;
    min-height: 78vh !important;
    padding: 0 !important;
  }

  .hero .container,
  .hero .container-fluid {
    height: 100%;
  }

  .hero .row {
    height: 100%;
    align-items: flex-start !important;
  }

  .hero .hero-content,
  .hero .content {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }

  .hero h1,
  .hero .hero-title {
    font-size: 2rem !important;
    line-height: 1.1 !important;
    margin-bottom: 16px !important;
  }

  .hero p,
  .hero .hero-description {
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin-bottom: 22px !important;
    max-width: 90%;
  }

  .hero .btn,
  .hero .hero-buttons .btn {
    padding: 12px 22px !important;
    font-size: 13px !important;
  }

  .hero img,
  .hero .hero-bg img,
  .hero .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .hero .swiper,
  .hero .swiper-slide {
    height: 100%;
  }

  .hero .swiper-pagination {
    bottom: 18px !important;
  }

  .hero .swiper-button-prev,
  .hero .swiper-button-next {
    display: none !important;
  }
}

@media (max-width: 576px) {
  .hero {
    height: 72vh !important;
    min-height: 72vh !important;

  }

  .hero .hero-content,
  .hero .content {
    padding-top: 80px !important;
    padding-bottom: 70px !important;
  }

  .hero h1,
  .hero .hero-title {
    font-size: 1.75rem !important;
    line-height: 1.08 !important;
    margin-bottom: 14px !important;
  }

  .hero p,
  .hero .hero-description {
    font-size: 13px !important;
    line-height: 1.45 !important;
    margin-bottom: 18px !important;
    max-width: 95%;
  }

  .hero .btn,
  .hero .hero-buttons .btn {
    padding: 11px 18px !important;
    font-size: 12px !important;
  }

  .hero .swiper-pagination {
    bottom: 14px !important;
  }
}


@media (max-width: 991px) {
  
  .hero .hero-content {
    max-width: 100%;
    padding-bottom: 48px;
  }

  .hero .hero-content h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    line-height: 1.1;
  }

  .hero .hero-content p {
    font-size: 0.78rem;
    max-width: 44ch;
  }

  .hero .hero-cta a {
    min-width: 148px;
    height: 48px;
    font-size: 0.75rem;
    padding: 0 18px;
  }
}

@media (max-width: 576px) {
  .hero .hero-decor {
    background-size: 100px 100px;
    opacity: 0.12;
  }

  .hero .hero-content {
    padding-left: 0;
    padding-bottom: 34px;
  }

  .hero .hero-content h1 {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  .hero .hero-content p {
    font-size: 0.75rem;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }

  .hero .hero-cta {
    width: 100%;
    gap: 10px;
  }

  .hero .hero-cta a {
    flex: 1 1 calc(50% - 5px);
    min-width: unset;
    height: 46px;
    font-size: 0.72rem;
    padding: 0 12px;
  }
}

/* =========================================================
   HERO Blueprint – Yatay & Dikey Açılma Efekti
   ========================================================= */

/* ORTAK */
.hero .hero-decor .bp-line,
.hero .hero-decor .bp-cap{
  stroke: rgba(255,255,255,.6);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

/* =======================
   YATAY ÇİZGİLER
   ======================= */
.hero .hero-decor .bp-line.horizontal,
.hero .hero-decor .bp-cap.horizontal{
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: drawHorizontal 3s cubic-bezier(.22,.61,.36,1) forwards;
}

@keyframes drawHorizontal{
  from { stroke-dashoffset: 1400; }
  to   { stroke-dashoffset: 0; }
}

/* =======================
   DİKEY ÇİZGİLER
   ======================= */
.hero .hero-decor .bp-line.vertical,
.hero .hero-decor .bp-cap.vertical{
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawVertical 3s cubic-bezier(.22,.61,.36,1) forwards;
}

@keyframes drawVertical{
  from { stroke-dashoffset: 1000; }
  to   { stroke-dashoffset: 0; }
}

/* =======================
   SAYILAR
   ======================= */
.hero .hero-decor .bp-text{
  fill: rgb(255, 255, 255);
  font-size: 12px;
  font-weight: 100;

  animation: fadeNumbers 1s ease forwards;
  animation-delay: 1s;
}

@keyframes fadeNumbers{
  to { opacity: 1; }
}


/* CTA - Simple Dark Overlay */
.call-to-action{
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.call-to-action img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0, 0, 0, 0.705);
  z-index:2;
}

.call-to-action .container{
  position:relative;
  z-index:3;
  text-align:center;
}

.call-to-action h3{
  color:#fff;
  font-size:42px;
  font-weight:800;
  margin-bottom:15px;
}

.call-to-action p{
  color:rgba(255,255,255,.85);
  max-width:800px;
  margin:0 auto 45px;
}

.call-to-action .cta-btn{
  padding:14px 36px;
  border-radius:8px;
  border:1px solid #fff;
  color:#fff;
  background:transparent;
  transition:.3s;
}

.call-to-action .cta-btn:hover{
  background:#fff;
  color:#000;
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-top: 120px;
  padding-bottom: 120px;
}

.about .content h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 30px;
  font-family: "Playfair İtalic", serif;
}


@media (max-width: 768px) {
  
  .about .content h2 {
    font-size: 32px;
  }
}

.about .content .lead {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.about .content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.about .stats-row {
  display: flex;
  gap: 40px;
  margin: 60px 0;
}

@media (max-width: 576px) {
  .about .stats-row {
    flex-direction: column;
    gap: 30px;
  }
}

.about .stats-row .stat-item .stat-number {
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  color: var(--accent-color);
  font-family: var(--heading-font);
}

.about .stats-row .stat-item .stat-label {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-top: 8px;
}

.about .cta-section {
  display: flex;
  gap: 20px;
  margin-top: 50px;
}

@media (max-width: 576px) {
  .about .cta-section {
    flex-direction: column;
  }
}

.about .cta-section .btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: transparent;
  color: #1c1a17;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.about .cta-section .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  color: var(--contrast-color);
}

.about .cta-section .btn-outline {
  position: relative;
  overflow: hidden;

  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: transparent;
  color: #000000;
  text-decoration: none;
  border: 1px solid rgba(23, 23, 23, 0.65);
  font-weight: 500;
  transition: all 0.3s ease;
}

/* PARLAMA */
.about .cta-section .btn-outline::after {
  content: "";
  position: absolute;
  left: -50%;
  bottom: 0;
  width: 200%;
  height: 2px;

background: linear-gradient(
  90deg,
  transparent,
  rgba(255, 255, 255, 0.4),
  rgba(200, 200, 200, 0.6),
  rgba(255, 255, 255, 0.4),
  transparent
);

  opacity: 0;
  transition: all 0.4s ease;
}

/* HOVER */
.about .cta-section .btn-outline:hover {
  border-color: #000000;
  color: #000000;
  background: rgba(0, 0, 0, 0.08);
}

/* PARLAMA AKIŞI */
.about .cta-section .btn-outline:hover::after {
  opacity: 1;
  animation: shine-line 1s ease forwards;
}

@keyframes shine-line {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(50%);
  }
}

.about .image-wrapper {
  position: relative;
}

.about .image-wrapper img {
  border-radius: 12px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 90%);
}

.about .image-wrapper {
  position: relative;
  overflow: visible;
}

.about .image-wrapper .floating-card {
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
  z-index: 5;

  width: min(280px, calc(100% - 24px));
  padding: 24px;
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.65);
  border: 1px solid #ffffffa2;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.about .image-wrapper .floating-card .card-content {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.about .image-wrapper .floating-card .card-content .icon {
  width: 60px;
  height: 60px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about .image-wrapper .floating-card .card-content .icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.about .image-wrapper .floating-card .text {
  flex: 1;
  min-width: 0;
}

.about .image-wrapper .floating-card .card-content .text h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: var(--heading-color);
  line-height: 1.3;
  word-break: break-word;
}

.about .image-wrapper .floating-card .card-content .text p {
  font-size: 14px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  word-break: break-word;
}

@media (max-width: 992px) {
  .about .image-wrapper .floating-card {
    bottom: -60px;
    left: 0%;
    width: min(260px, calc(100% - 20px));
    padding: 20px;
  }

  .about .row {
    text-align: left;
  }

  .about .content {
    margin-bottom: 60px;
  }

  .about .stats-row {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .about .image-wrapper .floating-card {
    bottom: -20px;
    width: min(240px, calc(100% - 16px));
    padding: 16px;
    border-radius: 10px;
  }

  .about .image-wrapper .floating-card .card-content {
    gap: 12px;
  }

  .about .image-wrapper .floating-card .card-content .icon {
    width: 50px;
    height: 50px;
  }

  .about .image-wrapper .floating-card .card-content .icon i {
    font-size: 20px;
  }

  .about .image-wrapper .floating-card .card-content .text h4 {
    font-size: 16px;
  }

  .about .image-wrapper .floating-card .card-content .text p {
    font-size: 13px;
    line-height: 1.5;
  }
}

/*--------------------------------------------------------------
# PROJELER Section
--------------------------------------------------------------*/

.stone-collections {
  background: #ffffff;
}

/* HEADER */
.stone-collections-header {
  text-align: center;
  margin-bottom: 24px;
}

.stone-collections-header h2 {
  margin: 0 0 6px;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5a6b7b;
}

.stone-collections-header a {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(90, 107, 123, 0.8);
  transition: opacity 0.3s ease;
}

.stone-collections-header a:hover {
  opacity: 0.7;
}

/* GRID */
.stone-collections-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

/* CARD */
.stone-collection-item {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10; /* 👉 YATAY GÖRÜNÜM */
  overflow: hidden;
  text-decoration: none;
  background: #ddd;
}

/* IMAGE */
.stone-collection-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  transform: scale(1);
  transition: transform 0.4s ease-out;
}

/* OVERLAY */
.stone-collection-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.614) 0%,
    rgba(0, 0, 0, 0.07) 30%,
    rgba(0, 0, 0, 0.02) 55%,
    transparent 75%
  );
}

/* CONTENT */
.stone-collection-content {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 2;
}

.stone-collection-content h3 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
}

.stone-collection-content span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

/* HOVER (PREMIUM) */
.stone-collection-item:hover img {
  transform: scale(1.08);
  transition: transform 10s cubic-bezier(0.19, 1, 0.22, 1);
}

/* TABLET */
@media (max-width: 991.98px) {
  .stone-collection-item {
    aspect-ratio: 16 / 11;
  }

  .stone-collection-content h3 {
    font-size: 20px;
  }
}

/* MOBILE */
@media (max-width: 767.98px) {
  .stone-collections-grid {
    grid-template-columns: 1fr;
  }

  .stone-collections-header h2 {
    font-size: 28px;
  }

  .stone-collection-item {
    aspect-ratio: 16 / 12;
  }
}

/* SMALL MOBILE */
@media (max-width: 575.98px) {
  .stone-collection-content {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .stone-collection-content h3 {
    font-size: 18px;
  }

  .stone-collection-content span {
    font-size: 11px;
  }
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  background-color: color-mix(in srgb, var(--background-color), var(--accent-color) 2%);
}

.services .service-item {
  padding: 60px 40px;
  background-color: var(--surface-color);
  border-radius: 8px;
  transition: all 0.4s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.services .service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease-in-out;
}

.services .service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 90%);
}

.services .service-item:hover::before {
  transform: scaleX(1);
}

.services .service-item:hover .service-icon {
  transform: scale(1.1);
}

.services .service-item:hover .service-link {
  color: var(--accent-color);
}

.services .service-item:hover .service-link i {
  transform: translateX(8px);
}

.services .service-item .service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  transition: transform 0.4s ease-in-out;
  flex-shrink: 0;
}

.services .service-item .service-icon i {
  font-size: 32px;
  color: var(--contrast-color);
}

.services .service-item h3 {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.3;
}

.services .service-item p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 32px;
  flex-grow: 1;
}

.services .service-item .service-link {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease-in-out;
  align-self: flex-start;
}

.services .service-item .service-link i {
  font-size: 16px;
  transition: transform 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .services .service-item {
    padding: 40px 24px;
  }

  .services .service-item .service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
  }

  .services .service-item .service-icon i {
    font-size: 28px;
  }

  .services .service-item h3 {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .services .service-item p {
    font-size: 15px;
    margin-bottom: 24px;
  }
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us {
  padding: 100px 0;
}

.why-us .content {
  margin-bottom: 60px;
}

.why-us .content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 30px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .why-us .content h2 {
    font-size: 2rem;
  }
}

.why-us .content p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.why-us .image-wrapper {
  position: relative;
}

.why-us .image-wrapper img {
  border-radius: 8px;
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  transition: transform 0.4s ease-in-out;
}

.why-us .image-wrapper img:hover {
  transform: translateY(-8px);
}

.why-us .features-grid {
  margin-top: 80px;
}

.why-us .feature-item {
  display: flex;
  gap: 25px;
  padding: 40px 0;
  transition: transform 0.3s ease-in-out;
}

.why-us .feature-item:hover {
  transform: translateY(-5px);
}

.why-us .feature-item:hover .icon-wrapper {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .why-us .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 30px 0;
  }
}

.why-us .icon-wrapper {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 768px) {
  .why-us .icon-wrapper {
    margin: 0 auto;
  }
}

.why-us .feature-content {
  flex: 1;
}

.why-us .feature-content h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .why-us .feature-content h3 {
    font-size: 1.25rem;
  }
}

.why-us .feature-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.why-us .feature-content .lead {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

@media (max-width: 992px) {
  .why-us .content {
    margin-bottom: 40px;
    text-align: center;
  }

  .why-us .features-grid {
    margin-top: 60px;
  }
}

.why-us .cta-section {
  display: flex;
  gap: 20px;
  margin-top: 50px;
}


.why-us .cta-section .btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.why-us .cta-section .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  color: var(--contrast-color);
}

.why-us .cta-section .btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background-color: transparent;
  color: var(--heading-color);
  text-decoration: none;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.why-us .cta-section .btn-outline:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 80px;
  padding: 0;
  list-style: none;
}

@media (max-width: 768px) {
  .portfolio .portfolio-filters {
    margin-bottom: 60px;
    gap: 8px;
  }
}

.portfolio .portfolio-filters li {
  padding: 20px 0;
  margin: 0 40px;
  font-size: 0.95rem;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.4s ease;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  position: relative;

  /* FIX: yazıyı tam ortala */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
}

@media (max-width: 768px) {
  .portfolio .portfolio-filters li {
    margin: 0 20px;
    padding: 16px 0;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .portfolio .portfolio-filters li {
    margin: 0 12px;
    padding: 14px 0;
    font-size: 0.85rem;
  }
}

.portfolio .portfolio-filters li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: var(--accent-color);
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

.portfolio .portfolio-filters li:hover {
  color: var(--default-color);
}

.portfolio .portfolio-filters li:hover::after {
  width: 100%;
}

.portfolio .portfolio-filters li.filter-active {
  color: var(--default-color);
  font-weight: 400;
}

.portfolio .portfolio-filters li.filter-active::after {
  width: 100%;
}

.portfolio .portfolio-card {
  height: 100%;
}

.portfolio .portfolio-card .project-visual {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.portfolio .portfolio-card .project-visual img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

@media (max-width: 768px) {
  .portfolio .portfolio-card .project-visual img {
    height: 250px;
  }
}

.portfolio .portfolio-card .project-visual .project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(54, 144, 231, 0.85), rgba(54, 144, 231, 0.75));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.portfolio .portfolio-card .project-visual .project-overlay .overlay-content {
  display: flex;
  gap: 20px;
}

.portfolio .portfolio-card .project-visual .project-overlay .overlay-content a {
  width: 48px;
  height: 48px;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.portfolio .portfolio-card .project-visual .project-overlay .overlay-content a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.portfolio .portfolio-card .project-visual:hover img {
  transform: scale(1.05);
}

.portfolio .portfolio-card .project-visual:hover .project-overlay {
  opacity: 1;
  visibility: visible;
}

.portfolio .portfolio-card .project-details {
  padding: 20px 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.portfolio .portfolio-card .project-details .project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.portfolio .portfolio-card .project-details .project-header .project-category {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-color);
}

.portfolio .portfolio-card .project-details .project-header .project-year {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-weight: 300;
}

.portfolio .portfolio-card .project-details .project-title {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--heading-color);
  line-height: 1.3;
}

@media (max-width: 768px) {
  .portfolio .portfolio-card .project-details .project-title {
    font-size: 1.35rem;
  }
}

.portfolio .portfolio-card .project-details .project-description {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 30px;
  line-height: 1.7;
  flex-grow: 1;
}

.portfolio .portfolio-card .project-details .project-meta {
  margin-top: auto;
}

.portfolio .portfolio-card .project-details .project-meta .client-name {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--default-color);
  margin-bottom: 16px;
}

.portfolio .portfolio-card .project-details .project-meta .project-scope {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.portfolio .portfolio-card .project-details .project-meta .project-scope .scope-item {
  font-size: 0.8rem;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 6px 0;
  position: relative;
}

.portfolio .portfolio-card .project-details .project-meta .project-scope .scope-item:not(:last-child)::after {
  content: "·";
  position: absolute;
  right: -8px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.portfolio .portfolio-conclusion {
  margin-top: 120px;
  text-align: center;
}

@media (max-width: 768px) {
  .portfolio .portfolio-conclusion {
    margin-top: 80px;
  }
}

.portfolio .portfolio-conclusion .conclusion-content {
  max-width: 600px;
  margin: 0 auto;
}

.portfolio .portfolio-conclusion .conclusion-content h4 {
  font-size: 1.75rem;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .portfolio .portfolio-conclusion .conclusion-content h4 {
    font-size: 1.5rem;
  }
}

.portfolio .portfolio-conclusion .conclusion-content p {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 40px;
  line-height: 1.7;
}

.portfolio .portfolio-conclusion .conclusion-content .conclusion-actions {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

@media (max-width: 576px) {
  .portfolio .portfolio-conclusion .conclusion-content .conclusion-actions {
    flex-direction: column;
    gap: 20px;
  }
}

.portfolio .portfolio-conclusion .conclusion-content .conclusion-actions .primary-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
}

.portfolio .portfolio-conclusion .conclusion-content .conclusion-actions .primary-action i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.portfolio .portfolio-conclusion .conclusion-content .conclusion-actions .primary-action:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-1px);
}

.portfolio .portfolio-conclusion .conclusion-content .conclusion-actions .primary-action:hover i {
  transform: translateX(2px);
}

.portfolio .portfolio-conclusion .conclusion-content .conclusion-actions .secondary-action {
  color: var(--default-color);
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: none;
  position: relative;
}

.portfolio .portfolio-conclusion .conclusion-content .conclusion-actions .secondary-action::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--default-color);
  transition: width 0.3s ease;
}

.portfolio .portfolio-conclusion .conclusion-content .conclusion-actions .secondary-action:hover {
  color: var(--default-color);
}

.portfolio .portfolio-conclusion .conclusion-content .conclusion-actions .secondary-action:hover::after {
  width: 100%;
}

/* ================================
   Portfolio Intro (Top Texts)
   ================================ */
.portfolio-grid-only .portfolio-intro-row {
  margin-top: 18px;
  margin-bottom: 18px;
}

.portfolio-grid-only .portfolio-mini-title {
  font-weight: 900;
  letter-spacing: 0.02em;
  margin: 0 0 10px 0;
  font-size: 42px;
  line-height: 1.05;
  color: var(--heading-color);
}

.portfolio-grid-only .portfolio-mini-text {
  font-style: italic;
  margin: 0;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 360px;
}

.portfolio-grid-only .portfolio-mini-lead {
  margin: 0;
  line-height: 1.95;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
}

/* ================================
   Filters (Underline Fix + Center)
   ================================ */
.portfolio-grid-only .portfolio-filters {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center; /* FIX: desktop ortala */
  gap: 28px;
  padding: 0;
  margin: 18px 0 24px 0;
  list-style: none;

  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
}

@media (max-width: 768px) {
  .portfolio-grid-only .portfolio-filters {
    justify-content: flex-start; /* mobilde scroll doğal */
  }
}

.portfolio-grid-only .portfolio-filters::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.portfolio-grid-only .portfolio-filters li {
  flex: 0 0 auto;
  cursor: pointer;
  padding: 14px 0 16px 0;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  position: relative;
  white-space: nowrap;
  transition: color .2s ease;

  /* FIX: aktif/pasif yazıyı tam ortala */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
}

.portfolio-grid-only .portfolio-filters li:hover {
  color: var(--heading-color);
}

/* Active underline = stabil ve tam ortalı */
.portfolio-grid-only .portfolio-filters li.filter-active {
  color: var(--heading-color);
}

.portfolio-grid-only .portfolio-filters li.filter-active::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%); /* FIX: underline ortalama */
  bottom: -1px;
  height: 3px;
  width: 100%;
  background: var(--accent-color);
  border-radius: 99px;
}

/* ================================
   Grid Thumb (Hover: dark overlay only)
   ================================ */
.portfolio-grid-only .portfolio-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.portfolio-grid-only .portfolio-thumb img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.portfolio-grid-only .portfolio-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.42);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

/* Hover */
.portfolio-grid-only .portfolio-thumb:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.portfolio-grid-only .portfolio-thumb:hover img {
  transform: scale(1.07);
}

.portfolio-grid-only .portfolio-thumb:hover::after {
  opacity: 1;
}

/* Responsive: top title küçült */
@media (max-width: 991px) {
  .portfolio-grid-only .portfolio-mini-title {
    font-size: 34px;
  }
}

@media (max-width: 575px) {
  .portfolio-grid-only .portfolio-mini-title {
    font-size: 30px;
  }
  .portfolio-grid-only .portfolio-thumb img {
    height: 220px;
  }
  .portfolio-grid-only .portfolio-filters {
    gap: 18px;
  }
}


/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  text-align: center;
  margin-bottom: 40px;
  transition: all 0.3s ease-in-out;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 30px;
}

.team .team-member .member-img img {
  transition: all 0.3s ease-in-out;
  width: 100%;
  height: auto;
  filter: grayscale(100%);
}

.team .team-member .member-info h4 {
  font-weight: 300;
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--heading-color);
  line-height: 1.3;
}

.team .team-member .member-info span {
  display: block;
  font-size: 0.9rem;
  color: var(--accent-color);
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.team .team-member .member-info p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 25px;
  padding: 0 10px;
}

.team .team-member .member-info .social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.team .team-member .member-info .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 50%;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}

.team .team-member .member-info .social a:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.team .team-member:hover .member-img img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

@media (max-width: 992px) {
  .team .team-member .member-info h4 {
    font-size: 1.3rem;
  }

  .team .team-member .member-info p {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .team .team-member .member-info h4 {
    font-size: 1.2rem;
  }

  .team .team-member .member-info p {
    padding: 0;
    font-size: 0.85rem;
  }

  .team .team-member .member-info .social {
    gap: 12px;
  }

  .team .team-member .member-info .social a {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  position: relative;
  overflow: hidden;
  /* Swiper Navigation */
  /* Swiper Pagination */
  /* Responsive Styles */
}

.testimonials .testimonial-slider {
  position: relative;
  padding-bottom: 50px;
}

.testimonials .testimonial-slider .swiper-wrapper {
  height: auto !important;
}

.testimonials .testimonial-item {
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 2%) 100%);
  border-radius: 20px;
  padding: 0;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.testimonials .testimonial-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testimonials .testimonial-item:hover {
  border-color: var(--accent-color);
}

.testimonials .testimonial-item:hover::before {
  transform: scaleX(1);
}

.testimonials .testimonial-item:hover .testimonial-header img {
  transform: scale(1.05);
}

.testimonials .testimonial-item:hover .quote-icon {
  color: var(--accent-color);
  transform: scale(1.1);
}

.testimonials .testimonial-header {
  position: relative;
  text-align: center;
  padding: 30px 30px 20px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 0%, var(--surface-color) 100%);
}

.testimonials .testimonial-header img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  margin-bottom: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-header .rating {
  display: flex;
  justify-content: center;
  gap: 3px;
}

.testimonials .testimonial-header .rating i {
  color: #ffc107;
  font-size: 0.9rem;
}

.testimonials .testimonial-body {
  padding: 0 30px 20px;
}

.testimonials .testimonial-body p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  font-style: italic;
  text-align: center;
  position: relative;
}

.testimonials .testimonial-body p::before,
.testimonials .testimonial-body p::after {
  content: '"';
  font-size: 1.5rem;
  color: var(--accent-color);
  opacity: 0.6;
  font-family: serif;
  position: absolute;
}

.testimonials .testimonial-body p::before {
  top: -5px;
  left: -10px;
}

.testimonials .testimonial-body p::after {
  bottom: -20px;
  right: -5px;
}

.testimonials .testimonial-footer {
  padding: 20px 30px 30px;
  text-align: center;
  position: relative;
}

.testimonials .testimonial-footer h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 5px;
}

.testimonials .testimonial-footer span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: block;
  margin-bottom: 15px;
}

.testimonials .testimonial-footer .quote-icon {
  position: absolute;
  bottom: 15px;
  right: 25px;
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.testimonials .swiper-navigation {
  position: relative;
  margin-top: 25px;
  display: flex;
  justify-content: flex-end;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: static;
  width: 45px;
  height: 45px;
  margin: 0 10px;
  background: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  background: color-mix(in srgb, var(--accent-color), var(--heading-color) 20%);
  transform: scale(1.05);
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
  font-size: 16px;
  font-weight: 600;
}

.testimonials .swiper-pagination {
  position: static;
  margin-top: 30px;
  text-align: center;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: color-mix(in srgb, var(--default-color), transparent 70%);
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
  transform: scale(1.2);
}

@media (max-width: 1199px) {
  .testimonials .testimonial-item .testimonial-header {
    padding: 25px 25px 15px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 70px;
    height: 70px;
  }

  .testimonials .testimonial-item .testimonial-body,
  .testimonials .testimonial-item .testimonial-footer {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 991px) {
  .testimonials .testimonial-item {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .testimonials .testimonial-item .testimonial-header {
    padding: 20px 20px 10px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 60px;
    height: 60px;
  }

  .testimonials .testimonial-item .testimonial-header .rating i {
    font-size: 0.8rem;
  }

  .testimonials .testimonial-item .testimonial-body {
    padding: 0 20px 15px;
  }

  .testimonials .testimonial-item .testimonial-body p {
    font-size: 0.95rem;
  }

  .testimonials .testimonial-item .testimonial-footer {
    padding: 15px 20px 20px;
  }

  .testimonials .testimonial-item .testimonial-footer h5 {
    font-size: 1rem;
  }

  .testimonials .testimonial-item .testimonial-footer span {
    font-size: 0.8rem;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 1.3rem;
    bottom: 10px;
    right: 15px;
  }

  .testimonials .swiper-button-prev,
  .testimonials .swiper-button-next {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .testimonials .swiper-button-prev::after,
  .testimonials .swiper-button-next::after {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .testimonials .testimonial-slider {
    padding-bottom: 30px;
  }

  .testimonials .testimonial-item .testimonial-header {
    padding: 15px 15px 10px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 55px;
    height: 55px;
  }

  .testimonials .testimonial-item .testimonial-body {
    padding: 0 15px 10px;
  }

  .testimonials .testimonial-item .testimonial-body p {
    font-size: 0.9rem;
  }

  .testimonials .testimonial-item .testimonial-footer {
    padding: 10px 15px 15px;
  }

  .testimonials .testimonial-item .testimonial-footer h5 {
    font-size: 0.95rem;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 1.2rem;
  }

  .testimonials .swiper-navigation {
    margin-top: 10px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding: 120px 0 100px;
}

.contact .info-item {
  margin-bottom: 80px;
}

.contact .info-item .info-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

.contact .info-item .info-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.contact .info-item .info-content h4 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--heading-color);
  letter-spacing: -0.3px;
}

.contact .info-item .info-content p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

.contact .contact-details .detail-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 48px;
}

.contact .contact-details .detail-item:last-child {
  margin-bottom: 0;
}

.contact .contact-details .detail-item .detail-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .contact-details .detail-item .detail-icon i {
  font-size: 18px;
  color: var(--accent-color);
}

.contact .contact-details .detail-item .detail-content {
  flex: 1;
}

.contact .contact-details .detail-item .detail-content .detail-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.contact .contact-details .detail-item .detail-content .detail-value {
  display: block;
  font-size: 16px;
  color: var(--default-color);
  line-height: 1.6;
}

.contact .form-header {
  margin-bottom: 48px;
}

.contact .form-header h3 {
  font-size: 32px;
  font-weight: 300;
  color: var(--heading-color);
  margin: 0;
  letter-spacing: -0.4px;
}

.contact .form-wrapper {
  padding: 20px 30px;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);

}

.contact .form-wrapper .form-group {
  margin-bottom: 32px;
}

.contact .form-wrapper .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 12px;
  letter-spacing: 0.2px;
}

.contact .form-wrapper .form-group input,
.contact .form-wrapper .form-group select,
.contact .form-wrapper .form-group textarea {
  width: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 15px;
  color: var(--default-color);
  background-color: transparent;
  transition: all 0.3s ease;
  font-family: inherit;
}

.contact .form-wrapper .form-group input:focus,
.contact .form-wrapper .form-group select:focus,
.contact .form-wrapper .form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact .form-wrapper .form-group input::placeholder,
.contact .form-wrapper .form-group select::placeholder,
.contact .form-wrapper .form-group textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.contact .form-wrapper .form-group select {
  cursor: pointer;
}

.contact .form-wrapper .form-group select option {
  padding: 10px;
}

.contact .form-wrapper .form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.contact .form-wrapper .submit-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 8px;
  padding: 18px 36px;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.contact .form-wrapper .submit-btn i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.contact .form-wrapper .submit-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .form-wrapper .submit-btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .contact {
    padding: 80px 0 60px;
  }

  .contact .info-item {
    margin-bottom: 50px;
  }

  .contact .info-item .info-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
  }

  .contact .info-item .info-icon i {
    font-size: 20px;
  }

  .contact .info-item .info-content h4 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .contact .contact-details .detail-item {
    margin-bottom: 32px;
  }

  .contact .form-header {
    margin-bottom: 32px;
  }

  .contact .form-header h3 {
    font-size: 24px;
  }

  .contact .modern-form .form-group {
    margin-bottom: 24px;
  }
}

/* ================================
   Portfolio Grid Only (Clean + Hover)
   ================================ */

.portfolio-grid-only .portfolio-filters {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 25px 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.portfolio-grid-only .portfolio-filters li {
  cursor: pointer;
  padding: 14px 0;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.65);
  position: relative;
  transition: color .2s ease;
}

.portfolio-grid-only .portfolio-filters li:hover {
  color: rgba(0,0,0,0.9);
}

.portfolio-grid-only .portfolio-filters li.filter-active {
  color: rgba(0,0,0,0.95);
}

.portfolio-grid-only .portfolio-filters li::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  height: 3px;
  width: 0;
  background: var(--accent-color);
  border-radius: 99px;
  transform: translateX(-50%);
  transition: width .3s ease;
}

.portfolio-grid-only .portfolio-filters li.filter-active::after {
  width: 60%; /* çizgi yazının ortasında */
}

/* Thumbnail (anchor) */
.portfolio-grid-only .portfolio-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

/* Image */
.portfolio-grid-only .portfolio-thumb img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

/* Dark overlay (NO ICON) */
.portfolio-grid-only .portfolio-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  transition: opacity .25s ease;
  z-index: 2;
  pointer-events: none;
}

/* Hover effect */
.portfolio-grid-only .portfolio-thumb:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.portfolio-grid-only .portfolio-thumb:hover img {
  transform: scale(1.08);
}

.portfolio-grid-only .portfolio-thumb:hover::after {
  opacity: 1;
}

/* Responsive */
@media (max-width: 575px) {
  .portfolio-grid-only .portfolio-thumb img {
    height: 220px;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details {
  padding: 80px 0;
}

.service-details .service-content .service-hero {
  margin-bottom: 60px;
}

.service-details .service-content .service-hero .service-image {
  border-radius: 8px;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.service-details .service-content .service-description {
  margin-bottom: 80px;
}

.service-details .service-content .service-description .service-title {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 1.3;
}

.service-details .service-content .service-description .lead {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 32px;
}

.service-details .service-content .service-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details .service-content .service-features {
  margin-bottom: 80px;
}

.service-details .service-content .service-features h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 40px;
}

.service-details .service-content .service-features .feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.service-details .service-content .service-features .feature-item .feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-details .service-content .service-features .feature-item .feature-icon i {
  font-size: 20px;
  color: var(--accent-color);
}

.service-details .service-content .service-features .feature-item .feature-content h4 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.service-details .service-content .service-features .feature-item .feature-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

.service-details .service-content .service-process h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 40px;
}

.service-details .service-content .service-process .process-timeline .process-step {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
}

.service-details .service-content .service-process .process-timeline .process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 48px;
  width: 2px;
  height: 40px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
}

.service-details .service-content .service-process .process-timeline .process-step .step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 1rem;
}

.service-details .service-content .service-process .process-timeline .process-step .step-content {
  flex: 1;
}

.service-details .service-content .service-process .process-timeline .process-step .step-content h4 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.service-details .service-content .service-process .process-timeline .process-step .step-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

.service-details .service-sidebar .sidebar-widget {
  background-color: var(--surface-color);
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 32px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-sidebar .sidebar-widget h4 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 24px;
}

.service-details .service-sidebar .service-info .service-details-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-details .service-sidebar .service-info .service-details-list li {
  padding: 12px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-details .service-sidebar .service-info .service-details-list li:last-child {
  border-bottom: none;
}

.service-details .service-sidebar .service-info .service-details-list li strong {
  color: var(--heading-color);
  font-weight: 500;
}

.service-details .service-sidebar .related-services .related-service-list .related-service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-details .service-sidebar .related-services .related-service-list .related-service-item:last-child {
  border-bottom: none;
}

.service-details .service-sidebar .related-services .related-service-list .related-service-item:hover {
  color: var(--accent-color);
  transform: translateX(4px);
}

.service-details .service-sidebar .related-services .related-service-list .related-service-item i {
  font-size: 16px;
  width: 20px;
}

.service-details .service-sidebar .related-services .related-service-list .related-service-item span {
  font-size: 0.95rem;
}

.service-details .service-sidebar .cta-widget {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  color: var(--contrast-color);
}

.service-details .service-sidebar .cta-widget .cta-content {
  text-align: center;
}

.service-details .service-sidebar .cta-widget .cta-content h4 {
  color: var(--contrast-color);
  margin-bottom: 16px;
}

.service-details .service-sidebar .cta-widget .cta-content p {
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  margin-bottom: 24px;
  line-height: 1.6;
}

.service-details .service-sidebar .cta-widget .cta-content .btn-cta {
  display: inline-block;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-details .service-sidebar .cta-widget .cta-content .btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px color-mix(in srgb, var(--default-color), transparent 85%);
  color: var(--accent-color);
}

.service-details .service-sidebar .contact-info .contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.service-details .service-sidebar .contact-info .contact-item:last-child {
  margin-bottom: 0;
}

.service-details .service-sidebar .contact-info .contact-item i {
  font-size: 18px;
  color: var(--accent-color);
  width: 24px;
}

.service-details .service-sidebar .contact-info .contact-item div strong {
  display: block;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 4px;
}

.service-details .service-sidebar .contact-info .contact-item div span {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .service-details {
    padding: 60px 0;
  }

  .service-details .service-content .service-hero {
    margin-bottom: 40px;
  }

  .service-details .service-content .service-hero .service-image {
    height: 300px;
  }

  .service-details .service-content .service-description {
    margin-bottom: 60px;
  }

  .service-details .service-content .service-description .service-title {
    font-size: 2rem;
  }

  .service-details .service-content .service-description .lead {
    font-size: 1.1rem;
  }

  .service-details .service-content .service-features,
  .service-details .service-content .service-process {
    margin-bottom: 60px;
  }

  .service-details .service-content .service-features h3,
  .service-details .service-content .service-process h3 {
    font-size: 1.7rem;
  }

  .service-details .service-content .process-timeline .process-step {
    gap: 16px;
  }

  .service-details .service-content .process-timeline .process-step:not(:last-child)::after {
    left: 19px;
  }

  .service-details .service-content .process-timeline .process-step .step-number {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .service-details .service-sidebar {
    margin-top: 40px;
  }

  .service-details .service-sidebar .sidebar-widget {
    padding: 24px;
  }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy .privacy-content {
  font-size: 16px;
  line-height: 1.7;
}

.privacy .privacy-content .last-updated {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 40px;
  border-left: 4px solid var(--accent-color);
}

.privacy .privacy-content .last-updated p {
  margin: 0;
  color: var(--heading-color);
}

.privacy .privacy-content .privacy-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .privacy-section h3 {
  font-size: 28px;
  margin-bottom: 25px;
  color: var(--heading-color);
  position: relative;
  padding-bottom: 15px;
}

.privacy .privacy-content .privacy-section h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.privacy .privacy-content .privacy-section h4 {
  color: var(--heading-color);
  font-size: 22px;
  margin: 30px 0 15px 0;
}

.privacy .privacy-content .privacy-section h5 {
  color: var(--heading-color);
  font-size: 18px;
  margin-bottom: 10px;
}

.privacy .privacy-content .privacy-section p {
  margin-bottom: 20px;
  color: var(--default-color);
}

.privacy .privacy-content .privacy-section ul,
.privacy .privacy-content .privacy-section ol {
  margin: 20px 0;
  padding-left: 30px;
}

.privacy .privacy-content .privacy-section ul li,
.privacy .privacy-content .privacy-section ol li {
  margin-bottom: 10px;
  color: var(--default-color);
}

.privacy .privacy-content .privacy-section .info-box {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  margin: 30px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-content .privacy-section .info-box h4 {
  color: var(--heading-color);
  margin-top: 0;
}

.privacy .privacy-content .privacy-section .highlight-box {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000000 20%));
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  color: var(--contrast-color);
  margin: 40px 0;
}

.privacy .privacy-content .privacy-section .highlight-box i {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.privacy .privacy-content .privacy-section .highlight-box h4 {
  color: var(--contrast-color);
  margin-bottom: 15px;
}

.privacy .privacy-content .privacy-section .highlight-box p {
  color: var(--contrast-color);
  margin: 0;
  opacity: 0.9;
}

.privacy .privacy-content .privacy-section .security-measures {
  margin: 30px 0;
}

.privacy .privacy-content .privacy-section .security-measures .measure-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.privacy .privacy-content .privacy-section .security-measures .measure-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.privacy .privacy-content .privacy-section .security-measures .measure-item i {
  font-size: 36px;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.privacy .privacy-content .privacy-section .security-measures .measure-item h5 {
  margin-bottom: 15px;
}

.privacy .privacy-content .privacy-section .security-measures .measure-item p {
  margin: 0;
  font-size: 14px;
}

.privacy .privacy-content .privacy-section .rights-list {
  margin: 30px 0;
}

.privacy .privacy-content .privacy-section .rights-list .right-item {
  display: flex;
  align-items: flex-start;
  padding: 25px;
  margin-bottom: 20px;
  background: var(--surface-color);
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.privacy .privacy-content .privacy-section .rights-list .right-item:hover {
  border-color: var(--accent-color);
  transform: translateX(5px);
}

.privacy .privacy-content .privacy-section .rights-list .right-item i {
  font-size: 24px;
  color: var(--accent-color);
  margin-right: 20px;
  margin-top: 5px;
  min-width: 24px;
}

.privacy .privacy-content .privacy-section .rights-list .right-item div {
  flex: 1;
}

.privacy .privacy-content .privacy-section .rights-list .right-item div h5 {
  margin-bottom: 10px;
}

.privacy .privacy-content .privacy-section .rights-list .right-item div p {
  margin: 0;
  font-size: 14px;
}

.privacy .privacy-content .privacy-section .cookie-types {
  margin: 30px 0;
}

.privacy .privacy-content .privacy-section .cookie-types h4 {
  margin-bottom: 20px;
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive .table {
  margin: 0;
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive .table thead {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive .table thead th {
  border: none;
  color: var(--heading-color);
  font-weight: 600;
  padding: 15px 20px;
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive .table tbody td {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 15px 20px;
  color: var(--default-color);
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive .table tbody tr:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
}

.privacy .privacy-content .contact-section {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

.privacy .privacy-content .contact-section h3 {
  color: var(--heading-color);
  margin-bottom: 20px;
}

.privacy .privacy-content .contact-section h3:after {
  background: var(--accent-color);
}

.privacy .privacy-content .contact-section .contact-info {
  margin-top: 30px;
}

.privacy .privacy-content .contact-section .contact-info .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.privacy .privacy-content .contact-section .contact-info .contact-item i {
  font-size: 18px;
  color: var(--accent-color);
  margin-right: 15px;
  min-width: 18px;
}

.privacy .privacy-content .contact-section .contact-info .contact-item span {
  color: var(--default-color);
}

@media (max-width: 768px) {
  .privacy .privacy-content {
    font-size: 15px;
  }

  .privacy .privacy-content .privacy-section h3 {
    font-size: 24px;
  }

  .privacy .privacy-content .privacy-section h4 {
    font-size: 20px;
  }

  .privacy .privacy-content .privacy-section .security-measures .row>div {
    margin-bottom: 20px;
  }

  .privacy .privacy-content .privacy-section .rights-list .right-item {
    flex-direction: column;
    text-align: center;
  }

  .privacy .privacy-content .privacy-section .rights-list .right-item i {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 120px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 100%);
}

.error-404 .error-content {
  margin-bottom: 80px;
}

.error-404 .error-content .error-number {
  font-size: 8rem;
  font-weight: 300;
  color: var(--accent-color);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .error-404 .error-content .error-number {
    font-size: 6rem;
  }
}

@media (max-width: 576px) {
  .error-404 .error-content .error-number {
    font-size: 4.5rem;
  }
}

.error-404 .error-content .error-title {
  font-size: 3rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 30px;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .error-404 .error-content .error-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .error-404 .error-content .error-title {
    font-size: 2rem;
  }
}

.error-404 .error-content .error-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .error-404 .error-content .error-description {
    font-size: 1rem;
    margin-bottom: 40px;
  }
}

.error-404 .error-content .error-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.error-404 .error-content .error-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.error-404 .error-content .error-actions .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.error-404 .error-content .error-actions .btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background-color: transparent;
  color: var(--heading-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.error-404 .error-content .error-actions .btn-secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .error-404 .error-content .error-actions {
    flex-direction: column;
    align-items: center;
  }

  .error-404 .error-content .error-actions .btn-primary,
  .error-404 .error-content .error-actions .btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

.error-404 .error-content .search-section .search-label {
  font-size: 1rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 500;
}

.error-404 .error-content .search-section .search-form {
  max-width: 400px;
  margin: 0 auto;
}

.error-404 .error-content .search-section .search-form .search-input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.error-404 .error-content .search-section .search-form .search-input-group .search-input {
  width: 100%;
  padding: 16px 60px 16px 20px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  font-size: 1rem;
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.error-404 .error-content .search-section .search-form .search-input-group .search-input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.error-404 .error-content .search-section .search-form .search-input-group .search-input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.error-404 .error-content .search-section .search-form .search-input-group .search-btn {
  position: absolute;
  right: 8px;
  background: var(--accent-color);
  border: none;
  border-radius: 6px;
  padding: 12px;
  color: var(--contrast-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.error-404 .error-content .search-section .search-form .search-input-group .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.error-404 .error-content .search-section .search-form .search-input-group .search-btn i {
  font-size: 1rem;
}

.error-404 .helpful-links .links-title {
  font-size: 2rem;
  font-weight: 300;
  color: var(--heading-color);
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .error-404 .helpful-links .links-title {
    font-size: 1.75rem;
    margin-bottom: 40px;
  }
}

.error-404 .helpful-links .link-item {
  text-align: center;
  padding: 40px 20px;
  height: 100%;
  transition: all 0.3s ease;
}

.error-404 .helpful-links .link-item:hover {
  transform: translateY(-10px);
}

.error-404 .helpful-links .link-item .link-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), black 20%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  transition: all 0.3s ease;
}

.error-404 .helpful-links .link-item .link-icon i {
  font-size: 1.75rem;
  color: var(--contrast-color);
}

.error-404 .helpful-links .link-item h4 {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.error-404 .helpful-links .link-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 25px;
}

.error-404 .helpful-links .link-item .link-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.error-404 .helpful-links .link-item .link-cta:hover {
  color: color-mix(in srgb, var(--accent-color), black 15%);
  gap: 12px;
}

.error-404 .helpful-links .link-item .link-cta i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.error-404 .helpful-links .link-item .link-cta:hover i {
  transform: translateX(3px);
}

.error-404 .helpful-links .link-item:hover .link-icon {
  transform: scale(1.1);
  box-shadow: 0 15px 35px color-mix(in srgb, var(--accent-color), transparent 65%);
}

@media (max-width: 992px) {
  .error-404 {
    padding: 80px 0;
  }

  .error-404 .helpful-links .link-item {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .error-404 {
    padding: 60px 0;
    min-height: auto;
  }

  .error-404 .error-content {
    margin-bottom: 60px;
  }

  .error-404 .helpful-links .links-title {
    margin-bottom: 40px;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}