@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 32px;
  color: #1B3A5C;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.section-title .subtitle {
  font-size: 16px;
  color: #888;
  font-weight: 400;
}

.section-title .divider {
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #1B3A5C, #C8963E);
  margin: 15px auto 0;
  border-radius: 2px;
}

.top-bar {
  background: #1B3A5C;
  color: #fff;
  font-size: 13px;
  padding: 8px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar .contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar .contact-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar .contact-info i {
  color: #C8963E;
  display: flex;
  align-items: center;
}

.top-bar .top-links a {
  color: #ccc;
  margin-left: 16px;
  font-size: 13px;
}

.top-bar .top-links a:hover {
  color: #C8963E;
}

.header {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  will-change: transform;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.header .logo-area {
  display: flex;
  align-items: center;
}

.header .logo-area a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header .logo-img {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #1B3A5C, #2A7F62);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.header .logo-text {
  display: flex;
  flex-direction: column;
}

.header .logo-text .brand-name {
  font-size: 20px;
  font-weight: 700;
  color: #1B3A5C;
  letter-spacing: 1px;
  line-height: 1.2;
}

.header .logo-text .brand-sub {
  font-size: 12px;
  color: #888;
  letter-spacing: 2px;
}

.header .main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header .main-nav ul li a {
  display: block;
  padding: 10px 18px;
  font-size: 15px;
  color: #333;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s;
  position: relative;
}

.header .main-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: #C8963E;
  transition: transform 0.3s;
}

.header .main-nav ul li a:hover {
  color: #C8963E;
}

.header .main-nav ul li a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.header .main-nav ul li a.btn-nav {
  background: linear-gradient(135deg, #C8963E, #d4a854);
  color: #fff;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 600;
}

.header .main-nav ul li a.btn-nav:hover {
  background: linear-gradient(135deg, #b8862e, #c8963e);
  box-shadow: 0 4px 15px rgba(200,150,62,0.4);
  color: #fff;
}

.header .main-nav ul li a.btn-nav::after {
  display: none;
}

.header .menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #1B3A5C;
}

.hero {
  background: linear-gradient(135deg, #0d2137 0%, #1B3A5C 40%, #1a4a5a 70%, #0d3328 100%);
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,150,62,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(42,127,98,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero .hero-content {
  flex: 1;
  max-width: 600px;
}

.hero .hero-content .hero-badge {
  display: inline-block;
  background: rgba(200,150,62,0.2);
  color: #C8963E;
  font-size: 14px;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(200,150,62,0.3);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero .hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 16px;
}

.hero .hero-content h1 .highlight {
  color: #C8963E;
  position: relative;
}

.hero .hero-content .hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
  line-height: 1.8;
}

.hero .hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero .hero-btns .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #C8963E, #d4a854);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 1px;
}

.hero .hero-btns .btn-primary:hover {
  background: linear-gradient(135deg, #b8862e, #c8963e);
  box-shadow: 0 8px 25px rgba(200,150,62,0.5);
  transform: translateY(-2px);
}

.hero .hero-btns .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.hero .hero-btns .btn-outline .icon-chat {
  font-size: 18px;
}

.hero .hero-btns .btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.hero .hero-visual {
  flex: 0 0 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .hero-visual .hero-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  color: #fff;
  width: 100%;
}

.hero .hero-visual .hero-card .card-price {
  font-size: 14px;
  color: #C8963E;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.hero .hero-visual .hero-card .card-number {
  font-size: 56px;
  font-weight: 800;
  color: #C8963E;
  line-height: 1;
  margin-bottom: 8px;
}

.hero .hero-visual .hero-card .card-number span {
  font-size: 24px;
  font-weight: 600;
}

.hero .hero-visual .hero-card .card-label {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.9);
}

.hero .hero-visual .hero-card .card-features {
  text-align: left;
  margin-bottom: 20px;
}

.hero .hero-visual .hero-card .card-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hero .hero-visual .hero-card .card-features li i {
  color: #C8963E;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.hero .hero-visual .hero-card .card-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #C8963E, #d4a854);
  color: #fff;
  border: none;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 1px;
}

.hero .hero-visual .hero-card .card-btn:hover {
  background: linear-gradient(135deg, #b8862e, #c8963e);
  box-shadow: 0 6px 20px rgba(200,150,62,0.5);
}

.brand-intro {
  padding: 80px 0;
  background: #fafbfc;
}

.brand-intro .brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.brand-intro .brand-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #1B3A5C, #2A7F62);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-intro .brand-image .brand-logo-large {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.brand-intro .brand-info h3 {
  font-size: 28px;
  color: #1B3A5C;
  margin-bottom: 20px;
  font-weight: 700;
}

.brand-intro .brand-info .intro-text {
  font-size: 16px;
  color: #666;
  line-height: 1.9;
  margin-bottom: 30px;
}

.brand-intro .brand-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.brand-intro .brand-stats .stat-item {
  text-align: center;
  padding: 20px 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.brand-intro .brand-stats .stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.brand-intro .brand-stats .stat-item .stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #C8963E;
  line-height: 1;
  margin-bottom: 8px;
}

.brand-intro .brand-stats .stat-item .stat-label {
  font-size: 14px;
  color: #888;
}

.brand-intro .brand-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.brand-intro .brand-features .feature-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  font-size: 14px;
  color: #555;
  transition: all 0.3s;
}

.brand-intro .brand-features .feature-tag:hover {
  border-color: #C8963E;
  color: #C8963E;
}

.brand-intro .brand-features .feature-tag i {
  display: flex;
  align-items: center;
  color: #2A7F62;
}

.packages {
  padding: 80px 0;
  background: #fff;
}

.packages .package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.packages .package-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  border: 2px solid #e8e8e8;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.packages .package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.packages .package-card.featured {
  border-color: #C8963E;
  box-shadow: 0 5px 30px rgba(200,150,62,0.15);
}

.packages .package-card.featured .package-badge {
  position: absolute;
  top: 20px;
  right: -35px;
  background: linear-gradient(135deg, #C8963E, #d4a854);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 40px;
  transform: rotate(45deg);
  letter-spacing: 1px;
  z-index: 1;
}

.packages .package-card .package-header {
  padding: 35px 30px 25px;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
  background: linear-gradient(180deg, #fafbfc, #fff);
}

.packages .package-card.featured .package-header {
  background: linear-gradient(180deg, #fdf8f0, #fff);
}

.packages .package-card .package-header .package-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1B3A5C, #2A7F62);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.packages .package-card .package-header .package-icon i {
  font-size: 40px;
}

.packages .package-card.featured .package-header .package-icon {
  background: linear-gradient(135deg, #C8963E, #d4a854);
  width: 80px;
  height: 80px;
}

.packages .package-card .package-header h3 {
  font-size: 22px;
  color: #1B3A5C;
  font-weight: 700;
  margin-bottom: 6px;
}

.packages .package-card .package-header .package-subtitle {
  font-size: 14px;
  color: #888;
}

.packages .package-card .package-price {
  padding: 20px 30px;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
}

.packages .package-card .package-price .price {
  font-size: 42px;
  font-weight: 800;
  color: #1B3A5C;
  line-height: 1;
}

.packages .package-card.featured .package-price .price {
  color: #C8963E;
}

.packages .package-card .package-price .price span {
  font-size: 18px;
  font-weight: 600;
}

.packages .package-card .package-price .price-note {
  font-size: 13px;
  color: #aaa;
  margin-top: 4px;
}

.packages .package-card .package-details {
  padding: 25px 30px;
  flex: 1;
}

.packages .package-card .package-details ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  font-size: 15px;
  color: #555;
  border-bottom: 1px dashed #f0f0f0;
}

.packages .package-card .package-details ul li:last-child {
  border-bottom: none;
}

.packages .package-card .package-details ul li i {
  color: #2A7F62;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
}

.packages .package-card.featured .package-details ul li i {
  color: #C8963E;
}

.packages .package-card .package-footer {
  padding: 0 30px 30px;
}

.packages .package-card .package-footer .btn-package {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  border: 2px solid #1B3A5C;
  color: #1B3A5C;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 1px;
}

.packages .package-card .package-footer .btn-package:hover {
  background: #1B3A5C;
  color: #fff;
}

.packages .package-card.featured .package-footer .btn-package {
  background: linear-gradient(135deg, #C8963E, #d4a854);
  color: #fff;
  border: none;
}

.packages .package-card.featured .package-footer .btn-package:hover {
  background: linear-gradient(135deg, #b8862e, #c8963e);
  box-shadow: 0 6px 20px rgba(200,150,62,0.4);
}

.process {
  padding: 80px 0;
  background: linear-gradient(180deg, #fafbfc, #fff);
}

.process .process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process .process-steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, #1B3A5C, #C8963E, #2A7F62, #1B3A5C);
  z-index: 0;
}

.process .process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 15px;
}

.process .process-step .step-number {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #1B3A5C;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  color: #1B3A5C;
  transition: all 0.3s;
  position: relative;
}

.process .process-step:nth-child(2) .step-number {
  border-color: #C8963E;
  color: #C8963E;
}

.process .process-step:nth-child(3) .step-number {
  border-color: #2A7F62;
  color: #2A7F62;
}

.process .process-step:nth-child(4) .step-number {
  border-color: #1B3A5C;
  color: #1B3A5C;
}

.process .process-step:hover .step-number {
  transform: scale(1.08);
  box-shadow: 0 8px 25px rgba(27,58,92,0.2);
}

.process .process-step:nth-child(2):hover .step-number {
  box-shadow: 0 8px 25px rgba(200,150,62,0.3);
}

.process .process-step:nth-child(3):hover .step-number {
  box-shadow: 0 8px 25px rgba(42,127,98,0.3);
}

.process .process-step .step-title {
  font-size: 18px;
  font-weight: 700;
  color: #1B3A5C;
  margin-bottom: 8px;
}

.process .process-step .step-desc {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
}

.process .process-step .step-duration {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  color: #C8963E;
  background: rgba(200,150,62,0.1);
  padding: 4px 12px;
  border-radius: 12px;
}

.knowledge {
  padding: 80px 0;
  background: #fff;
}

.knowledge .knowledge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.knowledge .knowledge-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  transition: all 0.3s;
}

.knowledge .knowledge-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-color: #C8963E;
}

.knowledge .knowledge-card .card-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.knowledge .knowledge-card .card-image .img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: rgba(255,255,255,0.6);
}

.knowledge .knowledge-card:nth-child(1) .card-image {
  background: linear-gradient(135deg, #1B3A5C, #2a5080);
}

.knowledge .knowledge-card:nth-child(2) .card-image {
  background: linear-gradient(135deg, #2A7F62, #3da87e);
}

.knowledge .knowledge-card:nth-child(3) .card-image {
  background: linear-gradient(135deg, #C8963E, #d4a854);
}

.knowledge .knowledge-card:nth-child(4) .card-image {
  background: linear-gradient(135deg, #4a3080, #6a50b0);
}

.knowledge .knowledge-card:nth-child(5) .card-image {
  background: linear-gradient(135deg, #1a6a8a, #2a8aaa);
}

.knowledge .knowledge-card:nth-child(6) .card-image {
  background: linear-gradient(135deg, #8a3a5a, #a85a7a);
}

.knowledge .knowledge-card .card-image .card-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255,255,255,0.9);
  color: #1B3A5C;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 12px;
  font-weight: 600;
}

.knowledge .knowledge-card .card-body {
  padding: 20px;
}

.knowledge .knowledge-card .card-body h3 {
  font-size: 17px;
  color: #1B3A5C;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.knowledge .knowledge-card .card-body .card-excerpt {
  font-size: 14px;
  color: #888;
  line-height: 1.7;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.knowledge .knowledge-card .card-body .card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #bbb;
  padding-top: 12px;
  border-top: 1px solid #f5f5f5;
}

.knowledge .knowledge-card .card-body .card-meta .read-more {
  color: #C8963E;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s;
}

.knowledge .knowledge-card .card-body .card-meta .read-more:hover {
  color: #1B3A5C;
}

.knowledge .knowledge-card .card-body .card-meta .read-more i {
  display: flex;
  align-items: center;
}

.faq {
  padding: 80px 0;
  background: #fafbfc;
}

.faq .faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq .faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 14px;
  border: 1px solid #e8e8e8;
  overflow: hidden;
  transition: all 0.3s;
}

.faq .faq-item:hover {
  border-color: #C8963E;
}

.faq .faq-item.active {
  border-color: #C8963E;
  box-shadow: 0 4px 20px rgba(200,150,62,0.1);
}

.faq .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #1B3A5C;
  transition: color 0.3s;
  user-select: none;
}

.faq .faq-question:hover {
  color: #C8963E;
}

.faq .faq-item.active .faq-question {
  color: #C8963E;
}

.faq .faq-question .faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: #888;
}

.faq .faq-item.active .faq-question .faq-icon {
  background: #C8963E;
  color: #fff;
  transform: rotate(180deg);
}

.faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq .faq-item.active .faq-answer {
  max-height: 300px;
}

.faq .faq-answer .answer-content {
  padding: 0 24px 20px;
  font-size: 15px;
  color: #666;
  line-height: 1.8;
}

.consultation {
  padding: 80px 0;
  background: linear-gradient(135deg, #1B3A5C, #0d2137);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.consultation::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200,150,62,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.consultation .container {
  position: relative;
  z-index: 1;
}

.consultation .section-title h2 {
  color: #fff;
}

.consultation .section-title .subtitle {
  color: rgba(255,255,255,0.7);
}

.consultation .section-title .divider {
  background: linear-gradient(90deg, #C8963E, #fff);
}

.consultation .consult-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.consultation .consult-info h3 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
}

.consultation .consult-info .info-list {
  margin-bottom: 30px;
}

.consultation .consult-info .info-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.consultation .consult-info .info-list li i {
  display: flex;
  align-items: center;
  color: #C8963E;
}

.consultation .consult-info .info-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.consultation .consult-info .info-features .info-feat {
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: background 0.3s;
}

.consultation .consult-info .info-features .info-feat:hover {
  background: rgba(255,255,255,0.15);
}

.consultation .consult-info .info-features .info-feat i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #C8963E;
  margin-bottom: 10px;
}

.consultation .consult-info .info-features .info-feat .feat-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.consultation .consult-info .info-features .info-feat .feat-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.consultation .consult-form {
  background: #fff;
  border-radius: 16px;
  padding: 35px;
  color: #333;
}

.consultation .consult-form h3 {
  font-size: 20px;
  color: #1B3A5C;
  margin-bottom: 24px;
  text-align: center;
  font-weight: 700;
}

.consultation .consult-form .form-group {
  margin-bottom: 18px;
}

.consultation .consult-form .form-group label {
  display: block;
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
  font-weight: 500;
}

.consultation .consult-form .form-group input,
.consultation .consult-form .form-group select,
.consultation .consult-form .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  color: #333;
  transition: border-color 0.3s;
  font-family: inherit;
  outline: none;
  background: #fafbfc;
}

.consultation .consult-form .form-group input:focus,
.consultation .consult-form .form-group select:focus,
.consultation .consult-form .form-group textarea:focus {
  border-color: #C8963E;
  background: #fff;
}

.consultation .consult-form .form-group textarea {
  height: 100px;
  resize: vertical;
}

.consultation .consult-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.consultation .consult-form .btn-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #C8963E, #d4a854);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 1px;
  margin-top: 6px;
}

