﻿
:root {
  --primary: 0, 85%, 50%;
  --primary-light: 0, 85%, 58%;
  --primary-dark: 0, 85%, 38%;
  --primary-foreground: 0, 0%, 100%;
  --accent: 45, 100%, 50%;
  --accent-light: 45, 100%, 60%;
  --accent-foreground: 0, 0%, 10%;
  --background: 0, 0%, 98%;
  --foreground: 0, 0%, 10%;
  --card: 0, 0%, 100%;
  --card-foreground: 0, 0%, 10%;
  --muted: 0, 0%, 94%;
  --muted-foreground: 0, 0%, 40%;
  --border: 0, 0%, 88%;
  --radius: 1rem;
  --shadow-soft: 0 4px 20px -4px hsl(0 0% 10% / .08), 0 2px 8px -2px hsl(0 0% 10% / .04);
  --shadow-medium: 0 12px 35px -8px hsl(0 0% 10% / .12), 0 4px 15px -4px hsl(0 0% 10% / .08);
  --shadow-strong: 0 25px 50px -12px hsl(0 0% 10% / .18);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Nunito', sans-serif;
  color: hsl(var(--foreground));
  background-color: hsl(var(--background));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse 100% 100% at 50% 0%, hsl(45 100% 95% / .35) 0%, transparent 50%);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul, ol {
  list-style: none;
}

input, select, textarea, button {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title {
  font-size: 2.25rem;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}

.section-desc {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  max-width: 600px;
  margin: 0 auto;
}

.aurora-bg {
  position: relative;
  overflow: hidden;
}

.aurora-bg::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, hsl(0 85% 50% / .05), transparent),
    radial-gradient(ellipse 60% 40% at 70% 60%, hsl(45 100% 50% / .06), transparent),
    radial-gradient(ellipse 50% 60% at 50% 30%, hsl(0 0% 10% / .03), transparent);
  animation: aurora-drift 30s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.aurora-bg > * {
  position: relative;
  z-index: 1;
}

@keyframes aurora-drift {
  0%, 100% { transform: translate(0) rotate(0); }
  33% { transform: translate(2%, 1%) rotate(0.5deg); }
  66% { transform: translate(-1%, 2%) rotate(-0.5deg); }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
}

.btn-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.btn-primary:hover {
  background: hsl(var(--primary-light));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px -3px hsl(0 85% 50% / .45);
}

.btn-accent {
  background: linear-gradient(135deg, hsl(45, 100%, 50%) 0%, hsl(40, 100%, 48%) 100%);
  color: #111;
  font-weight: 700;
  box-shadow: 0 4px 18px -2px hsl(45 100% 50% / .45);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px -4px hsl(45 100% 50% / .55);
}

.btn-outline-white {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
  backdrop-filter: blur(4px);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  border-radius: calc(var(--radius) - 4px);
}

.btn-full {
  width: 100%;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #111;
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: #000;
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon svg {
  display: block;
}

.logo-icon img {
  display: block;
  width: 68px;
  height: 68px;
  object-fit: cover;
}

.logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  transition: color 0.2s;
  position: relative;
}

.nav-link:hover {
  color: hsl(var(--accent));
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: hsl(var(--accent));
  border-radius: 1px;
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-license {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255,255,255,.85);
  font-weight: 600;
}
.nav-license:hover {
  color: #fff;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-selector {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,.7);
  cursor: pointer;
  padding: 0.375rem 0.625rem;
  border-radius: calc(var(--radius) - 4px);
  transition: background 0.2s;
}

.lang-selector:hover {
  background: rgba(255,255,255,.1);
}

.header-socials {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.header-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff;
  transition: background .25s, transform .25s;
}

.header-social-icon:hover {
  background: var(--accent);
  color: #111;
  transform: scale(1.1);
}

.header-social-icon svg {
  display: block;
}

.header-phone {
  font-size: .85rem;
}

.header-cta {
  font-size: 0.85rem;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  background: #111;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem;
  border-radius: 0 0 20px 20px;
}

.mobile-menu.open {
  display: block;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  border-radius: calc(var(--radius) - 4px);
  transition: background 0.2s;
}

