/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #FF6B35;
  --primary-dark: #e55a28;
  --primary-light: #ff855c;
  --accent: #1B9CE3;
  --accent-dark: #1580bf;
  --dark: #1a1a2e;
  --dark-2: #16213e;
  --gray-900: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-400: #9ca3af;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --white: #ffffff;
  --green: #22c55e;
  --green-dark: #15803d;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, .1);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, .15);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, .2);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: .3s cubic-bezier(.4, 0, .2, 1);
  --transition-slow: .6s cubic-bezier(.4, 0, .2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.7;
  width: 100%;
  max-width: 100%;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 16px;
  color: var(--dark);
}

.section-subtitle {
  text-align: center;
  color: var(--gray-600);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s cubic-bezier(.4, 0, .2, 1), transform .8s cubic-bezier(.4, 0, .2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity .8s cubic-bezier(.4, 0, .2, 1), transform .8s cubic-bezier(.4, 0, .2, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .8s cubic-bezier(.4, 0, .2, 1), transform .8s cubic-bezier(.4, 0, .2, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}


.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  width: 100%;
  padding: 0 4%;
  box-sizing: border-box;
}

.logo {
  text-decoration: none;
  z-index: 1001;
  display: flex;
  align-items: center;
}

.logo img {
  height: 48px;
  /* Header logo height */
  width: auto;
  transition: var(--transition);
}

.header.scrolled .logo img {
  height: 42px;
  /* Slimmer logo on scroll */
}

.logo-text {
  display: none;
  /* Text logo hidden since we are using image logo */
}

.transition-logo img {
  width: clamp(320px, 65vw, 550px);
  /* Balanced logo size as requested */
  height: auto;
  margin-bottom: 15px;
}

.footer .logo img {
  height: 48px;
}

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

.nav-links a {
  padding: 6px 0;
  font-size: .85rem;
  font-weight: 500;
  color: var(--primary);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s ease;
}

.nav-links a:hover {
  opacity: .8;
}

.nav-links a.active::after,
.nav-links a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50px;
  font-weight: 500;
  font-size: .85rem;
  border: 1.5px solid var(--primary);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(255, 107, 53, .2);
}

.btn-contact:hover {
  background: transparent;
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 107, 53, .35);
}

/* Language selector */
.lang-selector {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 14px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  cursor: pointer;
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
  font-family: inherit;
  transition: var(--transition);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.lang-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.lang-flag {
  font-size: 1.2rem;
  line-height: 1;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border-radius: 6px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  min-width: 140px;
  z-index: 1002;
}

.lang-selector.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-btn svg {
  color: var(--gray-400);
  transition: transform .3s ease;
}

.lang-selector.open .lang-btn svg {
  transform: rotate(180deg);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
}

.lang-option:hover {
  background: var(--gray-100);
  color: var(--primary);
}

.lang-option.active {
  color: var(--primary);
  font-weight: 600;
}

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
  background: none;
  border: none;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 4px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SLIDER ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 0;
  z-index: 1;
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 1.2s ease, visibility 1.2s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, .35) 0%,
      rgba(0, 0, 0, .55) 50%,
      rgba(0, 0, 0, .7) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}

.slide-content {
  max-width: 800px;
  transform: translateY(30px);
  opacity: 0;
  transition: all .8s cubic-bezier(.4, 0, .2, 1) .3s;
}

.slide.active .slide-content {
  transform: translateY(0);
  opacity: 1;
}

.slide-content h1 {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .3);
  font-weight: 700;
}

.slide-content p {
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* Slider controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, .3);
  transform: translateY(-50%) scale(1.1);
}

.slider-prev {
  left: 24px;
}

.slider-next {
  right: 24px;
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.slider-dot.active {
  background: var(--white);
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(255, 255, 255, .5);
}

/* ===== SERVICES HERO SLIDER ===== */
.services-hero .slide-overlay {
  background: linear-gradient(135deg,
      rgba(0, 0, 0, .65) 0%,
      rgba(0, 0, 0, .45) 40%,
      rgba(0, 0, 0, .55) 100%);
  align-items: center;
  justify-content: flex-start;
  padding: 0 8%;
}

.services-slide-content {
  max-width: 650px;
  text-align: left;
}

.services-slide-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.5px;
  margin-bottom: 18px;
  line-height: 1.15;
}