.consultation .consult-form .btn-submit:hover {
  background: linear-gradient(135deg, #b8862e, #c8963e);
  box-shadow: 0 6px 20px rgba(200,150,62,0.4);
}

.consultation .consult-form .form-note {
  text-align: center;
  font-size: 12px;
  color: #bbb;
  margin-top: 12px;
}

.footer {
  background: #0d2137;
  color: #ccc;
  padding: 60px 0 0;
}

.footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer .footer-col h4 {
  font-size: 17px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #C8963E;
}

.footer .footer-col .footer-about {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.footer .footer-col .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer .footer-col .footer-logo .flogo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.footer .footer-col .footer-logo .flogo-text {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.footer .footer-col ul li {
  padding: 6px 0;
}

.footer .footer-col ul li a {
  font-size: 14px;
  color: #aaa;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer .footer-col ul li a:hover {
  color: #C8963E;
  padding-left: 5px;
}

.footer .footer-col ul li a i {
  display: flex;
  align-items: center;
  font-size: 12px;
}

.footer .footer-col .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
}

.footer .footer-col .contact-item i {
  color: #C8963E;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
}

.footer .footer-col .contact-item strong {
  color: #fff;
  display: block;
  font-size: 16px;
  margin-top: 2px;
}

.footer .footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: #777;
}

.footer .footer-bottom a {
  color: #aaa;
}

.footer .footer-bottom a:hover {
  color: #C8963E;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: #fff;
  border-radius: 16px;
  width: 90%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s;
}

.modal-overlay.active .modal-dialog {
  transform: translateY(0);
}

.modal-dialog .modal-header {
  padding: 24px 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-dialog .modal-header h3 {
  font-size: 20px;
  color: #1B3A5C;
  font-weight: 700;
}

.modal-dialog .modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: #888;
  border-radius: 50%;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}

.modal-dialog .modal-close:hover {
  background: #f5f5f5;
  color: #333;
}

.modal-dialog .modal-body {
  padding: 20px 28px 28px;
}

.modal-dialog .modal-body .form-group {
  margin-bottom: 16px;
}

.modal-dialog .modal-body .form-group label {
  display: block;
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
  font-weight: 500;
}

.modal-dialog .modal-body .form-group input,
.modal-dialog .modal-body .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  color: #333;
  transition: border-color 0.3s;
  font-family: inherit;
  outline: none;
  background: #fafbfc;
}

