/**
 * Aspak Sistem — design tokens from ref (Stitch) + Bootstrap companions
 */

:root {
  --aspak-bg: #f8fafb;
  --aspak-surface: #f8fafb;
  --aspak-surface-low: #f2f4f5;
  --aspak-surface-lowest: #ffffff;
  --aspak-on-surface: #191c1d;
  --aspak-on-surface-variant: #404751;
  --aspak-primary: #005994;
  --aspak-primary-container: #0072bc;
  --aspak-on-primary: #ffffff;
  --aspak-on-primary-fixed: #001d35;
  --aspak-primary-fixed: #d1e4ff;
  --aspak-primary-fixed-dim: #9dcaff;
  --aspak-secondary: #48626e;
  --aspak-secondary-container: #cbe7f5;
  --aspak-on-secondary-container: #4e6874;
  --aspak-outline-variant: #c0c7d3;
  --aspak-container-max: 80rem;
  --aspak-secondary-fixed: #cbe7f5;
  --aspak-on-secondary-fixed: #021f29;
  --aspak-surface-container-highest: #e1e3e4;
  --aspak-surface-container: #eceeef;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body.aspak-theme {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--aspak-bg);
  color: var(--aspak-on-surface);
}

body.aspak-theme ::selection {
  background: var(--aspak-primary-fixed);
  color: var(--aspak-on-primary-fixed);
}

.aspak-container {
  width: 100%;
  max-width: var(--aspak-container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Topbar */
.aspak-topbar {
  background-color: var(--aspak-on-primary-fixed);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin-bottom: 0;
}

.aspak-topbar a {
  color: inherit;
  text-decoration: none;
}

.aspak-topbar a:hover {
  color: var(--aspak-primary-fixed);
}

/* Main header */
.aspak-header {
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  margin-bottom: 1.5rem;
}

.aspak-header .navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.aspak-logo {
  height: 2.5rem;
  width: auto;
}

.aspak-nav-link {
  color: #475569 !important;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 0.25rem 0 !important;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease;
}

.aspak-nav-link:hover {
  color: var(--aspak-primary) !important;
}

.aspak-nav-link--active {
  color: var(--aspak-primary) !important;
  font-weight: 700 !important;
  border-bottom-color: var(--aspak-primary) !important;
}

@media (min-width: 992px) {
  .aspak-header .navbar-nav .nav-link.aspak-nav-link {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
}

.aspak-topbar {
  background: var(--aspak-surface-low, #f1f5f9);
  font-size: 0.8125rem;
  color: #64748b;
}

.aspak-topbar-link {
  color: inherit;
}

.aspak-topbar-link:hover {
  color: var(--aspak-primary);
}

.btn-aspak-gradient {
  background: linear-gradient(90deg, var(--aspak-primary) 0%, var(--aspak-primary-container) 100%);
  color: #fff !important;
  border: none;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.625rem 1.5rem;
  border-radius: 0.375rem;
  box-shadow: 0 4px 12px rgba(0, 89, 148, 0.2);
  transition: opacity 0.2s ease, transform 0.1s ease;
}

.btn-aspak-gradient:hover {
  opacity: 0.92;
  color: #fff !important;
}

.btn-aspak-gradient:active {
  transform: scale(0.98);
}

/* Hero */
.aspak-hero {
  position: relative;
  min-height: 870px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 1rem;
  margin-bottom: 3rem;
  border-radius: 0.75rem;
}

.site-main > .aspak-hero:first-child {
  margin-top: 0.5rem;
}

@media (max-width: 767.98px) {
  .aspak-hero {
    min-height: 560px;
  }
}

.aspak-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.aspak-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 89, 148, 0.9) 0%,
    rgba(0, 114, 188, 0.7) 100%
  );
}

.aspak-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.aspak-hero h1,
.aspak-hero-title {
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .aspak-hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
  }
}

