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

:root {
  --blue-light: #0166be47;
  --blue-mid: #7fb2df;
  --blue-dark: #014d8f;
  --primary-blue: #0166be;
  --ice-white: #bed3ed3b;
  --text-dark: #1a232e;
  --text-mid: #2d3b4a;
  --nav-link: #2d3b4a;
}

html {
  scroll-behavior: smooth;
}

body {
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  background-color: #ffffff;
  overflow-x: hidden;
}

#preloader {
  position: fixed;
  inset: 0;
  background-color: #ffffff;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.loader-logo {
  width: 180px;
  opacity: 0;
  transform: translateY(20px);
  animation: loaderLogoReveal 1s ease forwards;
}

.loader-logo img {
  width: 100%;
  height: auto;
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(1, 102, 190, 0.1);
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.loader-progress {
  position: absolute;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #0166be;
  animation: loaderProgressMove 2s infinite ease-in-out;
}

.loader-text {
  font-size: 12px;
  font-weight: 700;
  color: #0166be;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.6;
}

.loader-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  pointer-events: none;
}

.loader-wave svg {
  width: 200%;
  height: auto;
  animation: loaderWaveFlow 10s linear infinite;
}

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

@keyframes loaderProgressMove {
  0% {
    left: -100%;
  }

  50% {
    left: 0%;
  }

  100% {
    left: 100%;
  }
}

@keyframes loaderWaveFlow {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--text-dark);
}

.main-bg-wrapper {
  position: relative;
  width: 100%;
}

.main-bg-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 15% 20%, rgba(255, 255, 255, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 85% 15%, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.ice-decor {
  position: absolute;
  pointer-events: none;
  opacity: 0.18;
  filter: blur(0.5px);
}

.ice-decor.left {
  left: -40px;
  top: 50px;
  width: 320px;
  height: auto;
  transform: rotate(-15deg);
}

.ice-decor.right {
  right: -60px;
  top: 0px;
  width: 280px;
  height: auto;
  transform: rotate(10deg);
}

.water-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  overflow: hidden;
  pointer-events: none;
}

