/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */


/* Test */


/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors
   */

  --battleship-gray: hsl(0, 0%, 53%);
  --viridian-green: #4A729F;
  --silver-chalice: hsl(0, 0%, 69%);
  --mikado-yellow: hsl(47, 98%, 50%);
  --granite-gray: hsl(0, 0%, 40%);
  --independence: hsl(219, 20%, 32%);
  --spanish-gray: hsl(0, 0%, 61%);
  --oxford-blue: hsl(222, 46%, 17%);
  --black-coral: hsl(223, 8%, 44%);
  --eerie-black: hsl(210, 11%, 15%);
  --light-gray: hsl(0, 0%, 80%);
  --white-2: hsl(0, 0%, 98%);
  --white-1: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --jet: hsl(0, 0%, 20%);

  /**
   * typography
   */

  --ff-abril-fatface: 'Abril Fatface', cursive;
  --ff-comforter-brush: 'Comforter Brush', cursive;
  --ff-heebo: 'Heebo', sans-serif;

  --fs-1: 3.4rem;
  --fs-2: 3.2rem;
  --fs-3: 3rem;
  --fs-4: 2.4rem;
  --fs-5: 1.8rem;
  --fs-6: 1.7rem;
  --fs-7: 1.4rem;
  --fs-8: 1.2rem;

  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;

  /**
   * border radius
   */

  --radius-6: 6px;

  /**
   * spacing
   */

  --section-padding: 40px;

  /**
   * transition
   */

  --transition-1: 0.15s ease;
  --transition-2: 0.35s ease;
  --cubic-out: cubic-bezier(0.33, 0.85, 0.56, 1.02);

}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

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

li { list-style: none; }

a { text-decoration: none; }

a,
img,
span,
input,
button,
ion-icon { display: block; }

input,
button {
  border: none;
  background: none;
  font: inherit;
}

button { cursor: pointer; }

input { width: 100%; }

img { height: auto; }

address { font-style: normal; }

:focus-visible { outline-offset: 5px; }

html {
  font-family: var(--ff-heebo);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background: var(--white-1);
  font-size: 1.6rem;
}

::-webkit-scrollbar { width: 10px; }

::-webkit-scrollbar-track { background: hsl(0, 0%, 95%); }

::-webkit-scrollbar-thumb { background: hsl(0, 0%, 80%); }

::-webkit-scrollbar-thumb:hover { background: hsl(0, 0%, 70%); }





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container { padding-inline: 15px; }

.btn {
  background: var(--background, var(--white-1));
  color: var(--color, var(--viridian-green));
  font-weight: var(--fw-700);
  width: max-content;
  padding: 10px 25px;
  border: 2px solid var(--border-color, var(--white-1));
  border-radius: var(--radius-6);
}

.btn-secondary:is(:hover, :focus) {
  --background: transparent;
  --color: var(--white-1);
}

.btn-primary {
  --background: var(--viridian-green);
  --color: var(--white-1);
  --border-color: var(--viridian-green);
}

.btn-primary:is(:hover, :focus) {
  --background: transparent;
  --color: var(--viridian-green);
}

.btn-outline {
  --color: var(--oxford-blue);
  --border-color: var(--silver-chalice);
}

.btn-outline:is(:hover, :focus) {
  --color: var(--viridian-green);
  --border-color: var(--viridian-green);
}

.section { padding-block: var(--section-padding); }

.section-subtitle {
  font-family: var(--ff-comforter-brush);
  color: var(--mikado-yellow);
  font-size: var(--fs-3);
}

.w-100 { width: 100%; }

.h2 {
  color: var(--jet);
  font-size: var(--fs-3);
  font-weight: var(--fw-500);
}

.h3 {
  font-size: var(--fs-4);
  font-weight: var(--fw-400);
}

.section-title { font-family: var(--ff-abril-fatface); }

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-banner { background: var(--silver-chalice); }

:is(.popular, .blog) .section-subtitle {
  text-align: center;
  margin-bottom: 10px;
}

