@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,300..700,0..1,-50..200&display=swap");
body {
  background-color: #F8F2EC;
  color: #1C1C1C;
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
a:hover {
  color: #C69A93;
}

.container-fluid {
  max-width: 1400px;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (max-width: 768px) {
  .container-fluid {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  will-change: opacity, visibility;
}
.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
}

.text-reveal {
  overflow: hidden;
}
.text-reveal span {
  display: block;
  transform: translateY(100%);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.text-reveal.is-visible span {
  transform: translateY(0);
}

.material-symbols-rounded {
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 32;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 2rem 0;
  transition: padding 0.4s ease, background-color 0.4s ease, opacity 0.4s ease;
}
.site-header.is-scrolled {
  padding: 1.5rem 0;
  background-color: rgba(248, 242, 236, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.site-header.is-hidden {
  transform: translateY(-100%);
}
.site-header .hamburger-btn {
  width: 30px;
  height: 24px;
  position: relative;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 2002;
}
.site-header .hamburger-btn .line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #1C1C1C;
  transition: all 0.3s ease-in-out;
  transform-origin: center;
}
.site-header .hamburger-btn.is-active .line:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.site-header .hamburger-btn.is-active .line:nth-child(2) {
  opacity: 0;
}
.site-header .hamburger-btn.is-active .line:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}
.site-header .navbar-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2002;
}
.site-header nav {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 2rem;
  text-align: center;
}
.site-header .nav-link {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-left: 0;
  position: relative;
}
.site-header .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  bottom: -6px !important;
  height: 1px;
  background-color: #C69A93;
  transition: width 0.3s ease;
}
.site-header .nav-link:hover::after {
  width: 100%;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.mobile-menu-overlay.is-active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-overlay .mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.mobile-menu-overlay .mobile-nav-link {
  font-family: "Inter", sans-serif;
  font-size: 2.5rem;
  color: #1C1C1C;
  text-decoration: none;
  transition: color 0.3s ease;
}
.mobile-menu-overlay .mobile-nav-link:hover {
  color: #C69A93;
}

.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero-section .hero-content {
  position: relative;
  z-index: 2;
}
.hero-section h1 {
  font-size: 5rem;
  line-height: 1.1;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 3rem;
  }
}
.hero-section .hero-video-wrapper {
  position: absolute;
  inset: 15% auto auto 65%;
  width: 420px;
  z-index: 1;
  mix-blend-mode: multiply;
  opacity: 0.5;
  overflow: hidden;
}
.hero-section .hero-video-wrapper video, .hero-section .hero-video-wrapper img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 25px 55px rgba(28, 28, 28, 0.14);
}
@media (max-width: 991px) {
  .hero-section .hero-video-wrapper {
    position: relative;
    inset: 0;
    width: 100%;
    margin-top: 2rem;
    mix-blend-mode: normal;
    opacity: 0.8;
  }
}

.hero-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero-section .hero-anim {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-section .hero-anim canvas {
  width: 100%;
  height: 100%;
  filter: blur(14px);
  mix-blend-mode: screen;
  opacity: 0.9;
}

.focus-section {
  padding: 4rem 0;
}
.focus-section .focus-item {
  padding: 2rem;
  border-right: 1px solid rgba(28, 28, 28, 0.1);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}
.focus-section .focus-item:last-child {
  border-right: none;
}
.focus-section .focus-item:hover {
  background-color: white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  transform: translateY(-10px);
}
.focus-section .focus-item .icon {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  color: #C69A93;
}
.focus-section .focus-item .icon .material-symbols-rounded {
  font-size: 1em;
}
.focus-section .focus-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.focus-section .focus-item p {
  color: rgb(104.5, 104.5, 104.5);
  font-size: 0.95rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .focus-section .focus-item {
    border-right: none;
    border-bottom: 1px solid rgba(28, 28, 28, 0.1);
  }
  .focus-section .focus-item:last-child {
    border-bottom: none;
  }
}

.services-showcase {
  padding: 4rem 0;
}
.services-showcase .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  color: rgb(104.5, 104.5, 104.5);
  margin-bottom: 1rem;
}
.services-showcase h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.services-showcase .service-card {
  background: #FFFFFF;
  border: 1px solid rgba(28, 28, 28, 0.07);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(28, 28, 28, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.services-showcase .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 80px rgba(28, 28, 28, 0.08);
}
.services-showcase .service-card .service-visual {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.services-showcase .service-card .service-visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.02);
}
.services-showcase .service-card .service-visual .service-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(28, 28, 28, 0.08);
  color: #C69A93;
}
.services-showcase .service-card .service-visual .service-icon .material-symbols-rounded {
  font-size: 1.5rem;
}
.services-showcase .service-card .service-body {
  padding: 1.75rem;
}
.services-showcase .service-card .service-body .eyebrow {
  margin-bottom: 0.5rem;
}
.services-showcase .service-card .service-body h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.services-showcase .service-card .service-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
  color: rgb(99.4, 99.4, 99.4);
  font-size: 0.98rem;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .services-showcase h2 {
    font-size: 2.4rem;
  }
}