.services-slide-content p {
  text-align: left;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 1.85;
  margin-bottom: 32px;
  max-width: 560px;
  color: rgba(255, 255, 255, .88);
}

.services-slide-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50px;
  color: rgba(255, 255, 255, .9);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.btn-teklif {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: rgba(255, 107, 53, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.btn-teklif:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4);
  color: #fff;
}

.btn-teklif svg,
.btn-teklif span {
  position: relative;
  z-index: 1;
  pointer-events: none;
  /* Çocuk öğeler tıklamayı engellemez, tüm buton alanı aktif olur */
}

.btn-teklif svg:last-child {
  transition: transform 0.3s ease;
}

.btn-teklif:hover svg:last-child {
  transform: translateX(5px);
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: 100px 0;
  position: relative;
  z-index: 2;
  background: var(--white);
  overflow-x: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--dark);
  margin-bottom: 24px;
}

.about-text p {
  color: var(--gray-600);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

.about-text p:last-of-type {
  margin-bottom: 32px;
}

.btn-details {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  color: var(--dark);
  font-weight: 600;
  border: 2px solid var(--dark);
  border-radius: 50px;
  transition: var(--transition);
  font-size: .95rem;
}

.btn-details:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-details svg {
  transition: var(--transition);
}

.btn-details:hover svg {
  transform: translateX(4px);
}

.about-images {
  position: relative;
  padding-bottom: 30px;
}

.about-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform .6s ease;
}

.about-img-main:hover img {
  transform: scale(1.05);
}

.about-img-secondary {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 55%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-xl);
}

.about-img-secondary img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .6s ease;
}

.about-img-secondary:hover img {
  transform: scale(1.05);
}

/* ===== PRODUCTS SECTION ===== */
.products {
  padding: 100px 0;
  background: var(--white);
  overflow-x: hidden;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.products-info h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--dark);
  margin-bottom: 24px;
}

.products-info h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.products-info p {
  color: var(--gray-600);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}



.products-info p:last-of-type {
  margin-bottom: 28px;
}



.products-images {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.products-images .prod-img {
  width: 85%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--white);
}

.products-images .prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform .6s ease;
}

.products-images .prod-img:hover img {
  transform: scale(1.15);
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: 80px 0 40px;
  background: var(--white);
}

.services .section-header {
  margin-bottom: 50px;
}

/* Image-based service cards */
.services-img-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-img-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-img-card--wide {
  grid-column: span 3;
  aspect-ratio: 21 / 7;
}

.service-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}

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

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.15) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: background 0.4s ease;
}

.service-img-overlay h3 {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.service-img-card:hover .service-img-overlay h3 {
  transform: translateY(-4px);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.service-card {
  background: var(--white);
  padding: 30px 24px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: all 0.4s ease;
  width: calc(25% - 18px);
  /* 4 cards per row for smaller items */
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.service-card:nth-child(7) {
  width: calc(50% - 12px);
  /* Makes the 7th item span wider to balance the grid */
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(27, 156, 227, 0.2);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: rgba(27, 156, 227, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
  stroke-width: 1.5;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  background: var(--primary);
}

.service-card:hover .service-icon svg {
  color: var(--white);
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
}

/* Subpage Hizmetler List */
.service-detail-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.service-detail-row.reverse {
  flex-direction: row-reverse;
}

.service-detail-img {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  aspect-ratio: 4 / 3;
}

.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-detail-row:hover .service-detail-img img {
  transform: scale(1.05);
}

.service-detail-text {
  flex: 1;
}

.service-icon-small {
  width: 50px;
  height: 50px;
  background: rgba(27, 156, 227, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon-small svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  stroke-width: 2;
}

.service-detail-text h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.service-detail-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray-600);
}

/* ===== WHY US SECTION ===== */
.why-us {
  padding: 40px 0 80px;
  overflow-x: hidden;
}

.why-us-list {
  list-style: none;
  padding: 0;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-us-list li {
  position: relative;
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.6;
}

.why-us-list li strong {
  color: var(--dark);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}



/* Quality section */
.quality-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 0;
}

.quality-image {
  width: 85%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--white);
  margin: 0 auto;
}

.quality-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform .6s ease;
}

.quality-image:hover img {
  transform: scale(1.15);
}

.quality-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--dark);
  margin-bottom: 24px;
}