:is(.popular, .blog) .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.popular-list,
.blog-list {
  display: grid;
  gap: 30px;
}

.popular-card,
.blog-card {
  box-shadow: 0 10px 30px hsla(0, 0%, 0%, 0.1);
  border-radius: var(--radius-6);
  overflow: hidden;
}

:is(.popular, .blog) .card-banner { position: relative; }

.card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--mikado-yellow);
  color: var(--white-1);
  padding: 14px 10px;
  border-radius: var(--radius-6);
}

.card-badge ion-icon {
  --ionicon-stroke-width: 60px;
  font-size: 20px;
  margin-inline: auto;
}

.card-badge time { font-weight: var(--fw-700); }

:is(.popular, .blog) .card-content { padding: 30px 15px; }

.card-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}

:is(.popular, .blog) .card-title {
  color: var(--granite-gray);
  font-size: var(--fs-5);
  margin-block: 20px;
}

:is(.popular, .blog) .card-title > a { color: inherit; }

:is(.popular, .blog) .card-title > a:is(:hover, :focus) { color: var(--viridian-green); }



/* 修复 header 遮挡内容 */
body {
  padding-top: 90px; /* header 的高度 */
}

@media (max-width: 768px) {
  body {
    padding-top: 70px; /* 手机时 header 比较矮 */
  }
}


/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

/* ===== Fixed Header ===== */
.header.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 9999;
  transition: all 0.4s ease;
  animation: slideDown 0.8s ease forwards;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
}

.logo {
  font-family: 'Comforter Brush', cursive;
  font-size: 32px;
  color: var(--mikado-yellow, #FFC107);
  transition: color 0.3s ease;
}

.navbar-list {
  display: flex;
  gap: 25px;
  align-items: center;
}

.navbar-link {
  font-weight: 500;
  font-size: 16px;
  color: #0072BB; /* 高级活泼蓝 */
  transition: color 0.3s ease;
}

.navbar-link:hover,
.navbar-link.active {
  color: var(--mikado-yellow, #FFC107);
}

.btn.btn-secondary {
  background: #0096C7;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn.btn-secondary:hover {
  background: var(--mikado-yellow, #FFC107);
  color: #fff;
  transform: scale(1.05);
}

/* ===== Scroll Animation (header shrink) ===== */
.header.shrink {
  background: rgba(255, 255, 255, 0.98);
  padding: 8px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header.shrink .logo {
  font-size: 26px;
}

/* ===== Header entrance animation ===== */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-50%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.shape { display: none; }

.hero {
  background-repeat: no-repeat, no-repeat;
  background-position: bottom left, top right;
}

.hero-content { margin-bottom: 50px; }

.hero .section-subtitle { margin-bottom: 15px; }

.hero-title {
  color: var(--oxford-blue);
  font-size: var(--fs-1);
  font-family: var(--ff-abril-fatface);
  font-weight: var(--fw-500);
  line-height: 1.2;
  max-width: 11ch;
  margin-bottom: 15px;
}

.hero-text {
  color: var(--black-coral);
  font-size: var(--fs-7);
  line-height: 1.7;
  margin-bottom: 15px;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}





/*-----------------------------------*\
  #DESTINATION
\*-----------------------------------*/

.destination .section-subtitle {
  text-align: center;
  margin-bottom: 15px;
}

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

.destination-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.destination-card {
  position: relative;
  border-radius: var(--radius-6);
  overflow: hidden;
}

.destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(hsla(222, 46%, 17%, 0), hsla(222, 46%, 17%, 0.7));
}

.destination-card img { transition: var(--transition-2); }

.destination-card:is(:hover, :focus) img { transform: scale(1.1); }

.destination-card .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  z-index: 1;
}

.destination-card .card-subtitle {
  color: var(--mikado-yellow);
  font-family: var(--ff-comforter-brush);
  font-size: var(--fs-5);
}

.destination-card .card-title {
  color: var(--white-1);
  font-family: var(--ff-abril-fatface);
}










/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about-content { margin-bottom: 50px; }

.about .section-subtitle { margin-bottom: 10px; }

.about .section-title { margin-bottom: 20px; }

.about-text,
.about-item-text {
  color: var(--battleship-gray);
  font-size: var(--fs-6);
  line-height: 1.7;
}

.about-text { margin-bottom: 30px; }

.about-list {
  display: grid;
  gap: 20px;
  margin-bottom: 40px;
}

.about-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.about-item-icon {
  background: var(--viridian-green);
  color: var(--white-1);
  font-size: 26px;
  padding: 16px;
  border-radius: 50%;
  margin-top: 5px;
}

.about-item-title {
  color: var(--granite-gray);
  font-weight: var(--fw-600);
  margin-bottom: 5px;
}


/* testimonial 头像容器 */
.testimonial-avatar {
  width: 90px;        /* 固定宽度 */
  height: 90px;       /* 固定高度 */
  margin: 0 auto 20px;
  border-radius: 50%; /* 圆形 */
  overflow: hidden;   /* 超出部分隐藏 */
  flex-shrink: 0;     /* 防止压缩 */
}

/* 头像内的图片 */
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* ✅ 关键：保持比例裁切 */
  object-position: center;
  display: block;
}

/* Contact Section */
.contact {
  background-color: #fafafa;
  padding: 100px 0;
}

.contact-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
}

