/* =========================================================
   BLUESTUDIO — CLEAN STYLE.CSS
   Cleaned structure:
   01 Base
   02 Navbar
   03 Home
   04 Projects
   05 Project Details
   06 Contact
   07 Side Contact
   08 Footer
   09 Responsive
========================================================= */

/* =========================
   01 BASE
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: white;
  font-family: 'Inter', sans-serif;
  background: #0b0b0b;
}

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

img,
video {
  max-width: 100%;
}

/* =========================
   02 COMMON NAVBAR
========================= */

.navbar {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 26px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 14px;
  letter-spacing: 3px;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  transition: color .25s ease;
}

.nav-links a:hover {
  color: white;
}

.center-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 82px;
  opacity: .72;
  pointer-events: none;
  transform: translate(-50%, -50%);
  filter:
    drop-shadow(0 0 20px rgba(255,140,60,.55))
    drop-shadow(0 0 40px rgba(255,140,60,.25));
}

.lang-btn {
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: white;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 13px;
  transition: .25s ease;
}

.lang-btn:hover {
  background: rgba(255,255,255,0.16);
}

/* =========================
   03 HOME
========================= */

.home-page {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: black;
}

.home-intro {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #030303;
  pointer-events: none;
  animation: introOut 3.2s ease forwards;
}

.home-intro img {
  width: 260px;
  max-width: 70vw;
  opacity: 0;
  transform: scale(.86);
  filter:
    drop-shadow(0 0 30px rgba(255,140,70,.22))
    drop-shadow(0 0 90px rgba(255,140,70,.10));
  animation: introLogo 2.6s cubic-bezier(.16, 1, .3, 1) forwards;
}

.intro-light {
  position: absolute;
  width: 900px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(255,140,75,.18),
    rgba(255,90,40,.07) 42%,
    transparent 74%
  );
  filter: blur(80px);
  opacity: 0;
  animation: introLight 2.8s ease forwards;
}

.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: black;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  filter: blur(18px) brightness(.52) contrast(1.08);
  animation: videoReveal 3.4s ease forwards;
  transition: transform .18s ease-out;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(circle at center, transparent 0%, rgba(0,0,0,.24) 44%, rgba(0,0,0,.72) 100%),
    rgba(0,0,0,.22);
}

.hero-grain {
  position: absolute;
  inset: -40%;
  z-index: 4;
  pointer-events: none;
  opacity: .10;
  background-image: radial-gradient(circle, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 6px 6px;
  animation: grainMove 12s linear infinite;
}

.hero-glow {
  position: fixed;
  z-index: 2;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(255,145,80,.12),
    rgba(255,100,45,.045) 42%,
    transparent 72%
  );
  filter: blur(10px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-logo {
  width: 340px;
  max-width: 80vw;
  margin-bottom: -60px;
  object-fit: contain;
  opacity: 0;
  transform: translateY(18px) scale(.96);
  filter:
    drop-shadow(0 20px 50px rgba(0,0,0,.45))
    drop-shadow(0 0 35px rgba(255,140,70,.16));
  animation:
    heroLogoIn 1.4s ease 2.15s forwards,
    heroLogoBreath 5s ease-in-out 3.8s infinite;
}

.hero-sub {
  max-width: 920px;
  margin-bottom: 34px;
  color: rgba(255,255,255,.78);
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: lowercase;
  text-shadow: 0 10px 35px rgba(0,0,0,.6);
  opacity: 0;
  transform: translateY(20px);
  animation: heroTextIn 1.1s ease 2.75s forwards;
}

.btn {
  position: relative;
  overflow: hidden;
  padding: 18px 42px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: rgba(0,0,0,.72);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -.5px;
  backdrop-filter: blur(12px);
  box-shadow:
    0 10px 30px rgba(0,0,0,.28),
    inset 0 1px 1px rgba(255,255,255,.65);
  transition: all .28s ease;
}

.hero-btn {
  opacity: 0;
  transform: translateY(24px);
  animation: heroButtonIn 1s ease 3.15s forwards;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.9), transparent);
  transform: skewX(-18deg);
  transition: .75s ease;
}

.btn:hover::before {
  left: 140%;
}

.btn:hover {
  transform: translateY(-2px) scale(1.03);
  background: rgba(255,255,255,.98);
  box-shadow:
    0 18px 40px rgba(0,0,0,.35),
    0 0 45px rgba(255,140,70,.14),
    inset 0 1px 1px rgba(255,255,255,.75);
}

.btn span {
  position: relative;
  z-index: 2;
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #050505;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.04);
  transition: opacity .55s ease, transform .75s ease;
}

.page-transition img {
  width: 240px;
  max-width: 70vw;
  opacity: 0;
  transform: translateY(18px) scale(.96);
  transition: opacity .45s ease .18s, transform .55s ease .18s;
}

.page-transition.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
}