.aspak-hero .lead-aspak {
  color: rgba(209, 228, 255, 0.85);
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .aspak-hero .lead-aspak {
    font-size: 1.25rem;
  }
}

.aspak-hero .text-accent {
  color: var(--aspak-primary-fixed);
}

.btn-aspak-white {
  min-height: 52px;
  padding: 0 2rem;
  background: #fff;
  color: var(--aspak-primary) !important;
  font-weight: 700;
  border: none;
  border-radius: 0.375rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  transition: background 0.2s ease, transform 0.1s ease;
}

.btn-aspak-white:hover {
  background: var(--aspak-primary-fixed);
  color: var(--aspak-primary) !important;
}

.btn-aspak-outline {
  min-height: 52px;
  padding: 0 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  color: #fff !important;
  font-weight: 700;
  border-radius: 0.375rem;
  transition: background 0.2s ease, transform 0.1s ease;
}

.btn-aspak-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff !important;
}

/* Sections */
.aspak-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.aspak-section--surface {
  background-color: var(--aspak-surface);
}

.aspak-section--surface-low {
  background-color: var(--aspak-surface-low);
}

/* CTA band — ekstra nefes (ana sayfa) */
.aspak-section--cta-spacing {
  padding-top: 4rem;
  padding-bottom: 5rem;
  margin-top: 2rem;
  margin-bottom: 3.5rem;
}

.aspak-kicker {
  color: var(--aspak-primary);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.aspak-heading {
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--aspak-on-surface);
}

.aspak-body {
  color: var(--aspak-on-surface-variant);
  line-height: 1.6;
}

/* About mosaic */
.aspak-about-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  gap: 1rem;
  height: 600px;
}

@media (max-width: 991.98px) {
  .aspak-about-mosaic {
    height: auto;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }
  .aspak-about-mosaic > div {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 200px;
  }
}

.aspak-about-mosaic__cell {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(25, 28, 29, 0.08);
}

.aspak-about-mosaic__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aspak-about-mosaic .c1 {
  grid-column: span 8;
  grid-row: span 7;
}
.aspak-about-mosaic .c2 {
  grid-column: span 4;
  grid-row: span 5;
}
.aspak-about-mosaic .c3 {
  grid-column: span 4;
  grid-row: span 7;
}
.aspak-about-mosaic .c4 {
  grid-column: span 8;
  grid-row: span 5;
}

.aspak-feature-tile {
  background: var(--aspak-surface-lowest);
  padding: 1.5rem;
  border-radius: 0.75rem;
  border-left: 4px solid var(--aspak-primary);
  box-shadow: 0 2px 8px rgba(25, 28, 29, 0.04);
}

.aspak-feature-tile .material-symbols-outlined {
  color: var(--aspak-primary);
  font-size: 1.75rem;
}

/* Brand cards (ana sayfa) */
.brand-card {
  background: var(--aspak-surface-lowest);
  padding: 1.5rem;
  border-radius: 0.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
}

.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 89, 148, 0.06);
}

.brand-card__logo {
  width: 100%;
  max-width: 11rem;
  aspect-ratio: 1 / 1;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0.5rem;
  background: var(--aspak-surface-low);
}

.brand-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background-color: white;
}

