:root {
  --neutral-50: #f9f8fb;
  --neutral-100: #f2f1f6;
  --neutral-200: #e4e2ed;
  --neutral-300: #bdbacb;
  --neutral-600: #5d5470;
  --neutral-900: #1d1930;
  --accent: #1a8acb;
  --accent-dark: #0c4f7f;
  --accent-soft: rgba(26, 138, 203, 0.15);
  --hero-gradient: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.9), rgba(230, 248, 255, 0.9)),
    linear-gradient(135deg, #f3f9ff, #fff3fb);
  --card-glow: 0 25px 60px rgba(26, 138, 203, 0.15);
  --white: #fff;
  --success: #16a34a;
  --danger: #dc2626;
}

.product-categories .service-card-icon {
  width: 320px;
  height: 220px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  margin-left: -1rem;
}

.product-categories .service-category-card {
  text-align: left;
}

.product-categories .service-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
}

@keyframes floatSoft {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0% {
    opacity: 0.3;
    transform: scale(0.95);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.05);
  }
  100% {
    opacity: 0.3;
    transform: scale(0.95);
  }
}

@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.corporate-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 200px;
  background: var(--white);
  border-radius: 16px;
  padding: 0.75rem 0;
  box-shadow: 0 20px 40px rgba(12, 79, 127, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 20;
}

.corporate-dropdown .dropdown-link {
  display: block;
  padding: 0.45rem 1rem;
  font-weight: 600;
  color: var(--neutral-900);
  white-space: nowrap;
}

.corporate-dropdown .dropdown-link:hover {
  color: var(--accent);
}

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

body {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--neutral-900);
  background: linear-gradient(180deg, rgba(218, 237, 255, 0.35), rgba(255, 255, 255, 0.9));
  min-height: 100vh;
}

main {
  margin-top: 0;
}

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

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

.top-line {
  background: linear-gradient(120deg, rgba(26, 138, 203, 0.9), rgba(12, 79, 127, 0.9));
  color: var(--white);
  text-align: center;
  padding: 0.35rem 1rem;
  font-size: 0.9rem;
  transition: transform 0.35s ease, opacity 0.35s ease;
  cursor: pointer;
}
.top-line.topline-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.primary-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--white);
  border-bottom: 1px solid var(--neutral-100);
  box-shadow: 0 8px 30px rgba(70, 49, 141, 0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
}
.primary-header.header-hidden {
  transform: translateY(-100%);
  box-shadow: none;
}
.primary-header.header-scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.nav-wrapper {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.5rem;
}

.nav-group {
  display: flex;
  gap: 0.75rem;
}

.nav-pill-with-dropdown {
  position: relative;
}

.nav-pill-with-dropdown:hover .product-dropdown,
.nav-pill-with-dropdown:focus-within .product-dropdown,
.nav-pill-with-dropdown:hover .corporate-dropdown,
.nav-pill-with-dropdown:focus-within .corporate-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.product-dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translate(-50%, 10px);
  background: var(--white);
  border-radius: 24px;
  padding: 1.25rem;
  box-shadow: 0 20px 50px rgba(31, 9, 66, 0.15);
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 1rem;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
  min-width: 420px;
  z-index: 20;
}

.dropdown-card {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem;
  border-radius: 16px;
  border: 1px solid var(--neutral-100);
  background: var(--neutral-50);
}

.dropdown-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.dropdown-card p {
  display: none;
}

.dropdown-title {
  font-weight: 600;
  color: var(--neutral-900);
}

.nav-pill-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  border: 1px solid #e8e6f4;
  border-radius: 999px;
  color: var(--neutral-600);
  font-weight: 500;
  transition: all 0.2s ease;
}

.nav-pill-item.active,
.nav-pill-item:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.logo-link {
  order: -1;
  flex-shrink: 0;
}
.logo-link img {
  width: 120px;
}
.nav-group:last-child {
  margin-left: auto;
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  gap: 4rem;
  min-height: 100svh;
  padding: 5.5rem clamp(2rem, 6vw, 5rem) 3rem;
  width: 100%;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  background: var(--hero-gradient);
  overflow: hidden;
  isolation: isolate;
  z-index: 1;
}

.hero.hero-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 138, 203, 0.3), transparent 65%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

.hero::before {
  width: 600px;
  height: 600px;
  top: -100px;
  left: -150px;
}

.hero::after {
  width: 700px;
  height: 700px;
  bottom: -200px;
  right: -150px;
  background: radial-gradient(circle, rgba(12, 79, 127, 0.35), transparent 60%);
}