.quality-text p {
  color: var(--gray-600);
  line-height: 1.9;
  font-size: 1rem;
  margin-bottom: 14px;
}

/* ===== PAYMENT SECTION ===== */
.payment {
  padding: 100px 0;
  background: var(--gray-100);
  overflow-x: hidden;
}

.payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.payment-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--dark);
  margin-bottom: 20px;
}

.payment-text p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 28px;
}

.btn-offer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(255, 107, 53, .3);
}

.btn-offer:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 107, 53, .4);
}

.payment-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.payment-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}



/* ===== LOCATION SECTION ===== */
.location {
  padding: 100px 0;
  overflow-x: hidden;
}

.location .section-title {
  margin-bottom: 80px;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.location-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--dark);
}

.location-text p {
  color: var(--gray-600);
  line-height: 1.9;
  margin-bottom: 16px;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 350px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== BLOG SECTION ===== */
.blog {
  padding: 100px 0;
  background: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-image .blog-icon {
  font-size: 3rem;
  opacity: .75;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image .blog-icon {
  transform: scale(1.15);
  opacity: 1;
}

.blog-card-body {
  padding: 28px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-date {
  font-size: .78rem;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 12px;
}

.blog-card-body h3 {
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.45;
  font-weight: 700;
}

.blog-card-body p {
  color: var(--gray-600);
  font-size: .92rem;
  line-height: 1.7;
  flex-grow: 1;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--dark);
  font-weight: 600;
  font-size: .9rem;
  transition: color 0.3s ease, gap 0.3s ease;
}

.blog-card-link:hover {
  color: var(--primary);
  gap: 10px;
}

/* Blog Pagination */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 50px;
}

.blog-page-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--dark);
  font-weight: 600;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-page-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.blog-page-btn.active {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.blog-page-btn.arrow:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

/* ===== SUBPAGE STYLES ===== */
.subpage-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #0b1120 0%, var(--dark) 100%);
  text-align: center;
  color: var(--white);
}

.subpage-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.subpage-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .6);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.subpage-content {
  padding: 80px 0;
}

.subpage-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 20px;
  font-weight: 700;
}

.subpage-content p {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.subpage-content .highlight-box {
  background: var(--gray-100);
  border-left: 4px solid var(--primary);
  padding: 24px 30px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 30px 0;
}

.subpage-content .highlight-box p {
  margin: 0;
  color: var(--dark);
  font-weight: 500;
}

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 50px 0;
}

.stat-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.stat-card .stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card .stat-label {
  font-size: .9rem;
  color: var(--gray-600);
  font-weight: 500;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.product-card-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.product-card-body {
  padding: 24px;
}

.product-card-body h3 {
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 8px;
  font-weight: 700;
}

.product-card-body p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* Reference grid */
.ref-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.ref-card {
  padding: 30px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: transform 0.3s ease;
}

.ref-card:hover {
  transform: translateY(-4px);
}

.ref-card .ref-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.ref-card h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 8px;
  font-weight: 700;
}

