/* ============================================
   Tur Asistans Grubu — style.css
   Domain: turasistansgrubu.com
   ============================================ */

/* Root */
:root {
  --primary-color: #ee2e24;
  --primary-dark: #c91f17;
  --dark-color: #151515;
  --text-color: #333333;
  --muted-color: #6c757d;
  --light-color: #f7f7f8;
  --border-color: #e8e8e8;
  --white-color: #ffffff;
  --transition: all 0.3s ease;
  --navbar-height: 76px;
  --font-family: "Manrope", system-ui, sans-serif;
  --radius: 12px;
  --shadow-sm: 0 4px 16px rgba(21, 21, 21, 0.06);
  --shadow-md: 0 10px 28px rgba(21, 21, 21, 0.08);
}

/* Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-height);
}

body {
  font-family: var(--font-family);
  color: var(--text-color);
  background-color: var(--white-color);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--primary-dark);
}

:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 3px;
}

.section {
  padding: 5rem 0;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.section-eyebrow--light {
  color: rgba(255, 255, 255, 0.75);
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--dark-color);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-title--light {
  color: var(--white-color);
}

.section-lead {
  max-width: 36rem;
  color: var(--muted-color);
  margin-bottom: 0;
}

.section-header {
  margin-bottom: 3rem;
}

.btn-primary {
  --bs-btn-bg: var(--primary-color);
  --bs-btn-border-color: var(--primary-color);
  --bs-btn-hover-bg: var(--primary-dark);
  --bs-btn-hover-border-color: var(--primary-dark);
  --bs-btn-active-bg: var(--primary-dark);
  --bs-btn-active-border-color: var(--primary-dark);
  --bs-btn-disabled-bg: var(--primary-color);
  --bs-btn-disabled-border-color: var(--primary-color);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
}

/* Header */
.navbar {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  transition: box-shadow 0.3s ease, padding 0.3s ease;
  background-color: var(--white-color);
  box-shadow: 0 1px 0 var(--border-color);
}

.navbar.navbar-scrolled {
  box-shadow: 0 2px 16px rgba(21, 21, 21, 0.08);
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}

.navbar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: 1rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.brand-logo-img {
  display: block;
  height: 44px;
  width: auto;
  max-height: 44px;
  object-fit: contain;
}

.brand-logo-text {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--dark-color);
}

.navbar-toggler {
  border: 1px solid var(--border-color);
  padding: 0.4rem 0.55rem;
}

.navbar-toggler-icon {
  filter: none;
}

.navbar .nav-link {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-color);
  padding: 0.5rem 0.9rem;
  position: relative;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--primary-color);
}

/* Aktif alt çizgi yalnızca masaüstü yatay menüde */
@media (min-width: 992px) {
  .navbar .offcanvas-lg {
    background: transparent;
    border: 0;
    visibility: visible !important;
    transform: none !important;
    position: static;
    z-index: auto;
    flex-grow: 1;
  }

  .navbar .offcanvas-lg .offcanvas-header {
    display: none;
  }

  .navbar .offcanvas-lg .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow: visible;
    background: transparent;
  }

  .navbar .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.15rem;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
  }
}

@media (max-width: 991.98px) {
  .navbar {
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
  }

  .navbar .nav-link.active::after {
    display: none;
  }

  .navbar-toggler {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
  }

  .offcanvas {
    --bs-offcanvas-width: min(300px, 86vw);
  }

  .offcanvas-header {
    padding: 1.15rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
  }

  .offcanvas-title {
    font-weight: 700;
    color: var(--dark-color);
  }

  .offcanvas-body {
    padding: 0.5rem 1.25rem 1.5rem;
  }

  .offcanvas-body .navbar-nav {
    width: 100%;
  }

  .offcanvas-body .nav-link {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 0.15rem;
    border-bottom: 1px solid var(--border-color);
  }

  .offcanvas-body .nav-link.active {
    color: var(--primary-color);
  }

  .offcanvas-body .nav-item:last-child .nav-link {
    border-bottom: 0;
  }

  .brand-logo-img {
    height: 36px;
    max-height: 36px;
  }

  .brand-logo-text {
    font-size: 0.82rem;
  }
}

/* Hero */
.hero-section {
  position: relative;
}