.hero-content,
.hero-media {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  line-height: 1.1;
  margin: 1rem 0 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: linear-gradient(120deg, rgba(26, 138, 203, 0.12), rgba(255, 255, 255, 0.8));
  border-radius: 999px;
  color: var(--primary, #1a8acb);
  font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(26, 138, 203, 0.2);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
}

.btn {
  border-radius: 999px;
  padding: 0.65rem 1.75rem;
  font-weight: 600;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-align: center;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.btn.primary {
  background: var(--primary, #1a8acb);
  color: var(--white);
  box-shadow: 0 18px 35px rgba(26, 138, 203, 0.35);
}

.btn.primary:hover {
  background: var(--primary-dark, #0d4a78);
  transform: translateY(-1px);
}

.btn.primary:active {
  transform: translateY(0);
  box-shadow: 0 12px 24px rgba(26, 138, 203, 0.25);
}

.btn.ghost {
  border-color: var(--neutral-200);
  color: var(--neutral-900);
  background: rgba(255, 255, 255, 0.8);
}

.btn.ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(26, 138, 203, 0.25);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.hero-stats li {
  text-align: left;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.hero-stats li.revealed {
  transform: translateY(0);
  opacity: 1;
}

.hero-stats strong {
  display: inline-block;
  min-width: 90px;
  font-size: 2rem;
  color: var(--primary, #1a8acb);
  letter-spacing: 0.02em;
}

.stat-label {
  display: block;
  font-weight: 500;
  color: var(--neutral-600);
}

.hero-media {
  position: relative;
  min-height: 560px;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 32px;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.18), transparent 70%);
  z-index: 0;
}

.hero-slider {
  position: relative;
  height: 520px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(12, 79, 127, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.75));
  color: var(--accent-dark);
  font-size: 1.5rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.slider-btn.prev {
  left: 18px;
}

.slider-btn.next {
  right: 18px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

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

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

.slider-dot.active {
  background: var(--primary, #1a8acb);
}

.hero-products {
  display: flex;
  gap: 1rem;
  padding-top: 1.5rem;
  justify-content: center;
}

.hero-products img {
  width: 33%;
  border-radius: 18px;
  background: var(--white);
  padding: 0.75rem;
  box-shadow: 0 20px 45px rgba(12, 79, 127, 0.2);
}

.section-header {
  max-width: 680px;
  margin: 0 auto 2rem;
  text-align: center;
  padding: 0 1.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: var(--primary, #1a8acb);
  font-weight: 600;
}

.category-section {
  background: linear-gradient(180deg, rgba(238, 248, 255, 0.8), #ffffff 40%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.category-section::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(26, 138, 203, 0.08);
  border-radius: 30px;
  bottom: 50px;
  right: 15%;
  filter: blur(10px);
}


.category-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.category-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: center;
  padding: 1.75rem;
  border-radius: 32px;
  border: 1px solid rgba(26, 138, 203, 0.12);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--card-glow);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(26, 138, 203, 0.12));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.category-card img {
  width: 257px;
  height: 257px;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.6);
  padding: 0.5rem;
}

.category-card h3 {
  margin-bottom: 0;
  font-size: 1.05rem;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(12, 79, 127, 0.25);
}

.category-card:hover::after {
  opacity: 1;
}

.cta-section {
  padding: 4rem 1.5rem;
  text-align: center;
  overflow: hidden;
}

.cta-section .section-header {
  margin-bottom: 0;
}

.service-banner {
  position: relative;
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, rgba(26, 138, 203, 0.08), rgba(255, 255, 255, 0.9));
  overflow: hidden;
}

/* .service-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('assets/bg.avif') center/cover no-repeat;
  opacity: 1.1;
  z-index: 0;
  pointer-events: none;
} */

.service-banner::after {
  content: "";
  position: absolute;
  inset: 40px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 32px;
  z-index: 0;
  pointer-events: none;
}

.service-intro {
  position: relative;
  z-index: 1;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 1.5rem 0;
}

.service-tags span {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.85);
  padding: 0.35rem 0.9rem;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
}

.service-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.about-panels {
  max-width: 1240px;
  margin: 4rem auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.panel-media {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--card-glow);
}

.panel-media img {
  width: 100%;
  display: block;
}

.panel-copy {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  padding: 2rem;
  box-shadow: var(--card-glow);
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.badge-list span {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(26, 138, 203, 0.2);
  background: rgba(26, 138, 203, 0.08);
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.85rem;
}

.certificate-section {
  padding: 4rem 1.5rem;
  background: linear-gradient(120deg, rgba(26, 138, 203, 0.05), rgba(255, 255, 255, 0.9));
}

.certificate-grid {
  max-width: 1240px;
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.certificate-card {
  padding: 2rem;
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--card-glow);
  border: 1px solid rgba(26, 138, 203, 0.08);
}

.certificate-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.certificate-card i {
  font-size: 1.4rem;
  color: var(--accent);
}

.strategy-section {
  padding: 4rem 1.5rem 5rem;
}

.strategy-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
}

.strategy-item {
  padding: 1.5rem 2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(26, 138, 203, 0.12);
  box-shadow: var(--card-glow);
  display: flex;
  gap: 1rem;
}

.strategy-item strong {
  font-size: 1.1rem;
  color: var(--accent-dark);
  min-width: 140px;
}

.services-hero {
  background: linear-gradient(135deg, rgba(26, 138, 203, 0.12), rgba(255, 255, 255, 0.95));
  border-radius: 36px;
  margin: 3rem auto;
  max-width: 1100px;
  padding: 3rem 2rem;
  box-shadow: var(--card-glow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  align-items: center;
}

.services-hero .btn.ghost {
  display: inline-flex;
  margin-top: 1.5rem;
  align-self: center;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.product-categories {
  max-width: 1800px;
  margin: 2rem auto 4rem;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: flex-start;
}

.product-categories .service-category-card {
  flex: 0 0 calc(25% - (2rem * 3 / 4));
  max-width: calc(25% - (2rem * 3 / 4));
}

.service-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 2.5rem;
  padding: 0 3.5rem;
}

.contact-categories {
  width: 100%;
  margin: 2rem 0 0;
  padding: 1rem 2rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 1.5rem;
  overflow: hidden;
}

.contact-categories .service-category-card {
  width: 100%;
  max-width: unset;
  flex: unset;
  height: 100%;
  text-align: center;
}

.contact-categories .service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(26, 138, 203, 0.18), rgba(214, 242, 255, 0.85));
  color: var(--accent-dark);
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(26, 138, 203, 0.2);
}

.contact-categories .service-card-description {
  color: var(--neutral-600);
  margin: 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .product-categories .service-category-card {
    flex: 0 0 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
}

@media (max-width: 600px) {
  .product-categories .service-category-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.certificate-section .service-categories {
  max-width: 1200px;
  margin: 2rem auto 4rem;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.certificate-section .service-category-card {
  flex: 1 1 clamp(260px, 28vw, 340px);
  max-width: 360px;
  text-align: center;
}

.certificate-section .service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(26, 138, 203, 0.18), rgba(214, 242, 255, 0.85));
  color: var(--accent-dark);
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(26, 138, 203, 0.2);
}

.certificate-section .service-card-description {
  color: var(--neutral-600);
  margin: 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .contact-categories .service-category-card {
    flex: 1 1 280px;
    max-width: 320px;
  }
}

@media (max-width: 600px) {
  .contact-categories .service-category-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.strategy-section .service-categories {
  max-width: 1200px;
  margin: 2rem auto 4rem;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.strategy-section .service-category-card {
  flex: 1 1 clamp(260px, 28vw, 340px);
  max-width: 360px;
  text-align: center;
}

.strategy-section .service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(26, 138, 203, 0.18), rgba(214, 242, 255, 0.85));
  color: var(--accent-dark);
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(26, 138, 203, 0.2);
}

.strategy-section .service-card-description {
  color: var(--neutral-600);
  margin: 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .certificate-section .service-category-card {
    flex: 1 1 280px;
    max-width: 320px;
  }
}

@media (max-width: 600px) {
  .certificate-section .service-category-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  .strategy-section .service-category-card {
    flex: 1 1 280px;
    max-width: 320px;
  }
}

@media (max-width: 600px) {
  .strategy-section .service-category-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Featured carousels - identical styling for Ürün Grupları & Öne Çıkan Hizmetler */
.featured-carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 0 2.5rem;
  padding: 0;
  overflow: hidden;
}

.featured-carousel[data-carousel="one-cikan"] {
  margin-top: 2rem;
}

.featured-carousel .service-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 1.5rem;
  width: 100%;
  padding: 1rem 2rem 1.5rem;
  overflow: hidden;
}

.featured-carousel .carousel-btn {
  display: none;
}

.featured-carousel .service-category-card {
  flex: unset;
  max-width: unset;
  width: 100%;
  height: 100%;
  text-align: left;
}

.featured-carousel .service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(26, 138, 203, 0.18), rgba(214, 242, 255, 0.85));
  color: var(--accent-dark);
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(26, 138, 203, 0.2);
}

.featured-carousel .service-card-description {
  color: var(--neutral-600);
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Responsive for featured carousels */
/* Blog (Hizmetlerimiz) page fix - same as about/contact */
.page-blog .service-categories {
  max-width: 1200px;
  margin: 2rem auto 4rem;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.page-blog .service-category-card {
  flex: 1 1 clamp(260px, 28vw, 340px);
  max-width: 360px;
  text-align: center;
}

.page-blog .service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(26, 138, 203, 0.18), rgba(214, 242, 255, 0.85));
  color: var(--accent-dark);
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(26, 138, 203, 0.2);
}

.page-blog .service-card-description {
  color: var(--neutral-600);
  margin: 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .featured-carousel .service-track {
    grid-template-columns: repeat(2, 1fr);
    padding: 1rem 1.5rem 1.5rem;
  }

  .contact-categories {
    grid-template-columns: repeat(2, 1fr);
    padding: 1rem 1.5rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .featured-carousel .service-track {
    grid-template-columns: 1fr;
    padding: 1rem 1rem 1.5rem;
  }

  .contact-categories {
    grid-template-columns: 1fr;
    padding: 1rem 1rem 1.5rem;
  }
}

/* Product Grid Section - similar to tex.com.tr */
.product-grid-section {
  max-width: 1200px;
  margin: 3rem auto 4rem;
  padding: 0 1.5rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.product-item {
  position: relative;
  border-radius: 28px;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(26, 138, 203, 0.12);
  box-shadow: var(--card-glow);
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.product-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 20% 20%, rgba(26, 138, 203, 0.18), transparent 55%);
  z-index: 0;
}

.product-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 45px rgba(13, 74, 120, 0.15);
}

.product-image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 18px;
  z-index: 1;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-desc {
  font-size: 0.8rem;
  color: var(--neutral-600);
  margin: 0.3rem 0 0.5rem;
  line-height: 1.4;
}

.product-item:hover .product-image img {
  transform: scale(1.05);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.product-overlay .btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.product-info {
  padding: 1.25rem 0 0;
  position: relative;
  z-index: 1;
}

.product-info h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: var(--neutral-800);
}

.product-info p {
  font-size: 0.875rem;
  color: var(--neutral-600);
  margin: 0 0 1rem 0;
  line-height: 1.5;
}

.product-actions {
  display: flex;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.product-actions .btn {
  flex: 1;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  text-align: center;
}

/* Responsive for product grid */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
  }
  
  .product-image {
    height: 200px;
  }
  
  .product-info {
    padding: 1rem;
  }
  
  .product-actions {
    flex-direction: column;
  }
}

