/* ========== Shared Styles for 赶考小状元 Official Website ========== */

/* ========== Reset & Base ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

:root {
  --theme-color: #1A6DFF;
  --theme-dark: #0f1a35;
  --theme-green: #00D09C;
}

/* ========== Section Title ========== */
.section-title {
  text-align: center;
  padding: 80px 0 40px;
}
.section-title .en {
  display: block;
  font-family: 'Montserrat', 'Impact', sans-serif;
  font-size: 70px;
  font-weight: 800;
  color: rgba(0,0,0,0.06);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 2px;
}
.section-title h2 {
  font-size: 38px;
  font-weight: bold;
  color: #333;
  margin-top: -50px;
  position: relative;
  padding-bottom: 0;
}
.section-title h2::after {
  content: '';
  display: block;
  width: 150px;
  height: 4px;
  background: var(--theme-color);
  margin: 10px auto 0;
}

@media (max-width: 768px) {
  .section-title { padding: 50px 0 25px; }
  .section-title .en { font-size: 30px; }
  .section-title h2 { font-size: 28px; margin-top: -25px; }
  .section-title h2::after { width: 100px; }
}
@media (max-width: 1440px) and (min-width: 769px) {
  .section-title .en { font-size: 50px; }
}

/* ========== Fixed Navigation ========== */
.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 100;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-bar.scrolled {
  background: #0D1B3E;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.nav-inner {
  width: 94%;
  max-width: 1600px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 60px;
  object-fit: contain;
  transition: filter 0.3s;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-menu a {
  font-size: 17px;
  font-weight: bold;
  color: #ffffff;
  padding: 0 1.5vw;
  line-height: 100px;
  display: block;
  text-align: center;
  transition: color 0.3s, opacity 0.3s;
  position: relative;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 30px;
  height: 3px;
  background: var(--theme-color);
  transition: transform 0.3s;
  border-radius: 2px;
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
  transform: translateX(-50%) scaleX(1);
}
.nav-menu a:hover { opacity: 0.85; }

/* Mobile nav */
.nav-hamburger {
  display: none;
  width: 45px;
  height: 45px;
  border-radius: 4px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  gap: 5px;
  background: transparent;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: #1a1a2e;
  border-radius: 2px;
  transition: background 0.3s;
}
.nav-bar.scrolled .nav-menu a { color: #ffffff; text-shadow: none; }
.nav-bar.scrolled .nav-hamburger span { background: #ffffff; }
.nav-bar.scrolled .nav-logo img { }

@media (max-width: 768px) {
  .nav-bar { height: 60px; background: #0D1B3E; }
  .nav-hamburger { display: flex; }
  .nav-hamburger span { background: #ffffff; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #0D1B3E;
    padding: 10px 0;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a {
    color: #ffffff;
    font-size: 16px;
    padding: 0 20px;
    line-height: 50px;
    text-align: left;
  }
  .nav-menu a::after { display: none; }
  .nav-menu a.active { color: #ffffff; border-bottom: 2px solid var(--theme-color); }
  .nav-logo img { height: 40px; }
}

/* ========== Hero Banner ========== */
.hero-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  min-height: 400px;
  object-fit: cover;
}
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  width: 90%;
}
.hero-text h3 {
  font-size: 56px;
  font-weight: bold;
  letter-spacing: 8px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-text .hero-line {
  width: 80px;
  height: 4px;
  background: var(--theme-color);
  margin: 20px auto 0;
}
.hero-text p {
  font-size: 20px;
  margin-top: 15px;
  opacity: 0.9;
  text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}
@media (max-width: 768px) {
  .hero-banner img { min-height: 260px; }
  .hero-text h3 { font-size: 32px; letter-spacing: 4px; }
  .hero-text p { font-size: 16px; }
}

/* ========== Footer ========== */
.footer {
  background: #1a1a2e;
  color: #999;
  padding: 50px 0 30px;
}
.footer-inner {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.footer-logo img {
  height: 50px;
  object-fit: contain;
}
.footer-links {
  display: flex;
  gap: 40px;
}
.footer-links .link-group h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 12px;
}
.footer-links .link-group a {
  display: block;
  font-size: 14px;
  color: #999;
  line-height: 2;
  transition: color 0.3s;
}
.footer-links .link-group a:hover { color: #fff; }
.footer-info {
  font-size: 14px;
  line-height: 1.8;
  text-align: right;
}
.footer-info a { color: #ccc; }
.footer-bottom {
  width: 90%;
  max-width: 1600px;
  margin: 20px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 12px;
  color: #666;
}
@media (max-width: 768px) {
  .footer-inner { flex-direction: column; text-align: center; align-items: center; }
  .footer-info { text-align: center; }
  .footer-links { flex-direction: column; gap: 20px; text-align: center; }
}

/* ========== Floating CTA ========== */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.floating-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}
.floating-cta a:hover { transform: scale(1.1); }
.floating-cta .cta-tel { background: var(--theme-color); }
.floating-cta .cta-top { background: #666; }
@media (max-width: 768px) {
  .floating-cta { bottom: 20px; right: 15px; }
  .floating-cta a { width: 50px; height: 50px; font-size: 12px; }
}

/* ========== Scroll Animation ========== */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Common Content Section ========== */
.content-section {
  background: #fff;
  padding-bottom: 80px;
}
.content-section.alt-bg {
  background: #f5f7fa;
}
.content-wrap {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
}

/* ========== Stats Counter ========== */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  padding: 40px 0;
}
.stat-item {
  text-align: center;
}
.stat-item .stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--theme-color);
  line-height: 1;
}
.stat-item .stat-num span {
  font-size: 28px;
  font-weight: 500;
}
.stat-item .stat-label {
  font-size: 16px;
  color: #666;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .stats-row { gap: 30px; }
  .stat-item .stat-num { font-size: 36px; }
  .stat-item .stat-num span { font-size: 20px; }
}

/* ========== Card Grid ========== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 992px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .card-grid { grid-template-columns: 1fr; }
  .card-grid.cols-4 { grid-template-columns: 1fr; }
}

/* ========== Generic Card ========== */
.info-card {
  background: #fff;
  border-radius: 12px;
  padding: 35px 30px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.info-card .card-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}
.info-card .card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.info-card h3 {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 12px;
}
.info-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
}

/* ========== CTA Button ========== */
.cta-btn {
  display: inline-block;
  padding: 14px 40px;
  background: linear-gradient(135deg, var(--theme-color), #0050cc);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  letter-spacing: 2px;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26,109,255,0.4);
}
.cta-btn.outline {
  background: transparent;
  border: 2px solid #fff;
}
.cta-btn.outline:hover {
  background: rgba(255,255,255,0.15);
  box-shadow: 0 8px 25px rgba(255,255,255,0.15);
}

/* ========== Two Column Layout ========== */
.two-col {
  display: flex;
  gap: 60px;
  align-items: center;
}
.two-col .col-img {
  flex: 0 0 45%;
  max-width: 45%;
}
.two-col .col-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.two-col .col-text {
  flex: 1;
}
.two-col .col-text h3 {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}
.two-col .col-text p {
  font-size: 16px;
  color: #595959;
  line-height: 2;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .two-col { flex-direction: column; gap: 30px; }
  .two-col .col-img { flex: none; max-width: 100%; }
}

/* ========== News List ========== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 992px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .news-grid { grid-template-columns: 1fr; }
}
.news-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.news-card .news-thumb {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.news-card .news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.news-card:hover .news-thumb img {
  transform: scale(1.05);
}
.news-card .news-body {
  padding: 20px;
}
.news-card .news-date {
  font-size: 13px;
  color: #999;
  margin-bottom: 8px;
}
.news-card .news-title {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ========== Product Card ========== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 992px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .product-grid { grid-template-columns: 1fr; }
}
.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.product-card .product-img {
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: #f5f7fa;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card .product-img img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  transition: transform 0.5s;
}
.product-card:hover .product-img img {
  transform: scale(1.05);
}
.product-card .product-info {
  padding: 25px;
}
.product-card .product-info h3 {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}
.product-card .product-info p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

/* ========== Contact Section ========== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.contact-card h3 {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-card h3 .icon {
  width: 40px;
  height: 40px;
  background: var(--theme-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card h3 .icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}
.contact-item:last-child { border-bottom: none; }
.contact-item .label {
  font-size: 14px;
  color: #999;
  flex-shrink: 0;
  width: 80px;
}
.contact-item .value {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}
.contact-item .value a {
  color: var(--theme-color);
  font-weight: bold;
}

/* ========== QR Code Section ========== */
.qr-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.qr-item {
  text-align: center;
}
.qr-item .qr-img {
  width: 160px;
  height: 160px;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  margin: 0 auto 12px;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qr-item .qr-img img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}
.qr-item .qr-label {
  font-size: 14px;
  color: #666;
}

/* ========== Timeline ========== */
.timeline {
  position: relative;
  padding: 20px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--theme-color), var(--theme-green));
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}
.timeline-item:nth-child(odd) {
  flex-direction: row;
}
.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}
.timeline-item .tl-content {
  width: 45%;
  padding: 25px 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}
.timeline-item .tl-content h4 {
  font-size: 18px;
  color: var(--theme-color);
  margin-bottom: 8px;
}
.timeline-item .tl-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}
.timeline-item .tl-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--theme-color);
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px var(--theme-color);
  z-index: 1;
}
@media (max-width: 768px) {
  .timeline::before { left: 20px; }
  .timeline-item { flex-direction: row !important; padding-left: 50px; }
  .timeline-item .tl-content { width: 100%; }
  .timeline-item .tl-dot { left: 20px; }
}