.cases-section {
  padding-bottom: 8rem;
}
.cases-section .case-item {
  position: relative;
  display: block;
  margin-bottom: 2rem;
  overflow: hidden;
}
.cases-section .case-item .case-image {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s ease;
}
.cases-section .case-item .case-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(28, 28, 28, 0.6);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #FFFFFF;
}
.cases-section .case-item:hover .case-image {
  transform: scale(1.05);
}
.cases-section .case-item:hover .case-overlay {
  opacity: 1;
}
.cases-section .case-item h3 {
  font-size: 2.5rem;
  color: #FFFFFF;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.1s;
}
.cases-section .case-item span {
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.2s;
}
.cases-section .case-item:hover h3, .cases-section .case-item:hover span {
  transform: translateY(0);
}
.cases-section .case-item-traditional {
  aspect-ratio: 1/1; /* Kare alan */
  width: 100%;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  background-color: white;
}
.cases-section .case-item-traditional .case-image-traditional {
  width: 75%; /* Yatayda %100 */
  height: auto; /* Oranı koru */
  position: absolute; /* Dikey ortalamayı sağlayacağız */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover; /* Kırp ama alanı doldur */
  transition: transform 0.8s ease;
}
.cases-section .case-item-traditional .case-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(28, 28, 28, 0.6);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #FFFFFF;
}
.cases-section .case-item-traditional:hover .case-image-traditional {
  transform: translate(-50%, -50%) scale(1.05);
}
.cases-section .case-item-traditional:hover .case-overlay {
  opacity: 1;
}
.cases-section .case-item-traditional h3 {
  font-size: 2.5rem;
  color: #FFFFFF;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.1s;
}
.cases-section .case-item-traditional span {
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.2s;
}
.cases-section .case-item-traditional:hover h3, .cases-section .case-item-traditional:hover span {
  transform: translateY(0);
}

.about-section {
  padding: 8rem 0;
  background-color: #FFFFFF;
}
.about-section .about-content {
  padding-right: 2rem;
}
.about-section .about-content .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  color: rgb(104.5, 104.5, 104.5);
  margin-bottom: 1rem;
}
.about-section .about-content h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
}
.about-section .about-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  letter-spacing: -0.01em;
  color: rgb(73.9, 73.9, 73.9);
  margin-bottom: 1.5rem;
}
.about-section .about-content .about-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.about-section .about-content .metric-card {
  background: #F8F2EC;
  border: 1px solid rgba(28, 28, 28, 0.06);
  border-radius: 18px;
  padding: 1.5rem 1.5rem 1.25rem;
  box-shadow: 0 20px 45px rgba(28, 28, 28, 0.05);
}
.about-section .about-content .metric-card .metric-number {
  font-size: 2.6rem;
  font-family: "Playfair Display", serif;
  margin-bottom: 0.35rem;
}
.about-section .about-content .metric-card .metric-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: rgb(99.4, 99.4, 99.4);
}
.about-section .about-content .metric-card .metric-note {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
  color: rgb(117.25, 117.25, 117.25);
  line-height: 1.5;
}
.about-section .about-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: center;
}
.about-section .about-visual .visual-block {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #F8F2EC;
  height: 100%;
  min-height: 320px;
}
.about-section .about-visual .visual-block img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  filter: saturate(1.02);
}
.about-section .about-visual .visual-block.primary {
  grid-column: 1/2;
  min-height: 420px;
}
.about-section .about-visual .visual-block.secondary {
  grid-column: 2/3;
  min-height: 340px;
}
.about-section .about-visual .visual-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: #FFFFFF;
  color: #1C1C1C;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-size: 0.9rem;
  box-shadow: 0 18px 40px rgba(28, 28, 28, 0.08);
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
}
.about-section .about-visual .visual-badge span {
  width: 8px;
  height: 8px;
  background: #C69A93;
  border-radius: 50%;
  display: inline-block;
}
.about-section .about-visual .floating-card {
  position: absolute;
  top: 12%;
  right: 8%;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  width: 260px;
  box-shadow: 0 25px 60px rgba(28, 28, 28, 0.12);
  border: 1px solid rgba(28, 28, 28, 0.06);
}
.about-section .about-visual .floating-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.about-section .about-visual .floating-card ul {
  padding-left: 1rem;
  margin: 0;
  color: rgb(99.4, 99.4, 99.4);
  line-height: 1.6;
}
@media (max-width: 991px) {
  .about-section .about-content {
    padding-right: 0;
    margin-top: 2.5rem;
  }
  .about-section .about-visual {
    grid-template-columns: 1fr;
  }
  .about-section .about-visual .visual-block.primary,
  .about-section .about-visual .visual-block.secondary {
    grid-column: auto;
    min-height: 260px;
  }
  .about-section .about-visual .floating-card {
    position: relative;
    top: auto;
    right: auto;
    margin-top: -1.5rem;
  }
}

.testimonials-section {
  padding: 8rem 0;
  text-align: center;
}
.testimonials-section .testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.testimonials-section .testimonial-item {
  display: none;
}
.testimonials-section .testimonial-item.active {
  display: block;
  animation: fadeIn 1s ease;
}
.testimonials-section .testimonial-item p {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 2rem;
}
.testimonials-section .testimonial-item cite {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #828282;
}
.testimonials-section .slider-nav {
  margin-top: 3rem;
}
.testimonials-section .slider-nav button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 1rem;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.testimonials-section .slider-nav button:hover {
  opacity: 1;
}
.testimonials-section .slider-nav button svg {
  width: 40px;
  height: 10px;
  fill: #1C1C1C;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.site-footer {
  background-color: #111;
  color: #FFFFFF;
  padding: 6rem 0 3rem;
}
.site-footer h4 {
  color: #FFFFFF;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.site-footer p, .site-footer a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.8;
  transition: color 0.3s ease;
}
.site-footer p:hover, .site-footer a:hover {
  color: #FFFFFF;
}
.site-footer .social-links {
  margin-top: 2rem;
}
.site-footer .social-links a {
  margin-right: 1.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.site-footer .footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  justify-content: space-between;
}
.site-footer .footer-logo {
  height: 35px;
  margin-bottom: 1rem;
  filter: invert(1);
}/*# sourceMappingURL=style.css.map */