.ref-card p {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* Contact grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 40px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-card .ci-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card .ci-icon svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

.contact-info-card h4 {
  font-size: .85rem;
  color: var(--gray-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-info-card span {
  font-size: 1rem;
  color: var(--dark);
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  margin-bottom: 16px;
  transition: border-color 0.3s ease;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
}

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

.contact-form button {
  padding: 14px 40px;
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: var(--primary);
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 40px auto 0;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}

.timeline-item {
  position: relative;
  margin-bottom: 36px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 4px;
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--primary);
}

.timeline-item h4 {
  font-size: 1.05rem;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 4px;
}

.timeline-item span {
  font-size: .82rem;
  color: var(--primary);
  font-weight: 600;
}

.timeline-item p {
  font-size: .92rem;
  color: var(--gray-600);
  margin-top: 6px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .subpage-hero h1 {
    font-size: 2rem;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid,
  .ref-grid {
    grid-template-columns: 1fr;
  }

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

/* ===== GALLERY SECTION ===== */
.gallery-grid {
  column-count: 3;
  column-gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
  break-inside: avoid;
  cursor: pointer;
  background: var(--gray-100);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay svg {
  width: 40px;
  height: 40px;
  color: var(--white);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay svg {
  transform: translateY(0);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(11, 17, 32, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 40px;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: var(--shadow-xl);
  transform: scale(0.95);
  transition: transform 0.4s ease;
}

.lightbox.active .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  background: var(--primary);
  transform: rotate(90deg);
}

/* ===== FOOTER ===== */
/* Hakkımızda Sayfası Showcase Image */
.about-showcase {
  position: relative;
  margin: 40px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-showcase-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
}

.about-showcase:hover .about-showcase-img {
  transform: scale(1.05);
}


.footer {
  padding: 80px 0 40px;
  background: url('images/anim/mermer_arkaplan_animasyon.avif') center center / cover no-repeat;
  background-color: #0b1120;
  color: rgba(255, 255, 255, .7);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 40px;
  display: inline-block;
}

.footer-brand .logo-text {
  font-size: 2rem;
  color: var(--white);
  letter-spacing: -0.5px;
}

.footer-brand .logo-text span {
  color: var(--primary);
}

.footer-brand p {
  font-size: .95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, .55);
  max-width: 90%;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 24px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.footer-col a {
  display: block;
  padding: 8px 0;
  color: rgba(255, 255, 255, .55);
  font-size: .95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-col a:hover {
  color: var(--white);
  padding-left: 8px;
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  font-size: .95rem;
  color: rgba(255, 255, 255, .55);
}

.footer-contact-item svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--primary);
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .9rem;
  color: rgba(255, 255, 255, .4);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, .4);
  transition: var(--transition);
}

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



/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  transition: var(--transition);
  animation: whatsappPulse 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, .5);
}

@keyframes whatsappPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, .6);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero {
    margin-top: 0;
  }

  .about-grid,
  .products-grid,
  .quality-section,
  .payment-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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


  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    width: calc(33.333% - 16px);
  }

  .service-card:nth-child(7) {
    width: 100%;
  }

  .services-img-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-img-card--wide {
    grid-column: span 2;
    aspect-ratio: 16 / 7;
  }

  .service-detail-row,
  .service-detail-row.reverse {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
  }

  .service-detail-img {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 768px) {

  .reveal-left,
  .reveal-right {
    transform: translateY(30px);
  }

  .hero {
    margin-top: 0;
    min-height: 500px;
  }

  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 999;
    border-top: 1px solid var(--gray-200);
    overflow: hidden;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 0;
    font-size: .95rem;
    font-weight: 600;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-200);
    border-radius: 0;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .btn-contact {
    display: none;
  }

  .hamburger {
    display: flex;
  }


  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-card {
    width: 100%;
  }

  .services-img-grid {
    grid-template-columns: 1fr;
  }

  .service-img-card--wide {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }

  .gallery-grid {
    column-count: 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .quality-section {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .about-img-secondary {
    position: relative;
    bottom: 0;
    left: 0;
    width: 80%;
    margin-top: -40px;
    margin-left: auto;
  }



  .slider-btn {
    display: none;
  }

  .services-hero .slide-overlay {
    padding: 0 6%;
    align-items: flex-end;
    padding-bottom: 80px;
  }

  .services-slide-content h1 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    margin-bottom: 12px;
  }

  .services-slide-content p {
    font-size: .9rem;
    margin-bottom: 24px;
    line-height: 1.7;
  }

  .services-slide-badge {
    font-size: .7rem;
    padding: 5px 14px;
    margin-bottom: 14px;
  }

  .btn-teklif {
    padding: 12px 24px;
    font-size: .85rem;
  }

  .price-ticker {
    bottom: 12px;
    left: 12px;
    min-width: 160px;
    padding: 12px 16px;
  }

  .whatsapp-btn {
    bottom: 12px;
    right: 12px;
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
  }

  .mobile-break {
    display: block;
  }

  .location .section-title {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .about,
  .products,
  .why-us,
  .payment,
  .location,
  .blog {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .slide-content h1 {
    font-size: 1.5rem;
  }

  .slide-content p {
    font-size: .9rem;
  }
}

/* ===== UTILITIES ===== */
.mobile-break {
  display: none;
}

/* ===== MOBILE OVERLAY ===== */
.nav-overlay {
  display: none;
}

/* ===== PREMIUM PAGE MATTE FADE TRANSITION (Mat Geçiş) ===== */
html {
  background-color: #ffffff;
}

/* JS yüklenene kadar sayfayı gizleyen geçici perde (Beyaz parlamayı önler) */
html:not(.js-loaded)::after {
  content: '';
  position: fixed;
  inset: 0;
  background: #0b1120 url('images/anim/mermer_arkaplan_animasyon.avif') center center / cover no-repeat;
  z-index: 999998;
  pointer-events: none;
  animation: fallbackFadeOut 0.8s ease-out forwards;
  animation-delay: 0.5s;
  /* Shortened delay */
}

@media (max-width: 768px) {
  html:not(.js-loaded)::after {
    width: 110vh;
    /* slightly larger to prevent edges showing during rotation */
    height: 110vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    inset: auto;
  }
}

body {
  background-color: var(--white);
  min-height: 100vh;
}

/* 2. JS Tarafından İnşa Edilen "Sayfadan Çıkış (Exit)" Overlay'i */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  background-color: #0b1120;
}

.page-transition::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #0b1120 url('images/anim/mermer_arkaplan_animasyon.avif') center center / cover no-repeat;
  z-index: -1;
}