/* Pagination Styles */
.pagination-section {
  max-width: 1200px;
  margin: 2rem auto 4rem;
  padding: 0 1.5rem;
  text-align: center;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  border: 2px solid var(--neutral-300);
  border-radius: 8px;
  background: white;
  color: var(--neutral-600);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pagination-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.pagination-btn.active {
  background: var(--primary, #1a8acb);
  color: white;
  border-color: var(--primary, #1a8acb);
}

.pagi.nav-pill-item.active {
  background: rgba(26, 138, 203, 0.2);
  color: var(--accent);
  border-color: var(--accent);
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: linear-gradient(135deg, #ff4757, #ff6348);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 12px;
  min-width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
  animation: cartBadgePulse 2s ease-in-out infinite;
}

@keyframes cartBadgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@media (max-width: 768px) {
  .pagination-section {
    padding: 0 1rem;
  }
  
  .pagination-btn {
    min-width: 35px;
    height: 35px;
    font-size: 0.875rem;
  }
}

.notification-container {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.notification {
  background: var(--success);
  color: white;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: slideIn 0.3s ease;
  pointer-events: auto;
  z-index: 9999;
  position: relative;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

.notification.removing {
  animation: fadeOut 0.3s ease forwards;
}

.service-carousel[data-carousel="urunler"],
.service-carousel[data-carousel="one-cikan"] {
  padding: 0;
  text-align: left;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #25D366;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  z-index: 2000;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.whatsapp-float i {
  font-size: 1.6rem;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.22);
}

@media (max-width: 600px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }
}

.service-carousel[data-carousel="urunler"] .service-category-card,
.service-carousel[data-carousel="one-cikan"] .service-category-card {
  text-align: left;
}

.service-carousel[data-carousel="urunler"] .service-track,
.service-carousel[data-carousel="one-cikan"] .service-track {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1rem;
}

.service-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  padding-bottom: 0.75rem;
}

.service-track.dragging {
  cursor: grabbing;
}

.service-carousel .service-category-card {
  flex: 0 0 320px;
  max-width: 320px;
}

/* featured-carousel uses CSS grid — no flex overrides needed here */

.service-carousel.no-arrows {
  padding: 0;
}

.service-carousel.no-arrows .carousel-btn {
  display: none;
}

.service-carousel.no-arrows .service-track {
  justify-content: center;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.service-track::-webkit-scrollbar {
  height: 10px;
}

.service-track::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.08);
  border-radius: 999px;
}

.service-track::-webkit-scrollbar-thumb {
  background: rgba(15, 23, 42, 0.28);
  border-radius: 999px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--accent-dark);
  box-shadow: 0 20px 40px rgba(13, 74, 120, 0.18);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
  z-index: 2;
}

.carousel-btn:hover:not(:disabled) {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 24px 45px rgba(13, 74, 120, 0.22);
}

.carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.carousel-btn.prev {
  left: 0.5rem;
}

.carousel-btn.next {
  right: 0.5rem;
}

@media (max-width: 1024px) {
  .service-carousel {
    padding: 0 2.5rem;
  }

  .service-carousel .service-category-card {
    flex: 0 0 300px;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .service-carousel {
    padding: 0 1.5rem;
  }

  .service-carousel .service-category-card {
    flex: 0 0 280px;
    max-width: 280px;
  }
}

@media (max-width: 600px) {
  .service-carousel {
    padding: 0;
  }

  .service-carousel .service-category-card {
    flex: 0 0 85%;
    max-width: 85%;
  }

  .carousel-btn {
    display: none;
  }
}

.service-category-card {
  position: relative;
  flex: 1 1 clamp(260px, 28vw, 340px);
  max-width: 360px;
  border-radius: 28px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(26, 138, 203, 0.12);
  box-shadow: var(--card-glow);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.service-category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 20% 20%, rgba(26, 138, 203, 0.18), transparent 55%);
  z-index: 0;
}

.service-category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 45px rgba(13, 74, 120, 0.15);
}

.service-carousel[data-carousel="urunler"] .service-category-card:hover,
.service-carousel[data-carousel="one-cikan"] .service-category-card:hover {
  transform: none;
  box-shadow: var(--card-glow);
}

.service-card-header,
.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.service-card-header {
  align-items: flex-start;
}

.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(26, 138, 203, 0.18), rgba(214, 242, 255, 0.85));
  color: var(--accent-dark);
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(26, 138, 203, 0.2);
}

.product-categories .service-card-header {
  position: relative;
}

.product-categories .service-card-overlay-header {
  position: absolute;
  bottom: -4.5rem;
  left: 0rem;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.product-categories .service-card-description {
  color: var(--neutral-600);
  margin: 4rem 0 0;
  position: relative;
  z-index: auto;
}

.service-card-footer {
  margin-top: auto;
}

.service-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  background: rgba(26, 138, 203, 0.08);
  color: var(--accent-dark);
}

.service-card-footer .btn {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.service-carousel[data-carousel="urunler"] .service-card-footer .btn.ghost {
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.service-carousel[data-carousel="urunler"] .service-card-footer .btn.ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(13, 74, 120, 0.18);
  background: rgba(26, 138, 203, 0.08);
}

.service-card-footer i {
  font-size: 1.1rem;
}

.service-card {
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(26, 138, 203, 0.08);
  box-shadow: var(--card-glow);
  overflow: hidden;
}


.service-detail {
  position: relative;
  max-width: 1200px;
  margin: 3rem auto 5rem;
  padding: clamp(1.8rem, 4vw, 3.5rem);
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(26, 138, 203, 0.08);
  box-shadow: var(--card-glow);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  align-items: center;
  overflow: hidden;
}

.service-detail::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(26, 138, 203, 0.12), transparent 50%);
  pointer-events: none;
}

.service-detail > * {
  position: relative;
  z-index: 1;
}

.service-detail .service-visual {
  border-radius: 32px;
  overflow: hidden;
  background: var(--hero-gradient);
  padding: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.service-detail .service-visual img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 25px 35px rgba(12, 79, 127, 0.25));
}

.service-detail .service-card-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-card .service-card-body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 2.5rem;
  align-items: start;
}

.service-detail h2 {
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  margin-bottom: 0.25rem;
}

.service-lede {
  color: var(--neutral-600);
  margin: 0;
}

.service-metrics {
  margin: 1rem 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
}

.service-metrics li {
  border-radius: 20px;
  padding: 0.85rem 1rem;
  background: rgba(26, 138, 203, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  font-size: 0.9rem;
}

.service-metrics strong {
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--neutral-700);
}

.feature-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(26, 138, 203, 0.12);
}

.service-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
  border-radius: 28px;
  background: rgba(250, 253, 255, 0.9);
  border: 1px solid rgba(26, 138, 203, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.service-form .form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.85rem;
}

.service-form input,
.service-form textarea {
  border-radius: 999px;
  border: 1px solid rgba(26, 138, 203, 0.18);
  padding: 0.75rem 1.1rem;
  font-family: inherit;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.8);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.service-form textarea {
  border-radius: 22px;
  resize: vertical;
  min-height: 110px;
}

.service-form input:focus,
.service-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26, 138, 203, 0.15);
  outline: none;
}

.product-showcase {
  padding: 4rem 0;
  background: var(--neutral-50);
}

.product-card {
  padding: 2rem;
  border-radius: 28px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: var(--white);
  box-shadow: var(--card-glow);
  position: relative;
  overflow: hidden;
}

.product-card img {
  width: 200px;
  margin: 0 auto 1.25rem;
  filter: drop-shadow(0 20px 35px rgba(12, 79, 127, 0.2));
}

.service-highlight-section {
  padding: 4rem 0;
}

.service-highlight-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.highlight-card {
  border-radius: 28px;
  border: 1px solid rgba(26, 138, 203, 0.12);
  background: rgba(255, 255, 255, 0.95);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  box-shadow: var(--card-glow);
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(26, 138, 203, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.highlight-card:hover::before {
  opacity: 1;
}

.highlight-card h3 {
  margin-bottom: 0.35rem;
}

.highlight-meta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--neutral-600);
}

.highlight-meta .btn {
  align-self: flex-start;
}