.page-transition.active img {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* =========================
   04 PROJECTS PAGE
========================= */

.projects-page {
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  background:
    radial-gradient(
      ellipse at top center,
      rgba(120,40,18,0.22),
      rgba(70,18,10,0.14) 30%,
      transparent 62%
    ),
    linear-gradient(135deg, #111111, #080808 55%, #151515);
}

.projects-page::after {
  content: "";
  position: fixed;
  top: -430px;
  left: 50%;
  transform: translateX(-50%);
  width: 2600px;
  height: 1050px;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    rgba(255,120,45,0.18) 0%,
    rgba(190,55,18,0.10) 24%,
    rgba(110,25,8,0.05) 44%,
    rgba(70,15,5,0) 78%
  );
  filter: blur(145px);
  z-index: 0;
  animation: lightMove 16s ease-in-out infinite;
}

.projects-page .navbar {
  padding: 34px 48px 24px;
  opacity: 0;
  transform: translateY(-18px);
  animation: projectsNavIn .9s ease .15s forwards;
}

.projects-grid {
  position: relative;
  z-index: 3;
  width: 78%;
  margin: 26px auto 80px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 10px;
}

.project {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
  aspect-ratio: 1 / .82;
  background: #222;
  color: white;
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
  opacity: 0;
  transform: translateY(42px) scale(.985);
  animation: projectCardIn .9s cubic-bezier(.16, 1, .3, 1) forwards;
}

.projects-grid .project:nth-child(1) { animation-delay: .18s; }
.projects-grid .project:nth-child(2) { animation-delay: .28s; }
.projects-grid .project:nth-child(3) { animation-delay: .38s; }
.projects-grid .project:nth-child(4) { animation-delay: .48s; }
.projects-grid .project:nth-child(5) { animation-delay: .58s; }
.projects-grid .project:nth-child(6) { animation-delay: .68s; }
.projects-grid .project:nth-child(7) { animation-delay: .78s; }
.projects-grid .project:nth-child(8) { animation-delay: .88s; }

.project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: blur(0px) brightness(1);
  transform: scale(1.04);
  transition: filter .7s ease, transform .7s ease;
}

.project img.loaded {
  filter: blur(0) brightness(1);
  transform: scale(1);
}

.project::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(
      120deg,
      transparent 0%,
      rgba(255,255,255,.18) 45%,
      transparent 70%
    );
  transform: translateX(-130%);
  transition: transform .9s cubic-bezier(.16, 1, .3, 1);
  pointer-events: none;
}

.project:hover::before {
  transform: translateX(130%);
}

.project::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(255,140,70,.16),
      transparent 48%
    );
  opacity: 0;
  transition: opacity .45s ease;
  pointer-events: none;
}

.project:hover::after {
  opacity: 1;
}

.project-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  background: rgba(0,0,0,0.18);
  backdrop-filter: blur(0);
  transition: .35s ease;
}

.project-overlay h2 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 10px;
}

.project-overlay p {
  font-size: 15px;
  color: rgba(255,255,255,0.68);
  letter-spacing: 1px;
}

.project-overlay h2,
.project-overlay p {
  transform: translateY(12px);
  transition: transform .42s ease, opacity .42s ease;
}

.project:hover img {
  transform: scale(1.06);
  filter: blur(3px);
}

.project:hover .project-overlay {
  opacity: 1;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
}

.project:hover .project-overlay h2,
.project:hover .project-overlay p {
  transform: translateY(0);
}

/* =========================
   05 PROJECT DETAILS PAGE
========================= */

.details-page {
  background: #0b0b0b;
}

.details-page .navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(11,11,11,.72);
  backdrop-filter: blur(14px);
  transition: padding .35s ease, background .35s ease, backdrop-filter .35s ease;
}

.details-page .navbar.nav-compact {
  padding: 16px 42px;
  background: rgba(8,8,8,.86);
  backdrop-filter: blur(22px);
}

.details-page .center-logo {
  width: 68px;
  opacity: .78;
  filter:
    drop-shadow(0 0 15px rgba(255,140,60,.35))
    drop-shadow(0 0 30px rgba(255,140,60,.15));
  transition: width .35s ease, opacity .35s ease;
}

.details-page .navbar.nav-compact .center-logo {
  width: 54px;
  opacity: .86;
}

.ambient-light {
  position: fixed;
  width: 620px;
  height: 620px;
  left: 50%;
  top: 50%;
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,140,70,.10), rgba(255,90,35,.035) 38%, transparent 72%);
  filter: blur(12px);
}

.project-progress {
  position: fixed;
  right: 34px;
  bottom: 34px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.62);
  font-size: 11px;
  letter-spacing: 2px;
}

.progress-line {
  width: 1px;
  height: 92px;
  background: rgba(255,255,255,.16);
  overflow: hidden;
}

#progress-fill {
  width: 100%;
  height: 12.5%;
  background: rgba(255,140,70,.9);
  box-shadow: 0 0 18px rgba(255,140,70,.55);
  transition: height .35s ease;
}

.project-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 100vh;
  padding: 150px 5vw 110px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  scroll-margin-top: 100px;
}

.project-section::before {
  content: "";
  position: absolute;
  inset: -120px;
  z-index: -2;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(35px) brightness(.95) saturate(1.28);
  transform: scale(1.15);
  opacity: .74;
  animation: projectBgLife 34s ease-in-out infinite;
}

.project-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      to bottom,
      rgba(11,11,11,.50),
      rgba(11,11,11,.78)
    );
}

.project-inner {
  position: relative;
  z-index: 2;
  width: min(100%, 1380px);
  margin: 0 auto;
}

.project-top {
  margin-bottom: 78px;
}

.project-section:not(:first-child) .project-top::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 70px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
}