.contact-left {
  flex: 1 1 45%;
}

.contact-banner {
  flex: 1 1 45%;
}

.contact-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  transition: transform 0.4s ease;
}

.contact-img:hover {
  transform: scale(1.03);
}

.contact-desc {
  color: #555;
  line-height: 1.6;
  margin: 15px 0 30px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  font-size: 17px;
  color: #333;
}

.contact-item p {
  margin: 0;
}

.contact-item strong {
  color: #000;
  font-weight: 600;
}

.contact-icon {
  font-size: 24px;
  color: #e6b400;
  margin-right: 12px;
}

/* 响应式 */
@media (max-width: 900px) {
  .contact-flex {
    flex-direction: column-reverse;
    text-align: center;
  }

  .contact-info {
    align-items: center;
  }

  .contact-item {
    justify-content: center;
  }

  .contact-img {
    width: 100%;
    border-radius: 10px;
  }
}


/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

/* ===== Full Width Footer ===== */
.footer {
  width: 100%;
  background: linear-gradient(180deg, #4A729F 0%, #3F5B89 100%);
  text-align: center;
  padding: 40px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

/* 顶部轻光感 */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), transparent);
  pointer-events: none;
}

.footer a {
  color: #FFF59D;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #FFD54F;
}

.footer .copyright {
  white-space: nowrap; /* 🔒 禁止换行 */
  display: inline-block;
}


/* 淡入动画 */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer {
  animation: fadeUp 1s ease forwards;
}





/*-----------------------------------*\
  #GO TO TOP
\*-----------------------------------*/

.go-top {
  position: fixed;
  bottom: 0;
  right: 15px;
  background: var(--viridian-green);
  color: var(--white-1);
  font-size: 20px;
  padding: 10px;
  border-radius: var(--radius-6);
  visibility: hidden;
  opacity: 0;
  transition: var(--transition-1);
}

.go-top.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(-15px);
}

.go-top:is(:hover, :focus) { transform: translateY(-25px); }





/*-----------------------------------*\
  #RESPONSIVE
\*-----------------------------------*/

/**
 * responsive for larger than 575px screen 
 */

@media (min-width: 575px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 5rem;
    --fs-3: 4rem;
    --fs-8: 1.4rem;

  }



  /**
   * HERO
   */

  .hero-text { --fs-7: 1.8rem; }



  /**
   * FOOTER
   */

  .footer-top { grid-template-columns: 1fr 1fr; }

}





/**
 * responsive for larger than 768px screen 
 */