.hero-slide {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.hero-slide-visual {
  position: absolute;
  inset: 0;
  background-color: #1a1a1a;
  background-image: url("../images/slider-turasistans.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 10, 10, 0.72) 0%,
    rgba(10, 10, 10, 0.45) 55%,
    rgba(10, 10, 10, 0.28) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: calc(var(--navbar-height) + 2rem);
  padding-bottom: 3rem;
  color: var(--white-color);
}

.hero-content > .hero-eyebrow,
.hero-content > .hero-title,
.hero-content > .hero-text {
  max-width: 36rem;
}

.hero-eyebrow {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(1.85rem, 4.2vw, 3.15rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.15rem;
  color: var(--white-color);
}

.hero-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.75rem;
  max-width: 32rem;
}

.btn-hero {
  box-shadow: 0 8px 24px rgba(238, 46, 36, 0.35);
}

/* About */
.about-section {
  background-color: var(--white-color);
}

.about-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow-md);
  background-color: var(--light-color);
}

.about-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

.about-text p {
  margin-bottom: 1rem;
  color: var(--text-color);
}

.about-features {
  margin-top: 1.75rem;
}

.feature-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background-color: var(--light-color);
  height: 100%;
}

.feature-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background-color: rgba(238, 46, 36, 0.1);
  color: var(--primary-color);
  font-size: 1.15rem;
}

.feature-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.2rem;
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--muted-color);
  margin: 0;
}

/* Brands */
.brands-section {
  background-color: #f4f5f7;
  background-image: radial-gradient(
    ellipse 70% 50% at 50% 0%,
    rgba(238, 46, 36, 0.035) 0%,
    transparent 70%
  );
}

.brands-grid {
  --bs-gutter-y: 1.5rem;
}

.brand-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fcfcfd;
  border: 1px solid rgba(21, 21, 21, 0.06);
  border-radius: 22px;
  box-shadow:
    0 1px 2px rgba(21, 21, 21, 0.03),
    0 8px 24px rgba(21, 21, 21, 0.04);
  padding: 1.15rem 1.15rem 1.35rem;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.brand-card:hover {
  border-color: rgba(238, 46, 36, 0.22);
  box-shadow:
    0 4px 8px rgba(21, 21, 21, 0.03),
    0 18px 40px rgba(21, 21, 21, 0.08);
}

@media (hover: hover) {
  .brand-card:hover {
    transform: translateY(-5px);
  }

  .brand-link:hover {
    transform: translateY(-1px);
  }

  .brand-link:hover .bi {
    transform: translate(1px, -1px);
  }
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
  margin-bottom: 1.35rem;
  padding: 1.25rem 1rem;
  border: 1px solid rgba(21, 21, 21, 0.05);
  border-radius: 16px;
  background:
    linear-gradient(180deg, #f8f8fa 0%, #f3f4f6 100%);
}

.brand-logo {
  display: block;
  max-height: 92px;
  max-width: 240px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand-card-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 0 0.35rem;
}

.brand-category {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--primary-color);
  background-color: rgba(238, 46, 36, 0.07);
  border: 1px solid rgba(238, 46, 36, 0.12);
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  margin-bottom: 0.85rem;
  line-height: 1.35;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-color);
  letter-spacing: -0.01em;
  margin-bottom: 0.7rem;
  line-height: 1.25;
}

.brand-desc {
  font-size: 0.9375rem;
  color: #5f656d;
  line-height: 1.72;
  margin-bottom: 0;
}