.contact-section {
  max-width: 1200px;
  margin: 0 auto 5rem;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.contact-section .contact-content {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 36px;
  padding: clamp(1.5rem, 3vw, 3rem);
  border: 1px solid rgba(26, 138, 203, 0.12);
  box-shadow: var(--card-glow);
}

.contact-section .contact-content h2 {
  margin: 0.4rem 0 1rem;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
}

.contact-section .contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.5rem 0;
}

.contact-section .contact-info a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--neutral-900);
  font-weight: 600;
}

.contact-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-section .contact-media img {
  border-radius: 36px;
  width: 100%;
  display: block;
  box-shadow: 0 25px 50px rgba(13, 74, 120, 0.15);
}

@media (max-width: 640px) {
  .contact-cta {
    flex-direction: column;
  }
}

.contact-hero {
  text-align: center;
  padding: 4rem 1.5rem 2.5rem;
  margin: 0 auto;
  max-width: 900px;
}

.contact-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 0.75rem;
}

.contact-hero p {
  color: var(--neutral-600);
}

.contact-panels {
  max-width: 1200px;
  margin: 0 auto 5rem;
  padding: 0 1.5rem 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.contact-info-panel {
  border-radius: 36px;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(26, 138, 203, 0.12);
  box-shadow: var(--card-glow);
}

.contact-info-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-info-item {
  border-radius: 24px;
  border: 1px solid rgba(26, 138, 203, 0.15);
  background: rgba(244, 249, 255, 0.8);
  padding: 0.75rem 1.25rem;
}

.contact-info-item[open] {
  background: rgba(255, 255, 255, 0.95);
}

.contact-info-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-weight: 600;
}

.contact-info-item summary::-webkit-details-marker {
  display: none;
}

.contact-info-item i {
  transition: transform 200ms ease;
}

.contact-info-item[open] i {
  transform: rotate(45deg);
}

.contact-info-item p {
  margin: 0.85rem 0 0.4rem;
  color: var(--neutral-600);
}

.contact-info-item a {
  display: block;
  color: var(--accent-dark);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.contact-form-card {
  border-radius: 36px;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(26, 138, 203, 0.12);
  box-shadow: var(--card-glow);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.contact-form-card input,
.contact-form-card textarea {
  border-radius: 18px;
  border: 1px solid rgba(26, 138, 203, 0.2);
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  background: rgba(249, 252, 255, 0.9);
}

.contact-form-card label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--neutral-700);
  margin-top: 0.5rem;
}

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

.consent-field {
  display: flex;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--neutral-600);
  align-items: flex-start;
}

.consent-field input {
  margin-top: 0.3rem;
}

.contact-map {
  padding: 0 1.5rem 4rem;
}

.contact-map-card {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--card-glow);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(226, 240, 255, 0.85));
}

.contact-map-card .map-info {
  padding: 2.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.map-links {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.contact-map-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--accent-dark);
}

.map-frame iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

/* ══ FOOTER ══════════════════════════════════════════════════════ */
.site-footer {
  background: #080815;
  color: rgba(255,255,255,0.6);
  padding: 0;
  border-top: none;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}
.footer-brand .footer-logo {
  width: 130px;
  display: block;
  margin-bottom: 1.25rem;
  mix-blend-mode: screen;
  opacity: 0.9;
}
.footer-brand > p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  max-width: 320px;
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 0.6rem;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.5);
  font-size: 1.1rem;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(26,138,203,0.1);
}
.footer-cta-block {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  padding: 2.5rem;
  background: rgba(255,255,255,0.025);
}
.footer-cta-block .eyebrow {
  color: var(--primary, #1a8acb);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.footer-cta-block h3 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: #fff;
  margin: 0.75rem 0 1.5rem;
  line-height: 1.4;
}
.footer-line {
  height: 1px;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,0.08) 30%,rgba(255,255,255,0.08) 70%,transparent);
  margin-bottom: 3.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 1.25rem;
}
.footer-col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-col-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col-links a:hover { color: #fff; }
.footer-address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-address p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.5;
}
.footer-address a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-address a:hover { color: var(--accent); }
.footer-hours {
  font-size: 0.78rem !important;
  color: rgba(255,255,255,0.28) !important;
}
.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bar p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.25);
}
.scode-badge {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.scode-badge:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.07);
}
.scode-badge .badge-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}
.scode-badge img {
  width: 90px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.6;
}
@media (max-width: 768px) {
  .footer-top  { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.subpage-hero {
  text-align: center;
  padding: 5rem 1.5rem 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.subpage-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 1rem;
}

.subpage-hero p {
  color: var(--neutral-600);
}

@media (max-width: 992px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 5rem 1.5rem 3rem;
  }
  .nav-wrapper {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .nav-group:last-child {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .category-card {
    min-height: auto;
  }
}

/* ======= Product Catalog Layout ======= */
.product-catalog {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  max-width: 1400px;
  margin: 2rem auto 4rem;
  padding: 0 1.5rem;
}

/* Sidebar */
.catalog-sidebar {
  position: sticky;
  top: 1rem;
  align-self: start;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 1.25rem;
}

.catalog-sidebar::-webkit-scrollbar {
  width: 4px;
}

.catalog-sidebar::-webkit-scrollbar-thumb {
  background: var(--neutral-300);
  border-radius: 4px;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.sidebar-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin: 0;
}

.sidebar-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--neutral-600);
  padding: 0.25rem;
}

.sidebar-search {
  margin-bottom: 1rem;
}

.sidebar-search input {
  width: 100%;
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--neutral-300);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.85rem;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.sidebar-search input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26, 138, 203, 0.1);
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sidebar-category {
  border-bottom: 1px solid var(--neutral-200);
}

.sidebar-category:last-child {
  border-bottom: none;
}

.sidebar-cat-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.7rem 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--neutral-700);
  text-align: left;
  transition: color 0.2s;
}

.sidebar-cat-btn:hover {
  color: var(--accent);
}

.sidebar-cat-btn i {
  font-size: 1.1rem;
  transition: transform 0.2s;
}

.sidebar-category.expanded .sidebar-cat-btn i {
  transform: rotate(180deg);
}

.sidebar-sub-list {
  list-style: none;
  padding: 0 0 0.5rem 0.5rem;
  margin: 0;
  display: none;
}

.sidebar-category.expanded .sidebar-sub-list {
  display: block;
}

.sidebar-sub-link {
  display: block;
  padding: 0.35rem 0.5rem;
  font-size: 0.78rem;
  color: var(--neutral-600);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.15s;
  line-height: 1.3;
}

.sidebar-sub-link:hover {
  background: var(--neutral-100);
  color: var(--accent);
}

.sidebar-sub-link .count {
  color: var(--neutral-400);
  font-size: 0.72rem;
}

/* Catalog Content */
.catalog-content {
  min-width: 0;
}

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 0.75rem 1rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.sidebar-open-btn {
  display: none;
}

.product-count {
  font-size: 0.85rem;
  color: var(--neutral-500);
  font-weight: 500;
}

.show-all-btn {
  font-size: 0.8rem;
  padding: 0.4rem 0.9rem;
  transition: background 0.2s, color 0.2s;
}

.show-all-btn.active {
  background: var(--accent, #2563eb);
  color: #fff;
  border-color: var(--accent, #2563eb);
}

.sidebar-sub-link.active {
  background: var(--neutral-100, #f1f5f9);
  color: var(--accent, #2563eb);
  font-weight: 600;
  border-radius: 6px;
}

.sidebar-cat-btn.cat-active {
  color: var(--accent, #2563eb);
  font-weight: 700;
}

/* Main Category Title */
.catalog-main-category {
  margin-bottom: 2.5rem;
}

.main-category-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--neutral-800);
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--accent);
  margin-bottom: 1.5rem;
}

/* Subcategory */
.catalog-subcategory {
  margin-bottom: 2rem;
}

.subcategory-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--neutral-700);
  margin-bottom: 1rem;
  padding: 0.5rem 0.75rem;
  background: var(--neutral-100);
  border-radius: 8px;
  border-left: 4px solid var(--accent);
}

.subcategory-title .count {
  color: var(--neutral-400);
  font-weight: 400;
  font-size: 0.85rem;
}