.mobile-nav-link:hover {
  background: rgba(255,255,255,.1);
}

.mobile-socials {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.15);
}

.mobile-social-link {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem 1rem;
  border-radius: calc(var(--radius) - 4px);
  color: rgba(255,255,255,.85);
  font-weight: 600;
  font-size: .95rem;
  transition: background .2s;
}

.mobile-social-link:hover {
  background: rgba(255,255,255,.1);
}

.mobile-social-link svg {
  flex-shrink: 0;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .8s ease, visibility .8s ease;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
}

.hero-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 6s ease;
}

.hero-slide.active .hero-slide-bg img {
  transform: scale(1);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, .75) 0%,
    rgba(0, 0, 0, .50) 40%,
    rgba(0, 0, 0, .20) 100%
  );
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding-top: 72px;
  padding-bottom: 8rem;
  max-width: 650px;
}

.hero-slide-title {
  font-size: 3.75rem;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
  transform: translateY(30px);
  opacity: 0;
  transition: transform .7s ease .3s, opacity .7s ease .3s;
}

.hero-slide.active .hero-slide-title {
  transform: translateY(0);
  opacity: 1;
}

.hero-slide-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 2rem;
  max-width: 500px;
  line-height: 1.6;
  transform: translateY(30px);
  opacity: 0;
  transition: transform .7s ease .5s, opacity .7s ease .5s;
}

.hero-slide.active .hero-slide-subtitle {
  transform: translateY(0);
  opacity: 1;
}

.hero-slide-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  transform: translateY(30px);
  opacity: 0;
  transition: transform .7s ease .7s, opacity .7s ease .7s;
}

.hero-slide.active .hero-slide-buttons {
  transform: translateY(0);
  opacity: 1;
}

.hero-slider-controls {
  position: absolute;
  bottom: 5rem;
  right: 3rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .4);
  background: rgba(0, 0, 0, .3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s ease;
  backdrop-filter: blur(4px);
}

.hero-slider-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1);
}

.hero-slider-dots {
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .5);
  background: transparent;
  cursor: pointer;
  transition: all .3s ease;
  padding: 0;
}

.hero-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.2);
}

.hero-dot:hover:not(.active) {
  border-color: #fff;
  background: rgba(255, 255, 255, .3);
}

.hero-slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, .15);
  z-index: 10;
}

.hero-slider-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width .05s linear;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; height: 40px; }
  50% { opacity: .4; height: 20px; }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--shadow-soft);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
  border-color: hsl(var(--primary) / .2);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.feature-icon-blue {
  background: hsl(var(--primary) / .1);
  color: hsl(var(--primary));
}

.feature-icon-accent {
  background: hsl(var(--accent) / .1);
  color: hsl(var(--accent));
}

.feature-icon-green {
  background: hsl(45, 100%, 50%, .1);
  color: hsl(45, 100%, 40%);
}

.feature-icon-purple {
  background: hsl(0, 0%, 10%, .08);
  color: hsl(0, 0%, 20%);
}

.feature-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: hsl(var(--foreground));
}

.feature-desc {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.5;
}

.vacancies {
  background: #fffbf0;
}

.jobs-carousel-wrap {
  position: relative;
}

.jobs-carousel {
  overflow: hidden;
  border-radius: var(--radius);
}

.jobs-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}

.job-card {
  min-width: calc(33.333% - 1rem);
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--shadow-soft);
  flex-shrink: 0;
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.job-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.job-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.job-card:hover .job-image img {
  transform: scale(1.05);
}

.job-hot {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: hsl(var(--accent));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.job-low-seats ~ .job-hot {
  background: hsl(var(--primary));
  animation: lowSeatsPulse 1.5s ease-in-out infinite;
}

.job-low-seats {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: hsl(var(--primary));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  animation: lowSeatsPulse 1.5s ease-in-out infinite;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.4);
  letter-spacing: 0.02em;
}

@keyframes lowSeatsPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.4);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.06);
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.6);
  }
}

.job-body {
  padding: 1.25rem;
}

.job-title {
  font-size: 1rem;
  margin-bottom: 0.375rem;
  color: hsl(var(--foreground));
}