.project-kicker {
  color: rgba(255,255,255,0.42);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.project-title {
  font-size: clamp(62px, 8vw, 138px);
  line-height: .92;
  letter-spacing: -6px;
  font-weight: 800;
  margin-bottom: 58px;
}

.project-intro {
  width: 100%;
  max-width: 1180px;
  color: rgba(255,255,255,0.72);
  font-size: 20px;
  line-height: 2;
  font-family: 'Aeonik', 'Inter', sans-serif;
  font-weight: 400;
}

.project-kicker,
.project-title,
.project-intro,
.project-media-grid,
.project-description {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity .9s cubic-bezier(.16, 1, .3, 1),
    transform .9s cubic-bezier(.16, 1, .3, 1);
}

.project-section.in-view .project-kicker {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .05s;
}

.project-section.in-view .project-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .15s;
}

.project-section.in-view .project-intro {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .28s;
}

.project-section.in-view .project-media-grid {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .42s;
}

.project-section.in-view .project-description {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .55s;
}

.project-media-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr .68fr;
  gap: 22px;
  align-items: stretch;
  margin-top: 90px;
  margin-bottom: 70px;
}

.project-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.small-image {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: 26px;
  background: #1a1a1a;
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  opacity: 0;
  transform: translateY(34px) scale(.96);
  transition:
    opacity .75s cubic-bezier(.16, 1, .3, 1),
    transform .75s cubic-bezier(.16, 1, .3, 1);
}

.project-section.in-view .small-image {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.project-section.in-view .small-image:nth-child(1) { transition-delay: .50s; }
.project-section.in-view .small-image:nth-child(2) { transition-delay: .60s; }
.project-section.in-view .small-image:nth-child(3) { transition-delay: .70s; }
.project-section.in-view .small-image:nth-child(4) { transition-delay: .80s; }

.small-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
  filter: blur(12px) brightness(.72);
  transform: scale(1.04);
  transition: filter .7s ease, transform .7s ease;
}

.small-image img.loaded {
  filter: blur(0) brightness(1);
  transform: scale(1);
}

.small-image:hover img {
  transform: scale(1.04);
}

.project-video {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #1a1a1a;
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  opacity: 0;
  transform: scale(1.08);
  transition:
    opacity .9s cubic-bezier(.16, 1, .3, 1),
    transform 1.1s cubic-bezier(.16, 1, .3, 1);
}

.project-section.in-view .project-video {
  opacity: 1;
  transform: scale(1);
  transition-delay: .68s;
}

.project-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}

.project-video:hover video {
  transform: scale(1.03);
}

.project-video::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at center, transparent 0%, rgba(0,0,0,.18) 48%, rgba(0,0,0,.55) 100%),
    linear-gradient(to bottom, rgba(255,255,255,.04), transparent 35%);
}

.project-video::after {
  content: "LOOPING FILM";
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 3;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(14px);
  color: rgba(255,255,255,.76);
  font-size: 10px;
  letter-spacing: 1.8px;
  opacity: 0;
  transform: translateY(8px);
  transition: .3s ease;
}

.project-video:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.project-description {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: grid;
  grid-template-columns: .45fr 1.55fr;
  gap: 90px;
  padding: 70px;
  border-radius: 30px;
  isolation: isolate;
  background: rgba(0,0,0,.35);
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
  transform-style: preserve-3d;
  transition:
    opacity .9s cubic-bezier(.16, 1, .3, 1),
    transform .2s ease,
    box-shadow .35s ease;
  will-change: transform;
}

.project-description:hover {
  box-shadow:
    0 38px 110px rgba(0,0,0,.48),
    0 0 70px rgba(255,140,70,.10);
}

.project-description::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(12px) brightness(.9) saturate(1.35);
  transform: scale(1.08);
}

.project-description::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0,0,0,.38);
}

