/* ===========================
   SECTION: SERVICE PERKS
   =========================== */
.service-perks {
  padding: 60px 0;
  background-color: #fff;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.perks-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

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

.perks-title {
  font-family: "Playfair Display", serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #c47a3f; /* Màu nâu cam nhạt tiêu đề */
  margin-bottom: 15px;
  text-transform: uppercase;
}

.perks-subtitle {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: #8b1e14;
  margin-bottom: 20px;
}

.perks-list {
  list-style: disc;
  padding-left: 20px;
  color: #8b1e14;
  line-height: 1.8;
  font-size: 15px;
}

.perks-list li strong {
  font-weight: 700;
}

.perks-note {
  margin-top: 20px;
  font-style: italic;
  color: #8b1e14;
}

.perks-image {
  flex: 1;
}
.perks-image img {
  width: 100%;
  max-width: 500px;
  display: block;
  border-radius: 4px;
}





/* ===========================
   SITE FOOTER STYLING - FULL WIDTH STYLE
   =========================== */

/* 1. NỀN VÀ BỐ CỤC CHUNG */
.site-footer {
  background-color: #F9F9F9; /* Màu nền xám kem rất nhạt sang trọng */
  padding-top: 70px;
  padding-bottom: 30px;
  color: #1a1a1a;
  font-family: sans-serif;
  border-top: 1px solid rgba(0,0,0,0.05);
}

/* 2. GHI ĐÈ CONTAINER CHO RIÊNG FOOTER 
   (Để đạt yêu cầu cách lề 30px, không thẳng hàng với bên trên) */
.site-footer .container {
  width: 100% !important;
  max-width: 100% !important;      /* Bỏ giới hạn chiều rộng 1280px */
  padding-left: 30px !important;   /* Cách lề trái 30px */
  padding-right: 30px !important;  /* Cách lề phải 30px */
  box-sizing: border-box;
}

/* 3. LƯỚI CỘT (GRID) */
.footer-grid {
  display: grid;
  /* Chia tỉ lệ: Cột 1 và 4 rộng hơn, 2 cột giữa nhỏ hơn */
  grid-template-columns: 1.2fr 0.8fr 1fr 1.3fr; 
  gap: 50px; /* Khoảng cách giữa các cột thoáng hơn */
  margin-bottom: 60px;
}

/* 4. TYPOGRAPHY (CHỮ & TIÊU ĐỀ) */
.footer-heading {
  font-family: "Playfair Display", serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: #1a1a1a;
  opacity: 0.9;
}

.footer-text {
  font-size: 13px;
  line-height: 2; /* Dãn dòng rộng ra cho dễ đọc */
  color: #555;
  margin-bottom: 15px;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 20px;
  opacity: 0.9;
}

/* Địa chỉ */
.address-group {
  margin-bottom: 20px;
}
.address-group strong {
  font-weight: 700;
  font-size: 13px;
  color: #1a1a1a;
  display: block;
  margin-bottom: 5px;
}

/* 5. KHỐI MÀU CAM (JOIN BAKES CLUB) - Làm nổi bật */
.club-col {
  background-color: #E35237; /* Màu cam thương hiệu */
  padding: 40px;             /* Padding bên trong lớn */
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 2px;        /* Bo góc nhẹ tinh tế */
}

.club-title {
  font-family: "Playfair Display", serif;
  font-size: 26px; /* Chữ to hơn */
  font-weight: 400;
  margin-bottom: 15px;
  color: #fff;
  margin-top: 0;
}

.club-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

.zalo-link {
  color: #fff;
  text-decoration: underline;
  font-weight: 700;
  margin-top: 8px;
  display: inline-block;
  text-underline-offset: 3px;
}
.zalo-link:hover {
  opacity: 0.85;
}

/* 6. PHẦN DƯỚI CÙNG (FOOTER BOTTOM) */
.footer-bottom {
  border-top: 1px solid #e0e0e0;
  padding-top: 30px;
  margin-top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative; /* Để định vị dropdown ngôn ngữ */
}

.copyright {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  font-weight: 600;
}

/* --- LANGUAGE DROPDOWN (Đã chỉnh vị trí đẹp) --- */
.lang-dropdown {
    position: relative;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #555;
    z-index: 100;
    transform: translateY(-8px); /* Nhích lên cho cân đối */
}

.lang-selected {
    border: 1px solid #dcdcdc; 
    padding: 8px 12px;
    background-color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-width: 120px;         
    transition: all 0.3s ease;
    border-radius: 2px;
}

.lang-selected:hover {
    border-color: #8b1e14;    
    color: #8b1e14;
}

.lang-list {
    position: absolute;
    top: calc(100% + 4px); 
    left: 0;
    width: 100%;
    background-color: #fff;
    border: 1px solid #dcdcdc;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08); 
    list-style: none;
    padding: 0;
    margin: 0;
    border-radius: 2px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-dropdown.active .lang-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-list li {
    padding: 10px 12px;
    cursor: pointer;
    color: #666;
    font-size: 11px;
    transition: all 0.2s;
}

.lang-list li:hover {
    background-color: #fafafa;
    color: #8b1e14;
    padding-left: 16px;
}
.lang-list li.hidden { display: none; }


/* --- RESPONSIVE MOBILE --- */
@media (max-width: 1024px) {
  .site-footer .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr; /* Tablet: 2 cột */
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr; /* Mobile: 1 cột */
  }
  
  .footer-bottom {
    flex-direction: column-reverse; /* Đảo ngược: Copyright xuống dưới */
    gap: 20px;
    align-items: flex-start;
  }
  
  .club-col {
    margin-top: 10px;
  }
}