.brand-card-footer {
  margin-top: auto;
  padding: 1.4rem 0.35rem 0;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  min-height: 48px;
  font-weight: 600;
  font-size: 0.9375rem;
  border: 1px solid rgba(21, 21, 21, 0.1);
  background-color: var(--white-color);
  color: var(--dark-color);
  border-radius: 12px;
  padding: 0.75rem 1.1rem;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(21, 21, 21, 0.03);
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.brand-link:hover {
  border-color: rgba(238, 46, 36, 0.35);
  color: var(--primary-color);
  background-color: rgba(238, 46, 36, 0.04);
  box-shadow: 0 4px 14px rgba(238, 46, 36, 0.08);
}

.brand-card:hover .brand-link:not(.brand-link-disabled) {
  border-color: rgba(238, 46, 36, 0.28);
}

.brand-link:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.brand-link .bi {
  font-size: 0.9rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.brand-link-disabled {
  color: #8a9098;
  background-color: #f1f2f4;
  border-color: rgba(21, 21, 21, 0.06);
  box-shadow: none;
  cursor: default;
  opacity: 1;
  pointer-events: none;
}

.brand-link-disabled:hover {
  border-color: rgba(21, 21, 21, 0.06);
  color: #8a9098;
  background-color: #f1f2f4;
  box-shadow: none;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .brand-card,
  .brand-link,
  .brand-link .bi {
    transition: none;
  }

  .brand-card:hover,
  .brand-link:hover {
    transform: none;
  }
}

/* Values */
.values-section {
  background-color: var(--dark-color);
  background-image:
    radial-gradient(ellipse at 10% 0%, rgba(238, 46, 36, 0.15) 0%, transparent 45%),
    radial-gradient(ellipse at 90% 100%, rgba(238, 46, 36, 0.08) 0%, transparent 40%);
}

.value-card {
  height: 100%;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background-color: rgba(255, 255, 255, 0.03);
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.value-card:hover {
  border-color: rgba(238, 46, 36, 0.4);
  background-color: rgba(255, 255, 255, 0.05);
}

.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 10px;
  background-color: rgba(238, 46, 36, 0.15);
  color: var(--primary-color);
  font-size: 1.35rem;
  margin-bottom: 1.15rem;
}

.value-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 0.65rem;
}

.value-desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Contact */
.contact-section {
  background-color: var(--white-color);
}

.contact-info {
  background-color: var(--light-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  color: var(--primary-color);
  font-size: 1.15rem;
}

.contact-info-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.2rem;
}

.contact-info-value {
  font-size: 0.9375rem;
  color: var(--muted-color);
  margin: 0;
}

.contact-info-value a {
  color: var(--text-color);
  text-decoration: none;
}

.contact-info-value a:hover {
  color: var(--primary-color);
}

.contact-social {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.contact-social-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.75rem;
}

.contact-social-links,
.footer-social {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background-color: var(--white-color);
  color: var(--text-color);
  transition: var(--transition);
}

.social-link:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.social-link--pending {
  opacity: 0.55;
  cursor: default;
}

.contact-form {
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark-color);
}

.required {
  color: var(--primary-color);
}

.form-control,
.form-check-input {
  border-color: var(--border-color);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(238, 46, 36, 0.15);
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(238, 46, 36, 0.15);
}

.btn-submit {
  min-width: 160px;
}

#formStatus {
  margin-bottom: 0;
}

/* Footer */
.site-footer {
  background-color: #0f0f0f;
  color: rgba(255, 255, 255, 0.75);
  padding-top: 4rem;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.footer-about {
  font-size: 0.9375rem;
  max-width: 20rem;
  margin-bottom: 0;
}

.footer-heading {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 1rem;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.55rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

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

.footer-contact li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--primary-color);
}

.footer-social {
  margin-top: 1.15rem;
}

.footer-social .social-link {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
}

.footer-social .social-link:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.footer-bottom {
  margin-top: 3rem;
  padding: 1.35rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
}

.footer-copy,
.footer-tagline {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-tagline {
  font-style: italic;
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1040;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(238, 46, 36, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
  cursor: pointer;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--primary-dark);
}

/* Responsive */
@media (max-width: 991.98px) {
  :root {
    --navbar-height: 64px;
  }

  .hero-section,
  .hero-slide {
    min-height: min(72vh, 620px);
  }

  .hero-content {
    padding-top: calc(var(--navbar-height) + 1.75rem);
    padding-bottom: 2.5rem;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.55) 0%,
      rgba(10, 10, 10, 0.62) 45%,
      rgba(10, 10, 10, 0.72) 100%
    );
  }

  .section-header {
    margin-bottom: 2.25rem;
  }
}