.modal-dialog .modal-body .form-group input:focus,
.modal-dialog .modal-body .form-group select:focus {
  border-color: #C8963E;
  background: #fff;
}

.modal-dialog .modal-body .btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #C8963E, #d4a854);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 1px;
  margin-top: 8px;
}

.modal-dialog .modal-body .btn-submit:hover {
  background: linear-gradient(135deg, #b8862e, #c8963e);
  box-shadow: 0 6px 20px rgba(200,150,62,0.4);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: #C8963E;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(200,150,62,0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #b8862e;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(200,150,62,0.5);
}

@media screen and (max-width: 1024px) {
  .hero .hero-content h1 {
    font-size: 32px;
  }
  .hero .hero-visual {
    flex: 0 0 320px;
  }
  .process .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .process .process-steps::before {
    display: none;
  }
  .knowledge .knowledge-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 768px) {
  html {
    scroll-behavior: auto;
  }

  body {
    padding-top: 76px;
  }

  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }

  .top-bar .container {
    flex-direction: column;
    text-align: center;
  }
  .top-bar .contact-info {
    justify-content: center;
    font-size: 12px;
    gap: 12px;
  }
  .header .menu-toggle {
    display: flex;
    align-items: center;
  }
  .header .main-nav {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    background: #fff;
    border-bottom: 2px solid #C8963E;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    z-index: 999;
  }
  .header .main-nav.open {
    max-height: 500px;
  }
  .header .main-nav ul {
    flex-direction: column;
    padding: 10px 20px;
    gap: 0;
  }
  .header .main-nav ul li {
    width: 100%;
  }
  .header .main-nav ul li a {
    padding: 14px 10px;
    border-bottom: 1px solid #f0f0f0;
    border-radius: 0;
  }
  .header .main-nav ul li a.btn-nav {
    border-radius: 25px;
    text-align: center;
    margin-top: 10px;
  }
  .header .main-nav ul li a::after {
    display: none;
  }
  .top-bar {
    display: none;
  }
  .hero {
    min-height: auto;
    padding: 50px 0;
  }
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  .hero .hero-content {
    max-width: 100%;
  }
  .hero .hero-content h1 {
    font-size: 28px;
  }
  .hero .hero-btns {
    justify-content: center;
  }
  .hero .hero-visual {
    flex: 0 0 auto;
    width: 100%;
    max-width: 380px;
  }
  .brand-intro .brand-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .brand-intro .brand-image {
    min-height: 280px;
  }
  .brand-intro .brand-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .packages .package-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
  .process .process-steps {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .knowledge .knowledge-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
  .consultation .consult-grid {
    grid-template-columns: 1fr;
  }
  .footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
  }

  .footer .footer-grid .footer-col:first-child,
  .footer .footer-grid .footer-col:last-child {
    grid-column: 1 / -1;
  }
  .section-title h2 {
    font-size: 26px;
  }
}

@media screen and (max-width: 480px) {
  .hero .hero-content h1 {
    font-size: 24px;
  }
  .hero .hero-visual .hero-card .card-number {
    font-size: 42px;
  }
  .brand-intro .brand-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .consultation .consult-form .form-row {
    grid-template-columns: 1fr;
  }
  .consultation .consult-form {
    padding: 25px 20px;
  }
  .modal-dialog {
    width: 95%;
  }
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 38px;
    height: 38px;
  }
  .header .logo-text .brand-name {
    font-size: 16px;
  }
  .header .logo-text .brand-sub {
    font-size: 10px;
  }
}