.water-wave svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.water-surface {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(180deg, transparent 0%, rgba(180, 228, 224, 0.35) 40%, rgba(140, 210, 205, 0.55) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.navbar {
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
}


.logo {
  flex: 1;
  display: flex;
  align-items: center;
}

.logo img {
  height: 100px;
  width: auto;
  display: block;
}

.nav-links {
  flex: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 700;
  color: var(--nav-link);
  text-decoration: none;
  letter-spacing: 0.03em;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
  border-radius: 2px;
  opacity: 0;
}

.nav-links a:hover {
  color: var(--primary-blue);
  transform: translateY(-2px);
}

.nav-links a:hover::after {
  width: 100%;
  opacity: 1;
}

.nav-btn-buy {
  background: var(--primary-blue);
  color: #ffffff !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: 18px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 10px 20px rgba(1, 102, 190, 0.2);
}

.nav-btn-buy::after {
  display: none !important;
}

.nav-btn-buy:hover {
  background: #0155a0 !important;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(1, 102, 190, 0.3);
}

.mobile-nav-links .nav-btn-buy {
  display: inline-block;
  margin-top: 10px;
  text-align: center;
}

.nav-links a:hover {
  color: var(--text-dark);
}

.nav-links .nav-active a {
  border-bottom: 1.5px solid var(--text-dark);
  padding-bottom: 2px;
}

.nav-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-links a {
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.social-links a:hover {
  opacity: 0.6;
}

.social-links svg {
  width: 20px;
  height: 20px;
}

.lang-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}

.lang-selector a {
  color: var(--text-dark);
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.lang-selector a.active,
.lang-selector a:hover {
  opacity: 1;
}

.lang-selector span {
  color: var(--text-dark);
  opacity: 0.3;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  padding: 0 56px;
}

@keyframes textReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.hero-text {
  flex: 0 0 auto;
  max-width: 650px;
  position: relative;
  z-index: 10;
  animation: textReveal 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-headline {
  font-size: clamp(46px, 6vw, 70px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 0;
  background: linear-gradient(90deg, var(--text-dark) 0%, #0166be 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 8px 16px rgba(1, 102, 190, 0.15));
}

.hero-product {
  position: absolute;
  inset: 0;
  z-index: 5;
}

.hero-product img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

/* Buz parçaları hero etrafında */
.ice-chunks {
  position: absolute;
  z-index: 15;
  pointer-events: none;
}

/* Buz parçaları SVG ile yapılıyor */
.ice-block {
  position: absolute;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(200, 240, 238, 0.4) 100%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(2px);
  box-shadow: 0 4px 20px rgba(100, 200, 195, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.ice-b1 {
  width: 80px;
  height: 55px;
  bottom: 28%;
  right: 36%;
  transform: rotate(12deg);
}

.ice-b2 {
  width: 55px;
  height: 40px;
  bottom: 22%;
  right: 42%;
  transform: rotate(-8deg);
}

.ice-b3 {
  width: 100px;
  height: 70px;
  bottom: 25%;
  right: 28%;
  transform: rotate(5deg);
}

.ice-b4 {
  width: 45px;
  height: 35px;
  bottom: 32%;
  right: 50%;
  transform: rotate(-15deg);
}

.ice-b5 {
  width: 65px;
  height: 48px;
  bottom: 20%;
  right: 22%;
  transform: rotate(20deg);
}

.bottom-banner {
  position: relative;
  z-index: 30;
  text-align: center;
  padding: 22px 56px 28px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.bottom-banner h2 {
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  text-transform: uppercase;
}

.snowflake-svg {
  position: absolute;
  pointer-events: none;
  opacity: 0.12;
}

.sf1 {
  left: -60px;
  top: 40px;
  width: 380px;
}

.sf2 {
  right: -40px;
  top: -30px;
  width: 300px;
}

.sf3 {
  left: 60px;
  bottom: 80px;
  width: 200px;
  opacity: 0.08;
}

.products-showcase {
  position: relative;
  z-index: 30;
  width: 100%;
  padding: 80px 0;
}

.products-header {
  text-align: center;
  margin-bottom: 50px;
}

.products-header h2 {
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: stretch;
  padding-bottom: 60px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  padding: 24px 20px 30px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  text-decoration: none;
}

.product-card:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(1, 102, 190, 0.15);
  border-color: rgba(255, 255, 255, 1);
}

.product-image-wrapper {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.product-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.06));
  pointer-events: none;
}

.product-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.product-card:hover .product-title {
  color: #0166be;
}

.product-card::after {
  content: '→';
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  text-align: center;
  color: #0166be;
  font-size: 24px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
  pointer-events: none;
}

.product-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 1000;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  transition: all 0.3s cubic-bezier(0.77, 0.2, 0.05, 1);
  transform-origin: left center;
}

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

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

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

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(180deg, #ffffff 0%, #bed3edd6 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  opacity: 0;
  visibility: hidden;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-logo {
  height: 75px;
  width: auto;
}

.mobile-close {
  cursor: pointer;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.mobile-close:hover {
  opacity: 0.6;
}

.mobile-close svg {
  width: 32px;
  height: 32px;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1) 0.2s;
}

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

.mobile-nav-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
}

.mobile-nav-links a {
  font-size: 26px;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
  color: #0166be;
}

.mobile-social-links {
  display: flex;
  gap: 20px;
}

.mobile-social-links a {
  color: var(--text-dark);
  transition: opacity 0.3s ease;
}

.mobile-social-links a:hover {
  opacity: 0.6;
}

.mobile-social-links svg {
  width: 28px;
  height: 28px;
}

.mobile-lang-selector {
  display: flex;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
}

.mobile-lang-selector a {
  color: var(--text-dark);
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.mobile-lang-selector a.active,
.mobile-lang-selector a:hover {
  opacity: 1;
}

.mobile-lang-selector span {
  color: var(--text-dark);
  opacity: 0.3;
}

@media (max-width: 1024px) {
  .navbar {
    padding: 24px 32px;
  }

  .nav-links {
    display: none;
  }

  .nav-right {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-content {
    padding: 0 32px;
  }

  .hero-headline {
    font-size: clamp(40px, 7vw, 60px);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 0 24px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 16px 20px;
  }

  .logo img {
    height: 60px;
  }

  /* Hero mobilde normal flow'a alınıyor, position:absolute kaldırılıyor */
  .hero {
    min-height: unset;
    display: flex;
    flex-direction: column;
  }

  .hero-content {
    position: relative;
    inset: unset;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 20px 0;
    z-index: 20;
  }

  .hero-text {
    max-width: 100%;
    padding-left: 16px;
    border-left: 3px solid var(--primary-blue);
    margin-top: 16px;
  }

  .hero-headline {
    font-size: clamp(28px, 7.5vw, 40px);
    padding-top: 0;
    line-height: 1.15;
  }

  /* Ürün görseli mobilde normal akışta, tam genişlik */
  .hero-product {
    position: relative;
    inset: unset;
    width: 100%;
    margin-top: 24px;
    z-index: 5;
  }

  .hero-product img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
  }

  /* Su yüzeyi ve buz mobilde gizleniyor */
  .water-surface {
    display: none;
  }

  .ice-b1,
  .ice-b2,
  .ice-b3,
  .ice-b4,
  .ice-b5 {
    display: none;
  }

  .bottom-banner {
    padding: 18px 20px;
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  /* Products showcase: margin-top sabit değer kaldırıldı */
  .products-showcase {
    padding: 32px 0 0;
    margin-top: 0;
  }

  .products-header {
    margin-bottom: 28px;
  }

  .products-header h2 {
    font-size: 22px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0 16px;
  }

  .product-card {
    padding: 16px 12px 20px;
    border-radius: 18px;
  }

  .product-title {
    font-size: 13px;
    letter-spacing: 0.01em;
  }

  .innovation .section-header h2 {
    font-size: 28px;
    line-height: 1.2;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: clamp(24px, 7vw, 32px);
    padding-top: 0;
  }

  .mobile-logo {
    height: 65px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 12px;
  }

  .product-title {
    font-size: 12px;
  }
}

@media (max-width: 360px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 16px;
  }

  .product-title {
    font-size: 14px;
  }
}

.innovation {
  padding: 0;
  background-color: #ffffff;
}

.innovation .section-header {
  padding: 40px 24px 0;
  text-align: center;
  background-color: #ffffff;
}

.innovation .section-header h2 {
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  color: #000;
  text-transform: uppercase;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.innovation-steps {
  display: flex;
  flex-direction: column;
}

.step-card {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 0;
  margin: 40px 0;
  background: linear-gradient(180deg, #ffffff 0%, #bed3ed3b 100%);
  border-radius: 0 0 37px 37px;
}

.step-card:nth-child(even) {
  flex-direction: row-reverse;
}

.step-content {
  flex: 1;
  z-index: 10;
}

.step-text-box {
  max-width: 600px;
  padding-left: 40px;
  border-left: 4px solid #0166be;
}

.step-number {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #0166be;
  margin-bottom: 16px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.step-card h3 {
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 700;
  color: #000;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.step-card p {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 40px;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  background: #000;
  color: #fff;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 700;
  gap: 8px;
  letter-spacing: 0.05em;
}

.step-badge .badge-text {
  font-weight: 400;
  opacity: 0.7;
}

.step-image {
  flex: 1;
  height: 650px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card:hover .step-image img {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .innovation .container {
    padding: 0 32px;
  }

  .step-card,
  .step-card:nth-child(even) {
    flex-direction: column;
    gap: 40px;
    padding: 0;
  }

  .step-image {
    width: 100%;
    height: 450px;
  }

  .step-text-box {
    max-width: 100%;
    padding-left: 24px;
  }
}

@media (max-width: 768px) {
  .step-card h3 {
    font-size: 26px;
  }

  .step-image {
    height: 300px;
  }

  .step-card p {
    font-size: 16px;
  }
}

.about-us {
  padding: 30px 0;
  background-color: #ffffff;
  overflow: hidden;
}

.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-60px);
}

.reveal-right {
  transform: translateX(60px);
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translate(0, 0);
}

.about-us h3 {
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.about-main {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 80px;
}

.about-text {
  flex: 1.2;
}

.about-text p {
  font-size: 20px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 24px;
}

.btn-modern {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  padding: 14px 32px;
  background-color: var(--primary-blue);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(1, 102, 190, 0.2);
}

.btn-icon {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-icon svg {
  width: 14px;
  height: 14px;
  transition: transform 0.4s ease;
}

.btn-modern:hover {
  background-color: var(--blue-dark);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(1, 102, 190, 0.3);
}

.btn-modern:hover .btn-icon {
  background: #ffffff;
  color: var(--primary-blue);
  transform: translateX(5px);
}


.about-visual {
  flex: 1;
}

.about-visual img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(1, 102, 190, 0.1));
  border-radius: 24px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-box {
  background: linear-gradient(180deg, #ffffff 0%, #bed3ed3b 100%);
  padding: 40px 32px;
  border-radius: 24px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(1, 102, 190, 0.05);
}

.feature-box:nth-child(1) {
  transition-delay: 0.2s;
}

.feature-box:nth-child(2) {
  transition-delay: 0.4s;
}

.feature-box:nth-child(3) {
  transition-delay: 0.6s;
}

.feature-box:hover {
  transform: translateY(-8px);
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(1, 102, 190, 0.08);
  border-color: rgba(1, 102, 190, 0.2);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: rgba(1, 102, 190, 0.1);
  color: #0166be;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.4s ease;
}

.feature-box:hover .feature-icon {
  background: #0166be;
  color: #ffffff;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
}

.feature-box p {
  font-size: 17px;
  font-weight: 600;
  color: #333;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .about-main {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}

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

  .about-text p {
    font-size: 18px;
  }
}

.sachet-showcase {
  padding: 70px 0;
  background-color: #ffffff;
  overflow: hidden;
}

.sachet-content {
  display: flex;
  align-items: center;
  gap: 80px;
}

.sachet-text {
  flex: 1;
}

.sachet-text h2 {
  font-size: clamp(32px, 5vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.sachet-text p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 32px;
}

.sachet-list {
  list-style: none;
  margin-bottom: 40px;
}

.sachet-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}

.sachet-list li svg {
  width: 20px;
  height: 20px;
  color: var(--primary-blue);
}

.sachet-visual {
  flex: 1.2;
}

.sachet-image-box {
  position: relative;
  border-radius: 32px;
  overflow: visible;
}

.sachet-image-box img {
  width: 100%;
  height: auto;
  border-radius: 32px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.sachet-floating-card {
  position: absolute;
  bottom: 40px;
  left: -40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 24px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 20px 40px rgba(1, 102, 190, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  animation: float-y 4s ease-in-out infinite;
}

.sfc-icon {
  width: 44px;
  height: 44px;
  background: rgba(1, 102, 190, 0.1);
  color: var(--primary-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sfc-icon svg {
  width: 24px;
  height: 24px;
}

.sachet-floating-card strong {
  display: block;
  font-size: 16px;
  color: var(--text-dark);
}

.sachet-floating-card p {
  margin: 0;
  font-size: 13px;
  color: var(--text-mid);
}

@keyframes float-y {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@media (max-width: 1024px) {
  .sachet-content {
    flex-direction: column;
    gap: 60px;
    text-align: center;
  }

  .sachet-list li {
    justify-content: center;
  }

  .sachet-floating-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
  }
}

.texture-analysis {
  padding: 0 0 50px;
  background: linear-gradient(180deg, #ffffff 0%, #bed3ed3b 100%);
}

.texture-analysis h3 {
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.analysis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.analysis-box {
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(1, 102, 190, 0.05);
}

.analysis-box:nth-child(1) {
  transition-delay: 0.1s;
}

.analysis-box:nth-child(2) {
  transition-delay: 0.2s;
}

.analysis-box:nth-child(3) {
  transition-delay: 0.3s;
}

.analysis-box:nth-child(4) {
  transition-delay: 0.4s;
}

.analysis-box:nth-child(5) {
  transition-delay: 0.5s;
}

.analysis-box:nth-child(6) {
  transition-delay: 0.6s;
}

.analysis-box:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(1, 102, 190, 0.1);
  border-color: rgba(1, 102, 190, 0.2);
}

.analysis-icon {
  width: 56px;
  height: 56px;
  background: #bed3ed3b;
  color: #0166be;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.analysis-box:hover .analysis-icon {
  background: #0166be;
  color: #ffffff;
}

.analysis-icon svg {
  width: 28px;
  height: 28px;
}

.analysis-text h4 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 4px;
}

.analysis-text p {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .analysis-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

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

  .analysis-box {
    padding: 24px;
  }
}

.advantages {
  padding: 70px 0;
  background: linear-gradient(180deg, #ffffff 0%, #bed3ed3b 100%);
}

.advantages-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
  align-items: flex-start;
}

.section-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #0166be;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  position: relative;
  padding-left: 50px;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 40px;
  height: 2px;
  background-color: #0166be;
}

.advantages-header h2 {
  font-size: clamp(32px, 5vw, 40px);
  line-height: 1.1;
  font-weight: 700;
  color: #000;
  margin-bottom: 32px;
}

.advantages-header p {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 40px;
  max-width: 540px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 18px 40px;
  background-color: #0166be;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 10px 20px rgba(1, 102, 190, 0.15);
}

.btn-primary:hover {
  background-color: #1a2e2c;
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.advantages-items {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.advantage-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  background: linear-gradient(180deg, #ffffff 0%, #bed3ed3b 100%);
  border-radius: 24px;
  transition: all 0.4s ease;
  border: 1px solid rgba(1, 102, 190, 0.05);
}

.advantage-card:hover {
  background: #ffffff;
  transform: translateX(12px);
  box-shadow: 0 20px 40px rgba(1, 102, 190, 0.08);
  border-color: rgba(1, 102, 190, 0.2);
}

.advantage-icon {
  width: 56px;
  height: 56px;
  background: #0166be;
  color: #ffffff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.advantage-icon svg {
  width: 28px;
  height: 28px;
}

.advantage-info h4 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.advantage-info p {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .advantages-header {
    text-align: center;
  }

  .advantages-header p {
    margin: 0 auto 40px;
  }

  .section-tag {
    padding-left: 0;
    text-align: center;
  }

  .section-tag::before {
    display: none;
  }
}

@media (max-width: 768px) {
  

  .advantages {
    padding: 35px 0;
  }

  .advantage-card {
    flex-direction: column;
    padding: 24px;
    text-align: center;
    align-items: center;
  }
}

.export-map {
  padding: 70px 0 50px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.export-map::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(1, 102, 190, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.export-map .section-header {
  text-align: center;
  margin-bottom: 80px;
}

.export-map h3 {
  font-size: clamp(36px, 5vw, 40px);
  font-weight: 700;
  color: #1a2e2c;
  margin-bottom: 20px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.export-map p {
  font-size: 19px;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 80px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-number {
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 700;
  color: #0166be;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  font-weight: 700;
  color: #1a2e2c;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

.map-wrapper {
  position: relative;
  width: 100%;
  margin: 60px 0 25px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-container {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  aspect-ratio: 2 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.map-container svg {
  width: 80%;
  height: auto !important;
  display: block;
  margin: 0 auto;
}

.map-container path {
  fill: #bed3ed78;
  stroke: #ffffff;
  stroke-width: 0.5;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
  pointer-events: none;
}

.map-container path.is-export {
  fill: #0166be5e;
  cursor: pointer;
  pointer-events: all;
}

.map-container path.is-export:hover {
  fill: #0166be !important;
  filter: drop-shadow(0 0 15px rgba(1, 102, 190, 0.4));
}

.map-container path.active {
  fill: #0166be !important;
  stroke: #ffffff;
  stroke-width: 1.2;
}

.map-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 40px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(1, 102, 190, 0.1);
  border-top-color: #0166be;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


.country-list-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.country-item {
  background: #ffffff;
  padding: 24px 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 700;
  color: #1a2e2c;
  font-size: 16px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(1, 102, 190, 0.06);
  box-shadow: 0 10px 30px rgba(1, 102, 190, 0.04);
}

.country-dot {
  width: 8px;
  height: 8px;
  background-color: #0166be;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.country-item:hover {
  background: #0166be;
  color: #ffffff;
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 25px 50px rgba(1, 102, 190, 0.15);
  border-color: #0166be;
}

.country-item:hover .country-dot {
  background-color: #ffffff;
  transform: scale(1.5);
}

.map-tooltip {
  position: fixed;
  padding: 10px 20px;
  background: rgba(26, 46, 44, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -100%) scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

.map-tooltip.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -120%) scale(1);
}

.map-tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid rgba(26, 46, 44, 0.95);
}

@media (max-width: 1100px) {
  .stats-row {
    gap: 40px;
  }

  .country-list-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .export-map {
    padding: 70px 0 30px;
  }

  .stats-row {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 60px;
  }

  .map-wrapper {
    padding: 30px;
    border-radius: 30px;
    margin-bottom: 60px;
  }

  .country-list-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .marker {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .country-list-grid {
    grid-template-columns: 1fr;
  }

  .export-map h3 {
    font-size: 32px;
  }
}

.main-footer {
  background: linear-gradient(180deg, #ffffff 0%, #bed3edb8 100%);
  border-top: 1px solid rgba(1, 102, 190, 0.1);
}

.footer-top {
  padding: 80px 0 30px;
}

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

.footer-logo {
  display: inline-block;
  margin-bottom: 30px;
}

.footer-logo img {
  height: 80px;
}

.footer-about {
  color: var(--text-mid);
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 32px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(1, 102, 190, 0.05);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a svg {
  width: 20px;
  height: 20px;
}

.footer-social a:hover {
  background: var(--primary-blue);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(1, 102, 190, 0.2);
}

.footer-social a:hover svg {
  color: #ffffff !important;
  stroke: #ffffff !important;
}

.footer-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 30px;
  letter-spacing: 0.1em;
  position: relative;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 16px;
}

.footer-links a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-blue);
  padding-left: 5px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: var(--text-mid);
  font-size: 15px;
}

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

.footer-bottom {
  padding: 30px 0;
  border-top: 1px solid rgba(1, 102, 190, 0.05);
}

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

.copyright {
  font-size: 13px;
  color: #8899a6;
}

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

.bottom-links a {
  font-size: 13px;
  color: #8899a6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.bottom-links a:hover {
  color: var(--primary-blue);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 64px;
  height: 64px;
  background: rgba(1, 102, 190, 0.95);
  backdrop-filter: blur(10px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.5) translateY(40px);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 20px 40px rgba(1, 102, 190, 0.3);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
  animation: btt-pulse 3s infinite ease-in-out;
}

@keyframes btt-pulse {
  0% {
    box-shadow: 0 20px 40px rgba(1, 102, 190, 0.3);
  }

  50% {
    box-shadow: 0 25px 50px rgba(1, 102, 190, 0.5);
  }

  100% {
    box-shadow: 0 20px 40px rgba(1, 102, 190, 0.3);
  }
}

.back-to-top .btt-icon {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.back-to-top:hover {
  background: #0166be;
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 30px 60px rgba(1, 102, 190, 0.4);
}

.back-to-top:hover .btt-icon {
  transform: translateY(-5px);
}

.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.progress-ring__circle {
  transition: stroke-dashoffset 0.1s linear;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  stroke: #ffffff;
  stroke-width: 4;
  stroke-linecap: round;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.back-to-top.active .progress-ring__circle {
  opacity: 1;
}

.quote-section {
  padding: 80px 0;
  background-color: #f8fbff;
  position: relative;
  overflow: hidden;
}

.quote-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  background: #ffffff;
  border-radius: 40px;
  padding: 60px;
  box-shadow: 0 40px 100px rgba(1, 102, 190, 0.08);
  border: 1px solid rgba(1, 102, 190, 0.05);
}

.quote-info h2 {
  font-size: clamp(32px, 5vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.quote-info p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 48px;
}

.quote-contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.q-contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.q-icon {
  width: 56px;
  height: 56px;
  background: rgba(1, 102, 190, 0.06);
  color: var(--primary-blue);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.q-icon svg {
  width: 24px;
  height: 24px;
}

.q-contact-item span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.q-contact-item p {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

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

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.modern-form input,
.modern-form select,
.modern-form textarea {
  width: 100%;
  padding: 16px 20px;
  background: #f4f8fc;
  border: 2px solid transparent;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.modern-form input:focus,
.modern-form select:focus,
.modern-form textarea:focus {
  background: #ffffff;
  border-color: var(--primary-blue);
  outline: none;
  box-shadow: 0 10px 30px rgba(1, 102, 190, 0.05);
}

.custom-radio-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.radio-label {
  cursor: pointer;
}

.radio-label input {
  display: none;
}

.radio-custom {
  display: block;
  padding: 12px 24px;
  background: #f4f8fc;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  transition: all 0.3s ease;
}

.radio-label input:checked+.radio-custom {
  background: var(--primary-blue);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(1, 102, 190, 0.2);
}

.btn-submit {
  width: 100%;
  padding: 20px;
  background: var(--primary-blue);
  color: #ffffff;
  border: none;
  border-radius: 15px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.4s ease;
  margin-top: 10px;
}

.btn-submit:hover {
  background: #0155a0;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(1, 102, 190, 0.3);
}

.btn-submit svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn-submit:hover svg {
  transform: translateX(5px);
}

@media (max-width: 1100px) {
  .quote-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 40px;
  }
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .quote-wrapper {
    padding: 30px 20px;
    border-radius: 30px;
  }
}

.whatsapp-btn {
  position: fixed;
  bottom: 40px;
  left: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  z-index: 10000;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wa-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
  position: relative;
  animation: wa-pulse 2.5s infinite;
}

.wa-icon svg {
  width: 32px;
  height: 32px;
}

.wa-text {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  color: #128C7E;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(18, 140, 126, 0.1);
  opacity: 0;
  transform: translateX(-15px);
  transition: all 0.4s ease;
  white-space: nowrap;
  pointer-events: none;
}

.whatsapp-btn:hover {
  transform: scale(1.05);
}

.whatsapp-btn:hover .wa-text {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-btn:hover .wa-icon {
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

@keyframes wa-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }

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

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

@media (max-width: 768px) {
  .whatsapp-btn {
    bottom: 24px;
    left: 24px;
  }

  .wa-icon {
    width: 50px;
    height: 50px;
  }

  .wa-icon svg {
    width: 26px;
    height: 26px;
  }

  .wa-text {
    display: none;
  }
}


@media (max-width: 768px) {
  .back-to-top {
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
  }
}

/* Page Banner Styles */
.page-banner {
  position: relative;
  width: 100%;
  padding: 90px 0;
  background: linear-gradient(180deg, #ffffff 0%, #bed3edd6 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Fix for hero height on internal pages */
.hero:has(.page-banner) {
  min-height: auto !important;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--blue-light) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  opacity: 0.5;
  filter: blur(40px);
}

.banner-wrapper {
  position: relative;
  z-index: 10;
}

.banner-text {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.page-title {
  font-size: clamp(36px, 5vw, 48px);
  margin-bottom: 15px;
  line-height: 1.2;
  text-transform: uppercase;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.05em;
}

.breadcrumb a {
  text-decoration: none;
  color: var(--text-mid);
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--primary-blue);
}

.breadcrumb .sep {
  opacity: 0.4;
}

.breadcrumb .current {
  color: var(--primary-blue);
  font-weight: 700;
}

.inner-content-container {
  padding: 80px 0;
}

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

  .page-title {
    font-size: 32px;
  }
}


/* Contact Page Styles */
.contact-page-content {
  padding: 70px 0;
  background-color: #fcfdfe;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: flex-start;
}

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

.contact-info-header h2 {
  font-size: clamp(32px, 4vw, 42px);
  margin: 15px 0 20px;
  line-height: 1.1;
}

.contact-info-header p {
  color: var(--text-mid);
  line-height: 1.6;
}

.contact-items-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}

.contact-item-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.cic-icon {
  flex: 0 0 50px;
  height: 50px;
  background: rgba(1, 102, 190, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  transition: all 0.3s ease;
}

.contact-item-card:hover .cic-icon {
  background: var(--primary-blue);
  color: #fff;
  transform: translateY(-5px);
}

.cic-icon svg {
  width: 24px;
  height: 24px;
}

.cic-text span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}

.cic-text p {
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 500;
  margin: 0;
}

.contact-social-info h5 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.csi-links {
  display: flex;
  gap: 15px;
}

.csi-links a {
  width: 45px;
  height: 45px;
  border: 1px solid rgba(1, 102, 190, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.csi-links a:hover {
  background: var(--primary-blue);
  color: #fff;
  border-color: var(--primary-blue);
  transform: scale(1.1);
}

/* Glassmorphism Form */
.form-container-glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 50px;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(1, 102, 190, 0.08);
}

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

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

.modern-contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.modern-contact-form input,
.modern-contact-form select,
.modern-contact-form textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid rgba(1, 102, 190, 0.1);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.modern-contact-form input:focus,
.modern-contact-form select:focus,
.modern-contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  background: #fff;
  box-shadow: 0 10px 20px rgba(1, 102, 190, 0.05);
}

.btn-submit-contact {
  width: 100%;
  background: var(--primary-blue);
  color: #fff;
  padding: 18px;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 15px 30px rgba(1, 102, 190, 0.2);
}

.btn-submit-contact:hover {
  background: var(--blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(1, 102, 190, 0.3);
}

.btn-submit-contact svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn-submit-contact:hover svg {
  transform: translateX(5px);
}

.contact-map-section {
  padding-bottom: 0;
}

.map-frame-wrapper {
  line-height: 0;
  border-top: 1px solid rgba(1, 102, 190, 0.1);
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 600px) {
  .form-container-glass {
    padding: 30px 20px;
  }

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

/* Services Page Styles */
.services-page-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: clamp(32px, 4vw, 42px);
  margin-bottom: 20px;
  line-height: 1.1;
}

.section-header p {
  color: var(--text-mid);
  font-size: 17px;
  line-height: 1.6;
}

.services-modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.service-feature-card {
  position: relative;
  background: #f8fafc;
  padding: 50px 40px;
  border-radius: 30px;
  border: 1px solid rgba(1, 102, 190, 0.05);
  transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
  overflow: hidden;
  height: 100%;
}

.service-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--blue-dark) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.service-feature-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(1, 102, 190, 0.1);
}

.service-feature-card:hover::before {
  opacity: 1;
}

.sfc-icon-box {
  position: relative;
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  margin-bottom: 30px;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
}

.service-feature-card:hover .sfc-icon-box {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  backdrop-filter: blur(5px);
}

.sfc-icon-box svg {
  width: 32px;
  height: 32px;
}

.service-feature-card h3 {
  position: relative;
  font-size: 24px;
  margin-bottom: 20px;
  z-index: 2;
  transition: color 0.5s ease;
  background: none;
  -webkit-text-fill-color: initial;
  color: var(--text-dark);
}

.service-feature-card:hover h3 {
  color: #fff;
}

.service-feature-card p {
  position: relative;
  color: var(--text-mid);
  line-height: 1.7;
  z-index: 2;
  transition: color 0.5s ease;
}

.service-feature-card:hover p {
  color: rgba(255, 255, 255, 0.9);
}

.sfc-number {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 60px;
  font-weight: 900;
  color: rgba(1, 102, 190, 0.03);
  line-height: 1;
  transition: color 0.5s ease;
  z-index: 1;
}

.service-feature-card:hover .sfc-number {
  color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .services-page-section {
    padding: 70px 0;
  }

  .service-feature-card {
    padding: 40px 30px;
  }
}

/* Services Page Styles */
.services-section {
  padding: 70px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(1, 102, 190, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(1, 102, 190, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.service-card {
  display: flex;
  gap: 30px;
  background: #ffffff;
  padding: 45px;
  border-radius: 30px;
  border: 1px solid rgba(1, 102, 190, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(1, 102, 190, 0.12);
  border-color: rgba(1, 102, 190, 0.15);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon-box {
  flex: 0 0 80px;
  height: 80px;
  background: rgba(1, 102, 190, 0.05);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  transition: all 0.4s ease;
}

.service-card:hover .service-icon-box {
  background: var(--primary-blue);
  color: #ffffff;
  transform: rotate(10deg);
}

.service-icon-box svg {
  width: 40px;
  height: 40px;
}

.service-info h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-info p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-mid);
  opacity: 0.85;
}

@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .service-card {
    flex-direction: column;
    padding: 35px 25px;
    text-align: center;
    align-items: center;
  }

  .service-icon-box {
    margin-bottom: 20px;
  }
}

/* Sectors Section Styles */
.sectors-section {
  padding: 70px 0;
  background-color: #f8fbff;
  position: relative;
}

.sectors-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.sectors-header h2 {
  font-size: clamp(28px, 4vw, 36px);
  margin-bottom: 20px;
}

.sectors-header p {
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.6;
  opacity: 0.9;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.sector-item {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 24px;
  text-align: center;
  border: 1px solid rgba(1, 102, 190, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sector-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(1, 102, 190, 0.08);
  border-color: rgba(1, 102, 190, 0.1);
}

.sector-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  color: var(--primary-blue);
  background: rgba(1, 102, 190, 0.04);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.sector-item:hover .sector-icon {
  background: var(--primary-blue);
  color: #ffffff;
  transform: scale(1.1);
}

.sector-item h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.sector-item p {
  font-size: 15px;
  color: var(--text-mid);
  opacity: 0.8;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .sectors-grid {
    grid-template-columns: 1fr;
  }

  .sectors-section {
    padding: 70px 0;
  }
}

/* Quote Page (Teklif Al) Styles */
.teklif-page-content {
  padding: 70px 0;
  background-color: #fcfdfe;
}

.teklif-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: flex-start;
}

.teklif-info-box {
  position: sticky;
  top: 120px;
}

.teklif-info-box h2 {
  font-size: clamp(32px, 4vw, 42px);
  margin-bottom: 25px;
  line-height: 1.1;
}

.teklif-info-box p {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 40px;
}

.teklif-advantages-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 50px;
}

.ta-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

.ta-item svg {
  color: var(--primary-blue);
  width: 20px;
  height: 20px;
}

.teklif-contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.tc-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(1, 102, 190, 0.05);
  box-shadow: 0 10px 25px rgba(1, 102, 190, 0.04);
  transition: all 0.3s ease;
}

.tc-card:hover {
  transform: translateX(10px);
  border-color: rgba(1, 102, 190, 0.15);
  box-shadow: 0 15px 35px rgba(1, 102, 190, 0.08);
}

.tc-icon {
  width: 50px;
  height: 50px;
  background: rgba(1, 102, 190, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
}

.tc-details span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 3px;
}

.tc-details p {
  margin: 0;
  font-weight: 700;
  color: var(--text-dark);
}

.teklif-form-container {
  background: #ffffff;
  padding: 60px;
  border-radius: 40px;
  box-shadow: 0 40px 100px rgba(1, 102, 190, 0.08);
  border: 1px solid rgba(1, 102, 190, 0.05);
}

@media (max-width: 1024px) {
  .teklif-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .teklif-info-box {
    position: static;
  }

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

@media (max-width: 640px) {
  .teklif-form-container {
    padding: 40px 25px;
  }

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

/* Product Page Specific Styles */
.products-page-section {
  padding: 70px 0;
  background-color: #fcfdfe;
}

.product-specs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 15px 0 25px;
  width: 100%;
}

.product-specs span {
  font-size: 14px;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.product-specs span::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary-blue);
  border-radius: 50%;
  opacity: 0.5;
}

.btn-product {
  margin-top: auto;
  padding: 12px 24px;
  background: rgba(1, 102, 190, 0.05);
  color: var(--primary-blue);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(1, 102, 190, 0.1);
  width: 100%;
  text-align: center;
}

.product-card:hover .btn-product {
  background: var(--primary-blue);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(1, 102, 190, 0.2);
}

/* Product Detail Page Styles */
.product-detail-section {
  padding: 80px 0;
  background-color: #f8fbff;
}

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

.detail-block {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 15px 40px rgba(1, 102, 190, 0.05);
  border: 1px solid rgba(1, 102, 190, 0.08);
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 30px;
}

.detail-block::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: var(--primary-blue);
}

.block-number {
  flex: 0 0 50px;
  height: 50px;
  background: var(--primary-blue);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 5px 15px rgba(1, 102, 190, 0.2);
}

.block-content {
  flex: 1;
}

.detail-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 15px;
}

.detail-title-row h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  background: none;
  -webkit-text-fill-color: initial;
}

.detail-weight-tag {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
}

.detail-lists-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
}

.detail-list {
  list-style: none;
}

.detail-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--text-mid);
  font-weight: 500;
}

.detail-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: bold;
}

.side-specs {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: right;
}

.side-spec-item p {
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.4;
}

.side-spec-item strong {
  display: block;
  font-size: 18px;
  margin-top: 5px;
  margin-bottom: 25px;
}

.certificates-text {
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 2;
}

.logistics-text {
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(1, 102, 190, 0.05);
  padding: 25px;
  border-radius: 15px;
  border-left: 5px solid var(--primary-blue);
}

.logistics-text svg {
  color: var(--primary-blue);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .detail-block {
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
  }

  .block-number {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    font-size: 16px;
    border-radius: 10px; /* Modern squircle shape on mobile */
    box-shadow: 0 4px 10px rgba(1, 102, 190, 0.15);
  }

  .detail-lists-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .side-specs {
    text-align: left;
  }

  .detail-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
  }

  .detail-title-row h2 {
    font-size: 20px;
  }

  .logistics-text {
    padding: 18px;
    font-size: 14px;
    gap: 12px;
  }
}

/* Split Layout for Product Details */
.product-detail-section .detail-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: flex-start;
  max-width: 1300px;
}

.detail-left {
  width: 100%;
}

.detail-right {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  z-index: 10;
  align-self: start;
}

.detail-main-visual {
  margin: 0;
  padding: 0;
  max-width: none;
}

.visual-wrapper {
  padding: 40px;
  min-height: 500px;
  background: #ffffff;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 20px 50px rgba(1, 102, 190, 0.06);
  border: 1px solid rgba(1, 102, 190, 0.05);
}

.visual-wrapper img {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.visual-wrapper:hover img {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .product-detail-section .detail-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .detail-right {
    position: static;
    order: -1;
    /* Image first on mobile */
  }

  .visual-wrapper {
    min-height: auto;
    padding: 30px;
  }
}

.btn-detail-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: var(--primary-blue);
  color: #ffffff;
  padding: 20px;
  border-radius: 20px;
  margin-top: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(1, 102, 190, 0.2);
}

.btn-detail-quote:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(1, 102, 190, 0.3);
  background: var(--blue-dark);
}

.btn-detail-quote svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn-detail-quote:hover svg {
  transform: translateX(5px);
}

/* Corporate Page (Kurumsal) Styles */
.kurumsal-content {
  padding: 70px 0;
  background-color: #ffffff;
}

.kurumsal-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 90px;
}

.kurumsal-text h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.kurumsal-text p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 25px;
}

.kurumsal-image-box {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(1, 102, 190, 0.1);
}

.kurumsal-image-box img {
  width: 100%;
  height: auto;
  display: block;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 80px;
}

.value-card {
  background: #f8fbff;
  padding: 50px 40px;
  border-radius: 30px;
  border: 1px solid rgba(1, 102, 190, 0.05);
  transition: all 0.4s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  background: #ffffff;
  box-shadow: 0 30px 60px rgba(1, 102, 190, 0.08);
  border-color: var(--primary-blue);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  margin-bottom: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}

.value-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.value-card p {
  color: var(--text-mid);
  line-height: 1.6;
}

@media (max-width: 991px) {
  .kurumsal-intro-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

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

@media (max-width: 640px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* Blog Page Styles */
.blog-page-section {
  padding: 80px 0 120px;
  background: #ffffff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.blog-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(1, 102, 190, 0.05);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(1, 102, 190, 0.12);
  border-color: rgba(1, 102, 190, 0.1);
}

.blog-card-image {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.1);
}

.blog-date {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 15px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  z-index: 5;
}

.blog-date .day {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1;
}

.blog-date .month {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-mid);
  letter-spacing: 0.1em;
  margin-top: 2px;
}

.blog-card-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  margin-bottom: 12px;
}

.blog-category {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-blue);
  background: rgba(1, 102, 190, 0.08);
  padding: 4px 12px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.blog-category:hover {
  background: var(--primary-blue);
  color: #ffffff;
}

.blog-title {
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 15px;
  font-weight: 700;
  background: none;
  -webkit-text-fill-color: initial;
  color: var(--text-dark);
}

.blog-title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.blog-title a:hover {
  color: var(--primary-blue);
}

.blog-excerpt {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 25px;
  opacity: 0.8;
}

.blog-read-more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.blog-read-more .btn-icon {
  width: 32px;
  height: 32px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-read-more svg {
  width: 16px;
  height: 16px;
}

.blog-read-more:hover {
  color: var(--primary-blue);
}

.blog-read-more:hover .btn-icon {
  background: var(--primary-blue);
  color: #ffffff;
  transform: translateX(5px);
}

/* Pagination */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.pagination-wrapper ul {
  display: flex;
  list-style: none;
  gap: 10px;
  padding: 0;
}

.pagination-wrapper .page-numbers {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(1, 102, 190, 0.1);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 700;
  transition: all 0.3s ease;
}

.pagination-wrapper .page-numbers:hover:not(.current) {
  background: var(--blue-light);
  color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.pagination-wrapper .page-numbers.current {
  background: var(--primary-blue);
  color: #ffffff;
  border-color: var(--primary-blue);
}

.pagination-wrapper .page-numbers svg {
  width: 18px;
  height: 18px;
}

.no-posts-found {
  text-align: center;
  padding: 60px 0;
  background: var(--blue-light);
  border-radius: 24px;
  border: 1px dashed var(--primary-blue);
}

.no-posts-found p {
  font-size: 18px;
  color: var(--text-mid);
  font-weight: 500;
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .blog-card-image {
    height: 220px;
  }
}

/* Single Post Styles */
.post-header-section {
  padding: 100px 0 60px;
  background: linear-gradient(180deg, #ffffff 0%, #bed3edd6 100%);
  position: relative;
  overflow: hidden;
}

.post-header-section::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--blue-light) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.4;
  filter: blur(50px);
  z-index: 1;
}

.post-header-content {
  position: relative;
  z-index: 10;
  max-width: 1400px;
}

.post-meta-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.post-category {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-blue);
  background: rgba(1, 102, 190, 0.08);
  padding: 6px 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.post-category:hover {
  background: var(--primary-blue);
  color: #ffffff;
  transform: translateY(-2px);
}

.post-date {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  opacity: 0.7;
}

.post-main-title {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.15;
  font-weight: 700;
  color: var(--text-dark);
  background: none;
  -webkit-text-fill-color: initial;
}

.post-content-section {
  padding: 60px 0 120px;
  background: #ffffff;
}

.post-layout {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.post-right {
  height: 100%;
}

.post-sticky-visual {
  position: sticky;
  top: 120px;
  width: 100%;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  /* For reveal animation compatibility */
}

.post-sticky-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.post-text-content {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-mid);
}

.post-text-content p {
  margin-bottom: 30px;
}

.post-text-content h2,
.post-text-content h3 {
  color: var(--text-dark);
  margin: 50px 0 25px;
  background: none;
  -webkit-text-fill-color: initial;
}

.post-text-content h2 {
  font-size: 32px;
}

.post-text-content h3 {
  font-size: 26px;
}

.post-text-content blockquote {
  padding: 40px;
  background: var(--blue-light);
  border-radius: 24px;
  margin: 40px 0;
  position: relative;
  border-left: 5px solid var(--primary-blue);
}

.post-text-content blockquote p {
  font-style: italic;
  font-size: 22px;
  color: var(--primary-blue);
  margin-bottom: 0;
  line-height: 1.5;
}

.post-footer {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 50px;
}

.post-tags a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  background: #f5f8fa;
  padding: 8px 18px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.post-tags a:hover {
  background: var(--primary-blue);
  color: #ffffff;
}

/* Post Navigation */
.post-navigation {
  background: #f8fbff;
  border-radius: 32px;
  padding: 40px;
}

.post-navigation .nav-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.post-navigation a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s ease;
}

.post-navigation a:hover {
  transform: translateY(-5px);
}

.nav-prev {
  text-align: left;
}

.nav-next {
  text-align: right;
  grid-column: 2;
}

.nav-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-blue);
  opacity: 0.6;
}

.nav-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .post-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .post-right {
    order: -1;
    /* Image first on mobile */
  }

  .post-sticky-visual {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .post-header-section {
    padding: 40px 0 30px;
    text-align: center;
  }

  .post-header-section .breadcrumb {
    display: none;
    /* Mobilde gereksiz kalabalığı kaldır */
  }

  .post-meta-top {
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
  }

  .post-main-title {
    font-size: 28px;
    line-height: 1.2;
  }

  .post-navigation .nav-links {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .nav-next {
    text-align: center;
    /* Mobilde ortalı daha iyi durur */
    grid-column: 1;
  }

  .nav-prev {
    text-align: center;
  }

  .post-sticky-visual {
    border-radius: 20px;
  }
}