@media (max-width: 768px) {
  .page-transition::before {
    width: 125vmax;
    height: 125vmax;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg) translateZ(0);
  }
}

/* İlk Açılış Animasyonu (Entry Transition) */
.page-transition.is-entering {
  opacity: 1;
  visibility: visible;
  animation: overlayFadeOut 1.2s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  animation-delay: 1.2s;
  /* Let the logo breathe */
}

.page-transition.is-exiting {
  opacity: 0;
  visibility: visible;
  animation: overlayFadeIn 0.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

/* Sayfa değişirken logoyu gizle ki sadece girdiğinde 1 kere oynasın */
.page-transition.is-exiting .transition-logo {
  display: none;
}

@keyframes fallbackFadeOut {
  0% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes overlayFadeOut {
  0% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes overlayFadeIn {
  0% {
    opacity: 0;
    visibility: visible;
  }

  100% {
    opacity: 1;
    visibility: visible;
  }
}

.transition-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #ffffff;
  letter-spacing: -1px;
  text-align: center;
  pointer-events: none;
}

.transition-progress {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  margin: 6px 0 2px 0;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}

.progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
  transform: scaleX(0);
  transform-origin: left;
}

@keyframes fillProgress {
  0% {
    transform: scaleX(0);
  }

  100% {
    transform: scaleX(1);
  }
}

@keyframes overlayFadeOut {
  0% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
    display: none;
  }
}

@keyframes overlayFadeIn {
  0% {
    opacity: 0;
    visibility: visible;
    display: flex;
  }

  100% {
    opacity: 1;
    visibility: visible;
    display: flex;
  }
}

.transition-logo span {
  font-size: clamp(0.8rem, 2vw, 1.5rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 6px;
  display: block;
  margin-top: 5px;
}