/* ========== Spirit / Values Grid ========== */
.spirit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.spirit-card {
  text-align: center;
  padding: 35px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
  transition: transform 0.3s;
}
.spirit-card:hover { transform: translateY(-4px); }
.spirit-card .spirit-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, var(--theme-color), #0050cc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}
.spirit-card h4 {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}
.spirit-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .spirit-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========== Map Section ========== */
.map-container {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  background: #f0f0f0;
  position: relative;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ========== Form Section ========== */
.form-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f1a35 100%);
  padding: 80px 0;
}
.form-wrap {
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
}
.form-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.form-card h3 {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin-bottom: 30px;
}
.form-card .form-group {
  margin-bottom: 20px;
}
.form-card .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}
.form-card .form-group input,
.form-card .form-group textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  color: #333;
  background: #fafafa;
  outline: none;
  transition: border-color 0.3s;
  font-family: inherit;
}
.form-card .form-group textarea {
  height: 120px;
  resize: vertical;
}
.form-card .form-group input:focus,
.form-card .form-group textarea:focus {
  border-color: var(--theme-color);
  background: #fff;
}
.form-card .form-submit {
  width: 100%;
  height: 52px;
  background: linear-gradient(135deg, var(--theme-color), #0050cc);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 2px;
}
.form-card .form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,109,255,0.4);
}
@media (max-width: 768px) {
  .form-section { padding: 50px 0; }
  .form-card { padding: 30px 20px; }
}