.job-location {
  font-size: 0.8rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.25rem;
}

.job-salary {
  font-size: 1.125rem;
  font-weight: 700;
  color: hsl(var(--primary));
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin-bottom: 0.75rem;
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 1rem;
}

.job-tag {
  font-size: 0.7rem;
  padding: 0.25rem 0.625rem;
  background: hsl(var(--muted) / .5);
  color: hsl(var(--muted-foreground));
  border-radius: 999px;
  font-weight: 500;
}

.job-apply {
  width: 100%;
  text-align: center;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  color: hsl(var(--foreground));
}

.carousel-btn:hover {
  background: hsl(var(--primary));
  color: #fff;
  border-color: hsl(var(--primary));
  box-shadow: var(--shadow-medium);
}

.carousel-btn-left {
  left: -22px;
}

.carousel-btn-right {
  right: -22px;
}

.managers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

.manager-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 2rem 1.25rem;
  text-align: center;
  transition: all 0.3s;
  box-shadow: var(--shadow-soft);
}

.manager-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: hsl(var(--primary) / .3);
}

.manager-photo {
  width: 140px;
  height: 140px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid hsl(var(--primary) / .2);
}

.manager-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.manager-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: hsl(var(--foreground));
}

.manager-role {
  font-size: 0.85rem;
  color: hsl(var(--muted-foreground));
}

.reviews {
  background: #fffbf0;
}
.reviews-carousel-wrap {
  position: relative;
}

.reviews-carousel {
  overflow-x: hidden;
  overflow-y: visible;
  padding-bottom: 1rem;
}

.reviews-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}

.review-card {
  min-width: calc(50% - 0.75rem);
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  flex-shrink: 0;
  transition: all 0.3s;
}

.review-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.review-name {
  font-size: 1rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.125rem;
}

.review-origin {
  font-size: 0.8rem;
  color: hsl(var(--muted-foreground));
}

.review-route {
  font-size: 0.85rem;
  font-weight: 600;
  color: hsl(var(--primary));
  white-space: nowrap;
}

.review-stars {
  color: #eab308;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

.review-job {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

.review-job-type {
  font-size: 0.8rem;
  padding: 0.25rem 0.625rem;
  background: hsl(var(--primary) / .1);
  color: hsl(var(--primary));
  border-radius: 999px;
  font-weight: 600;
}

.review-job-salary {
  font-size: 0.9rem;
  font-weight: 700;
  color: hsl(0, 85%, 45%);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.review-text {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  margin-bottom: 0.75rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.review-manager {
  font-size: 0.8rem;
  color: hsl(var(--accent));
  font-weight: 600;
}

.blog-filters {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.blog-filter {
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  color: hsl(var(--muted-foreground));
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.blog-filter:hover {
  border-color: hsl(var(--primary) / .3);
  color: hsl(var(--primary));
}

.blog-filter.active {
  background: hsl(var(--primary));
  color: #fff;
  border-color: hsl(var(--primary));
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: var(--shadow-soft);
}

.blog-card.hidden {
  display: none;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.blog-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-category-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: hsl(var(--primary) / .9);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.blog-body {
  padding: 1.25rem;
}

.blog-title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: hsl(var(--foreground));
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-excerpt {
  font-size: 0.85rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.5;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.blog-card {
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
}

.article-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
}
.article-modal.open {
  opacity: 1;
  visibility: visible;
}
.article-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
}
.article-modal-content {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 20px;
  max-width: 720px;
  width: 92%;
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,.25);
  transform: translateY(30px) scale(.97);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  scrollbar-width: thin;
  scrollbar-color: var(--primary) transparent;
}
.article-modal-content::-webkit-scrollbar {
  width: 6px;
}
.article-modal-content::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 3px;
}
.article-modal-content::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}
.article-modal-content::-webkit-scrollbar-thumb:hover {
  background: #cc0000;
}
.article-modal.open .article-modal-content {
  transform: translateY(0) scale(1);
}
.article-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,.5);
  color: #fff;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.article-modal-close:hover {
  background: rgba(0,0,0,.8);
}
.article-modal-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.article-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-modal-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--primary);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
}
.article-modal-body {
  padding: 2rem 2.5rem 2.5rem;
}
.article-modal-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: hsl(var(--foreground));
  margin-bottom: .75rem;
  line-height: 1.3;
}
.article-modal-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: .85rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: .5rem;
}
.article-modal-meta svg {
  width: 16px;
  height: 16px;
  vertical-align: -2px;
  margin-right: 4px;
}
.article-modal-divider {
  border: none;
  border-top: 1px solid #eee;
  margin: 1.25rem 0;
}
.article-modal-text {
  font-size: .95rem;
  line-height: 1.75;
  color: #333;
}
.article-modal-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 1.5rem 0 .75rem;
  color: #111;
}
.article-modal-text ul {
  list-style: none;
  padding: 0;
  margin: .75rem 0;
}
.article-modal-text ul li {
  padding: .4rem 0 .4rem 28px;
  position: relative;
}
.article-modal-text ul li::before {
  content: "✅";
  position: absolute;
  left: 0;
  top: .4rem;
}
.article-modal-text p {
  margin: .75rem 0;
}
.article-modal-text .tip-box {
  background: #fffbf0;
  border-left: 4px solid var(--accent);
  padding: 1rem 1.25rem;
  border-radius: 0 12px 12px 0;
  margin: 1.25rem 0;
}
.article-modal-text .tip-box strong {
  color: var(--accent);
}