.project-label {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.project-text {
  color: rgba(255,255,255,0.82);
  font-size: 18px;
  line-height: 2;
  font-family: 'Aeonik', 'Inter', sans-serif;
  font-weight: 400;
}

/* Details backgrounds */
#saol-society::before { background-image: url("../assets/project-saol/saol-image2.webp"); }
#gallery-house::before { background-image: url("../assets/project-gallery/gallery-backimage1.webp"); }
#chocoberry-london::before { background-image: url("../assets/project-chocoberry/chocoberry-image1.webp"); }
#atlantis-coffee::before { background-image: url("../assets/project-atlantis/atlantis-image1.webp"); }
#ligno-studio-house::before { background-image: url("../assets/project-ligno/ligno-image4.webp"); }
#vinora-house::before { background-image: url("../assets/project-vinora/vinora-backimage1.webp"); }
#manti-house::before { background-image: url("../assets/project-manti/manti-image3.webp"); }
#manti-house::before { background-image: url("../assets/project-mantı/mantı-image3.webp"); } /* fallback */
#yemen-hotel::before { background-image: url("../assets/project-yemen/yemen-backimage1.webp"); }

#saol-society .project-description::before { background-image: url("../assets/project-saol/saol-banner2.webp"); }
#gallery-house .project-description::before { background-image: url("../assets/project-gallery/gallery-banner1.webp"); }
#chocoberry-london .project-description::before { background-image: url("../assets/project-chocoberry/chocoberry-image1.webp"); }
#atlantis-coffee .project-description::before { background-image: url("../assets/project-atlantis/atlantis-image1.webp"); }
#ligno-studio-house .project-description::before { background-image: url("../assets/project-ligno/ligno-image1.webp"); }
#vinora-house .project-description::before { background-image: url("../assets/project-vinora/vinora-banner1.webp"); }
#manti-house .project-description::before { background-image: url("../assets/project-manti/manti-image1.webp"); }
#manti-house .project-description::before { background-image: url("../assets/project-mantı/mantı-image1.webp"); } /* fallback */
#yemen-hotel .project-description::before { background-image: url("../assets/project-yemen/yemen-banner1.webp"); }

.details-page.scroll-fast .project-section::before {
  filter: blur(45px) brightness(.95) saturate(1.3);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(18px);
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 30px 100px rgba(0,0,0,.55);
}

.lightbox.active img {
  animation: lightboxImageIn .42s cubic-bezier(.16, 1, .3, 1);
}

.lightbox-close {
  position: fixed;
  top: 28px;
  right: 36px;
  background: none;
  border: none;
  color: white;
  font-size: 42px;
  cursor: pointer;
}

.lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(15,15,15,.75);
  backdrop-filter: blur(16px);
  color: white;
  font-size: 24px;
  font-weight: 500;
  cursor: pointer;
  transition: all .3s ease;
  opacity: .35;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-arrow:hover {
  background: rgba(255,140,60,.15);
  border-color: rgba(255,140,60,.4);
  transform: translateY(-50%) scale(1.08);
  opacity: 1;
  box-shadow: 0 0 40px rgba(255,140,60,.18);
}

.lightbox-arrow.left { left: 40px; }
.lightbox-arrow.right { right: 40px; }

/* =========================
   06 CONTACT
========================= */

.contact-page {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(ellipse at 50% -20%, rgba(255, 118, 50, 0.18), transparent 48%),
    linear-gradient(135deg, #121212, #080808 58%, #15110f);
}

.contact-page .navbar {
  position: relative;
  z-index: 10;
}

.contact-shell {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 88px 0 110px;
}

.contact-hero {
  max-width: 820px;
  margin-bottom: 72px;
}

.contact-kicker {
  margin-bottom: 20px;
  color: rgba(255,255,255,.48);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.8px;
}

.contact-hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(48px, 6vw, 92px);
  line-height: .94;
  letter-spacing: -4px;
}

.contact-hero p {
  max-width: 620px;
  color: rgba(255,255,255,.62);
  font-family: 'Aeonik', 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.8;
}

.contact-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 16px;
  align-items: stretch;
}

.contact-side,
.contact-form-card {
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 26px;
  background: rgba(255,255,255,.045);
  box-shadow: 0 25px 80px rgba(0,0,0,.25);
  backdrop-filter: blur(18px);
}

.contact-side {
  min-height: 560px;
  padding: 42px;
  display: flex;
  flex-direction: column;
}

.contact-side-label,
.contact-side-small {
  color: rgba(255,255,255,.42);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  line-height: 1.7;
}

.contact-side h2 {
  margin: auto 0 22px;
  font-size: clamp(30px, 3vw, 47px);
  line-height: 1;
  letter-spacing: -2px;
}

.contact-side p {
  color: rgba(255,255,255,.6);
  font-size: 15px;
  line-height: 1.85;
}

.contact-side-line {
  width: 100%;
  height: 1px;
  margin: 34px 0 22px;
  background: rgba(255,255,255,.1);
}

.contact-form-card {
  padding: 42px;
}

.contact-form {
  text-align: left;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form .form-field {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255,255,255,.58);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .4px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin: 0;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 13px;
  outline: none;
  background: rgba(255,255,255,.07);
  color: white;
  padding: 15px 16px;
  font-family: inherit;
  font-size: 14px;
  transition: border-color .25s ease, background .25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255,150,88,.72);
  background: rgba(255,255,255,.1);
}

.contact-form textarea {
  min-height: 164px;
  resize: vertical;
}

.contact-botcheck {
  display: none;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-width: 194px;
  margin-top: 4px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: 15px 20px 15px 24px;
  background: rgba(255,255,255,.94);
  color: #0d0d0d;
  font-size: 14px;
  font-weight: 700;
  transition: transform .25s ease, background .25s ease;
}

.contact-submit:hover {
  transform: translateY(-2px);
  background: white;
}

.contact-submit:disabled {
  cursor: wait;
  opacity: .6;
  transform: none;
}

.form-status {
  min-height: 20px;
  margin-top: 18px;
  color: rgba(255,255,255,.6);
  font-size: 13px;
}

/* =========================
   07 SIDE CONTACT
========================= */

.side-contact {
  position: fixed;
  top: 50%;
  right: 18px;
  z-index: 950;
  display: flex;
  flex-direction: column;
  gap: 9px;
  transform: translateY(-50%);
}