/* ========== New Footer (Reference: hnlshm.com) ========== */
.footer-new {
  background: #0D1B3E;
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-new-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-new-col {
  flex: 1;
}
.footer-new-col h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}
.footer-new-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s;
}
.footer-new-col a:hover { color: #fff; }
.footer-new-col p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 5px;
}
.footer-new-col p a {
  display: inline;
  color: rgba(255,255,255,0.8);
}
.footer-new-col p a:hover { color: #fff; }
.footer-new-brand {
  flex: 1.5;
}
.footer-new-logo {
  margin-bottom: 15px;
}
.footer-new-logo img {
  height: 40px;
  /* filter: brightness(0) invert(1); */
}
.footer-new-slogan {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-new-social {
  display: flex;
  gap: 12px;
}
.footer-new-social .social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all 0.3s;
  cursor: pointer;
}
.footer-new-social .social-icon:hover {
  background: var(--theme-color);
  color: #fff;
}
.footer-new-bottom {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-new-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin: 0;
}
.footer-new-bottom a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-new-bottom a:hover { color: rgba(255,255,255,0.7); }
@media (max-width: 768px) {
  .footer-new-inner { flex-direction: column; gap: 30px; }
  .footer-new-brand { flex: none; }
  .footer-new-bottom { flex-direction: column; text-align: center; }
}