@media (max-width: 640px) {
  .article-modal-content {
    width: 96%;
    max-height: 92vh;
    border-radius: 16px;
  }
  .article-modal-image {
    border-radius: 16px 16px 0 0;
  }
  .article-modal-body {
    padding: 1.25rem 1.5rem 1.5rem;
  }
  .article-modal-title {
    font-size: 1.25rem;
  }
}

.contact-section {
  background: linear-gradient(135deg, #111 0%, #1a1a1a 50%, hsl(0 85% 18%) 100%);
  color: #fff;
}

.contact-section .section-title {
  color: #fff;
}

.contact-section .section-desc {
  color: rgba(255,255,255,.7);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.director-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.director-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: hsl(var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
}

.director-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 0.125rem;
}

.director-name {
  font-size: 1.25rem;
  font-weight: 700;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: rgba(255,255,255,.85);
  font-size: 0.95rem;
  transition: color 0.2s;
}

.contact-link:hover {
  color: #fff;
}

.contact-address {
  margin-bottom: 1.5rem;
}

.contact-address h4 {
  font-size: 0.9rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 0.375rem;
  font-weight: 600;
}

.contact-address p {
  font-size: 0.9rem;
  color: rgba(255,255,255,.8);
}

.contact-socials {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.social-whatsapp {
  background: hsl(152, 67%, 45%, .2);
  color: hsl(152, 67%, 55%);
}

.social-whatsapp:hover {
  background: hsl(152, 67%, 45%);
  color: #fff;
}

.social-telegram {
  background: rgba(0, 136, 204, .2);
  color: #5ac8fa;
}

.social-telegram:hover {
  background: #0088cc;
  color: #fff;
}

.contact-hotline {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hotline-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}

.hotline-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 2rem;
}

.hotline-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hotline-buttons .social-btn {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 60px;
}

.hero-license-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 60px;
  color: rgba(255,255,255,.85);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.hero-license-badge:hover {
  background: rgba(255,255,255,.2);
  color: #fff;
  border-color: rgba(255,255,255,.4);
}

.footer {
  background: #0a0a0a;
  color: rgba(255,255,255,.7);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.whatsapp-icon {
  background: rgba(37, 211, 102, .15);
  color: #25D366;
}

.whatsapp-icon:hover {
  background: #25D366;
  color: #fff;
}

.telegram-icon {
  background: rgba(0, 136, 204, .15);
  color: #0088cc;
}

.telegram-icon:hover {
  background: #0088cc;
  color: #fff;
}

.footer-heading {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,.6);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  font-size: 0.9rem;
}

.footer-contact-info a {
  color: rgba(255,255,255,.6);
  transition: color 0.2s;
}

.footer-contact-info a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255,255,255,.5);
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: #fff;
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 50;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: hsl(var(--primary));
  color: #fff;
  border: none;
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: hsl(var(--primary-light));
  transform: translateY(-3px);
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1440px) {
  .container {
    max-width: 1200px;
  }
}