/* Override product-grid within catalog for tighter layout */
.catalog-subcategory .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.catalog-subcategory .product-item {
  background: white;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.catalog-subcategory .product-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.catalog-subcategory .product-image {
  aspect-ratio: 1;
  height: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  background: var(--neutral-50);
}

.catalog-subcategory .product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.catalog-subcategory .product-info {
  padding: 0.75rem;
}

.catalog-subcategory .product-info h3 {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--neutral-700);
  margin-bottom: 0.5rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.catalog-subcategory .product-actions {
  display: flex;
}

.catalog-subcategory .product-actions .btn {
  width: 100%;
  padding: 0.45rem 0.5rem;
  font-size: 0.72rem;
  text-align: center;
  justify-content: center;
}

/* Responsive Catalog */
@media (max-width: 1024px) {
  .product-catalog {
    grid-template-columns: 1fr;
  }

  .catalog-sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
    z-index: 1500;
    transition: left 0.3s ease;
    box-shadow: none;
  }

  .catalog-sidebar.open {
    left: 0;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
  }

  .sidebar-toggle {
    display: block;
  }

  .sidebar-open-btn {
    display: inline-flex;
  }
}

@media (max-width: 768px) {
  .catalog-subcategory .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.75rem;
  }

  .catalog-subcategory .product-info h3 {
    font-size: 0.72rem;
  }

  .main-category-title {
    font-size: 1.15rem;
  }

  .subcategory-title {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .catalog-subcategory .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-catalog {
    padding: 0 0.75rem;
  }
}

/* ── Product Popup Modal ── */
.product-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.product-modal-overlay.open {
  display: flex;
}
.product-modal {
  background: #fff;
  border-radius: 16px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 12px 48px rgba(0,0,0,0.18);
  animation: modalIn 0.25s ease;
  position: relative;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.product-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--neutral-500);
  z-index: 2;
  line-height: 1;
  padding: 0.25rem;
  border-radius: 50%;
  transition: background 0.15s;
}
.product-modal-close:hover {
  background: var(--neutral-100, #f1f5f9);
}
.product-modal-img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  background: #f8f9fa;
  border-radius: 16px 16px 0 0;
  padding: 1.5rem;
}
.product-modal-body {
  padding: 1.5rem;
}
.product-modal-body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 1rem;
}
.product-modal-desc {
  font-size: 0.88rem;
  color: var(--neutral-600, #475569);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  max-height: 50vh;
  overflow-y: auto;
}
.product-modal-desc table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.product-modal-desc table th,
.product-modal-desc table td {
  border: 1px solid #e2e8f0;
  padding: 6px 10px;
  text-align: left;
}
.product-modal-desc table thead tr {
  background: var(--accent, #2563eb) !important;
}
.product-modal-desc table thead th {
  color: #fff !important;
  font-weight: 600;
}
.product-modal-desc table tbody tr:nth-child(odd) {
  background: #f8fafc;
}
.product-modal-desc table tbody tr:nth-child(even) {
  background: #fff;
}
.product-modal-desc p {
  margin-bottom: 0.5rem;
}
/* Stock & Price on product cards */
.stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.stock-badge.stock-in    { background: rgba(34,197,94,0.12);  color: #16a34a; }
.stock-badge.stock-out   { background: rgba(239,68,68,0.12);  color: #dc2626; }
.stock-badge.stock-order { background: rgba(245,158,11,0.12); color: #d97706; }

.product-price {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent, #1a8acb);
  margin: 4px 0 2px;
}
.product-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin: 4px 0 6px;
}
.product-item.out-of-stock .product-image {
  filter: grayscale(0.5) opacity(0.75);
}

/* Modal price & stock */
.product-modal-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0 14px;
  flex-wrap: wrap;
}
.modal-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent, #1a8acb);
}

.product-modal-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.qty-selector {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--neutral-200, #e2e8f0);
  border-radius: 10px;
  overflow: hidden;
}
.qty-selector button {
  width: 38px;
  height: 38px;
  border: none;
  background: var(--neutral-50, #f8fafc);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-700);
  transition: background 0.15s;
}
.qty-selector button:hover {
  background: var(--neutral-100, #f1f5f9);
}
.qty-selector input {
  width: 52px;
  height: 38px;
  text-align: center;
  border: none;
  border-left: 1.5px solid var(--neutral-200, #e2e8f0);
  border-right: 1.5px solid var(--neutral-200, #e2e8f0);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--neutral-800);
  appearance: textfield;
  -moz-appearance: textfield;
}
.qty-selector input::-webkit-outer-spin-button,
.qty-selector input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.modal-add-to-cart {
  flex: 1;
  min-width: 160px;
}
@media (max-width: 480px) {
  .product-modal {
    max-width: 100%;
    border-radius: 12px;
  }
  .product-modal-img {
    max-height: 220px;
    padding: 1rem;
  }
  .product-modal-body {
    padding: 1rem;
  }
  .product-modal-actions {
    flex-direction: column;
  }
  .modal-add-to-cart {
    width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATION SYSTEM  –  Uğur Temizlik
   backgroundanimation · heroanim · hovereffect · navigationmenu
   pagetransition · scroll · slider · textanimation · webglshaders
   ═══════════════════════════════════════════════════════════════ */

/* ── Page Transition ─────────────────────────────────────────── */
.ut-transition {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  z-index: 9999;
  pointer-events: none;
}
.ut-transition-row { flex: 1; display: flex; }
.ut-row-1 .ut-block { transform-origin: top;    }
.ut-row-2 .ut-block { transform-origin: bottom; }
.ut-block {
  flex: 1;
  background: linear-gradient(160deg, #1a8acb 0%, #0c4f7f 100%);
  transform: scaleY(0);
  will-change: transform;
  visibility: hidden;
}

/* ── Preloader (heroanim) ────────────────────────────────────── */
.ut-preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100svh;
  background: linear-gradient(155deg, #09091a 0%, #0d1f3c 100%);
  overflow: hidden;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
/* clip each panel to its screen half so they show the same content split */
.ut-preloader-top {
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
}
.ut-preloader-bot {
  clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
}
.ut-pre-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  white-space: nowrap;
  gap: 0.6rem;
}
.ut-pre-brand h1 {
  font-size: clamp(2.5rem, 7.5vw, 7rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}
.ut-pre-sub span {
  display: inline-block;
  font-size: clamp(0.75rem, 1.5vw, 1rem);
  color: var(--accent, #1a8acb);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
}
/* char animation wrappers */
.ut-pre-brand .char {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.ut-pre-brand .char span {
  position: relative;
  display: inline-block;
  will-change: transform;
}
/* top panel: chars enter from above */
.ut-preloader-top .ut-pre-brand .char span {
  transform: translateY(-100%);
}
/* bottom panel: chars enter from below */
.ut-preloader-bot .ut-pre-brand .char span {
  transform: translateY(100%);
}

/* ── Tags overlay ────────────────────────────────────────────── */
.ut-tags-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}
.ut-tag {
  position: absolute;
  overflow: hidden;
}
.ut-tag p {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26, 138, 203, 0.65);
  transform: translateY(-100%);
  will-change: transform;
  display: block;
}
.ut-tag-1 { top: 18%; left: 8%;  }
.ut-tag-2 { bottom: 22%; left: 22%; }
.ut-tag-3 { bottom: 32%; right: 8%; }

/* ── Background Waves (hero) ─────────────────────────────────── */
#waves.ut-waves {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0.3;
}
#waves.ut-waves .waves-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── Nav Hamburger Button ────────────────────────────────────── */
@media (min-width: 769px) {
  .ut-hamburger { display: none !important; }
}
.ut-hamburger {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: transparent;
  border: 1px solid var(--neutral-200);
  border-radius: 999px;
  padding: 0.42rem 0.85rem 0.42rem 1rem;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--neutral-600);
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.ut-hamburger:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.ut-hamburger-label { overflow: hidden; line-height: 1.2; }
.ut-hamburger-label span { display: block; will-change: transform; }
.ut-hamburger-icon {
  position: relative;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  border: 1px solid rgba(26, 138, 203, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ut-hamburger-icon span {
  position: absolute;
  width: 0.85rem;
  height: 0.065rem;
  background: currentColor;
  transform-origin: center;
  transition: all 550ms cubic-bezier(0.87, 0, 0.13, 1);
}
.ut-hamburger-icon span:nth-child(1) { transform: translateY(-0.18rem); }
.ut-hamburger-icon span:nth-child(2) { transform: translateY( 0.18rem); }
.ut-hamburger-icon.active span:nth-child(1) { transform: translateY(0) rotate( 45deg); }
.ut-hamburger-icon.active span:nth-child(2) { transform: translateY(0) rotate(-45deg); }

/* ── Navigation Overlay ──────────────────────────────────────── */
.ut-nav-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100svh;
  background: #0b0b18;
  z-index: 7000;
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  will-change: clip-path;
  overflow: hidden;
}
.ut-nav-overlay-content {
  position: absolute;
  inset: 0;
  display: flex;
  transform: translateY(-50%);
  will-change: transform;
}
.ut-nav-media {
  flex: 2;
  opacity: 0;
  will-change: opacity;
  min-width: 0;
}
.ut-nav-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  display: block;
}
.ut-nav-links-wrapper {
  position: relative;
  flex: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.ut-nav-main {
  display: flex;
  align-items: flex-end;
  padding: 3rem 3rem 2rem;
  gap: 3rem;
  flex: 1;
  align-items: center;
}
.ut-nav-footer-row {
  display: flex;
  padding: 2rem 3rem;
  gap: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.ut-nav-col {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.ut-nav-col:nth-child(1) { flex: 3; }
.ut-nav-col:nth-child(2) { flex: 2; }
.ut-nav-link a {
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.25;
  text-decoration: none;
  transition: color 0.2s;
  display: block;
}
.ut-nav-link a:hover { color: var(--accent); }
.ut-nav-tag a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  transition: color 0.2s;
  display: block;
}
.ut-nav-tag a:hover { color: rgba(26,138,203,0.8); }
.ut-nav-footer-col p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}
.ut-nav-col .line,
.ut-nav-footer-col .line { position: relative; will-change: transform; }

/* no-scroll lock */
html.no-scroll { overflow: hidden; }

/* ── Hero Slider GSAP Enhancement ───────────────────────────── */
.hero-slide {
  transition: none !important; /* GSAP takes over */
  z-index: 1;
}
.hero-slide.active { opacity: 1; }
.ut-slider-titles {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}
.ut-slide-title-container {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 2.5rem;
  pointer-events: none;
}
/* No-SplitText fallback: CSS controls title visibility */
.hero-slider.ut-no-splittext .ut-slide-title-container {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s;
}
.hero-slider.ut-no-splittext .ut-slide-title-container.active {
  opacity: 1;
  visibility: visible;
}
.ut-slide-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
}
.ut-slide-heading {
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.45);
  line-height: 1.1;
}
.ut-slide-heading .word {
  display: inline-block;
  filter: blur(60px);
  opacity: 0;
  will-change: filter, opacity;
  margin-right: 0.3em;
}

/* ── Scroll Zoom Section ─────────────────────────────────────── */
.ut-scroll-zoom {
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  background: #060612;
  perspective: 1000px;
}
.ut-sky-container,
.ut-hero-copy-reveal,
.ut-window-container,
.ut-scroll-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  will-change: transform;
}
.ut-sky-container { height: 350svh; }
.ut-sky-container img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ut-window-container,
.ut-scroll-header { height: 100svh; }
.ut-window-container img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ut-hero-copy-reveal {
  height: 100svh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  z-index: 3;
}
.ut-hero-copy-reveal h2 {
  font-size: clamp(2rem, 5.5vw, 4.5rem);
  font-weight: 700;
  text-align: center;
  line-height: 1;
  width: 80%;
  text-shadow: 0 0 60px rgba(26,138,203,0.5);
}
.ut-scroll-header {
  padding: 2.5rem;
  display: flex;
  justify-content: space-between;
  color: #fff;
  transform-style: preserve-3d;
  z-index: 2;
}
.ut-scroll-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding-bottom: 1rem;
}
.ut-scroll-col h3 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 500;
  line-height: 0.95;
  color: #fff;
}
.ut-scroll-col p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  width: 55%;
  line-height: 1.5;
}
.ut-scroll-col:nth-child(2) { align-items: flex-end; text-align: right; }
.ut-scroll-col:nth-child(2) p { text-align: right; width: 60%; }

/* ── Text Blur Animations ────────────────────────────────────── */
.ut-blur-reveal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 0.05em;
}
.ut-blur-reveal .seg {
  display: inline-block;
  will-change: transform, filter, opacity;
  line-height: inherit;
  margin: 0 0.15em 0 0;
}

/* ── Card Hover Glow (hovereffect adapted) ───────────────────── */
.service-category-card {
  position: relative;
  overflow: hidden;
}
.service-category-card::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at center, rgba(26,138,203,0.22), transparent 68%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease;
  top: var(--my, 50%);
  left: var(--mx, 50%);
  will-change: transform;
  z-index: 0;
}
.service-category-card:hover::after { transform: translate(-50%, -50%) scale(1.2); }
.service-category-card > * { position: relative; z-index: 1; }

/* ── Hover Showcase Section ──────────────────────────────────── */
.ut-hover-showcase {
  position: relative;
  height: 55vh;
  min-height: 340px;
  background: #06060f;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shape-blur-container {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.shape-blur-container canvas {
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.ut-hover-showcase-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}
.ut-hover-showcase-inner h2 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2rem;
  line-height: 1.1;
}
.ut-hover-showcase-inner .btn {
  backdrop-filter: blur(6px);
  border-color: rgba(26,138,203,0.6);
}

/* ════════════════════════════════════════════════════════════════
   PREMIUM DARK CARD  —  .prem-card  modifier
   Apply this class alongside .service-category-card (or any card)
   to activate the dark-glass premium look.
   ════════════════════════════════════════════════════════════════ */
.prem-card {
  position: relative;
  isolation: isolate;
  background: radial-gradient(circle at 50% 0%, #1e1e38 0%, #0a0a1a 68%) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 8px 40px rgba(0, 0, 0, 0.52) !important;
  transition: transform 240ms ease, box-shadow 240ms ease !important;
  overflow: hidden !important;
}

/* top-edge slit glow */
.prem-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42) 50%, transparent);
  z-index: -1;
  pointer-events: none;
}