@media (min-width: 768px) {

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 750px;
    margin-inline: auto;
  }

  .popular-list,
  .blog-list { grid-template-columns: 1fr 1fr; }



  /**
   * HERO
   */

  .hero {
    min-height: 550px;
    display: grid;
    place-items: center;
  }

  .hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
  }

  

  /**
   * DESTINATION
   */

  .destination-list > li { width: calc(33.33% - 20px); }

  .destination-list .w-50 { width: calc(50% - 20px); }



  /**
   * FOOTER
   */

  .footer { --fs-7: 1.6rem; }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-bottom .logo,
  .copyright { margin-bottom: 0; }

}





/**
 * responsive for larger than 992px screen 
 */

@media (min-width: 992px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-2: 3.5rem;
    --fs-3: 4.4rem;

    /**
     * spacing
     */

    --section-padding: 60px;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 980px; }

  .popular-list,
  .blog-list { grid-template-columns: repeat(3, 1fr); }



  /**
   * HEADER
   */

  .nav-toggle-btn { display: none; }

  .header,
  .header.active { height: unset; }

  .navbar {
    all: unset;
    display: flex;
    align-items: center;
    flex-grow: 1;
  }

  .navbar-list {
    margin-bottom: 0;
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .navbar-link {
    font-weight: var(--fw-700);
    margin-bottom: 8px;
  }



  /**
   * HERO
   */

  .hero {
    position: relative;
    min-height: 680px;
  }

  .hero-title,
  .hero-text { margin-bottom: 35px; }

  .shape {
    display: block;
    position: absolute;
    animation: rotate 8s linear infinite;
  }

  .shape-1 {
    top: 60px;
    left: 51%;
  }

  .shape-2 {
    top: 20%;
    right: 10%;
    animation-delay: 0.25s;
  }

  .shape-3 {
    left: 46%;
    bottom: 20%;
    animation-delay: 0.5s;
  }

  @keyframes rotate {
    0% { transform: rotate(0); }
    100% { transform: rotate(1turn); }
  }



  /**
   * DESTINATION
   */

  .destination {
    --fs-4: 3.2rem;
    --fs-5: 2.6rem;
  }



  /**
   * ABOUT
   */

  .about .container {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    align-items: center;
    gap: 30px;
  }

  .about-content { margin-bottom: 0; }


/* 统一目的地卡片高度 */
.destination-card .card-banner {
  width: 100%;
  height: 250px; /* 统一高度，可依视觉调整 */
  overflow: hidden;
  border-radius: 10px;
}

.destination-card .card-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ✅ 保持比例不变形，裁切多余部分 */
  object-position: center;
  display: block;
}


  /* ===== Testimonials (Afro Travel Bright Style) ===== */
.section.testimonial {
  background-color: #fff;
  text-align: center;
  padding: 100px 0;
}

.testimonial .section-subtitle {
  margin-bottom: 5px;
}

.testimonial .section-title {
  color: #212121;
  font-weight: 700;
  margin-bottom: 50px;
}

.testimonial-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
}

.testimonial-card {
  background: #fdfdfd;
  border-radius: 15px;
  padding: 40px 25px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 360px;
}

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

.testimonial-avatar img {
  border-radius: 50%;
  border: 3px solid #4A729F ;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  font-style: italic;
  margin-bottom: 20px;
  min-height: 100px;
}

.testimonial-author .author-name {
  font-weight: 600;
  color: #222;
  margin-bottom: 3px;
}

.testimonial-author .author-title {
  font-size: 14px;
  color: #777;
}


  /**
   * FOOTER
   */

  .footer-top { grid-template-columns: 1fr 1fr 1fr 2fr; }

}


/* ===== Travel Packages Section ===== */
.travel-packages {
  margin-top: 60px;
  text-align: center;
}

