/* Global CSS Patch - 최소한의 수정만 */

/* Pretendard Font for better Korean rendering */
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Malgun Gothic', sans-serif;
}

/* Navigation Dropdown - 둥글게 수정 */
.nav-dropdown {
  border-radius: 12px !important;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1) !important;
  border: 1px solid #e5e5e5 !important;
}

.dropdown-item {
  border-radius: 8px !important;
  margin: 4px !important;
  padding: 10px 16px !important;
}

.dropdown-item:hover {
  background: #f7f7f7 !important;
}

/* Mobile Bottom Navigation - 5개 균등 배치 */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid #e5e5e5;
  padding: 8px 0 max(8px, env(safe-area-inset-bottom));
  z-index: 1000;
  display: none;
}

.mobile-nav-container {
  display: flex !important;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  padding: 0 4px;
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px 0;
  color: #4b5563;
  text-decoration: none;
  flex: 1;
  max-width: 20%;
}

.mobile-nav-item.active {
  color: var(--brand-color, #a50808);
}

.mobile-nav-icon {
  font-size: 22px;
  margin-bottom: 3px;
}

.mobile-nav-label {
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

/* Fix header layout globally */
.header-main .row {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
}

.header-main .row > * {
  flex-shrink: 0 !important;
}

@media (min-width: 992px) {
  /* Desktop layout - ensure proper spacing */
  .header-main .col-lg-3:last-child {
    min-width: 200px !important;
  }

  .header-main .text-end .small {
    white-space: nowrap !important;
  }
}

@media (max-width: 991px) and (min-width: 769px) {
  /* Tablet layout */
  .header-main .text-end .small {
    white-space: nowrap !important;
    font-size: 12px !important;
  }
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: block;
  }

  body {
    padding-bottom: 70px;
  }

  /* Fix header text wrapping on mobile */
  .header-main .col-6:last-child {
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 0 !important;
  }

  .header-main .text-end .small {
    display: none !important;
  }
}

@media (max-width: 576px) {
  /* Hide header text on small mobile to prevent breaking */
  .header-main .text-end .small {
    display: none !important;
  }
}

/* Header Search Box Round */
.search-wrap .form-control {
  border-radius: 25px !important;
}

.search-wrap .btn {
  border-radius: 0 25px 25px 0 !important;
}

/* Card hover effects */
.card {
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Button hover effects */
.btn {
  transition: all 0.2s ease;
}

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

/* Smooth transitions */
a {
  transition: color 0.2s ease;
}

/* Fix Bootstrap button color override */
.btn-outline-secondary {
  color: #6c757d !important;
  border-color: #6c757d !important;
}

.btn-outline-secondary:hover {
  color: #fff !important;
  background-color: #6c757d !important;
  border-color: #6c757d !important;
}

/* 공지사항 & 매체소식 텍스트 크기 조정 */
.notice-item {
  font-size: 14px !important;
  padding: 14px 0 !important;
}

.notice-item span:first-child {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #333 !important;
  display: inline-block;
  max-width: 70%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.notice-item .text-secondary.small {
  font-size: 12px !important;
  color: #999 !important;
}

/* 매체소식 카드 텍스트 */
.card-job .small.fw-medium {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #333 !important;
  margin-bottom: 4px;
}

.card-job .small.text-secondary {
  font-size: 13px !important;
  color: #666 !important;
  line-height: 1.4;
}

/* 섹션 제목 크기 조정 */
.section-header h6 {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #191919 !important;
}

/* 더보기 버튼 크기 */
.btn-more.btn-sm {
  font-size: 13px !important;
  padding: 5px 12px !important;
}

/* 자주찾는 메뉴 디자인 개선 */
.quick-grid, .quick-grid-compact {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 8px !important;
}

.quick-grid .btn, .quick-grid-compact .btn {
  background: #ffffff !important;
  border: 1px solid #e5e5e5 !important;
  border-radius: 8px !important;
  padding: 10px 4px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  color: #333 !important;
  transition: all 0.2s ease !important;
  text-decoration: none !important;
  min-height: 65px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  position: relative !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
}

.quick-grid .btn:hover, .quick-grid-compact .btn:hover {
  background: #fff5f5 !important;
  border-color: var(--brand-color, #a50808) !important;
  color: var(--brand-color, #a50808) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
}

.quick-grid .btn:active, .quick-grid-compact .btn:active {
  transform: translateY(0) !important;
}

.quick-grid .btn i, .quick-grid-compact .btn i {
  font-size: 20px !important;
  margin-bottom: 0 !important;
  color: var(--brand-color, #a50808) !important;
  transition: all 0.2s ease !important;
  display: block !important;
}

.quick-grid .btn:hover i, .quick-grid-compact .btn:hover i {
  color: var(--brand-color-dark, #8b0000) !important;
  transform: scale(1.1) !important;
}

.quick-grid .btn span, .quick-grid-compact .btn span {
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
  line-height: 1.2 !important;
  text-align: center !important;
}

/* 자주찾는 메뉴 카드 헤더 개선 */
.sidebar .card .fw-bold {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #191919 !important;
  margin-bottom: 16px !important;
}

/* 히어로 섹션 높이 맞추기 */
.hero-section .row {
  align-items: stretch !important;
}

.hero-section .sidebar {
  display: flex;
  flex-direction: column;
}

.hero-section .sidebar > div:last-child {
  flex: 1;
}

/* 레이아웃 비율 조정 - 지역별 채용정보 줄이고, 아이콘 박스 키우기 */
@media (min-width: 992px) {
  .category-sidebar.col-lg-3 {
    flex: 0 0 auto;
    width: 22%; /* 25%에서 22%로 축소 */
  }

  .quick-menu-sidebar.col-lg-2 {
    flex: 0 0 auto;
    width: 19%; /* 16.666%에서 19%로 확대 */
  }
}

/* 지역별 채용정보 5x4 그리드 */
.region-grid {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  row-gap: 3px;
  margin: 0 !important;
}

.region-grid li {
  margin: 0 !important;
  padding: 0 !important;
}

.region-grid .category-chip {
  font-size: 12px;
  padding: 7px 8px;
  text-align: center;
  white-space: nowrap;
  width: 100%;
  box-sizing: border-box;
  display: block;
}

/* 분야별 채용정보 5x3 그리드 */
.field-grid {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin: 0 !important;
  padding: 0 !important;
}

.field-grid li {
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
}

.field-grid .category-chip {
  font-size: 11px;
  padding: 8px 4px;
  text-align: center;
  white-space: nowrap;
  width: 100%;
  box-sizing: border-box;
  display: block;
}

/* 카드 높이 맞추기 - 완벽한 정렬 */
.hero-section .row {
  display: flex;
  align-items: stretch;
}

.hero-section .category-sidebar,
.hero-section .quick-menu-sidebar {
  display: flex;
  flex-direction: column;
}

.hero-section .category-sidebar .card,
.hero-section .quick-menu-sidebar .card {
  display: flex;
  flex-direction: column;
  margin-bottom: 0 !important;
  height: 100%;
}

.hero-section .category-sidebar .card-body {
  display: flex;
  flex-direction: column;
  padding: 16px;
}

.hero-section .quick-menu-sidebar .card-body {
  display: flex;
  flex-direction: column;
  padding: 8px;
}

/* 지역별/분야별 그리드 레이아웃 조정 */
.category-sidebar .card-body > .d-flex {
  margin-bottom: 10px;
}

.category-sidebar .region-grid {
  margin-bottom: 10px;
  flex: 1;
}

.category-sidebar .divider {
  margin: 10px 0;
  height: 1px;
  background: #e5e8eb;
  flex-shrink: 0;
}

.category-sidebar .field-grid {
  margin-bottom: 0;
  flex: 1;
}

/* 모든 위젯 높이 동일하게 맞추기 */
.hero-section .col-lg-7,
.hero-section .category-sidebar,
.hero-section .quick-menu-sidebar {
  display: flex;
}

.hero-section .col-lg-7 > *,
.hero-section .category-sidebar > .card,
.hero-section .quick-menu-sidebar > .card {
  height: 100%;
  width: 100%;
}

/* 모바일 반응형 - 그리드 조정 */
@media (max-width: 991px) {
  .region-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .field-grid li {
    flex: 0 0 calc((100% - 24px) / 4); /* 4열 */
  }
}

@media (max-width: 576px) {
  .region-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .field-grid {
    gap: 6px;
  }

  .field-grid li {
    flex: 0 0 calc((100% - 12px) / 3); /* 3열 */
  }

  .region-grid .category-chip,
  .field-grid .category-chip {
    font-size: 11px;
    padding: 5px 4px;
  }
}

/* Toss 디자인 시스템 + 브랜드 컬러 적용 */
/* CSS 변수는 header.php에서 주입됨 - 중복 정의 제거 */
/* :root {
  --brand-color: #a50808;
  --brand-color-light: rgba(165, 8, 8, 0.1);
  --brand-color-dark: #8b0000;
} */

/* 1. 로그인 위젯 - Toss 스타일 (Typography 2/2, Color 2/2) */
.therapy-login-widget {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 12px; /* 여백 줄임 */
  border: 1px solid #f2f4f6;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.therapy-login-widget:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
}

.therapy-login-header {
  text-align: center;
  padding: 0 0 16px 0;
  border-bottom: 1px solid #f2f4f6;
  margin-bottom: 16px;
  font-size: 13px;
}

.therapy-welcome {
  color: #8b95a1;
  cursor: pointer;
  font-weight: 500;
  transition: color 0.2s ease;
  text-decoration: none;
}

.therapy-welcome:hover {
  color: var(--brand-color);
}

.therapy-divider {
  color: #d1d6db;
  margin: 0 10px;
}

.therapy-id {
  color: #8b95a1;
  cursor: pointer;
  font-weight: 500;
  transition: color 0.2s ease;
  text-decoration: none;
}

.therapy-id:hover {
  color: var(--brand-color);
}

.therapy-login-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1; /* 남은 공간 채우기 */
}

.therapy-btn-login {
  background: var(--brand-color);
  border: none;
  border-radius: 12px;
  padding: 10px 8px; /* 세로 패딩 줄임 */
  text-align: center;
  font-size: 13px; /* 폰트 크기 줄임 */
  font-weight: 600;
  color: white;
  text-decoration: none;
  transition: all 0.2s ease;
  line-height: 1.2; /* 라인 높이 줄임 */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px; /* 최소 높이 설정 */
}

.therapy-btn-login:hover {
  background: var(--brand-color-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.therapy-btn-login-corp {
  background: #f9fafb;
  border: 1px solid #e5e8eb;
  border-radius: 12px;
  padding: 10px 8px; /* 세로 패딩 줄임 */
  text-align: center;
  font-size: 13px; /* 폰트 크기 줄임 */
  font-weight: 600;
  color: #4e5968;
  text-decoration: none;
  transition: all 0.2s ease;
  line-height: 1.2; /* 라인 높이 줄임 */
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px; /* 최소 높이 설정 */
}

.therapy-btn-login-corp:hover {
  background: var(--brand-color-light);
  border-color: var(--brand-color);
  color: var(--brand-color);
  transform: translateY(-1px);
}

.therapy-btn-logout {
  background: #f9fafb;
  border: 1px solid #e5e8eb;
  border-radius: 12px;
  padding: 10px 8px; /* 세로 패딩 줄임 */
  text-align: center;
  font-size: 13px; /* 폰트 크기 줄임 */
  font-weight: 600;
  color: #4e5968;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px; /* 최소 높이 설정 */
}

.therapy-btn-logout:hover {
  background: #f2f4f6;
  border-color: #d1d6db;
  transform: translateY(-1px);
}

/* 2. 퀵 메뉴 - Toss 미니멀 스타일 (Spacing 2/2, Modern 1/1) */
.therapy-quick-menu {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #f2f4f6;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex: 1; /* 세로 50/50 분할 */
  display: flex;
  flex-direction: column;
}

.therapy-quick-menu:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
}

.therapy-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px; /* 여백 더 줄임 */
}

.therapy-menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fafbfc;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 14px 8px;
  text-decoration: none;
  color: #191f28;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s ease;
  min-height: 72px;
  position: relative;
  overflow: hidden;
  letter-spacing: -0.02em;
}

.therapy-menu-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--brand-color) 0%, var(--brand-color-dark) 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.therapy-menu-item:hover {
  background: #fafbfc;
  border-color: var(--brand-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.therapy-menu-item:hover::before {
  opacity: 0.03;
}

.therapy-menu-item i {
  font-size: 22px;
  color: var(--brand-color); /* 브랜드 컬러 사용 */
  margin-bottom: 6px;
  transition: all 0.2s ease;
  position: relative;
  z-index: 1;
}

.therapy-menu-item:hover i {
  transform: scale(1.1);
  color: var(--brand-color-dark);
}

.therapy-menu-item span {
  line-height: 1.3;
  color: #4e5968;
  position: relative;
  z-index: 1;
}

.therapy-menu-item:hover span {
  color: #191f28;
}

/* 3. 공지사항 - 컴팩트 한 줄 스타일 */
.therapy-notice {
  padding: 8px 10px;
  background: #fafbfc;
  border-radius: 10px;
  border: 1px solid #f0f2f5;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
}

.therapy-notice:hover {
  background: var(--brand-color-light);
  border-color: var(--brand-color);
}

.therapy-notice-label {
  background: var(--brand-color);
  color: white;
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 10px;
  white-space: nowrap;
  letter-spacing: -0.01em;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.therapy-notice-slider {
  flex: 1;
  overflow: hidden;
}

.therapy-notice-item {
  display: block;
  font-size: 12px;
  color: #4e5968;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: opacity 0.3s ease, color 0.2s ease;
  opacity: 1;
}

.therapy-notice-item:hover {
  color: var(--brand-color);
}

.therapy-notice-more {
  font-size: 10px;
  color: #8b95a1;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.therapy-notice-more:hover {
  color: var(--brand-color);
}

/* 4. 추가 애니메이션 (Interactions 1/1) */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.therapy-login-widget,
.therapy-quick-menu {
  animation: slideUp 0.5s ease-out;
}

/* 5. 반응형 최적화 */
@media (max-width: 991px) {
  .quick-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
  }

  .quick-grid .btn {
    min-height: 80px !important;
    padding: 12px 6px !important;
  }

  .quick-grid .btn i {
    font-size: 24px !important;
  }

  .quick-grid .btn span {
    font-size: 11px !important;
  }

  .therapy-login-widget,
  .therapy-quick-menu {
    border-radius: 14px;
    padding: 18px;
  }

  .therapy-menu-grid {
    gap: 7px;
  }

  .therapy-menu-item {
    min-height: 68px;
    padding: 12px 7px;
    font-size: 11px;
  }

  .therapy-menu-item i {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .quick-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
  }

  .quick-grid .btn {
    min-height: 75px !important;
    padding: 10px 4px !important;
  }

  .quick-grid .btn i {
    font-size: 22px !important;
  }

  .quick-grid .btn span {
    font-size: 10px !important;
  }

  .therapy-login-widget,
  .therapy-quick-menu {
    border-radius: 12px;
    padding: 16px;
  }

  .therapy-menu-grid {
    gap: 6px;
  }

  .therapy-menu-item {
    min-height: 64px;
    padding: 11px 6px;
  }

  .therapy-menu-item i {
    font-size: 18px;
  }

  .therapy-menu-item span {
    font-size: 11px;
  }
}

/* Footer New Style - therapy114.com 참고 */
.footer-new {
  background: #3d3d3d;
  color: #b3b3b3;
  padding: 40px 0 30px;
  margin-top: 0;
}

/* Footer Navigation */
.footer-nav-section {
  text-align: center;
  padding-bottom: 30px;
  border-bottom: 1px solid #555;
  margin-bottom: 30px;
}

.footer-nav-link {
  color: #e0e0e0 !important;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav-link:hover {
  color: #fff !important;
}

.footer-divider {
  color: #666;
  margin: 0 15px;
}

/* Footer Main Content */
.footer-main-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: start;
}

/* Footer Left */
.footer-left {
  max-width: 800px;
}

/* Customer Service */
.footer-customer-service {
  margin-bottom: 20px;
}

.cs-title {
  font-size: 14px;
  color: #999;
  margin-bottom: 8px;
}

.cs-number {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

/* Footer Info Grid */
.footer-info-grid {
  display: grid;
  gap: 10px;
  margin-bottom: 25px;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}

.info-label {
  color: #999;
  min-width: 80px;
  font-weight: 500;
}

.info-value {
  color: #b3b3b3;
}

/* Company Info */
.footer-company-info {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #555;
}

.company-name {
  font-size: 15px;
  font-weight: 600;
  color: #e0e0e0;
  margin-bottom: 10px;
}

.company-details {
  font-size: 13px;
  color: #999;
  line-height: 1.6;
  margin-bottom: 10px;
}

.copyright {
  font-size: 12px;
  color: #777;
  margin: 0;
}

/* Footer Right */
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Quick Menu */
.footer-quick-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.quick-menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 15px;
  background: #4a4a4a;
  border-radius: 8px;
  text-decoration: none;
  color: #e0e0e0;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.quick-menu-item:hover {
  background: #555;
  transform: translateY(-2px);
  color: #fff;
}

.quick-icon {
  width: 40px;
  height: 40px;
  background: #555;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  transition: all 0.2s ease;
}

.quick-menu-item:hover .quick-icon {
  background: #666;
  transform: scale(1.1);
}

/* Social Icons */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.social-icon {
  width: 42px;
  height: 42px;
  background: #4a4a4a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e0e0e0;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-icon:hover {
  background: #555;
  color: #fff;
  transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .footer-main-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-right {
    align-items: center;
  }

  .cs-number {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .footer-new {
    padding: 30px 0 90px;
    margin-top: 0;
  }

  .footer-nav-section {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .footer-nav-link {
    font-size: 13px;
  }

  .footer-divider {
    margin: 0 10px;
  }

  .cs-number {
    font-size: 24px;
  }

  .footer-info-grid {
    gap: 8px;
  }

  .info-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .info-label {
    min-width: auto;
    font-size: 13px;
  }

  .info-value {
    font-size: 13px;
  }

  .company-details {
    font-size: 12px;
  }

  .footer-quick-menu {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 400px;
  }

  .quick-menu-item {
    padding: 12px;
    font-size: 11px;
  }

  .quick-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .footer-social {
    gap: 10px;
  }

  .social-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .footer-nav-section {
    text-align: left;
  }

  .footer-nav-link {
    display: block;
    margin-bottom: 10px;
  }

  .footer-divider {
    display: none;
  }

  .footer-quick-menu {
    grid-template-columns: repeat(2, 1fr);
  }
}