@media (max-width: 767.98px) {
  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: clamp(1.45rem, 5.2vw, 1.85rem);
    line-height: 1.3;
  }

  .section-lead {
    font-size: 0.95rem;
  }

  .hero-section,
  .hero-slide {
    min-height: 620px;
  }

  .hero-content {
    padding-top: calc(var(--navbar-height) + 1.75rem);
    padding-bottom: 2.5rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-content > .hero-eyebrow,
  .hero-content > .hero-title,
  .hero-content > .hero-text {
    max-width: 22rem;
  }

  .hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.65rem;
  }

  .hero-title {
    font-size: clamp(1.35rem, 5.2vw, 1.6rem);
    line-height: 1.25;
    margin-bottom: 0.75rem;
  }

  .hero-text {
    font-size: 0.875rem;
    line-height: 1.55;
    margin-bottom: 1.25rem;
    max-width: 20rem;
  }

  .btn-hero {
    width: auto;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.25rem;
    font-size: 0.9rem;
  }

  .about-visual,
  .about-image {
    min-height: 200px;
  }

  .about-features {
    margin-top: 1.25rem;
  }

  .feature-item {
    padding: 0.85rem;
    gap: 0.7rem;
  }

  .feature-icon {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1rem;
  }

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

  .feature-desc {
    font-size: 0.8125rem;
  }

  .brand-card {
    padding: 1rem 1rem 1.15rem;
    border-radius: 18px;
  }

  .brand-logo-wrap {
    height: 110px;
    margin-bottom: 1.1rem;
    padding: 1rem 0.85rem;
    border-radius: 14px;
  }

  .brand-logo {
    max-height: 78px;
    max-width: 210px;
  }

  .brand-card-body,
  .brand-card-footer {
    padding-left: 0.1rem;
    padding-right: 0.1rem;
  }

  .brand-name {
    font-size: 1.15rem;
  }

  .brand-desc {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .brand-link {
    min-height: 46px;
    border-radius: 11px;
  }

  .value-card {
    padding: 1.35rem 1.2rem;
    border-radius: 14px;
  }

  .value-icon {
    width: 2.65rem;
    height: 2.65rem;
    font-size: 1.2rem;
    margin-bottom: 0.95rem;
  }

  .contact-form,
  .contact-info {
    padding: 1.25rem;
    border-radius: 14px;
  }

  .contact-info-item {
    gap: 0.85rem;
    margin-bottom: 1.2rem;
  }

  .contact-info-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .contact-info-value {
    font-size: 0.9rem;
    word-break: break-word;
  }

  .btn-submit {
    width: 100%;
  }

  .site-footer {
    padding-top: 3rem;
  }

  .footer-logo {
    height: 38px;
    max-width: 190px;
  }

  .footer-about {
    font-size: 0.9rem;
    max-width: none;
  }

  .footer-heading {
    margin-top: 0.35rem;
    margin-bottom: 0.85rem;
  }

  .footer-social {
    margin-top: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    margin-top: 2.25rem;
    gap: 0.5rem;
  }

  .back-to-top {
    right: 1rem;
    bottom: 1rem;
    width: 2.5rem;
    height: 2.5rem;
  }
}

@media (max-width: 390px) {
  .section {
    padding: 2.5rem 0;
  }

  .section-header {
    margin-bottom: 1.75rem;
  }

  .hero-section,
  .hero-slide {
    min-height: 600px;
  }

  .hero-content {
    padding-left: 1.35rem;
    padding-right: 1.35rem;
  }

  .hero-title {
    font-size: 1.35rem;
  }

  .hero-text {
    font-size: 0.85rem;
    max-width: 18.5rem;
  }

  .btn-hero {
    width: auto;
    padding: 0.65rem 1.15rem;
    font-size: 0.875rem;
  }

  .brand-logo-img {
    height: 32px;
    max-height: 32px;
  }

  .brand-logo-text {
    font-size: 0.72rem;
    letter-spacing: 0.02em;
  }

  .about-visual,
  .about-image {
    min-height: 180px;
  }

  .brand-logo-wrap {
    height: 100px;
  }

  .brand-logo {
    max-height: 70px;
    max-width: 190px;
  }

  .brand-category {
    font-size: 0.7rem;
    padding: 0.22rem 0.55rem;
  }

  .contact-form,
  .contact-info {
    padding: 1.1rem;
  }

  .footer-logo {
    height: 34px;
    max-width: 170px;
  }
}

@media (min-width: 1440px) {
  .hero-content {
    padding-left: 0.5rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
