:root{
  --color-primary:#0F674F;
  --color-secondary:rgb(202, 153, 60);
  --color-white:#fff;
  --shadow:rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;;
  --shodow-all:rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  --shadow-header:rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  --margin-top:30px;
  --border:20px;
  --gradient: linear-gradient(135deg, #0F674F 0%, #1FA37A 100%);
}
.site-header{
  background:var(--color-white);
  border-bottom: 1px solid #eee;
}

.site-header .container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;

}
.content-ss2 h2{
  text-transform: uppercase;
}
.content-ss2 p{
  text-align:justify;
  font-size: 16px;
}
.site-logo img{
  max-height: 60px;
}

/* ===== DESKTOP MENU ===== */
.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
}

.main-navigation ul li {
    position: relative;
}

.main-navigation ul li a {
    text-decoration: none;
    color: var(--color-primary);
    font-weight: 500;
    padding: 8px 0;
}

/* Dropdown */
.main-navigation ul ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,.1);
    z-index: 999;
}

.main-navigation ul li:hover > ul {
    display: block;
}

.main-navigation ul ul li a {
    padding: 10px 15px;
    display: block;
    white-space: nowrap;
}
.main-navigation .current-menu-item > a,
.main-navigation .current-menu-parent > a,
.main-navigation .current-menu-ancestor > a {
    color: var(--color-secondary);
    font-weight: 600;
}

/* ===== MOBILE ===== */
.menu-toggle {
    display: none;
    font-size: 26px;
    background: none;
    border: 0;
    cursor: pointer;
}
@media (max-width: 991px) {

    .menu-toggle {
        display: block;
    }

    /* NAV CHÍNH */
    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        border-top: 1px solid #eee;
        display: none;
        z-index: 999;
    }

    /* MỞ MENU */
    .site-header.menu-open .main-navigation {
        display: block;
    }

    /* UL CHÍNH */
    .main-navigation ul {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 0;
    }

    .main-navigation ul li {
        position: relative;
        border-bottom: 1px solid #eee;
    }

    .main-navigation ul li a {
        display: block;
        padding: 12px 15px;
    }

    /* SUB MENU */
    .main-navigation ul ul {
        display: none;
        position: static;
        box-shadow: none;
        padding-left: 15px;
        background: #fafafa;
    }

    .main-navigation ul li.open > ul {
        display: block;
    }

    /* ICON SUBMENU – GIỮ LẠI */
    .main-navigation .submenu-toggle {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}
.site-header {
  position: relative;
  z-index: 1000;
}

.title{
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(22px, 2.8vw, 30px);
  color: var(--color-primary);
  text-transform: uppercase;
}
.sub-title{
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-style: normal;
  color:var(--color-secondary);
  font-size: clamp(20px, 2.4vw, 26px);
}

.great-vibes-regular {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-style: normal;
  color:var(--color-secondary);
}

h1,h2,h3,h4,h5,h6{
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.6;
}

h1 {
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.25;
}

h2 {
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.3;
}

h3 {
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.35;
}

h4 {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.4;
}

h5 {
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.45;
}

h6 {
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.5;
}

.btn-more{
  font-size: clamp(20px, 2.4vw, 26px);
  
}
a:hover{
  text-decoration: none;
  color: var(--color-secondary);
}
 
a{
  color: var(--color-primary);
}

.title-section{
  text-align: center;
}

.step-number{
  font-family: "Roboto Condensed", sans-serif;
  font-style: normal;
}

/* ===== CTA ===== */
.btn-more{
  display: inline-block;
  padding: 8px 22px;
  border-radius: 30px;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  font-size: clamp(16px, 2.4vw, 20px);
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--color-secondary);
}

/* MOBILE: CTA nổi bật */
@media (max-width: 767px){
  .btn-more{
    width: 100%;
    text-align: center;
    background: var(--color-primary);
    color: #fff;
    font-weight: 500;
    margin-top: 10px;
  }
}

/* DESKTOP: hover tinh tế */
@media (min-width: 768px){
  .btn-more:hover{
    background: var(--color-primary);
    color: #fff;
  }
}

/* ===== BOX SERVICE ===== */
.box-service{
  padding: 20px;
  border-radius: var(--border);
  box-shadow: var(--shodow-all);
  width: 100%;
  min-height: 480px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}
.box-service img{
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.content-box{
  margin-top: 10px;
}

.content-box h4{
  color: var(--color-primary);
}

.content-box h5{
  color: var(--color-primary);
  font-weight: bold;
}

.content-box p{
  font-size:14.5px;
  color:var(--text);
  margin-bottom:8px;
  line-height:1.6;
  text-align: justify;
}

/* CTA luôn nằm đáy card */
.box-service > div:last-child{
  margin-top: auto;
}

.section{
  margin-top: var(--margin-top);
}

.list-category{
  width: 100%;
  padding: 20px ;
  box-shadow: var(--shadow);
  border-radius: 5px;
}

.list-category h4{
  margin-top: 20px;
  font-family: 500;

}
.line-text{
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 20px;
}
.line-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;          /* độ dài gạch chân */
  height: 2px;           /* độ dày */
  background:var(--color-primary);   /* màu xanh chủ đạo */
  border-radius: 2px;
}

.category-link{
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(16px, 1.6vw, 18px);
}

.banner img{
  border-radius: var(--border);
}
/* Footer */
.footer-top{
  margin-top: 30px;
  background-color:#333333;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  color: #eee;
  padding: 30px 0;
}
.footer-top p{
  text-align: justify;
  font-size: 15px;
}
.footer-top a{
  
   color: #eee;
}
.footer-top h5{
  font-size: 16px;
}
.footer-top a:hover{
  color: var(--color-primary);
}
.footer-top h4{
  color: var(--color-secondary);
  font-weight: 500;
  font-size: clamp(16px, 2vw, 20px);
}
.footer-bottom{
  background-color: #1E1E1E;
  padding: 15px;
  text-align: center;
  color: #eee;
  width: 100%;
}

table th,tr,td{
  font-size: 15px;
}
.hide-mobile {
  display: none;
}

@media (min-width: 1024px) {
  .hide-mobile {
    display: block;
  }
}
.hide-desktop {
  display: none;
}

@media (max-width: 1024px) {
  .hide-desktop {
    display: block;
  }
}
.image-wrap {
    width: 100%;
    height: 100%;
    min-height: 480px;
    overflow: hidden;
}

.image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