/* corner accent triangle */
.prem-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2.4rem;
  height: 2.4rem;
  background: rgba(255, 255, 255, 0.1);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  border-top-left-radius: 28px;
  z-index: -1;
  pointer-events: none;
}

.prem-card h3 {
  color: rgba(255, 255, 255, 0.92) !important;
}

.prem-card .service-card-description {
  color: rgba(255, 255, 255, 0.55) !important;
}

.prem-card .eyebrow {
  color: #5dbff5 !important;
  opacity: 1 !important;
}

.prem-card .service-card-icon {
  background: linear-gradient(135deg, rgba(26, 138, 203, 0.28) 0%, rgba(26, 138, 203, 0.1) 100%) !important;
  color: #62caff !important;
  box-shadow: inset 0 0 0 1px rgba(26, 138, 203, 0.3), 0 0 14px rgba(26, 138, 203, 0.15) !important;
}

.prem-card .service-card-tag {
  background: rgba(255, 255, 255, 0.06) !important;
  color: rgba(255, 255, 255, 0.52) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 999px !important;
}

.prem-card .btn.ghost {
  border-color: rgba(26, 138, 203, 0.45) !important;
  color: rgba(255, 255, 255, 0.88) !important;
  background: rgba(26, 138, 203, 0.07) !important;
  white-space: nowrap;
  flex-shrink: 0;
}

.prem-card .btn.ghost:hover {
  background: rgba(26, 138, 203, 0.22) !important;
  border-color: rgba(26, 138, 203, 0.8) !important;
  color: #fff !important;
}

.prem-card:hover {
  transform: translateY(-5px) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(26, 138, 203, 0.2),
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 28px rgba(26, 138, 203, 0.1) !important;
}