.side-link {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  overflow: visible;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  background: rgba(10,10,10,.72);
  color: rgba(255,255,255,.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 28px rgba(0,0,0,.2);
  transition: background .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.side-link:hover {
  width: 44px;
  color: #111;
  background: rgba(255,255,255,.96);
  border-color: rgba(255,255,255,.96);
  transform: translateX(-3px);
  box-shadow:
    0 12px 28px rgba(0,0,0,.2),
    0 0 32px rgba(255,140,70,.22);
}

.side-link svg {
  width: 18px;
  height: 18px;
  margin: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.side-link.side-whatsapp svg {
  fill: currentColor;
  stroke: none;
}

/* =========================
   08 FOOTER
========================= */

.site-footer {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 0 0 28px;
  border-top: none;
  background: transparent !important;
}

.site-footer::before {
  content: "BLUESTUDIO";
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  font-size: clamp(90px, 18vw, 300px);
  font-weight: 800;
  letter-spacing: -14px;
  color: rgba(255,255,255,.025);
  white-space: nowrap;
  pointer-events: none;
}

.site-footer .footer-inner {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 96px));
  margin: 0 auto;
  padding-top: 70px;
}

.footer-top {
  max-width: 920px;
  padding: 0 0 42px;
}

.footer-eyebrow {
  margin-bottom: 18px;
  color: rgba(255,255,255,.42);
  font-size: 10px;
  letter-spacing: 2px;
}

.footer-top h2 {
  font-size: clamp(44px, 6vw, 82px);
  line-height: .96;
  letter-spacing: -3.8px;
}

.footer-cards,
.site-footer .footer-cards {
  width: 100%;
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 14px;
}

.footer-card,
.site-footer .footer-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 20px;
  background: rgba(255,255,255,.035);
  color: white;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.footer-card:hover {
  transform: translateY(-5px) rotateX(2deg) rotateY(-2deg);
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.07);
}

.footer-card span {
  color: rgba(255,255,255,.46);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.footer-card strong {
  max-width: 260px;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1;
  letter-spacing: -1.2px;
}

.footer-card b {
  right: 22px;
  bottom: 18px;
  color: rgba(255,255,255,.72);
  font-size: 22px;
  transition: transform .22s ease;
}

.footer-card:hover b {
  transform: translate(2px, -2px);
}

.footer-card-main {
  background: rgba(255,255,255,.94);
  border-color: rgba(255,255,255,.94);
  color: #111;
}

.footer-card-main:hover {
  background: white;
  border-color: white;
}

.footer-card-main span {
  color: rgba(0,0,0,.48);
}

.footer-card-main b {
  color: #111;
}

.footer-bottom {
  width: 100%;
  margin-top: 42px;
  padding: 22px 0 8px;
}

.footer-logo {
  font-size: 12px;
  letter-spacing: 2.8px;
}

.contact-footer .footer-card-main {
  display: none;
}

.contact-footer .footer-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* =========================
   09 ANIMATIONS
========================= */

@keyframes lightMove {
  0% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-49%) translateY(14px); }
  100% { transform: translateX(-50%) translateY(0); }
}

@keyframes introLogo {
  0% { opacity: 0; transform: scale(.78); }
  35% { opacity: 1; transform: scale(1); }
  75% { opacity: 1; transform: scale(1.035); }
  100% { opacity: 0; transform: scale(1.08); }
}

@keyframes introLight {
  0% { opacity: 0; transform: scale(.8); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: scale(1.25); }
}

@keyframes introOut {
  0%, 78% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}

@keyframes videoReveal {
  0% {
    filter: blur(22px) brightness(.30) contrast(1.1);
    transform: scale(1.12);
  }
  100% {
    filter: blur(0) brightness(.72) contrast(1.08);
    transform: scale(1.06);
  }
}

@keyframes heroLogoIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes heroTextIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroButtonIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroLogoBreath {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.018); opacity: .86; }
}

@keyframes grainMove {
  0% { transform: translate(0,0); }
  100% { transform: translate(90px,120px); }
}

@keyframes projectsNavIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes projectCardIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes projectBgLife {
  0%,100% { transform: scale(1.12); }
  50% { transform: scale(1.19) translateY(-18px); }
}

@keyframes lightboxImageIn {
  0% { opacity: 0; transform: scale(.94); }
  100% { opacity: 1; transform: scale(1); }
}

/* =========================
   10 RESPONSIVE
========================= */