@media (max-width: 1200px) {
  .container {
    max-width: 1024px;
  }

  .hero-slide-title {
    font-size: 3.25rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .managers-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .manager-photo {
    width: 120px;
    height: 120px;
  }

  .job-card {
    min-width: calc(33.333% - 1rem);
  }

  .review-card {
    min-width: calc(50% - 0.75rem);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 1024px) {
  .container {
    max-width: 768px;
    padding: 0 1.25rem;
  }

  .section {
    padding: 4rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

  
  .nav-desktop {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .header-socials {
    gap: .35rem;
  }

  .header-social-icon {
    width: 32px;
    height: 32px;
  }

  .header-social-icon svg {
    width: 18px;
    height: 18px;
  }

  
  .hero-slide-title {
    font-size: 2.75rem;
  }

  .hero-slide-content {
    text-align: center;
    align-items: center;
    max-width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .hero-slide-subtitle {
    max-width: 600px;
  }

  .hero-slide-buttons {
    justify-content: center;
  }

  .hero-license-badge {
    align-self: center;
  }

  .hero-slide-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,.55) 0%,
      rgba(0,0,0,.4) 40%,
      rgba(0,0,0,.55) 100%
    );
  }

  .hero-slider-controls {
    right: 50%;
    transform: translateX(50%);
    bottom: 4rem;
  }

  
  .job-card {
    min-width: calc(50% - 0.75rem);
  }

  
  .review-card {
    min-width: calc(50% - 0.75rem);
  }

  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-desc {
    font-size: 1rem;
  }

  
  .header-inner {
    height: 64px;
  }

  .logo-icon img {
    width: 56px;
    height: 56px;
  }

  
  .hero-slider {
    min-height: 500px;
    height: 90vh;
  }

  .hero-slide-content {
    text-align: center;
    align-items: center;
    max-width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    justify-content: flex-end;
    padding-bottom: 6rem;
  }

  .hero-slide-title {
    font-size: 2.25rem;
  }

  .hero-slide-subtitle {
    font-size: 1rem;
    max-width: 90%;
  }

  .hero-slide-buttons {
    justify-content: center;
    width: 100%;
  }

  .hero-license-badge {
    align-self: center;
  }

  .scroll-indicator {
    display: none;
  }

  .hero-slider-controls {
    bottom: 3rem;
    right: 50%;
    transform: translateX(50%);
  }

  .hero-slide-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,.6) 0%,
      rgba(0,0,0,.45) 50%,
      rgba(0,0,0,.65) 100%
    );
  }

  .desktop-br {
    display: none;
  }

  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature-card {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 1rem;
    padding: 1.25rem;
  }

  .feature-icon {
    margin: 0;
    min-width: 56px;
    min-height: 56px;
    width: 56px;
    height: 56px;
  }

  
  .managers-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .manager-photo {
    width: 110px;
    height: 110px;
  }

  .manager-name {
    font-size: 0.85rem;
  }

  .manager-role {
    font-size: 0.75rem;
  }

  
  .job-card {
    min-width: calc(75% - 0.75rem);
  }

  
  .review-card {
    min-width: calc(80% - 0.75rem);
  }

  
  .jobs-carousel-wrap,
  .reviews-carousel-wrap {
    padding-bottom: 50px;
  }
  .carousel-btn {
    width: 36px;
    height: 36px;
    top: auto;
    bottom: 0;
    transform: none;
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  }
  .carousel-btn svg {
    width: 16px;
    height: 16px;
  }
  .carousel-btn-left {
    left: calc(50% - 44px);
  }
  .carousel-btn-right {
    right: calc(50% - 44px);
  }

  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .blog-card {
    display: flex;
    flex-direction: row;
    height: auto;
  }

  .blog-image {
    min-width: 160px;
    width: 160px;
    height: auto;
    aspect-ratio: 1;
  }

  .blog-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .blog-excerpt {
    margin-bottom: 0.5rem;
  }

  
  .contact-grid {
    gap: 2rem;
  }

  .contact-hotline {
    padding: 2rem 1.5rem;
  }

  .hotline-title {
    font-size: 1.6rem;
  }

  
  .footer {
    padding: 3rem 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  
  .back-to-top {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 640px) {
  .hero-slide-title {
    font-size: 1.85rem;
    letter-spacing: -0.02em;
  }

  .hero-slide-subtitle {
    font-size: 0.95rem;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .hero-slide-buttons {
    gap: 0.75rem;
  }

  .hero-slide-buttons .btn {
    font-size: 0.85rem;
    padding: 0.65rem 1.25rem;
  }

  
  .managers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .manager-card {
    padding: 1.5rem 1rem;
  }

  .manager-photo {
    width: 100px;
    height: 100px;
  }

  
  .blog-card {
    flex-direction: column;
  }

  .blog-image {
    width: 100%;
    min-width: unset;
    height: 180px;
    aspect-ratio: auto;
  }

  
  .job-card {
    min-width: calc(85% - 0.75rem);
  }

  
  .review-card {
    min-width: calc(90% - 0.75rem);
  }

  
  .blog-filters {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
    gap: 0.5rem;
  }

  .blog-filters::-webkit-scrollbar {
    display: none;
  }

  .blog-filter {
    flex-shrink: 0;
  }

  
  .contact-socials {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.875rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-desc {
    font-size: 0.9rem;
  }

  
  .header-inner {
    height: 56px;
  }

  .logo-text {
    font-size: 1rem;
  }

  .logo-icon svg {
    width: 28px;
    height: 28px;
  }

  .logo-icon img {
    width: 44px;
    height: 44px;
  }

  
  .hero-slider {
    min-height: 100svh;
    height: 100svh;
  }

  .hero-slide-content {
    text-align: center;
    align-items: center;
    padding-top: 56px;
    padding-bottom: 5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    justify-content: flex-end;
  }

  .hero-slide-title {
    font-size: 1.6rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
  }

  .hero-slide-subtitle {
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
    max-width: 100%;
    line-height: 1.5;
    color: rgba(255,255,255,.85);
  }

  .hero-slide-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 280px;
    gap: 0.625rem;
  }

  .hero-slide-buttons .btn {
    justify-content: center;
    font-size: 0.85rem;
    padding: 0.75rem 1.25rem;
  }

  .hero-license-badge {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    padding: 0.35rem 0.875rem;
  }

  .hero-slider-controls {
    bottom: 2rem;
    right: 50%;
    transform: translateX(50%);
    gap: 0.625rem;
  }

  .hero-slider-arrow {
    width: 36px;
    height: 36px;
  }

  .hero-dot {
    width: 10px;
    height: 10px;
  }

  
  .features-grid {
    gap: 0.625rem;
  }

  .feature-card {
    padding: 0.875rem;
    gap: 0.625rem;
    border-radius: 0.75rem;
  }

  .feature-icon {
    min-width: 44px;
    min-height: 44px;
    width: 44px;
    height: 44px;
    border-radius: 0.625rem;
  }

  .feature-title {
    font-size: 0.9rem;
  }

  .feature-desc {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  
  .job-card {
    min-width: calc(92% - 0.75rem);
  }

  .job-image {
    height: 170px;
  }

  .job-body {
    padding: 1rem;
  }

  
  .managers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .manager-card {
    padding: 1.25rem 0.75rem;
    border-radius: 0.75rem;
  }

  .manager-photo {
    width: 90px;
    height: 90px;
    margin-bottom: 0.75rem;
    border-width: 2px;
  }

  .manager-name {
    font-size: 0.8rem;
  }

  .manager-role {
    font-size: 0.7rem;
  }

  
  .review-card {
    min-width: calc(95% - 0.75rem);
    padding: 1.25rem;
  }

  .review-header {
    flex-direction: column;
    gap: 0.375rem;
  }

  .review-job {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  
  .blog-image {
    height: 160px;
  }

  .blog-body {
    padding: 1rem;
  }

  .blog-filter {
    font-size: 0.75rem;
    padding: 0.375rem 0.875rem;
  }

  
  .contact-grid {
    gap: 1.5rem;
  }

  .contact-hotline {
    padding: 1.5rem 1rem;
    border-radius: 0.75rem;
  }

  .hotline-title {
    font-size: 1.3rem;
  }

  .hotline-subtitle {
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
  }

  .hotline-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.625rem;
  }

  .hotline-buttons .social-btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }

  .director-card {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .director-avatar {
    width: 56px;
    height: 56px;
    font-size: 1.1rem;
  }

  .director-name {
    font-size: 1rem;
  }

  .contact-links {
    align-items: center;
    font-size: 0.85rem;
  }

  .contact-address {
    text-align: center;
    font-size: 0.85rem;
  }

  
  .footer {
    padding: 2.5rem 0 0;
  }

  .footer-grid {
    gap: 1.5rem;
  }

  .footer-heading {
    font-size: 0.9rem;
  }

  .footer-desc {
    font-size: 0.85rem;
  }

  .footer-links a {
    font-size: 0.85rem;
  }

  .footer-bottom {
    padding: 1.25rem 0;
    font-size: 0.8rem;
  }

  .footer-bottom-links {
    gap: 0.75rem;
  }

  
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  
  .carousel-btn {
    width: 32px;
    height: 32px;
  }
  .carousel-btn svg {
    width: 14px;
    height: 14px;
  }
  .carousel-btn-left {
    left: calc(50% - 40px);
  }
  .carousel-btn-right {
    right: calc(50% - 40px);
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 0.75rem;
  }

  .hero-slide-title {
    font-size: 1.35rem;
  }

  .hero-slide-subtitle {
    font-size: 0.8rem;
  }

  .hero-slide-buttons {
    max-width: 240px;
  }

  .hero-slide-buttons .btn {
    font-size: 0.8rem;
    padding: 0.65rem 1rem;
  }

  .section-title {
    font-size: 1.35rem;
  }

  .managers-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem;
  }

  .logo-icon img {
    width: 38px;
    height: 38px;
  }

  .manager-photo {
    width: 76px;
    height: 76px;
  }

  .feature-card {
    gap: 0.625rem;
    padding: 0.875rem;
  }

  .feature-icon {
    min-width: 42px;
    min-height: 42px;
    width: 42px;
    height: 42px;
  }

  .review-card {
    min-width: 100%;
  }

  .job-card {
    min-width: 100%;
  }

  .phone-input-wrap {
    flex-direction: column;
  }

  .phone-prefix {
    border-right: 1px solid rgba(255,255,255,.2);
    border-bottom: none;
    border-radius: calc(var(--radius) - 4px) calc(var(--radius) - 4px) 0 0;
  }

  .phone-input-wrap input {
    border-radius: 0 0 calc(var(--radius) - 4px) calc(var(--radius) - 4px);
  }
}

@media (pointer: coarse) {
  .nav-link,
  .mobile-nav-link,
  .footer-links a,
  .blog-filter,
  .contact-link {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .carousel-btn {
    min-height: 28px;
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .hero-slider {
    min-height: auto;
    height: 100vh;
  }

  .hero-slide-title {
    font-size: 1.75rem;
  }

  .hero-slide-subtitle {
    font-size: 0.9rem;
  }

  .scroll-indicator {
    display: none;
  }

  .section {
    padding: 2.5rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}

/* Partnership Section */
.partnership .partnership-intro {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-secondary, #64748b);
  line-height: 1.7;
}
.partnership-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.partnership-card {
  background: var(--card-bg, #fff);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 24px rgba(30,58,95,0.08);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.partnership-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(30,58,95,0.14);
}
.partnership-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #e8f0fe 0%, #d0e8ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary, #1e3a5f);
}
.partnership-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary, #1e3a5f);
  margin-bottom: 0.75rem;
}
.partnership-card p {
  font-size: 0.95rem;
  color: var(--text-secondary, #64748b);
  line-height: 1.6;
}
.partnership-cta {
  background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  color: white;
}
.partnership-cta h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: white;
}
.partnership-cta p {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 1.5rem;
}
@media (max-width: 600px) {
  .partnership-cards { grid-template-columns: 1fr; }
  .partnership-cta { padding: 2rem 1.25rem; }
}