.travel-packages .section-subtitle {
  color: var(--mikado-yellow, #FFC107);
  font-family: 'Comforter Brush', cursive;
}

.travel-packages .section-title {
  font-family: 'Abril Fatface', serif;
  color: #1a1a1a;
  margin-bottom: 40px;
}

/* Package Card Layout */
.package-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.package-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  width: 340px;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

/* Image */
.package-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.package-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.package-card:hover .package-img img {
  transform: scale(1.05);
}

/* Content */
.package-content {
  padding: 25px 25px 35px;
}

.package-name {
  font-size: 20px;
  font-weight: 700;
  color: #2B2B2B;
  margin-bottom: 10px;
}

.package-desc {
  font-size: 15px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
  min-height: 60px;
}

.package-price {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin-bottom: 20px;
}

.package-price span {
  color: var(--viridian-green, #0096C7);
  font-weight: 700;
  font-size: 18px;
}

/* Button Style */
.package-content .btn {
  border: 1.5px solid var(--viridian-green, #0096C7);
  color: var(--viridian-green, #0096C7);
  border-radius: 30px;
  padding: 10px 25px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.package-content .btn:hover {
  background: var(--viridian-green, #0096C7);
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .package-card {
    width: 90%;
  }
}
/* 修正价格行，让内容在一行内 */
.package-price {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin-bottom: 25px;
}
.package-price strong {
  color: #4A729F; /* 您的主题蓝色 */
  font-weight: 700;
  font-size: 18px;
}

.package-price span {
  color: var(--viridian-green, #0096C7);
  font-weight: 700;
  font-size: 18px;
}

/* 让按钮居中 */
.btn-center {
  text-align: center;
}

/* 按钮样式 */
.package-content .btn {
  border: 1.5px solid var(--viridian-green, #0096C7);
  color: var(--viridian-green, #0096C7);
  border-radius: 30px;
  padding: 10px 28px;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.package-content .btn:hover {
  background: var(--viridian-green, #0096C7);
  color: #fff;
}



/**
 * responsive for larger than 1200px screen 
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 6rem;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 1150px; }

  :is(.popular, .blog) .card-content { padding: 30px; }



  /**
   * HEADER
   */

  .navbar-list { gap: 50px; }



  /**
   * ABOUT
   */

  .about .container { grid-template-columns: 0.7fr 1fr; }

}


/* ====== Mobile Responsive Navigation ====== */

/* 默认隐藏菜单（在 mobile） */
@media (max-width: 768px) {
  .navbar {
    position: fixed;
    top: 80px;
    right: 0;
    width: 100%;
    background: #fff;
    text-align: center;
    padding: 30px 0;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    z-index: 999;
  }

  /* 展开状态 */
  .navbar.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .navbar-list {
    flex-direction: column;
    gap: 20px;
  }

  .navbar-link {
    font-size: 18px;
    color: #4A729F;
    transition: color 0.3s ease;
  }

  .navbar-link:hover {
    color: var(--mikado-yellow);
  }

  /* 汉堡按钮样式 */
  .nav-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 28px;
    color: #4A729F;
    z-index: 1001;
  }

  /* 切换时图标变化 */
  .nav-toggle-btn .close {
    display: none;
  }

  .nav-toggle-btn.active .open {
    display: none;
  }

  .nav-toggle-btn.active .close {
    display: block;
  }

  /* 隐藏桌面按钮 */
  .btn.btn-secondary {
    display: none;
  }
}
/* ===== Responsive Fix: Testimonials on Mobile ===== */
@media (max-width: 768px) {
  .testimonial-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }

  .testimonial-card {
    width: 90%;
    max-width: 360px;
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
  }

  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  .testimonial-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #4A729F;
  }

  .testimonial-text {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    font-style: italic;
    margin-bottom: 15px;
  }

  .testimonial-author .author-name {
    font-weight: 600;
    color: #111;
    margin-bottom: 4px;
  }

  .testimonial-author .author-title {
    font-size: 13px;
    color: #777;
  }
  .container {
    padding: 20px;
}
.hero-content{
  margin-bottom: 0;
}
.section-subtitle {
  text-align: center;
}
.section-title {
  text-align: center;
}
}