@media (max-width: 900px) {
  .projects-grid {
    width: 92%;
    grid-template-columns: 1fr;
  }

  .projects-page .navbar,
  .details-page .navbar,
  .contact-page .navbar {
    padding: 22px;
  }

  .details-page .navbar.nav-compact {
    padding: 14px 18px;
  }

  .nav-links {
    gap: 16px;
  }

  .center-logo {
    width: 58px;
  }

  .project-overlay h2 {
    font-size: 32px;
  }

  .project-section {
    padding: 120px 22px 90px;
  }

  .project-title {
    font-size: clamp(52px, 15vw, 92px);
    letter-spacing: -3px;
    margin-bottom: 38px;
  }

  .project-intro {
    font-size: 16px;
    line-height: 1.9;
  }

  .project-media-grid {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }

  .project-images {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .small-image,
  .project-video {
    border-radius: 16px;
  }

  .project-video {
    aspect-ratio: 9 / 16;
  }

  .project-video::after,
  .ambient-light,
  .project-progress {
    display: none;
  }

  .project-description {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 36px 28px;
  }

  .project-text {
    font-size: 16px;
  }

  .lightbox-arrow {
    width: 52px;
    height: 52px;
  }

  .lightbox-arrow.left { left: 16px; }
  .lightbox-arrow.right { right: 16px; }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-logo { width: 260px; }
  .hero-sub {
    font-size: 15px;
    letter-spacing: 1.2px;
  }
  .home-intro img { width: 210px; }
  .hero-glow { display: none; }
}

@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }

  .side-contact {
    display: none;
  }

  .navbar,
  .projects-page .navbar,
  .details-page .navbar,
  .contact-page .navbar {
    min-height: 62px;
    padding: 14px 16px;
  }

  .projects-page .center-logo,
  .details-page .center-logo {
    display: none;
  }

  .logo {
    font-size: 10px;
    letter-spacing: 1.8px;
  }

  .nav-links {
    gap: 9px;
  }

  .nav-links a {
    font-size: 11px;
  }

  .lang-btn {
    padding: 6px 8px;
    font-size: 10px;
  }

  .projects-grid {
    width: calc(100% - 32px);
    margin: 18px auto 58px;
    gap: 12px;
  }

  .project {
    border-radius: 16px;
    aspect-ratio: 4 / 5;
  }

  .project-overlay {
    align-items: flex-end;
    justify-content: flex-start;
    padding: 20px;
    text-align: left;
  }

  .project-overlay h2 {
    margin-bottom: 6px;
    font-size: 27px;
    letter-spacing: -1.4px;
  }

  .project-overlay p {
    font-size: 11px;
    letter-spacing: .7px;
  }

  .project-section {
    padding: 108px 16px 68px;
  }

  .project-kicker {
    margin-bottom: 16px;
    font-size: 10px;
    letter-spacing: 1.6px;
    line-height: 1.6;
  }

  .project-title {
    margin-bottom: 26px;
    font-size: clamp(44px, 14vw, 68px);
    letter-spacing: -2.5px;
  }

  .project-intro {
    font-size: 15px;
    line-height: 1.8;
  }

  .project-top {
    margin-bottom: 44px;
  }

  .project-media-grid {
    gap: 12px;
    margin-top: 42px;
    margin-bottom: 38px;
  }

  .project-images {
    gap: 10px;
  }

  .project-description {
    gap: 18px;
    border-radius: 20px;
    padding: 28px 22px;
  }

  .project-text {
    font-size: 15px;
    line-height: 1.85;
  }

  .contact-shell {
    width: min(100% - 32px, 560px);
    padding: 58px 0 72px;
  }

  .contact-hero {
    margin-bottom: 38px;
  }

  .contact-hero h1 {
    margin-bottom: 18px;
    font-size: clamp(43px, 12.5vw, 62px);
    letter-spacing: -2.7px;
  }

  .contact-hero p {
    font-size: 15px;
    line-height: 1.75;
  }

  .contact-side,
  .contact-form-card {
    border-radius: 20px;
    padding: 26px 22px;
  }

  .contact-side {
    min-height: auto;
  }

  .contact-side h2 {
    margin: 42px 0 18px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form textarea {
    min-height: 148px;
  }

  .contact-submit {
    width: 100%;
  }

  .site-footer .footer-inner {
    width: calc(100% - 32px);
    padding-top: 52px;
  }

  .site-footer .footer-cards,
  .contact-footer .footer-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .site-footer .footer-card,
  .site-footer .footer-card-main {
    min-height: 150px;
    padding: 18px;
    border-radius: 17px;
  }

  .site-footer:not(.contact-footer) .footer-card-main {
    grid-column: 1 / -1;
  }

  .site-footer .footer-card strong {
    max-width: 150px;
    font-size: 21px;
  }

  .site-footer .footer-card-main strong {
    max-width: 240px;
    font-size: 27px;
  }

  .site-footer .footer-card b {
    right: 17px;
    bottom: 14px;
  }

  .footer-bottom {
    display: block;
    margin-top: 44px;
    padding-top: 20px;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 14px;
    margin: 22px 0 18px;
  }

  .footer-bottom p {
    justify-self: auto;
    font-size: 11px;
  }
}

@media (max-width: 380px) {
  .navbar,
  .projects-page .navbar,
  .details-page .navbar,
  .contact-page .navbar {
    padding-inline: 12px;
  }

  .nav-links {
    gap: 7px;
  }

  .nav-links a {
    font-size: 10px;
  }

  .lang-btn {
    padding: 5px 7px;
  }

  .footer-card strong {
    font-size: 19px;
  }

  .footer-card-main strong {
    font-size: 26px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .project-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0,0,0,.7), rgba(0,0,0,.06) 62%);
    backdrop-filter: none;
  }

  .project:hover img,
  .small-image:hover img,
  .project-video:hover video,
  .footer-card:hover,
  .side-link:hover {
    transform: none;
  }
}
/* ========================= */
/* ABOUT PAGE — FINAL VIDEO HERO + SLIDER */
/* ========================= */

.about-page {
  min-height: 100vh;
  overflow-x: hidden;
  background: #080808;
  color: white;
}

.about-navbar {
  position: relative;
  z-index: 30;
  padding: 34px 48px 24px;
  background: rgba(8,8,8,.18);
  backdrop-filter: blur(16px);
}

/* HERO */

.about-hero {
  position: relative;
  min-height: 135vh;
  overflow: hidden;
  isolation: isolate;
}


.about-hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 135vh;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.about-hero-video video {
  position: sticky;
  top: 0;

  width: 100%;
  height: 220vh;

  object-fit: cover;
  object-position: center center;
  display: block;

  opacity: .58;

  filter:
    blur(2px)
    brightness(.72)
    contrast(1.08)
    saturate(1.08);

  transform: scale(1.06);
}

.about-hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;

  background:
    radial-gradient(circle at 50% 35%, rgba(255,140,70,.10), transparent 42%),
    linear-gradient(
      to bottom,
      rgba(8,8,8,.22),
      rgba(8,8,8,.42) 45%,
      rgba(8,8,8,.88) 100%
    ),
    linear-gradient(
      90deg,
      rgba(8,8,8,.62),
      rgba(8,8,8,.16) 48%,
      rgba(8,8,8,.62)
    );
}