/* Fix button squishing in card footer (global) */
.service-card-footer {
  flex-wrap: wrap;
  gap: 0.5rem 0.8rem;
}

.service-card-footer .btn {
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Premium dark section backgrounds for non-product pages ── */
.prem-section {
  background: #06060f;
}

.prem-section .section-header h2,
.prem-section .section-header p {
  color: rgba(255, 255, 255, 0.75);
}

.prem-section .section-header h2 {
  color: rgba(255, 255, 255, 0.92);
}

/* ── Service detail premium layout ── */
.service-detail-prem {
  background: radial-gradient(circle at 30% 50%, #141430 0%, #07070f 100%);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 48px rgba(0, 0, 0, 0.45);
  padding: 3rem;
}

.service-detail-prem .eyebrow { color: #5dbff5; }
.service-detail-prem h2 { color: rgba(255, 255, 255, 0.93); }
.service-detail-prem p, .service-detail-prem .service-lede { color: rgba(255, 255, 255, 0.6); }
.service-detail-prem .feature-list li { color: rgba(255, 255, 255, 0.65); }
.service-detail-prem .service-metrics li strong { color: rgba(255, 255, 255, 0.85); }
.service-detail-prem .service-metrics li span { color: rgba(255, 255, 255, 0.5); }
.service-detail-prem .service-card-tag {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-detail-prem .service-form {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.service-detail-prem .service-form input,
.service-detail-prem .service-form textarea {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
}

.service-detail-prem .service-form input::placeholder,
.service-detail-prem .service-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.service-detail-prem .service-form input:focus,
.service-detail-prem .service-form textarea:focus {
  border-color: rgba(26, 138, 203, 0.6);
  background: rgba(26, 138, 203, 0.08);
  box-shadow: 0 0 0 3px rgba(26, 138, 203, 0.12);
}

.service-detail-prem .btn.ghost {
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.05);
}

/* ── Contact page premium dark overrides ── */
.contact-info-panel {
  background: radial-gradient(circle at 50% 0%, #1a1a32 0%, #09091a 68%);
  border-color: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 8px 40px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
}

.contact-info-panel::before {
  content: "";
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38) 50%, transparent);
  pointer-events: none;
}

.contact-info-panel .eyebrow { color: #5dbff5; }

.contact-info-item {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.07);
}

.contact-info-item[open] {
  background: rgba(255, 255, 255, 0.07);
}

.contact-info-item summary {
  color: rgba(255, 255, 255, 0.85);
}

.contact-info-item p {
  color: rgba(255, 255, 255, 0.5);
}

.contact-info-item a {
  color: #62caff;
}

.contact-form-card {
  background: radial-gradient(circle at 50% 0%, #1a1a32 0%, #09091a 68%);
  border-color: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 8px 40px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
}

.contact-form-card::before {
  content: "";
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38) 50%, transparent);
  pointer-events: none;
  z-index: 1;
}

.contact-form-card .eyebrow { color: #5dbff5; }
.contact-form-card h2 { color: rgba(255, 255, 255, 0.9); }

.contact-form-card label {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form-card input,
.contact-form-card textarea {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  border-color: rgba(26, 138, 203, 0.6);
  background: rgba(26, 138, 203, 0.08);
  outline: none;
}

.consent-field span { color: rgba(255, 255, 255, 0.5); }

.contact-map-card {
  background: radial-gradient(circle at 30% 50%, #131326 0%, #07070f 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 48px rgba(0, 0, 0, 0.4);
}

.contact-map-card .map-info h2 { color: rgba(255, 255, 255, 0.9); }
.contact-map-card .map-info p { color: rgba(255, 255, 255, 0.55); }
.contact-map-card .map-info .eyebrow { color: #5dbff5; }
.contact-map-card .map-links .btn.ghost {
  border-color: rgba(26, 138, 203, 0.45);
  color: rgba(255, 255, 255, 0.85);
  background: rgba(26, 138, 203, 0.07);
}

/* ── Cart page styling ── */
.cart-section {
  padding: 3rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.cart-container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2rem;
  padding: 0 2rem;
}

@media (max-width: 968px) {
  .cart-container {
    grid-template-columns: 1fr;
  }
}

.cart-items {
  min-height: 300px;
}

.cart-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  gap: 1rem;
  align-items: center;
  background: radial-gradient(circle at 50% 0%, #1a1a32 0%, #0d0d1f 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.cart-item:last-child {
  margin-bottom: 0;
}

.cart-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  border-color: rgba(26, 138, 203, 0.3);
}

.cart-item-image {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-info h4 {
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.cart-item-info p {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 0.25rem;
}

.cart-item-quantity button {
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.cart-item-quantity button:hover {
  background: #1a8acb;
  color: #ffffff;
}

.cart-item-quantity span {
  min-width: 2rem;
  text-align: center;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.cart-item-price {
  display: flex;
  align-items: center;
}

.remove-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.remove-btn:hover {
  background: #dc2626;
  color: #ffffff;
}

.remove-btn i {
  font-size: 1.25rem;
}

.cart-summary {
  position: sticky;
  top: 2rem;
  height: fit-content;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #475569;
  font-weight: 500;
  font-size: 0.875rem;
}

.otp-group {
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(26, 138, 203, 0.05);
  border: 1px solid rgba(26, 138, 203, 0.15);
  border-radius: 8px;
}

.otp-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #1a8acb;
  font-weight: 600;
  font-size: 0.875rem;
}

.otp-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.otp-row input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.95rem;
}

.otp-row input:focus {
  border-color: #1a8acb;
  outline: none;
  box-shadow: 0 0 0 3px rgba(26, 138, 203, 0.1);
}

.otp-row button {
  white-space: nowrap;
  padding: 0.75rem 1.5rem;
}

.otp-help {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0;
  font-style: italic;
}

.full-width {
  width: 100%;
}

.summary-card {
  background: radial-gradient(circle at 50% 0%, #1a1a32 0%, #09091a 68%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 8px 40px rgba(0, 0, 0, 0.4);
  border-radius: 24px;
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
}

.summary-card::before {
  content: "";
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38) 50%, transparent);
  pointer-events: none;
}

.summary-card h3 { 
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.summary-row { 
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.summary-row.total { 
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.customer-info {
  background: radial-gradient(circle at 50% 0%, #1a1a32 0%, #09091a 68%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 8px 32px rgba(0, 0, 0, 0.38);
  border-radius: 24px;
  padding: 1.75rem;
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
}

.customer-info::before {
  content: "";
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32) 50%, transparent);
  pointer-events: none;
}

.customer-info h3 { 
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.customer-info label {
  color: rgba(255, 255, 255, 0.65);
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.customer-info input,
.customer-info textarea,
.cart-form input,
.cart-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.customer-info input::placeholder,
.customer-info textarea::placeholder,
.cart-form input::placeholder,
.cart-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.customer-info input:focus,
.customer-info textarea:focus,
.cart-form input:focus,
.cart-form textarea:focus {
  border-color: rgba(26, 138, 203, 0.55);
  background: rgba(26, 138, 203, 0.07);
  outline: none;
}

.cart-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: rgba(255, 255, 255, 0.6);
}

.cart-empty i { 
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.25);
  display: block;
  margin-bottom: 1rem;
}

.cart-empty h3 { 
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

/* ── Mobile Nav Toggle & Actions ── */
.mobile-actions {
  display: none;
  align-items: center;
  gap: 0.5rem;
}
.mobile-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--neutral-200);
  background: var(--white);
  font-size: 1.3rem;
  color: var(--neutral-600);
  transition: all 0.2s;
  position: relative;
}
.mobile-cart-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--neutral-200);
  background: var(--white);
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--neutral-600);
  transition: all 0.2s;
  flex-shrink: 0;
}
.mobile-nav-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ══════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE
   ══════════════════════════════════════════════════════════════ */

/* ── Tablet: 1024px ── */
@media (max-width: 1024px) {
  .nav-pill-item span { display: none; }
  .nav-pill-item { padding: 0.5rem 0.65rem; }
  .nav-pill-item img { width: 16px; }
  .hero { gap: 2rem; padding: 4rem 1.5rem 2rem; }
  .hero-media { min-height: 400px; }
  .hero-slider { height: 400px; }
}

/* ── Mobile: 768px ── */
@media (max-width: 768px) {
  /* Header & Nav */
  .top-line { font-size: 0.78rem; padding: 0.3rem 0.75rem; }
  .nav-wrapper { padding: 0.5rem 1rem; gap: 0.5rem; }
  .nav-group { display: none; }
  .mobile-actions { display: flex; }
  .logo-link img { width: 100px; }
  .logo-link { order: 0; }
  .nav-wrapper { justify-content: space-between; }

  /* Hero */
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 3rem 1.25rem 2rem; gap: 1.5rem; }
  .hero-content { text-align: center; }
  .hero-content h1 { font-size: clamp(1.8rem, 5vw, 2.5rem); }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .ut-blur-reveal { justify-content: center; }
  .hero-media { min-height: 320px; }
  .hero-slider { height: 320px; }
  .hero-actions { flex-direction: column; gap: 0.75rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .hero-products { flex-wrap: wrap; }
  .hero-products img { width: 45%; }

  /* Subpage Hero */
  .subpage-hero { padding: 3rem 1.25rem 2rem; }
  .subpage-hero h1 { font-size: clamp(1.6rem, 5vw, 2.2rem); }

  /* Sections */
  .category-section { padding: 3rem 0; }
  .service-banner { padding: 3rem 1rem; }
  .about-panels { gap: 1.5rem; padding: 0 1rem; }
  .certificate-section { padding: 2.5rem 1rem; }
  .strategy-section { padding: 2.5rem 1rem; }
  .strategy-item { flex-direction: column; }
  .strategy-item strong { min-width: unset; }
  .cta-section { padding: 2.5rem 1rem; }

  /* Service Detail */
  .service-detail { padding: 1.5rem; border-radius: 24px; gap: 1.5rem; margin: 2rem 1rem 3rem; }
  .service-detail .service-visual { padding: 0.75rem; border-radius: 20px; }
  .service-form .form-row { grid-template-columns: 1fr; }

  /* Contact */
  .contact-section { padding: 0 1rem; gap: 1.5rem; }
  .contact-panels { padding: 0 1rem 2rem; gap: 1.5rem; }
  .contact-info-panel { padding: 1.5rem; border-radius: 24px; }
  .contact-form-card { padding: 1.5rem; border-radius: 24px; }
  .contact-map-card .map-info { padding: 1.5rem; }
  .contact-map { padding: 0 1rem 3rem; }

  /* Footer */
  .footer-inner { padding: 3rem 1.25rem 1.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2.5rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer-cta-block { padding: 1.75rem; }
  .footer-bar { flex-direction: column; text-align: center; }

  /* Cart */
  .cart-container { padding: 0 1rem; }
  .cart-item { grid-template-columns: 60px 1fr; gap: 0.75rem; padding: 1rem; }
  .cart-item-quantity { grid-column: 1 / -1; justify-self: start; }
  .cart-item-image { width: 60px; height: 60px; }

  /* Product Catalog */
  .product-categories .service-card-icon { width: 100%; height: 180px; margin-left: 0; }

  /* Animations */
  .ut-scroll-zoom { display: none; }
  .ut-nav-media { display: none; }
  .ut-nav-main { flex-direction: column; align-items: flex-start; padding: 3rem 2rem 1rem; }
  .ut-nav-main .ut-nav-col:nth-child(1) { flex: unset; }
  .ut-nav-link a { font-size: 2.4rem; }
  .ut-pre-sub { display: none; }
  .ut-pre-brand h1 { font-size: clamp(1.8rem, 8vw, 3.5rem); }
  .ut-hover-showcase { height: 45vh; }

  /* Slider titles */
  .ut-slide-title-container { padding: 1.5rem; }
  .ut-slide-heading { font-size: clamp(1.1rem, 4vw, 1.6rem); }
  .slider-btn { width: 36px; height: 36px; font-size: 1.2rem; }
  .slider-btn.prev { left: 8px; }
  .slider-btn.next { right: 8px; }

  /* Product categories overlay fix */
  .product-categories .service-card-overlay-header { bottom: -3.5rem; }
  .product-categories .service-card-description { margin-top: 3rem; }
}

/* ══════════════════════════════════════════════════════════════
   BACK TO TOP BUTTON
   ══════════════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary, #1a8acb), var(--primary-dark, #0d4a78));
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(26, 138, 203, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 999;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 25px rgba(26, 138, 203, 0.5);
}
.back-to-top:active {
  transform: translateY(0) scale(0.95);
}

/* ══════════════════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON WITH PULSE
   ══════════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 998;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}
.whatsapp-float::before,
.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  animation: whatsappPulse 2s infinite;
  z-index: -1;
}
.whatsapp-float::after {
  animation-delay: 0.5s;
}
@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Mobile: move buttons up */
@media (max-width: 768px) {
  .back-to-top {
    bottom: 100px;
    right: 16px;
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }
  .whatsapp-float {
    bottom: 100px;
    left: 16px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

/* ══════════════════════════════════════════════════════════════
   LAZY LOADING & IMAGE OPTIMIZATION
   ══════════════════════════════════════════════════════════════ */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s ease;
}
img[loading="lazy"].loaded,
img[loading="lazy"]:not([src]) {
  opacity: 1;
}

.image-placeholder {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ══════════════════════════════════════════════════════════════
   MICRO-INTERACTIONS & POLISH
   ══════════════════════════════════════════════════════════════ */
/* Ripple effect for buttons */
.btn, button, .mobile-nav-toggle, .mobile-cart-btn {
  position: relative;
  overflow: hidden;
}
.btn::after, button::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  transform: scale(0);
  opacity: 0;
  transition: transform 0.4s, opacity 0.4s;
}
.btn:active::after, button:active::after {
  transform: scale(2);
  opacity: 1;
  transition: 0s;
}

/* Focus visible styles */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* Selection color */
::selection {
  background: rgba(26, 138, 203, 0.3);
  color: inherit;
}

/* Enhanced card hover effects */
.service-category-card,
.product-item,
.category-card {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease;
}

/* Input focus transitions */
input, textarea, select {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Loading spinner */
.spinner {
  width: 24px;
  height: 24px;
  border: 2px solid var(--neutral-200);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Skeleton loading */
.skeleton {
  background: linear-gradient(90deg, var(--neutral-100) 25%, var(--neutral-200) 50%, var(--neutral-100) 75%);
  background-size: 200% 100%;
  animation: skeleton 1.5s infinite;
  border-radius: 4px;
}
@keyframes skeleton {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Cart empty state improvements */
.cart-empty {
  text-align: center;
  padding: 4rem 2rem;
  background: radial-gradient(circle at 50% 0%, #1a1a32 0%, #09091a 68%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 8px 32px rgba(0, 0, 0, 0.38);
}
.cart-empty i {
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.25);
  display: block;
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.cart-empty h3 {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}
.cart-empty p {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
}

/* Product modal mobile improvements */
@media (max-width: 768px) {
  .product-modal {
    max-width: 100%;
    margin: 0;
    border-radius: 20px 20px 0 0;
    max-height: 90vh;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    animation: modalSlideUp 0.3s ease;
  }
  @keyframes modalSlideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
  }
  .product-modal-img {
    max-height: 200px;
    padding: 1rem;
  }
  .product-modal-body {
    padding: 1rem;
  }
  .product-modal-actions {
    flex-direction: column;
    gap: 0.75rem;
  }
  .modal-add-to-cart {
    width: 100%;
  }
  .qty-selector {
    justify-content: center;
  }
}

/* Notification improvements */
.notification-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.notification {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  animation: slideInRight 0.3s ease;
  max-width: 320px;
}
.notification.success { border-left: 4px solid var(--success); }
.notification.error { border-left: 4px solid var(--danger); }
.notification.warning { border-left: 4px solid var(--warning); }
@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@media (max-width: 768px) {
  .notification-container {
    top: auto;
    bottom: 20px;
    right: 16px;
    left: 16px;
  }
  .notification {
    max-width: 100%;
  }
}