.brand-card__placeholder {
  font-size: 0.8rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.brand-card__cat {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

.brand-card__title {
  font-size: clamp(1rem, 2.8vw, 1.2rem);
  line-height: 1.25;
}

.brand-card__body {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-card__actions {
  width: 100%;
}

.btn-brand-pdf {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--aspak-secondary-container);
  color: var(--aspak-on-secondary-container) !important;
  font-size: 0.75rem;
  font-weight: 700;
  border: none;
  border-radius: 0.375rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.brand-card:hover .btn-brand-pdf {
  background: var(--aspak-primary);
  color: #fff !important;
}

.btn-brand-pdf .material-symbols-outlined {
  font-size: 1rem;
}

/* CTA band */
.aspak-cta-band {
  position: relative;
  background: var(--aspak-on-primary-fixed);
  border-radius: 1rem;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.aspak-cta-band__bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  opacity: 0.4;
}

@media (max-width: 767.98px) {
  .aspak-cta-band__bg {
    display: none;
  }
}

.aspak-cta-band__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aspak-cta-band__content {
  position: relative;
  z-index: 1;
  padding: 3rem 1.5rem;
}

@media (min-width: 768px) {
  .aspak-cta-band__content {
    padding: 5rem;
    max-width: 42rem;
  }
}

.btn-aspak-primary-solid {
  background: var(--aspak-primary-container);
  color: #fff !important;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 0.375rem;
  box-shadow: 0 8px 24px rgba(0, 89, 148, 0.2);
  transition: transform 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-aspak-primary-solid:hover {
  color: #fff !important;
  transform: scale(1.03);
}

.btn-aspak-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff !important;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 0.375rem;
  transition: background 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-aspak-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
}

/* Contact */
.aspak-icon-box {
  width: 3rem;
  height: 3rem;
  background: rgba(0, 114, 188, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.aspak-icon-box .material-symbols-outlined {
  color: var(--aspak-primary);
}

.aspak-contact-card {
  background: var(--aspak-surface-lowest);
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(25, 28, 29, 0.04);
}

.aspak-form-control {
  width: 100%;
  background: var(--aspak-surface-low);
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  transition: box-shadow 0.2s ease;
}

.aspak-form-control:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--aspak-primary);
}

.aspak-map-wrap {
  border-radius: 1rem;
  overflow: hidden;
  height: 18rem;
  border: 1px solid rgba(192, 199, 211, 0.15);
  box-shadow: 0 2px 8px rgba(25, 28, 29, 0.04);
}

.aspak-map-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Ana sayfa iletişim: adres / tel / e-posta satırları aralığı */
.aspak-home-contact-stack {
  gap: clamp(2.25rem, 4vw, 3.5rem);
}

/* İletişim sayfası: konum kartları dikey aralık */
.aspak-iletisim-loc-stack {
  gap: clamp(1.75rem, 3vw, 2.75rem);
}

.aspak-loc-card + .aspak-loc-card {
  margin-top: 0;
}

/* Tam genişlik harita (viewport kırılımı) */
.aspak-map-fullwidth {
  width: 100vw;
  max-width: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  background: var(--aspak-surface-low);
  border-top: 1px solid rgba(192, 199, 211, 0.2);
  border-bottom: 1px solid rgba(192, 199, 211, 0.2);
}

.aspak-map-fullwidth__inner {
  min-height: 22rem;
  line-height: 0;
}

.aspak-map-fullwidth__inner iframe.aspak-map-iframe,
.aspak-map-fullwidth__inner iframe {
  display: block;
  width: 100% !important;
  min-height: 24rem;
  height: min(50vh, 28rem);
}

.aspak-map-fullwidth--page .aspak-map-fullwidth__inner iframe.aspak-map-iframe,
.aspak-map-fullwidth--page .aspak-map-fullwidth__inner iframe {
  min-height: 26rem;
  height: min(55vh, 32rem);
}

/* Hakkımızda tarihçe: yıl ile başlık çakışmasını önle */
.aspak-timeline-year {
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1;
  opacity: 0.35;
  min-width: 4.5rem;
}

.aspak-timeline-year--wide {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  min-width: 5rem;
}

/* Footer */
.aspak-footer {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  margin-top: 4rem;
}

.aspak-footer > .aspak-container {
  padding-top: 3.5rem !important;
  padding-bottom: 3rem !important;
}

.aspak-footer h4 {
  color: var(--aspak-primary);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.aspak-footer a {
  color: #64748b;
  text-decoration: none;
}

.aspak-footer a:hover {
  color: var(--aspak-primary);
}

.aspak-footer__social a {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: #e2e8f0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  transition: background 0.2s ease, color 0.2s ease;
}

.aspak-footer__social a:hover {
  background: var(--aspak-primary);
  color: #fff;
}

.aspak-footer__bottom {
  border-top: 1px solid #e2e8f0;
  font-size: 0.75rem;
  font-weight: 500;
  color: #94a3b8;
}

.aspak-footer-link-list {
  gap: 0.80rem !important;
}

.aspak-footer-legacy-contact {
  gap: 1.15rem;
}

.aspak-footer-loc-list {
  gap: 1rem !important;
}

.aspak-footer-bottom-links {
  gap: 2rem 2.5rem;
}

/* Navbar toggler */
.aspak-navbar-toggler {
  border: none;
  background: transparent;
  padding: 0.5rem;
  color: var(--aspak-on-surface);
}

.aspak-navbar-toggler:focus {
  box-shadow: none;
}

/* Inner pages */
.aspak-page-main {
  padding-top: 2rem;
  padding-bottom: 4rem;
  min-height: 40vh;
}

/* Sayfa şablonları (ref/2, ref/1, ref/3) */
.aspak-page-template {
  padding-bottom: 4rem;
}

.aspak-pg-hero {
  position: relative;
  overflow: hidden;
  background: var(--aspak-surface);
  padding-top: 4rem;
  padding-bottom: 4rem;
  margin-bottom: 2rem;
}

@media (min-width: 992px) {
  .aspak-pg-hero {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

/* Hakkımızda / İletişim / Markalar — aynı subheader yüksekliği ve tipografi */
.aspak-pg-hero.aspak-pg-hero--unified {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(17rem, 38vh, 22rem);
  padding-top: 2.75rem !important;
  padding-bottom: 2.75rem !important;
  margin-bottom: 2rem;
}

@media (min-width: 992px) {
  .aspak-pg-hero.aspak-pg-hero--unified {
    min-height: 22rem;
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
}

.aspak-pg-hero--unified > .aspak-container {
  width: 100%;
}

.aspak-pg-hero__title {
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.aspak-pg-hero__lead {
  max-width: 40rem;
}

.aspak-pg-hero__figure-wrap {
  aspect-ratio: 4 / 3;
  max-height: 200px;
}

@media (min-width: 992px) {
  .aspak-pg-hero__figure-wrap {
    max-height: 220px;
    aspect-ratio: 4 / 3;
  }
}

.aspak-pg-hero__figure-wrap img {
  width: 100%;
  height: 100%;
  max-height: 220px;
  object-fit: cover;
}

/* Ana sayfa — buton grupları aralığı (yarıya indirildi) */
.aspak-home-btn-row {
  gap: 0.5rem !important;
  row-gap: 0.5rem !important;
  column-gap: 0.5rem !important;
}

@media (min-width: 576px) {
  .aspak-home-btn-row {
    gap: 0.675rem !important;
    row-gap: 0.625rem !important;
    column-gap: 0.675rem !important;
  }
}

@media (min-width: 768px) {
  .aspak-home-btn-row {
    gap: 0.75rem !important;
    column-gap: 0.875rem !important;
  }
}

.aspak-editorial-shadow {
  box-shadow: 0 20px 40px rgba(25, 28, 29, 0.05);
}

/* Yasal sayfalar (gizlilik / KVKK / çerez) */
.aspak-legal-prose ul {
  padding-left: 1.25rem;
}

.aspak-legal-prose ul li {
  margin-bottom: 0.35rem;
}

.aspak-legal-contact-card dt {
  font-size: 0.8125rem;
}

.aspak-bg-primary-gradient {
  background: linear-gradient(45deg, var(--aspak-primary), var(--aspak-primary-container));
}

.aspak-brand-page-card {
  background: var(--aspak-surface-lowest);
  border-radius: 0.75rem;
  padding: 1.75rem;
  height: 100%;
  min-height: 22rem;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.aspak-brand-page-card:hover {
  box-shadow: 0 20px 40px rgba(25, 28, 29, 0.05);
  transform: translateY(-2px);
}

.aspak-brand-page-card__logo {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 14rem;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0.5rem;
  background: var(--aspak-surface-low);
}

.aspak-brand-page-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background-color: white;
}

.aspak-brand-page-card__placeholder {
  font-size: 0.85rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.aspak-brand-page-card__cat {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-align: center;
}

.aspak-brand-page-card__title {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  line-height: 1.2;
  text-align: center;
}

.aspak-brand-page-card__spacer {
  min-height: 0.5rem;
}

.aspak-brand-page-card__footer {
  width: 100%;
}

.aspak-pg-cta {
  margin-top: 3rem;
  margin-bottom: 4rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.aspak-filter-pill {
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  white-space: nowrap;
}

.aspak-filter-pill--active {
  background: var(--aspak-primary);
  color: #fff;
}

.aspak-filter-pill--idle {
  background: var(--aspak-secondary-fixed);
  color: var(--aspak-on-secondary-fixed);
}

.aspak-form-underline {
  width: 100%;
  background: var(--aspak-surface-container-highest);
  border: none;
  border-bottom: 2px solid rgba(113, 120, 130, 0.2);
  border-radius: 0.375rem 0.375rem 0 0;
  padding: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.aspak-form-underline:focus {
  outline: none;
  border-bottom-color: var(--aspak-primary);
  box-shadow: 0 0 0 1px rgba(0, 89, 148, 0.15);
}

/* İletişim sayfası: Contact Form 7 — statik form ile aynı alt çizgi / grid görünümü */
.aspak-iletisim-cf7 .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.aspak-iletisim-cf7 .wpcf7-form > p {
  margin-bottom: 0;
}

.aspak-iletisim-cf7 .wpcf7-form .row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

.aspak-iletisim-cf7 .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
}

.aspak-iletisim-cf7 .wpcf7-form label,
.aspak-iletisim-cf7 .wpcf7-form .form-label {
  margin-bottom: 0;
}

.aspak-iletisim-cf7 input.wpcf7-form-control.aspak-form-underline,
.aspak-iletisim-cf7 select.wpcf7-form-control.aspak-form-underline,
.aspak-iletisim-cf7 textarea.wpcf7-form-control.aspak-form-underline {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.aspak-iletisim-cf7 input.wpcf7-submit.btn-aspak-gradient {
  width: 100%;
  border: none;
}

.aspak-iletisim-cf7 .wpcf7-response-output {
  margin: 0 0 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
}

.aspak-iletisim-cf7 .wpcf7-not-valid-tip {
  margin-top: 0.35rem;
  font-size: 0.75rem;
}

.aspak-iletisim-cf7 .wpcf7-spinner {
  margin-left: 0.5rem;
}

.aspak-social-btn {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--aspak-secondary-container);
  color: var(--aspak-primary);
  transition: background 0.2s ease, color 0.2s ease;
}

.aspak-social-btn:hover {
  background: var(--aspak-primary);
  color: #fff;
}

.aspak-secondary-container-bg {
  background: var(--aspak-secondary-container);
}

.aspak-value-card {
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.aspak-value-card:hover {
  background: var(--aspak-primary-container) !important;
  border-color: transparent !important;
  color: #fff;
}

.aspak-value-card:hover .aspak-body,
.aspak-value-card:hover h3 {
  color: rgba(255, 255, 255, 0.9) !important;
}

.aspak-value-card:hover .material-symbols-outlined {
  color: #fff !important;
}

.aspak-value-card:hover .aspak-secondary-container-bg {
  background: rgba(255, 255, 255, 0.2) !important;
}

/* AOS: erişilebilirlik — azaltılmış hareket tercihi (JS de devre dışı bırakır) */
@media (prefers-reduced-motion: reduce) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}