.about-hero-content {
  position: relative;
  z-index: 5;

  width: min(1280px, calc(100% - 96px));
  min-height: 135vh;

  margin: 0 auto;
  padding: 40px 0 90px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-long-text {
  max-width: 960px;
  display: grid;
  gap: 24px;
}

.about-long-text p {
  color: rgba(255,255,255,.76);
  font-family: "Aeonik", "Inter", sans-serif;
  font-size: 21px;
  line-height: 1.5;
}

/* SLIDER SECTION */

.about-slider-section {
  position: relative;
  width: min(1480px, calc(100% - 96px));
  margin: -60px auto 90px;
  padding: 40px 0 70px;
}

.about-slider-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
  color: rgba(255,255,255,.48);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.6px;
}

.about-slider {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.11);
  background: rgba(255,255,255,.035);
  box-shadow: 0 40px 130px rgba(0,0,0,.38);
}

.about-track {
  display: flex;
  transition: transform .75s cubic-bezier(.16, 1, .3, 1);
}

.about-panel {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 780px;
}

.about-panel-media {
  position: relative;
  overflow: hidden;
  background: #111;
}

.about-panel-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, transparent, rgba(0,0,0,.45)),
    linear-gradient(to right, rgba(0,0,0,.24), transparent);
  pointer-events: none;
}

.about-panel-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  filter:
    brightness(.72)
    contrast(1.06)
    saturate(1.05);

  transform: scale(1.03);
}

.about-panel-content {
  position: relative;
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at top left, rgba(255,130,65,.10), transparent 42%),
    rgba(8,8,8,.86);
}

.about-panel-label {
  color: rgba(255,255,255,.46);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3.8px;
  margin-bottom: 28px;
}

.about-panel-content h2 {
  font-size: clamp(48px, 5vw, 92px);
  line-height: .92;
  letter-spacing: -5px;
  font-weight: 800;
  margin-bottom: 34px;
}

.about-panel-content h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
  font-style: italic;
}

.about-panel-content > p {
  color: rgba(255,255,255,.68);
  font-family: "Aeonik", "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.about-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.about-tags span,
.about-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.86);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
}

.about-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.about-steps div {
  padding-top: 16px;
  border-top: 1px solid rgba(255,140,70,.35);
}

.about-steps span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,140,70,.78);
  font-size: 11px;
  letter-spacing: 2px;
}

.about-steps strong {
  color: white;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.about-list {
  display: grid;
  gap: 13px;
  justify-items: start;
}

.about-slide-cta {
  display: inline-flex;
  width: fit-content;
  padding: 16px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: #111;
  font-weight: 800;
  transition: .25s ease;
}

.about-slide-cta:hover {
  transform: translateY(-3px);
  background: #fff;
}

/* ARROWS + DOTS */

.about-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.48);
  color: white;
  backdrop-filter: blur(16px);
  cursor: pointer;
  transition: .25s ease;
}

.about-arrow:hover {
  background: rgba(255,255,255,.92);
  color: #111;
}

.about-prev {
  left: 22px;
}

.about-next {
  right: 22px;
}

.about-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 24px;
}

.about-dots button {
  width: 7px;
  height: 7px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.32);
  cursor: pointer;
  transition: .25s ease;
}

.about-dots button.active {
  width: 24px;
  border-radius: 999px;
  background: rgba(255,140,70,.9);
}

/* MOBILE */

@media (max-width: 900px) {
  .about-hero {
    min-height: auto;
  }

  .about-hero-content {
    width: calc(100% - 32px);
    min-height: auto;
    padding: 96px 0 120px;
  }

  .about-hero-content h1 {
    font-size: clamp(52px, 14vw, 86px);
    letter-spacing: -1px;
  }

  .about-long-text p {
    font-size: 16px;
    line-height: 1.6;
  }

  .about-slider-section {
    width: calc(100% - 32px);
    padding: 54px 0 80px;
  }

  .about-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-panel-media {
    min-height: 330px;
  }

  .about-panel-content {
    padding: 38px 26px 46px;
  }

  .about-panel-content h2 {
    font-size: clamp(42px, 12vw, 68px);
    letter-spacing: -3px;
  }

  .about-panel-content > p {
    font-size: 16px;
  }

  .about-tags,
  .about-steps {
    grid-template-columns: 1fr;
  }

  .about-arrow {
    width: 44px;
    height: 44px;
  }

  .about-prev {
    left: 10px;
  }

  .about-next {
    right: 10px;
  }
}
/* ABOUT HERO — CLEAN TWO-LINE TITLE */

.about-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 0 30px;
  color: #fff;
}

.about-title-bold {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: clamp(44px, 5.8vw, 88px);
  font-weight: 800;
  letter-spacing: -3.2px;
  line-height: 0.93;
}

.about-title-serif {
  display: block;
  margin-top: -5px;
  font-family: "Aeonik", "Times New Roman", serif;
  font-size: clamp(54px, 7vw, 106px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -3px;
  line-height: 0.82;
  color: rgba(255, 255, 255, 0.96);
}

/* Telefonda daha dengeli */
@media (max-width: 640px) {
  .about-title {
    margin-bottom: 22px;
  }

  .about-title-bold {
    font-size: clamp(38px, 10.5vw, 56px);
    letter-spacing: -2.2px;
  }

  .about-title-serif {
    margin-top: -2px;
    font-size: clamp(46px, 12vw, 66px);
    letter-spacing: -2px;
  }
}
/* MOBILE — RIGHT CONTACT + LANGUAGE BUTTONS */

@media (max-width: 640px) {
  .side-contact {
    position: fixed !important;
    top: 50% !important;
    right: 12px !important;
    bottom: auto !important;

    z-index: 9999 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;

    transform: translateY(-50%) !important;
  }

  .side-contact .side-link {
    width: 42px !important;
    height: 42px !important;

    display: grid !important;
    place-items: center !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 1px solid rgba(255,255,255,.18) !important;
    border-radius: 50% !important;

    background: rgba(12,12,12,.82) !important;
    color: rgba(255,255,255,.95) !important;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .side-contact .side-link svg {
    display: block !important;
    width: 17px !important;
    height: 17px !important;
    margin: 0 !important;
  }

  .side-contact .side-language {
    display: grid !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: .8px !important;
  }

  .side-contact .side-link span {
    display: none !important;
  }
}
/* =========================================
   MOBILE — BOTTOM CONTACT BAR
========================================= */

@media (max-width: 640px) {

  .side-contact {
    position: fixed !important;
    top: auto !important;
    right: 50% !important;
    bottom: 16px !important;
    left: auto !important;

    z-index: 99999 !important;

    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;

    width: max-content !important;
    padding: 7px !important;

    transform: translateX(50%) !important;

    border: 1px solid rgba(255,255,255,.16) !important;
    border-radius: 999px !important;

    background: rgba(10,10,10,.86) !important;
    box-shadow: 0 14px 38px rgba(0,0,0,.36) !important;

    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
  }

  .side-contact .side-link {
    width: 42px !important;
    height: 42px !important;

    display: grid !important;
    place-items: center !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 1px solid rgba(255,255,255,.12) !important;
    border-radius: 50% !important;

    background: rgba(255,255,255,.06) !important;
    color: #fff !important;
  }

  .side-contact .side-link svg {
    display: block !important;
    width: 17px !important;
    height: 17px !important;
    margin: 0 !important;
  }

  .side-contact .side-link span {
    display: none !important;
  }

  .side-contact .side-language {
    display: grid !important;
    place-items: center !important;

    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: .7px !important;
  }

  /* Bar footer yazılarının üstüne binmesin */
  .site-footer {
    padding-bottom: 105px !important;
  }
}/* HOME — SERVICES / SEO */
.seo-services {
  padding: clamp(90px, 11vw, 150px) 8vw;
  background: #11110f;
  border-top: 1px solid rgba(245, 240, 226, 0.12);
}

.seo-services__inner {
  max-width: 1050px;
}

.seo-services__eyebrow {
  margin: 0 0 20px;
  color: rgba(245, 240, 226, 0.62);
  font-size: 11px;
  letter-spacing: 0.18em;
}

.seo-services h2 {
  max-width: 850px;
  margin: 0;
  color: #f4f0e7;
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.seo-services__text {
  max-width: 720px;
  margin: 30px 0 0;
  color: rgba(245, 240, 226, 0.72);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.65;
}

.seo-services__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
}

.seo-services__tags span {
  padding: 10px 14px;
  border: 1px solid rgba(245, 240, 226, 0.18);
  border-radius: 999px;
  color: rgba(245, 240, 226, 0.85);
  font-size: 12px;
  letter-spacing: 0.03em;
}

@media (max-width: 650px) {
  .seo-services {
    padding: 80px 24px;
  }

  .seo-services__tags {
    gap: 8px;
  }

  .seo-services__tags span {
    font-size: 11px;
    padding: 9px 12px;
  }
}
/* Ana sayfanın aşağı kayabilmesi için */
body.home-page {
  height: auto !important;
  min-height: 100vh;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}
/* MOBİL — hizmet bölümü ilk ekranda görünmesin */
@media (max-width: 650px) {
  body.home-page .hero {
    height: 100svh !important;
    height: 100dvh !important;
    min-height: 100svh !important;
    min-height: 100dvh !important;
    overflow: hidden;
  }
}
/* PROJECTS — hizmetler bölümünü footer ile hizala */
@media (min-width: 651px) {
  .projects-services {
    padding-left: 12vw;
  }
}
/* PROJECTS — hizmet başlığı footer başlığıyla aynı karakterde */
.projects-services h2 {
  font-family: inherit !important;
  font-weight: 800 !important;
  line-height: 0.98 !important;
  letter-spacing: -0.065em !important;
}
/* PROJECTS — iki başlık aynı boyut ve karakterde */
.projects-services h2,
.footer-top h2 {
  font-family: inherit !important;
  font-size: clamp(34px, 5vw, 68px) !important;
  font-weight: 800 !important;
  line-height: 0.98 !important;
  letter-spacing: -0.065em !important;
}
.contact-direct {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 22px !important;
  margin-top: 28px !important;
  padding-top: 20px !important;
  border-top: 1px solid rgba(245, 240, 226, 0.16);
}

.contact-direct__item {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 7px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #f4f0e7 !important;
  text-decoration: none !important;
}

.contact-direct__label {
  color: rgba(245, 240, 226, 0.42) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
}

.contact-direct__item strong {
  margin: 0 !important;
  color: #f4f0e7 !important;
  font-size: clamp(17px, 1.4vw, 21px) !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.03em !important;
}